From 3f9f4d828f861bf2f6074c3936d6817550e747e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerardo=20B=C3=A1ez?= Date: Wed, 6 Jul 2016 22:28:17 -0400 Subject: [PATCH] Initial Commit --- .editorconfig | 13 + .gitignore | 2 + LICENSE | 22 + README.md | 170 + composer.json | 20 + composer.lock | 236 + src/Vehicle/Commands/ExportVehiclesData.php | 47 + src/Vehicle/Commands/GenerateVehiclesData.php | 137 + src/Vehicle/Contracts/HasMake.php | 13 + src/Vehicle/Contracts/HasModel.php | 13 + src/Vehicle/Contracts/HasModelYear.php | 13 + src/Vehicle/Contracts/VehicleMake.php | 13 + src/Vehicle/Contracts/VehicleModel.php | 29 + src/Vehicle/Contracts/VehicleModelYear.php | 29 + src/Vehicle/Contracts/VehicleOption.php | 54 + src/Vehicle/Controllers/MakesController.php | 43 + .../Controllers/ModelYearsController.php | 45 + src/Vehicle/Controllers/ModelsController.php | 43 + src/Vehicle/Data/makes.json | 534 + src/Vehicle/Data/models.json | 18236 + src/Vehicle/Data/options.json | 372762 +++++++++++++++ src/Vehicle/Data/vehicles.csv | 37277 ++ src/Vehicle/Data/years.json | 70482 +++ src/Vehicle/Models/VehicleMake.php | 28 + src/Vehicle/Models/VehicleModel.php | 50 + src/Vehicle/Models/VehicleModelYear.php | 50 + src/Vehicle/Models/VehicleOption.php | 90 + src/Vehicle/Traits/HasMake.php | 11 + src/Vehicle/Traits/HasModel.php | 11 + src/Vehicle/Traits/HasModelYear.php | 11 + src/Vehicle/VehicleMakesTableSeeder.php | 40 + src/Vehicle/VehicleModelYearsTableSeeder.php | 43 + src/Vehicle/VehicleModelsTableSeeder.php | 40 + src/Vehicle/VehicleOptionsTableSeeder.php | 46 + src/Vehicle/VehicleServiceProvider.php | 49 + src/config/vehicles.php | 23 + ...7_02_140555_create_vehicle_makes_table.php | 32 + ..._02_140804_create_vehicle_models_table.php | 36 + ...42644_create_vehicle_model_years_table.php | 36 + ...06_035601_create_vehicle_options_table.php | 42 + src/database/seeds/VehicleTablesSeeder.php | 23 + 41 files changed, 500894 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 src/Vehicle/Commands/ExportVehiclesData.php create mode 100644 src/Vehicle/Commands/GenerateVehiclesData.php create mode 100644 src/Vehicle/Contracts/HasMake.php create mode 100644 src/Vehicle/Contracts/HasModel.php create mode 100644 src/Vehicle/Contracts/HasModelYear.php create mode 100644 src/Vehicle/Contracts/VehicleMake.php create mode 100644 src/Vehicle/Contracts/VehicleModel.php create mode 100644 src/Vehicle/Contracts/VehicleModelYear.php create mode 100644 src/Vehicle/Contracts/VehicleOption.php create mode 100644 src/Vehicle/Controllers/MakesController.php create mode 100644 src/Vehicle/Controllers/ModelYearsController.php create mode 100644 src/Vehicle/Controllers/ModelsController.php create mode 100644 src/Vehicle/Data/makes.json create mode 100644 src/Vehicle/Data/models.json create mode 100644 src/Vehicle/Data/options.json create mode 100644 src/Vehicle/Data/vehicles.csv create mode 100644 src/Vehicle/Data/years.json create mode 100644 src/Vehicle/Models/VehicleMake.php create mode 100644 src/Vehicle/Models/VehicleModel.php create mode 100644 src/Vehicle/Models/VehicleModelYear.php create mode 100644 src/Vehicle/Models/VehicleOption.php create mode 100644 src/Vehicle/Traits/HasMake.php create mode 100644 src/Vehicle/Traits/HasModel.php create mode 100644 src/Vehicle/Traits/HasModelYear.php create mode 100644 src/Vehicle/VehicleMakesTableSeeder.php create mode 100644 src/Vehicle/VehicleModelYearsTableSeeder.php create mode 100644 src/Vehicle/VehicleModelsTableSeeder.php create mode 100644 src/Vehicle/VehicleOptionsTableSeeder.php create mode 100644 src/Vehicle/VehicleServiceProvider.php create mode 100644 src/config/vehicles.php create mode 100644 src/database/migrations/2016_07_02_140555_create_vehicle_makes_table.php create mode 100644 src/database/migrations/2016_07_02_140804_create_vehicle_models_table.php create mode 100644 src/database/migrations/2016_07_02_142644_create_vehicle_model_years_table.php create mode 100644 src/database/migrations/2016_07_06_035601_create_vehicle_options_table.php create mode 100644 src/database/seeds/VehicleTablesSeeder.php diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3b2d05e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.yml] +indent_style = space +indent_size = 2 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..407a850 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/vendor +Database Diagram.mwb \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9ab758a --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2016 Gerardo J. Báez + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..d784746 --- /dev/null +++ b/README.md @@ -0,0 +1,170 @@ +# Vehicles Data for Laravel 5.2 + +This package allows you to work with vehicles Makes, Models and Years in +Laravel 5.2. + +##### Where the data come from? + +The original list was collected from www.fueleconomy.gov. (They offer XML and +CSV files). The list is updated and validated against some industry standards. + +## Content + +- [Installation](#installation) + - [Composer](#composer) + - [Service Provider](#service-provider) + - [Config File, Migrations and Seeders](#config-file-migration-and-seeders) + - [Traits and Contracts](#traits-and-contracts) +- [Usage](#usage) + - [The CSV File](#the-csv-file) + - [Models](#models) + - [Controllers](#controllers) + - [Routes](#routes) +- [License](#license) + + +## Installation + +### Composer + +Pull this package through Composer (file `composer.json`) + +```js +{ + "require": { + "php": ">=5.5.9", + "laravel/framework": "5.2.*", + "gerardojbaez/vehicle": "0.*" + } +} +``` + +Run this command inside your terminal. + + composer update + +### Service Provider +Add the package to your application service providers in config/app.php file. +```php + [ + + [...] + + /** + * Third Party Service Providers... + */ + 'Gerardojbaez\Vehicle\VehicleServiceProvider', +] +``` + +### Config File, Migration and Seeders + +Publish package config file, migrations and seeders with the command: + + php artisan vendor:publish + +Then run migrations. + + php artisan migrate + +Then the vehicle seeder. + + php artisan db:seed --class VehiclesTablesSeeder + +### Traits and Contracts +When one of your models has make, model and/or model year you can add the required relations with our traits. See the following example: + +```php + You do not need to use all traits if you did not use all of them. You can use only `HasMake` trait when only make is used for example. + +## Usage + +### The CSV file + +All data is stored in a CSV file. This is done so it's easy to manage. + +File structure: + +| Make | Model | Year | cylinders | displacement | drive | transmission | class | +| --------- | ----------------- | ---- | ---------- | ------------- | ----------------- | ------------------------- | ------------- | +| Acura | ILX | 2017 | 4 | 2.4 | Front-Wheel Drive | 8-Speed Automated Manual | Compact Cars | + +#### Update the CSV file + +Export to the desired location: + + php artisan vehicle:export "/path/to/exported/file.csv" + +When you have done, run: + + php artisan vehicle:generate "/path/to/exported/file.csv" + php artisan db:seed --class VehicleTablesSeeder + +> The `vehicle:generate` command will generate individual files containing its own data to be used with seeders. +>> Remember to `migrate:refresh` if you have prevously seeded the database! + +### Models + +This package comes with `Gerardojbaez\Vehicle\Models\VehicleMake`, +`Gerardojbaez\Vehicle\Models\VehicleModel`, +`Gerardojbaez\Vehicle\Models\VehicleModelYear` and +`Gerardojbaez\Vehicle\Models\VehicleOption` models. + +For more information please take a look at each model. + +### Controllers +It's more likely that you will want to retrieve makes, models and years from your frontend (via ajax for example); we have created these basic controllers for you: +`Gerardojbaez\Vehicle\Controllers\MakesController`, +`Gerardojbaez\Vehicle\Controllers\ModelsController`, +`Gerardojbaez\Vehicle\Controllers\ModelYearsController`. You can use these directly or extends with your own. + +Controllers returns a json reponse containing (if any) the requested data. + +#### Routes + +This is an example. You can structure these routes as you want. + +```php + 'Gerardojbaez\Vehicle\Controllers\MakesController@makes', + 'as' => 'api.vehicles.makes' +]); + +// Show make models list +Route::get('api/vehicles/{make}/models', [ + 'uses' => 'Gerardojbaez\Vehicle\Controllers\ModelsController@models', + 'as' => 'api.vehicles.models' +]); + +// Show model years list +Route::get('api/vehicles/{make}/{model}/years', [ + 'uses' => 'Gerardojbaez\Vehicle\Controllers\ModelYearsController@years', + 'as' => 'api.vehicles.years' +]); +``` + +## License + +This package is free software distributed under the terms of the MIT license. diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..96e0b39 --- /dev/null +++ b/composer.json @@ -0,0 +1,20 @@ +{ + "name": "gerardojbaez/vehicle", + "description": "Laravel 5.2 package to work with vehicles data.", + "authors": [ + { + "name": "Gerardo Báez", + "email": "gerardojbaez@gmail.com" + } + ], + "minimum-stability": "dev", + "require": { + "php": ">=5.5.9", + "illuminate/support": "~5.0" + }, + "autoload": { + "psr-4": { + "Gerardojbaez\\Vehicle\\": "src/" + } + } +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..5c54190 --- /dev/null +++ b/composer.lock @@ -0,0 +1,236 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", + "This file is @generated automatically" + ], + "hash": "43f65e7cd028b4ad8f57a23709d85377", + "content-hash": "a784a37ec73a1afdd4c2904ae4c72369", + "packages": [ + { + "name": "doctrine/inflector", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "803a2ed9fea02f9ca47cd45395089fe78769a392" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/803a2ed9fea02f9ca47cd45395089fe78769a392", + "reference": "803a2ed9fea02f9ca47cd45395089fe78769a392", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "4.*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine\\Common\\Inflector\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Common String Manipulations with regard to casing and singular/plural rules.", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "inflection", + "pluralize", + "singularize", + "string" + ], + "time": "2016-05-12 17:23:41" + }, + { + "name": "illuminate/contracts", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/illuminate/contracts.git", + "reference": "54ea029a3c512efc56a93c25e2b0b17102276af8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/54ea029a3c512efc56a93c25e2b0b17102276af8", + "reference": "54ea029a3c512efc56a93c25e2b0b17102276af8", + "shasum": "" + }, + "require": { + "php": ">=5.6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.4-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Contracts\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylorotwell@gmail.com" + } + ], + "description": "The Illuminate Contracts package.", + "homepage": "http://laravel.com", + "time": "2016-06-30 14:17:23" + }, + { + "name": "illuminate/support", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/illuminate/support.git", + "reference": "b02d2cd18c6657a5fe9b02a3babc7de43d2f6df9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/support/zipball/b02d2cd18c6657a5fe9b02a3babc7de43d2f6df9", + "reference": "b02d2cd18c6657a5fe9b02a3babc7de43d2f6df9", + "shasum": "" + }, + "require": { + "doctrine/inflector": "~1.0", + "ext-mbstring": "*", + "illuminate/contracts": "5.4.*", + "paragonie/random_compat": "~1.4|~2.0", + "php": ">=5.6.4" + }, + "replace": { + "tightenco/collect": "self.version" + }, + "suggest": { + "illuminate/filesystem": "Required to use the composer class (5.2.*).", + "jeremeamia/superclosure": "Required to be able to serialize closures (~2.2).", + "symfony/process": "Required to use the composer class (3.2.*).", + "symfony/var-dumper": "Required to use the dd function (3.2.*)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.4-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Support\\": "" + }, + "files": [ + "helpers.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylorotwell@gmail.com" + } + ], + "description": "The Illuminate Support package.", + "homepage": "http://laravel.com", + "time": "2016-07-02 19:27:18" + }, + { + "name": "paragonie/random_compat", + "version": "v2.0.2", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/088c04e2f261c33bed6ca5245491cfca69195ccf", + "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf", + "shasum": "" + }, + "require": { + "php": ">=5.2.0" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "type": "library", + "autoload": { + "files": [ + "lib/random.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "pseudorandom", + "random" + ], + "time": "2016-04-03 06:00:07" + } + ], + "packages-dev": [], + "aliases": [], + "minimum-stability": "dev", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": { + "php": ">=5.5.9" + }, + "platform-dev": [] +} diff --git a/src/Vehicle/Commands/ExportVehiclesData.php b/src/Vehicle/Commands/ExportVehiclesData.php new file mode 100644 index 0000000..471c706 --- /dev/null +++ b/src/Vehicle/Commands/ExportVehiclesData.php @@ -0,0 +1,47 @@ +argument('path') ? $this->argument('path') : base_path('VEHICLES.csv')); + + copy(__DIR__.'/../Data/vehicles.csv', $path); + + $this->line("Exported to: ".$path); + } +} diff --git a/src/Vehicle/Commands/GenerateVehiclesData.php b/src/Vehicle/Commands/GenerateVehiclesData.php new file mode 100644 index 0000000..a8411ac --- /dev/null +++ b/src/Vehicle/Commands/GenerateVehiclesData.php @@ -0,0 +1,137 @@ +argument('path') ? $this->argument('path') : __DIR__.'/../Data/vehicles.csv'); + $isFirstRow = true; + $headers = []; + $rowNum = 1; + $makes = []; + $models = []; + $years = []; + $options = []; + + if (file_exists($csvFile) AND ($handle = fopen($csvFile, 'r')) !== false) + { + while (($row = fgetcsv($handle, 1000, ",")) !== FALSE) + { + if (empty($headers)) + { + $headers = array_flip($row); + continue; + } + + // Define some variables... + $makeAndModel = $row[$headers['make']].' '.$row[$headers['model']]; + $makeModelAndYear = $makeAndModel.' '.$row[$headers['year']]; + + // Add Makes + if ( ! array_key_exists($row[$headers['make']], $makes)) + { + $makes[$row[$headers['make']]] = [ + 'id' => $rowNum, + 'name' => $row[$headers['make']] + ]; + } + + // Add Models + if ( ! array_key_exists($makeAndModel, $models)) + { + $models[$makeAndModel] = [ + 'id' => $rowNum, + 'make_id' => $makes[$row[$headers['make']]]['id'], + 'name' => $row[$headers['model']], + 'class' => $row[$headers['class']] + ]; + } + + // Add Years + if ( ! array_key_exists($makeModelAndYear, $years)) + { + $years[$makeModelAndYear] = [ + 'id' => $rowNum, + 'model_id' => $models[$makeAndModel]['id'], + 'year' => $row[$headers['year']], + ]; + } + + $options[] = [ + 'id' => $rowNum, + 'make_id' => (int) $makes[$row[$headers['make']]]['id'], + 'model_id' => (int) $models[$makeAndModel]['id'], + 'year_id' => (int) $years[$makeModelAndYear]['id'], + 'cylinders' => (int) $row[$headers['cylinders']], + 'displacement' => (float) $row[$headers['displacement']], + 'drive' => $row[$headers['drive']], + 'transmission' => $row[$headers['transmission']], + ]; + + $rowNum++; + } + + fclose($handle); + + // Store files + $this->generate('makes.json', array_values($makes)); + $this->generate('models.json', array_values($models)); + $this->generate('years.json', array_values($years)); + $this->generate('options.json', array_values($options)); + + return; + } + + $this->error("Cannot open file. Are you sure that {$csvFile} exists?"); + } + + /** + * Generate files. + * + * @param string $fileName + * @param array $data + * @return void + */ + protected function generate($fileName, $data) + { + $handle = fopen(__DIR__.'/../Data/'.$fileName, 'w'); + fwrite($handle, json_encode($data, JSON_PRETTY_PRINT)); + fclose($handle); + + $this->line("Generated: {$fileName}"); + } +} diff --git a/src/Vehicle/Contracts/HasMake.php b/src/Vehicle/Contracts/HasMake.php new file mode 100644 index 0000000..14a844c --- /dev/null +++ b/src/Vehicle/Contracts/HasMake.php @@ -0,0 +1,13 @@ +model = $model; + } + + /** + * Show makes list. + * + * @return \Illuminate\Http\JsonResponse + */ + public function makes() + { + $makes = $this->model->orderBy('name')->get(['id', 'name']); + + return response()->json([ + 'makes' => $makes + ]); + } +} diff --git a/src/Vehicle/Controllers/ModelYearsController.php b/src/Vehicle/Controllers/ModelYearsController.php new file mode 100644 index 0000000..4bec84a --- /dev/null +++ b/src/Vehicle/Controllers/ModelYearsController.php @@ -0,0 +1,45 @@ +model = $model; + } + + /** + * Show make/model years list. + * + * @return \Illuminate\Http\JsonResponse + */ + public function years($make, $model) + { + $years = $this->model->byModel($model) + ->orderBy('year', 'DESC') + ->get(['id', 'year']); + + return response()->json([ + 'years' => $years + ]); + } +} diff --git a/src/Vehicle/Controllers/ModelsController.php b/src/Vehicle/Controllers/ModelsController.php new file mode 100644 index 0000000..96248dd --- /dev/null +++ b/src/Vehicle/Controllers/ModelsController.php @@ -0,0 +1,43 @@ +model = $model; + } + + /** + * Show make models list. + * + * @return \Illuminate\Http\JsonResponse + */ + public function models($make) + { + $models = $this->model->byMake($make)->orderBy('name')->get(['id', 'name']); + + return response()->json([ + 'models' => $models + ]); + } +} diff --git a/src/Vehicle/Data/makes.json b/src/Vehicle/Data/makes.json new file mode 100644 index 0000000..29b2243 --- /dev/null +++ b/src/Vehicle/Data/makes.json @@ -0,0 +1,534 @@ +[ + { + "id": 1, + "name": "Acura" + }, + { + "id": 298, + "name": "Alfa Romeo" + }, + { + "id": 343, + "name": "AM General" + }, + { + "id": 349, + "name": "American Motors Corporation" + }, + { + "id": 376, + "name": "ASC Incorporated" + }, + { + "id": 377, + "name": "Aston Martin" + }, + { + "id": 515, + "name": "Audi" + }, + { + "id": 1405, + "name": "Aurora Cars Ltd" + }, + { + "id": 1406, + "name": "Autokraft Limited" + }, + { + "id": 1410, + "name": "Avanti Motor Corporation" + }, + { + "id": 1412, + "name": "Azure Dynamics" + }, + { + "id": 1414, + "name": "Bentley" + }, + { + "id": 1522, + "name": "Bertone" + }, + { + "id": 1529, + "name": "Bill Dovell Motor Car Company" + }, + { + "id": 1533, + "name": "Bitter Gmbh and Co. Kg" + }, + { + "id": 1538, + "name": "BMW" + }, + { + "id": 3171, + "name": "BMW Alpina" + }, + { + "id": 3174, + "name": "Bugatti" + }, + { + "id": 3182, + "name": "Buick" + }, + { + "id": 3800, + "name": "BYD" + }, + { + "id": 3804, + "name": "Cadillac" + }, + { + "id": 4311, + "name": "CCC Engineering" + }, + { + "id": 4313, + "name": "Chevrolet" + }, + { + "id": 8052, + "name": "Chrysler" + }, + { + "id": 8751, + "name": "CODA Automotive" + }, + { + "id": 8753, + "name": "Consulier Industries Inc" + }, + { + "id": 8756, + "name": "CX Automotive" + }, + { + "id": 8773, + "name": "Dabryan Coach Builders Inc" + }, + { + "id": 8782, + "name": "Dacia" + }, + { + "id": 8785, + "name": "Daewoo" + }, + { + "id": 8852, + "name": "Daihatsu" + }, + { + "id": 8869, + "name": "Dodge" + }, + { + "id": 11372, + "name": "E. P. Dutton, Inc." + }, + { + "id": 11373, + "name": "Eagle" + }, + { + "id": 11534, + "name": "Environmental Rsch and Devp Corp" + }, + { + "id": 11535, + "name": "Evans Automobiles" + }, + { + "id": 11538, + "name": "Excalibur Autos" + }, + { + "id": 11539, + "name": "Federal Coach" + }, + { + "id": 11553, + "name": "Ferrari" + }, + { + "id": 11749, + "name": "Fiat" + }, + { + "id": 11789, + "name": "Fisker" + }, + { + "id": 11790, + "name": "Ford" + }, + { + "id": 14886, + "name": "General Motors" + }, + { + "id": 14887, + "name": "Genesis" + }, + { + "id": 14894, + "name": "Geo" + }, + { + "id": 15041, + "name": "GMC" + }, + { + "id": 17403, + "name": "Goldacre" + }, + { + "id": 17404, + "name": "Grumman Allied Industries" + }, + { + "id": 17405, + "name": "Grumman Olson" + }, + { + "id": 17409, + "name": "Honda" + }, + { + "id": 18278, + "name": "Hummer" + }, + { + "id": 18297, + "name": "Hyundai" + }, + { + "id": 18955, + "name": "Import Foreign Auto Sales Inc" + }, + { + "id": 18956, + "name": "Import Trade Services" + }, + { + "id": 18969, + "name": "Infiniti" + }, + { + "id": 19300, + "name": "Isis Imports Ltd" + }, + { + "id": 19301, + "name": "Isuzu" + }, + { + "id": 19735, + "name": "J.K. Motors" + }, + { + "id": 19771, + "name": "Jaguar" + }, + { + "id": 20115, + "name": "JBA Motorcars, Inc." + }, + { + "id": 20116, + "name": "Jeep" + }, + { + "id": 20936, + "name": "Kenyon Corporation Of America" + }, + { + "id": 20940, + "name": "Kia" + }, + { + "id": 21424, + "name": "Laforza Automobile Inc" + }, + { + "id": 21426, + "name": "Lambda Control Systems" + }, + { + "id": 21427, + "name": "Lamborghini" + }, + { + "id": 21534, + "name": "Land Rover" + }, + { + "id": 21676, + "name": "Lexus" + }, + { + "id": 22065, + "name": "Lincoln" + }, + { + "id": 22341, + "name": "London Coach Co Inc" + }, + { + "id": 22342, + "name": "London Taxi" + }, + { + "id": 22343, + "name": "Lotus" + }, + { + "id": 22398, + "name": "Mahindra" + }, + { + "id": 22399, + "name": "Maserati" + }, + { + "id": 22506, + "name": "Maybach" + }, + { + "id": 22537, + "name": "Mazda" + }, + { + "id": 23477, + "name": "Mcevoy Motors" + }, + { + "id": 23483, + "name": "McLaren Automotive" + }, + { + "id": 23494, + "name": "Mercedes-Benz" + }, + { + "id": 24769, + "name": "Mercury" + }, + { + "id": 25378, + "name": "Merkur" + }, + { + "id": 25392, + "name": "MINI" + }, + { + "id": 25696, + "name": "Mitsubishi" + }, + { + "id": 26716, + "name": "Mobility Ventures LLC" + }, + { + "id": 26718, + "name": "Morgan" + }, + { + "id": 26721, + "name": "Nissan" + }, + { + "id": 28049, + "name": "Oldsmobile" + }, + { + "id": 28511, + "name": "Pagani" + }, + { + "id": 28513, + "name": "Panos" + }, + { + "id": 28514, + "name": "Panoz Auto-Development" + }, + { + "id": 28515, + "name": "Panther Car Company Limited" + }, + { + "id": 28519, + "name": "PAS Inc - GMC" + }, + { + "id": 28521, + "name": "PAS, Inc" + }, + { + "id": 28523, + "name": "Peugeot" + }, + { + "id": 28621, + "name": "Pininfarina" + }, + { + "id": 28627, + "name": "Plymouth" + }, + { + "id": 29153, + "name": "Pontiac" + }, + { + "id": 30046, + "name": "Porsche" + }, + { + "id": 30915, + "name": "Quantum Technologies" + }, + { + "id": 30917, + "name": "Qvale" + }, + { + "id": 30918, + "name": "Ram" + }, + { + "id": 30970, + "name": "Red Shift Ltd." + }, + { + "id": 30972, + "name": "Renault" + }, + { + "id": 31028, + "name": "Rolls-Royce" + }, + { + "id": 31197, + "name": "Roush Performance" + }, + { + "id": 31250, + "name": "Ruf Automobile Gmbh" + }, + { + "id": 31253, + "name": "S and S Coach Company E.p. Dutton" + }, + { + "id": 31254, + "name": "Saab" + }, + { + "id": 31686, + "name": "Saleen" + }, + { + "id": 31691, + "name": "Saleen Performance" + }, + { + "id": 31696, + "name": "Saturn" + }, + { + "id": 31974, + "name": "Scion" + }, + { + "id": 32058, + "name": "Shelby" + }, + { + "id": 32059, + "name": "smart" + }, + { + "id": 32087, + "name": "Spyker" + }, + { + "id": 32100, + "name": "SRT" + }, + { + "id": 32102, + "name": "Sterling" + }, + { + "id": 32114, + "name": "Subaru" + }, + { + "id": 32937, + "name": "Superior Coaches Div E.p. Dutton" + }, + { + "id": 32938, + "name": "Suzuki" + }, + { + "id": 33453, + "name": "Tecstar, LP" + }, + { + "id": 33459, + "name": "Tesla" + }, + { + "id": 33487, + "name": "Texas Coach Company" + }, + { + "id": 33491, + "name": "Toyota" + }, + { + "id": 35373, + "name": "TVR Engineering Ltd" + }, + { + "id": 35377, + "name": "Vector" + }, + { + "id": 35381, + "name": "Vixen Motor Company" + }, + { + "id": 35382, + "name": "Volga Associated Automobile" + }, + { + "id": 35383, + "name": "Volkswagen" + }, + { + "id": 36478, + "name": "Volvo" + }, + { + "id": 37232, + "name": "VPG" + }, + { + "id": 37237, + "name": "Wallace Environmental" + }, + { + "id": 37269, + "name": "Yugo" + } +] \ No newline at end of file diff --git a/src/Vehicle/Data/models.json b/src/Vehicle/Data/models.json new file mode 100644 index 0000000..c1c88a3 --- /dev/null +++ b/src/Vehicle/Data/models.json @@ -0,0 +1,18236 @@ +[ + { + "id": 1, + "make_id": 1, + "name": "2.2CL\/3.0CL", + "class": "Subcompact Cars" + }, + { + "id": 4, + "make_id": 1, + "name": "2.3CL\/3.0CL", + "class": "Subcompact Cars" + }, + { + "id": 10, + "make_id": 1, + "name": "2.5TL", + "class": "Compact Cars" + }, + { + "id": 11, + "make_id": 1, + "name": "2.5TL\/3.2TL", + "class": "Compact Cars" + }, + { + "id": 17, + "make_id": 1, + "name": "3.2CL", + "class": "Compact Cars" + }, + { + "id": 21, + "make_id": 1, + "name": "3.2TL", + "class": "Midsize Cars" + }, + { + "id": 26, + "make_id": 1, + "name": "3.5RL", + "class": "Midsize Cars" + }, + { + "id": 35, + "make_id": 1, + "name": "ILX", + "class": "Compact Cars" + }, + { + "id": 43, + "make_id": 1, + "name": "ILX Hybrid", + "class": "Compact Cars" + }, + { + "id": 45, + "make_id": 1, + "name": "Integra", + "class": "Subcompact Cars" + }, + { + "id": 87, + "make_id": 1, + "name": "Legend", + "class": "Compact Cars" + }, + { + "id": 115, + "make_id": 1, + "name": "MDX", + "class": "Sport Utility Vehicle" + }, + { + "id": 140, + "make_id": 1, + "name": "NSX", + "class": "Two Seaters" + }, + { + "id": 168, + "make_id": 1, + "name": "NSX Hybrid", + "class": "Two Seaters" + }, + { + "id": 169, + "make_id": 1, + "name": "RDX", + "class": "Sport Utility Vehicle" + }, + { + "id": 188, + "make_id": 1, + "name": "RL", + "class": "Midsize Cars" + }, + { + "id": 196, + "make_id": 1, + "name": "RLX", + "class": "Midsize Cars" + }, + { + "id": 199, + "make_id": 1, + "name": "RLX Hybrid", + "class": "Midsize Cars" + }, + { + "id": 201, + "make_id": 1, + "name": "RSX", + "class": "Subcompact Cars" + }, + { + "id": 216, + "make_id": 1, + "name": "SLX", + "class": "Special Purpose Vehicle" + }, + { + "id": 222, + "make_id": 1, + "name": "TL", + "class": "Midsize Cars" + }, + { + "id": 251, + "make_id": 1, + "name": "TLX", + "class": "Compact Cars" + }, + { + "id": 257, + "make_id": 1, + "name": "TSX", + "class": "Compact Cars" + }, + { + "id": 284, + "make_id": 1, + "name": "TSX Wagon", + "class": "Small Station Wagons" + }, + { + "id": 288, + "make_id": 1, + "name": "Vigor", + "class": "Compact Cars" + }, + { + "id": 294, + "make_id": 1, + "name": "ZDX", + "class": "Sport Utility Vehicle" + }, + { + "id": 298, + "make_id": 298, + "name": "164", + "class": "Compact Cars" + }, + { + "id": 311, + "make_id": 298, + "name": "4C", + "class": "Two Seaters" + }, + { + "id": 313, + "make_id": 298, + "name": "8 C Spider", + "class": "Minicompact Cars" + }, + { + "id": 314, + "make_id": 298, + "name": "GT V6 2.5", + "class": "Minicompact Cars" + }, + { + "id": 317, + "make_id": 298, + "name": "GTV", + "class": "Minicompact Cars" + }, + { + "id": 319, + "make_id": 298, + "name": "Milano", + "class": "Subcompact Cars" + }, + { + "id": 328, + "make_id": 298, + "name": "Spider", + "class": "Two Seaters" + }, + { + "id": 340, + "make_id": 298, + "name": "Spider Veloce 2000", + "class": "Two Seaters" + }, + { + "id": 343, + "make_id": 343, + "name": "DJ Po Vehicle", + "class": "Special Purpose Vehicle" + }, + { + "id": 345, + "make_id": 343, + "name": "FJ8c Post Office", + "class": "Special Purpose Vehicle" + }, + { + "id": 347, + "make_id": 343, + "name": "Post Office DJ5", + "class": "Special Purpose Vehicle" + }, + { + "id": 348, + "make_id": 343, + "name": "Post Office DJ8", + "class": "Special Purpose Vehicle" + }, + { + "id": 349, + "make_id": 349, + "name": "Eagle", + "class": "Special Purpose Vehicle" + }, + { + "id": 362, + "make_id": 349, + "name": "Eagle 4DR Wagon", + "class": "Special Purpose Vehicle" + }, + { + "id": 365, + "make_id": 349, + "name": "Eagle SX\/4", + "class": "Special Purpose Vehicle" + }, + { + "id": 376, + "make_id": 376, + "name": "GNX", + "class": "Midsize Cars" + }, + { + "id": 377, + "make_id": 377, + "name": "DB AR1", + "class": "Two Seaters" + }, + { + "id": 379, + "make_id": 377, + "name": "DB-7 GT Coupe", + "class": "Minicompact Cars" + }, + { + "id": 380, + "make_id": 377, + "name": "DB-7 GT Volante", + "class": "Minicompact Cars" + }, + { + "id": 381, + "make_id": 377, + "name": "DB-7 Vantage Coupe", + "class": "Minicompact Cars" + }, + { + "id": 385, + "make_id": 377, + "name": "DB-7 Vantage Volante", + "class": "Minicompact Cars" + }, + { + "id": 389, + "make_id": 377, + "name": "DB7 Coupe", + "class": "Minicompact Cars" + }, + { + "id": 393, + "make_id": 377, + "name": "DB7 Volante", + "class": "Minicompact Cars" + }, + { + "id": 397, + "make_id": 377, + "name": "DB9", + "class": "Minicompact Cars" + }, + { + "id": 410, + "make_id": 377, + "name": "DB9 Coupe", + "class": "Minicompact Cars" + }, + { + "id": 414, + "make_id": 377, + "name": "DB9 Coupe Manual", + "class": "Minicompact Cars" + }, + { + "id": 417, + "make_id": 377, + "name": "DB9 Volante", + "class": "Minicompact Cars" + }, + { + "id": 422, + "make_id": 377, + "name": "DB9 Volante Manual", + "class": "Minicompact Cars" + }, + { + "id": 425, + "make_id": 377, + "name": "DBS", + "class": "Minicompact Cars" + }, + { + "id": 431, + "make_id": 377, + "name": "DBS Coupe", + "class": "Two Seaters" + }, + { + "id": 433, + "make_id": 377, + "name": "Lagonda", + "class": "Subcompact Cars" + }, + { + "id": 440, + "make_id": 377, + "name": "Rapide", + "class": "Subcompact Cars" + }, + { + "id": 443, + "make_id": 377, + "name": "Rapide S", + "class": "Subcompact Cars" + }, + { + "id": 446, + "make_id": 377, + "name": "Saloon\/vantage\/volante", + "class": "Subcompact Cars" + }, + { + "id": 448, + "make_id": 377, + "name": "Saloon\/Vantage\/Volante", + "class": "Subcompact Cars" + }, + { + "id": 460, + "make_id": 377, + "name": "V12 Vanquish", + "class": "Minicompact Cars" + }, + { + "id": 461, + "make_id": 377, + "name": "V12 Vanquish S", + "class": "Minicompact Cars" + }, + { + "id": 463, + "make_id": 377, + "name": "V12 Vantage", + "class": "Two Seaters" + }, + { + "id": 465, + "make_id": 377, + "name": "V12 Vantage S", + "class": "Two Seaters" + }, + { + "id": 467, + "make_id": 377, + "name": "V8 Vantage", + "class": "Two Seaters" + }, + { + "id": 488, + "make_id": 377, + "name": "V8 Vantage ASM", + "class": "Two Seaters" + }, + { + "id": 489, + "make_id": 377, + "name": "V8 Vantage S", + "class": "Two Seaters" + }, + { + "id": 499, + "make_id": 377, + "name": "Vanquish", + "class": "Two Seaters" + }, + { + "id": 504, + "make_id": 377, + "name": "Vantage GT", + "class": "Two Seaters" + }, + { + "id": 508, + "make_id": 377, + "name": "Virage", + "class": "Minicompact Cars" + }, + { + "id": 509, + "make_id": 377, + "name": "Virage Saloon", + "class": "Subcompact Cars" + }, + { + "id": 513, + "make_id": 377, + "name": "Virage\/Volante", + "class": "Subcompact Cars" + }, + { + "id": 515, + "make_id": 515, + "name": "80", + "class": "Subcompact Cars" + }, + { + "id": 519, + "make_id": 515, + "name": "90", + "class": "Subcompact Cars" + }, + { + "id": 528, + "make_id": 515, + "name": "100", + "class": "Midsize Cars" + }, + { + "id": 540, + "make_id": 515, + "name": "200", + "class": "Midsize Cars" + }, + { + "id": 544, + "make_id": 515, + "name": "4000", + "class": "Subcompact Cars" + }, + { + "id": 550, + "make_id": 515, + "name": "100 quattro", + "class": "Midsize Cars" + }, + { + "id": 559, + "make_id": 515, + "name": "100 quattro Wagon", + "class": "Small Station Wagons" + }, + { + "id": 562, + "make_id": 515, + "name": "100 Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 565, + "make_id": 515, + "name": "200 quattro", + "class": "Midsize Cars" + }, + { + "id": 567, + "make_id": 515, + "name": "200 quattro 20v", + "class": "Midsize Cars" + }, + { + "id": 568, + "make_id": 515, + "name": "200 quattro 20v Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 569, + "make_id": 515, + "name": "200 quattro Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 571, + "make_id": 515, + "name": "4000 CS quattro", + "class": "Subcompact Cars" + }, + { + "id": 573, + "make_id": 515, + "name": "4000 S", + "class": "Subcompact Cars" + }, + { + "id": 575, + "make_id": 515, + "name": "4000 S quattro", + "class": "Subcompact Cars" + }, + { + "id": 577, + "make_id": 515, + "name": "4000s", + "class": "Subcompact Cars" + }, + { + "id": 579, + "make_id": 515, + "name": "4000s quattro", + "class": "Subcompact Cars" + }, + { + "id": 581, + "make_id": 515, + "name": "5000 CS quattro", + "class": "Midsize Cars" + }, + { + "id": 584, + "make_id": 515, + "name": "5000 CS quattro Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 587, + "make_id": 515, + "name": "5000 CS Turbo", + "class": "Midsize Cars" + }, + { + "id": 591, + "make_id": 515, + "name": "5000 S", + "class": "Midsize Cars" + }, + { + "id": 601, + "make_id": 515, + "name": "5000 S quattro", + "class": "Midsize Cars" + }, + { + "id": 603, + "make_id": 515, + "name": "5000S", + "class": "Midsize Cars" + }, + { + "id": 613, + "make_id": 515, + "name": "5000S Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 627, + "make_id": 515, + "name": "80 quattro", + "class": "Subcompact Cars" + }, + { + "id": 630, + "make_id": 515, + "name": "80\/90", + "class": "Subcompact Cars" + }, + { + "id": 639, + "make_id": 515, + "name": "80\/90 quattro", + "class": "Subcompact Cars" + }, + { + "id": 641, + "make_id": 515, + "name": "90 quattro", + "class": "Subcompact Cars" + }, + { + "id": 644, + "make_id": 515, + "name": "90 quattro 20v", + "class": "Subcompact Cars" + }, + { + "id": 646, + "make_id": 515, + "name": "A3", + "class": "Small Station Wagons" + }, + { + "id": 669, + "make_id": 515, + "name": "A3 Cabriolet", + "class": "Subcompact Cars" + }, + { + "id": 671, + "make_id": 515, + "name": "A3 Cabriolet quattro", + "class": "Subcompact Cars" + }, + { + "id": 673, + "make_id": 515, + "name": "A3 e-tron", + "class": "Compact Cars" + }, + { + "id": 674, + "make_id": 515, + "name": "A3 e-tron ultra", + "class": "Compact Cars" + }, + { + "id": 675, + "make_id": 515, + "name": "A3 quattro", + "class": "Small Station Wagons" + }, + { + "id": 686, + "make_id": 515, + "name": "A4", + "class": "Compact Cars" + }, + { + "id": 738, + "make_id": 515, + "name": "A4 Avant", + "class": "Small Station Wagons" + }, + { + "id": 740, + "make_id": 515, + "name": "A4 Avant quattro", + "class": "Small Station Wagons" + }, + { + "id": 789, + "make_id": 515, + "name": "A4 Cabriolet", + "class": "Subcompact Cars" + }, + { + "id": 799, + "make_id": 515, + "name": "A4 Cabriolet quattro", + "class": "Subcompact Cars" + }, + { + "id": 808, + "make_id": 515, + "name": "A4 quattro", + "class": "Compact Cars" + }, + { + "id": 879, + "make_id": 515, + "name": "A5 Cabriolet", + "class": "Subcompact Cars" + }, + { + "id": 884, + "make_id": 515, + "name": "A5 Cabriolet quattro", + "class": "Subcompact Cars" + }, + { + "id": 892, + "make_id": 515, + "name": "A5 quattro", + "class": "Subcompact Cars" + }, + { + "id": 912, + "make_id": 515, + "name": "A6", + "class": "Compact Cars" + }, + { + "id": 934, + "make_id": 515, + "name": "A6 Avant quattro", + "class": "Midsize Station Wagons" + }, + { + "id": 946, + "make_id": 515, + "name": "A6 quattro", + "class": "Compact Cars" + }, + { + "id": 998, + "make_id": 515, + "name": "A6 quattro Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1001, + "make_id": 515, + "name": "A6 Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1004, + "make_id": 515, + "name": "A6 Wagon quattro", + "class": "Small Station Wagons" + }, + { + "id": 1005, + "make_id": 515, + "name": "A7 quattro", + "class": "Midsize Cars" + }, + { + "id": 1013, + "make_id": 515, + "name": "A8", + "class": "Midsize Cars" + }, + { + "id": 1033, + "make_id": 515, + "name": "A8 L", + "class": "Large Cars" + }, + { + "id": 1067, + "make_id": 515, + "name": "A8 quattro", + "class": "Midsize Cars" + }, + { + "id": 1071, + "make_id": 515, + "name": "Allroad", + "class": "Sport Utility Vehicle" + }, + { + "id": 1075, + "make_id": 515, + "name": "Allroad quattro", + "class": "Sport Utility Vehicle" + }, + { + "id": 1083, + "make_id": 515, + "name": "allroad quattro", + "class": "Small Station Wagons" + }, + { + "id": 1088, + "make_id": 515, + "name": "Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 1094, + "make_id": 515, + "name": "Coupe GT", + "class": "Subcompact Cars" + }, + { + "id": 1110, + "make_id": 515, + "name": "Coupe quattro", + "class": "Subcompact Cars" + }, + { + "id": 1112, + "make_id": 515, + "name": "Q3", + "class": "Compact Cars" + }, + { + "id": 1114, + "make_id": 515, + "name": "Q3 quattro", + "class": "Compact Cars" + }, + { + "id": 1116, + "make_id": 515, + "name": "Q5", + "class": "Sport Utility Vehicle" + }, + { + "id": 1134, + "make_id": 515, + "name": "Q5 Hybrid", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 1138, + "make_id": 515, + "name": "Q7", + "class": "Sport Utility Vehicle" + }, + { + "id": 1159, + "make_id": 515, + "name": "Quattro", + "class": "Subcompact Cars" + }, + { + "id": 1162, + "make_id": 515, + "name": "R8", + "class": "Two Seaters" + }, + { + "id": 1187, + "make_id": 515, + "name": "R8 Spyder", + "class": "Two Seaters" + }, + { + "id": 1204, + "make_id": 515, + "name": "RS 5", + "class": "Subcompact Cars" + }, + { + "id": 1207, + "make_id": 515, + "name": "RS 5 Cabriolet", + "class": "Subcompact Cars" + }, + { + "id": 1210, + "make_id": 515, + "name": "RS 7", + "class": "Midsize Cars" + }, + { + "id": 1213, + "make_id": 515, + "name": "RS4", + "class": "Compact Cars" + }, + { + "id": 1215, + "make_id": 515, + "name": "RS4 Cabriolet", + "class": "Subcompact Cars" + }, + { + "id": 1216, + "make_id": 515, + "name": "RS6", + "class": "Midsize Cars" + }, + { + "id": 1217, + "make_id": 515, + "name": "S3", + "class": "Subcompact Cars" + }, + { + "id": 1219, + "make_id": 515, + "name": "S4", + "class": "Midsize Cars" + }, + { + "id": 1252, + "make_id": 515, + "name": "S4 Avant", + "class": "Small Station Wagons" + }, + { + "id": 1266, + "make_id": 515, + "name": "S4 Cabriolet", + "class": "Subcompact Cars" + }, + { + "id": 1278, + "make_id": 515, + "name": "S5", + "class": "Subcompact Cars" + }, + { + "id": 1296, + "make_id": 515, + "name": "S5 Cabriolet", + "class": "Subcompact Cars" + }, + { + "id": 1303, + "make_id": 515, + "name": "S6", + "class": "Compact Cars" + }, + { + "id": 1313, + "make_id": 515, + "name": "S6 Avant", + "class": "Midsize Station Wagons" + }, + { + "id": 1315, + "make_id": 515, + "name": "S6 Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1316, + "make_id": 515, + "name": "S7", + "class": "Midsize Cars" + }, + { + "id": 1320, + "make_id": 515, + "name": "S8", + "class": "Midsize Cars" + }, + { + "id": 1328, + "make_id": 515, + "name": "S8 quattro", + "class": "Midsize Cars" + }, + { + "id": 1330, + "make_id": 515, + "name": "SQ5", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 1333, + "make_id": 515, + "name": "TT Coupe", + "class": "Minicompact Cars" + }, + { + "id": 1342, + "make_id": 515, + "name": "TT Coupe quattro", + "class": "Minicompact Cars" + }, + { + "id": 1366, + "make_id": 515, + "name": "TT Roadster", + "class": "Two Seaters" + }, + { + "id": 1374, + "make_id": 515, + "name": "TT Roadster quattro", + "class": "Two Seaters" + }, + { + "id": 1395, + "make_id": 515, + "name": "TT RS Coupe", + "class": "Subcompact Cars" + }, + { + "id": 1397, + "make_id": 515, + "name": "TTS Coupe", + "class": "Subcompact Cars" + }, + { + "id": 1398, + "make_id": 515, + "name": "V8", + "class": "Midsize Cars" + }, + { + "id": 1405, + "make_id": 1405, + "name": "Aurora", + "class": "Two Seaters" + }, + { + "id": 1406, + "make_id": 1406, + "name": "A.C.MARK IV", + "class": "Two Seaters" + }, + { + "id": 1408, + "make_id": 1406, + "name": "A.C.Mkiv", + "class": "Two Seaters" + }, + { + "id": 1410, + "make_id": 1410, + "name": "Avanti II", + "class": "Minicompact Cars" + }, + { + "id": 1412, + "make_id": 1412, + "name": "Transit Connect Electric Van", + "class": "Special Purpose Vehicle" + }, + { + "id": 1413, + "make_id": 1412, + "name": "Transit Connect Electric Wagon", + "class": "Special Purpose Vehicle" + }, + { + "id": 1414, + "make_id": 1414, + "name": "Arnage", + "class": "Midsize Cars" + }, + { + "id": 1426, + "make_id": 1414, + "name": "Arnage LWB", + "class": "Large Cars" + }, + { + "id": 1431, + "make_id": 1414, + "name": "Arnage RL", + "class": "Large Cars" + }, + { + "id": 1433, + "make_id": 1414, + "name": "Azure", + "class": "Subcompact Cars" + }, + { + "id": 1442, + "make_id": 1414, + "name": "Brooklands", + "class": "Compact Cars" + }, + { + "id": 1444, + "make_id": 1414, + "name": "Brooklands R", + "class": "Midsize Cars" + }, + { + "id": 1445, + "make_id": 1414, + "name": "Brooklands R Limo", + "class": "Large Cars" + }, + { + "id": 1447, + "make_id": 1414, + "name": "Continental Flying Spur", + "class": "Midsize Cars" + }, + { + "id": 1455, + "make_id": 1414, + "name": "Continental GT", + "class": "Compact Cars" + }, + { + "id": 1472, + "make_id": 1414, + "name": "Continental GT Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1476, + "make_id": 1414, + "name": "Continental GT Speed Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1477, + "make_id": 1414, + "name": "Continental GT3-R", + "class": "Two Seaters" + }, + { + "id": 1478, + "make_id": 1414, + "name": "Continental GTC", + "class": "Subcompact Cars" + }, + { + "id": 1489, + "make_id": 1414, + "name": "Continental R", + "class": "Compact Cars" + }, + { + "id": 1494, + "make_id": 1414, + "name": "Continental SC", + "class": "Subcompact Cars" + }, + { + "id": 1498, + "make_id": 1414, + "name": "Continental Supersports", + "class": "Two Seaters" + }, + { + "id": 1501, + "make_id": 1414, + "name": "Continental Supersports Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1504, + "make_id": 1414, + "name": "Continental T", + "class": "Subcompact Cars" + }, + { + "id": 1509, + "make_id": 1414, + "name": "Flying Spur", + "class": "Midsize Cars" + }, + { + "id": 1514, + "make_id": 1414, + "name": "Mulsanne", + "class": "Midsize Cars" + }, + { + "id": 1520, + "make_id": 1414, + "name": "Turbo RT", + "class": "Midsize Cars" + }, + { + "id": 1522, + "make_id": 1522, + "name": "X1\/9", + "class": "Two Seaters" + }, + { + "id": 1529, + "make_id": 1529, + "name": "Dovell 230CE", + "class": "Compact Cars" + }, + { + "id": 1531, + "make_id": 1529, + "name": "Dovell 230E", + "class": "Compact Cars" + }, + { + "id": 1533, + "make_id": 1533, + "name": "Bitter SC", + "class": "Compact Cars" + }, + { + "id": 1536, + "make_id": 1533, + "name": "SC", + "class": "Midsize Cars" + }, + { + "id": 1538, + "make_id": 1538, + "name": "128ci Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1546, + "make_id": 1538, + "name": "128i", + "class": "Subcompact Cars" + }, + { + "id": 1558, + "make_id": 1538, + "name": "128i Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1562, + "make_id": 1538, + "name": "135i", + "class": "Subcompact Cars" + }, + { + "id": 1574, + "make_id": 1538, + "name": "135i Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1586, + "make_id": 1538, + "name": "228i", + "class": "Subcompact Cars" + }, + { + "id": 1592, + "make_id": 1538, + "name": "228i Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1594, + "make_id": 1538, + "name": "228i xDrive", + "class": "Subcompact Cars" + }, + { + "id": 1596, + "make_id": 1538, + "name": "228i xDrive Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1598, + "make_id": 1538, + "name": "3 Series", + "class": "Subcompact Cars" + }, + { + "id": 1624, + "make_id": 1538, + "name": "318i", + "class": "Subcompact Cars" + }, + { + "id": 1625, + "make_id": 1538, + "name": "318i Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1635, + "make_id": 1538, + "name": "318i\/318iS", + "class": "Subcompact Cars" + }, + { + "id": 1636, + "make_id": 1538, + "name": "318i\/318is", + "class": "Subcompact Cars" + }, + { + "id": 1652, + "make_id": 1538, + "name": "318is", + "class": "Subcompact Cars" + }, + { + "id": 1655, + "make_id": 1538, + "name": "318is Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1656, + "make_id": 1538, + "name": "318ti", + "class": "Compact Cars" + }, + { + "id": 1668, + "make_id": 1538, + "name": "320i", + "class": "Compact Cars" + }, + { + "id": 1676, + "make_id": 1538, + "name": "320i xDrive", + "class": "Compact Cars" + }, + { + "id": 1681, + "make_id": 1538, + "name": "323ci", + "class": "Subcompact Cars" + }, + { + "id": 1683, + "make_id": 1538, + "name": "323i", + "class": "Compact Cars" + }, + { + "id": 1688, + "make_id": 1538, + "name": "323i Convertible", + "class": "Minicompact Cars" + }, + { + "id": 1694, + "make_id": 1538, + "name": "323i Touring", + "class": "Small Station Wagons" + }, + { + "id": 1696, + "make_id": 1538, + "name": "323is", + "class": "Subcompact Cars" + }, + { + "id": 1700, + "make_id": 1538, + "name": "325ci", + "class": "Subcompact Cars" + }, + { + "id": 1713, + "make_id": 1538, + "name": "325ci Convertible", + "class": "Minicompact Cars" + }, + { + "id": 1726, + "make_id": 1538, + "name": "325i", + "class": "Compact Cars" + }, + { + "id": 1741, + "make_id": 1538, + "name": "325i Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1754, + "make_id": 1538, + "name": "325i Sport Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1765, + "make_id": 1538, + "name": "325i\/325is", + "class": "Subcompact Cars" + }, + { + "id": 1771, + "make_id": 1538, + "name": "325i\/325iS", + "class": "Subcompact Cars" + }, + { + "id": 1779, + "make_id": 1538, + "name": "325ic", + "class": "Compact Cars" + }, + { + "id": 1780, + "make_id": 1538, + "name": "325is", + "class": "Compact Cars" + }, + { + "id": 1781, + "make_id": 1538, + "name": "325ix", + "class": "Subcompact Cars" + }, + { + "id": 1787, + "make_id": 1538, + "name": "325xi", + "class": "Compact Cars" + }, + { + "id": 1799, + "make_id": 1538, + "name": "325xi Sport Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1811, + "make_id": 1538, + "name": "328ci", + "class": "Subcompact Cars" + }, + { + "id": 1823, + "make_id": 1538, + "name": "328ci Convertible", + "class": "Subcompact Cars" + }, + { + "id": 1835, + "make_id": 1538, + "name": "328ci xDrive", + "class": "Subcompact Cars" + }, + { + "id": 1841, + "make_id": 1538, + "name": "328cxi", + "class": "Subcompact Cars" + }, + { + "id": 1845, + "make_id": 1538, + "name": "328d", + "class": "Compact Cars" + }, + { + "id": 1848, + "make_id": 1538, + "name": "328d xDrive", + "class": "Compact Cars" + }, + { + "id": 1851, + "make_id": 1538, + "name": "328d xDrive Sports Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1854, + "make_id": 1538, + "name": "328i", + "class": "Compact Cars" + }, + { + "id": 1879, + "make_id": 1538, + "name": "328i Convertible", + "class": "Minicompact Cars" + }, + { + "id": 1887, + "make_id": 1538, + "name": "328i Coupe", + "class": "Subcompact Cars" + }, + { + "id": 1891, + "make_id": 1538, + "name": "328i Coupe xDrive", + "class": "Subcompact Cars" + }, + { + "id": 1895, + "make_id": 1538, + "name": "328i Sport Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1905, + "make_id": 1538, + "name": "328i Sport Wagon xDrive", + "class": "Small Station Wagons" + }, + { + "id": 1909, + "make_id": 1538, + "name": "328i Sports Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1911, + "make_id": 1538, + "name": "328i xDrive", + "class": "Compact Cars" + }, + { + "id": 1921, + "make_id": 1538, + "name": "328i xDrive Gran Turismo", + "class": "Large Cars" + }, + { + "id": 1924, + "make_id": 1538, + "name": "328i xDrive Sport Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1926, + "make_id": 1538, + "name": "328i xDrive Sports Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1931, + "make_id": 1538, + "name": "328i\/328is", + "class": "Subcompact Cars" + }, + { + "id": 1937, + "make_id": 1538, + "name": "328ic", + "class": "Minicompact Cars" + }, + { + "id": 1939, + "make_id": 1538, + "name": "328is", + "class": "Subcompact Cars" + }, + { + "id": 1941, + "make_id": 1538, + "name": "328xi", + "class": "Compact Cars" + }, + { + "id": 1945, + "make_id": 1538, + "name": "328xi Sport Wagon", + "class": "Small Station Wagons" + }, + { + "id": 1949, + "make_id": 1538, + "name": "330ci", + "class": "Subcompact Cars" + }, + { + "id": 1963, + "make_id": 1538, + "name": "330ci Convertible", + "class": "Minicompact Cars" + }, + { + "id": 1977, + "make_id": 1538, + "name": "330e", + "class": "Compact Cars" + }, + { + "id": 1978, + "make_id": 1538, + "name": "330i", + "class": "Compact Cars" + }, + { + "id": 1994, + "make_id": 1538, + "name": "330xi", + "class": "Compact Cars" + }, + { + "id": 2007, + "make_id": 1538, + "name": "335ci", + "class": "Subcompact Cars" + }, + { + "id": 2017, + "make_id": 1538, + "name": "335ci Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2029, + "make_id": 1538, + "name": "335ci xDrive", + "class": "Subcompact Cars" + }, + { + "id": 2035, + "make_id": 1538, + "name": "335cxi", + "class": "Subcompact Cars" + }, + { + "id": 2037, + "make_id": 1538, + "name": "335d", + "class": "Compact Cars" + }, + { + "id": 2040, + "make_id": 1538, + "name": "335i", + "class": "Compact Cars" + }, + { + "id": 2058, + "make_id": 1538, + "name": "335i Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2060, + "make_id": 1538, + "name": "335i Coupe", + "class": "Subcompact Cars" + }, + { + "id": 2064, + "make_id": 1538, + "name": "335i Coupe xDrive", + "class": "Subcompact Cars" + }, + { + "id": 2068, + "make_id": 1538, + "name": "335i xDrive", + "class": "Compact Cars" + }, + { + "id": 2080, + "make_id": 1538, + "name": "335i xDrive Gran Turismo", + "class": "Large Cars" + }, + { + "id": 2083, + "make_id": 1538, + "name": "335is Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2089, + "make_id": 1538, + "name": "335is Coupe", + "class": "Subcompact Cars" + }, + { + "id": 2095, + "make_id": 1538, + "name": "335xi", + "class": "Compact Cars" + }, + { + "id": 2099, + "make_id": 1538, + "name": "340i", + "class": "Compact Cars" + }, + { + "id": 2101, + "make_id": 1538, + "name": "340i xDrive", + "class": "Compact Cars" + }, + { + "id": 2103, + "make_id": 1538, + "name": "428i Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2106, + "make_id": 1538, + "name": "428i Coupe", + "class": "Compact Cars" + }, + { + "id": 2112, + "make_id": 1538, + "name": "428i Gran Coupe", + "class": "Compact Cars" + }, + { + "id": 2114, + "make_id": 1538, + "name": "428i xDrive Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2117, + "make_id": 1538, + "name": "428i xDrive Coupe", + "class": "Compact Cars" + }, + { + "id": 2120, + "make_id": 1538, + "name": "428i xDrive Gran Coupe", + "class": "Compact Cars" + }, + { + "id": 2122, + "make_id": 1538, + "name": "435i Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2125, + "make_id": 1538, + "name": "435i Coupe", + "class": "Compact Cars" + }, + { + "id": 2131, + "make_id": 1538, + "name": "435i Gran Coupe", + "class": "Compact Cars" + }, + { + "id": 2133, + "make_id": 1538, + "name": "435i xDrive Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2135, + "make_id": 1538, + "name": "435i xDrive Coupe", + "class": "Compact Cars" + }, + { + "id": 2141, + "make_id": 1538, + "name": "435i xDrive Gran Coupe", + "class": "Compact Cars" + }, + { + "id": 2143, + "make_id": 1538, + "name": "5 Series", + "class": "Compact Cars" + }, + { + "id": 2166, + "make_id": 1538, + "name": "525i", + "class": "Compact Cars" + }, + { + "id": 2196, + "make_id": 1538, + "name": "525i Sport Wagon", + "class": "Small Station Wagons" + }, + { + "id": 2202, + "make_id": 1538, + "name": "525i Touring", + "class": "Small Station Wagons" + }, + { + "id": 2206, + "make_id": 1538, + "name": "525xi", + "class": "Midsize Cars" + }, + { + "id": 2210, + "make_id": 1538, + "name": "528i", + "class": "Compact Cars" + }, + { + "id": 2231, + "make_id": 1538, + "name": "528i Sport Wagon", + "class": "Small Station Wagons" + }, + { + "id": 2234, + "make_id": 1538, + "name": "528i Touring", + "class": "Small Station Wagons" + }, + { + "id": 2236, + "make_id": 1538, + "name": "528i xDrive", + "class": "Midsize Cars" + }, + { + "id": 2245, + "make_id": 1538, + "name": "528xi", + "class": "Midsize Cars" + }, + { + "id": 2247, + "make_id": 1538, + "name": "530i", + "class": "Compact Cars" + }, + { + "id": 2271, + "make_id": 1538, + "name": "530i Touring", + "class": "Small Station Wagons" + }, + { + "id": 2274, + "make_id": 1538, + "name": "530xi", + "class": "Midsize Cars" + }, + { + "id": 2278, + "make_id": 1538, + "name": "530xi Sport Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 2282, + "make_id": 1538, + "name": "535d", + "class": "Midsize Cars" + }, + { + "id": 2285, + "make_id": 1538, + "name": "535d xDrive", + "class": "Midsize Cars" + }, + { + "id": 2288, + "make_id": 1538, + "name": "535i", + "class": "Compact Cars" + }, + { + "id": 2315, + "make_id": 1538, + "name": "535i Gran Turismo", + "class": "Large Cars" + }, + { + "id": 2322, + "make_id": 1538, + "name": "535i Sport Wagon xDrive", + "class": "Midsize Station Wagons" + }, + { + "id": 2326, + "make_id": 1538, + "name": "535i xDrive", + "class": "Midsize Cars" + }, + { + "id": 2336, + "make_id": 1538, + "name": "535i xDrive Gran Turismo", + "class": "Large Cars" + }, + { + "id": 2342, + "make_id": 1538, + "name": "535xi", + "class": "Midsize Cars" + }, + { + "id": 2344, + "make_id": 1538, + "name": "535xi Sport Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 2346, + "make_id": 1538, + "name": "540i", + "class": "Compact Cars" + }, + { + "id": 2368, + "make_id": 1538, + "name": "540i Sport Wagon", + "class": "Small Station Wagons" + }, + { + "id": 2372, + "make_id": 1538, + "name": "540i Touring", + "class": "Small Station Wagons" + }, + { + "id": 2373, + "make_id": 1538, + "name": "545i", + "class": "Midsize Cars" + }, + { + "id": 2379, + "make_id": 1538, + "name": "550 GT", + "class": "Large Cars" + }, + { + "id": 2380, + "make_id": 1538, + "name": "550i", + "class": "Midsize Cars" + }, + { + "id": 2401, + "make_id": 1538, + "name": "550i Gran Turismo", + "class": "Large Cars" + }, + { + "id": 2406, + "make_id": 1538, + "name": "550i xDrive", + "class": "Midsize Cars" + }, + { + "id": 2412, + "make_id": 1538, + "name": "550i xDrive Gran Turismo", + "class": "Large Cars" + }, + { + "id": 2418, + "make_id": 1538, + "name": "550i xDrive GT", + "class": "Large Cars" + }, + { + "id": 2419, + "make_id": 1538, + "name": "6 Series", + "class": "Subcompact Cars" + }, + { + "id": 2431, + "make_id": 1538, + "name": "635csi", + "class": "Subcompact Cars" + }, + { + "id": 2433, + "make_id": 1538, + "name": "640i Convertible", + "class": "Compact Cars" + }, + { + "id": 2439, + "make_id": 1538, + "name": "640i Coupe", + "class": "Compact Cars" + }, + { + "id": 2445, + "make_id": 1538, + "name": "640i Gran Coupe", + "class": "Compact Cars" + }, + { + "id": 2450, + "make_id": 1538, + "name": "640i xDrive Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2454, + "make_id": 1538, + "name": "640i xDrive Coupe", + "class": "Subcompact Cars" + }, + { + "id": 2458, + "make_id": 1538, + "name": "640i xDrive Gran Coupe", + "class": "Compact Cars" + }, + { + "id": 2462, + "make_id": 1538, + "name": "645ci", + "class": "Subcompact Cars" + }, + { + "id": 2468, + "make_id": 1538, + "name": "645ci Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2474, + "make_id": 1538, + "name": "650ci", + "class": "Subcompact Cars" + }, + { + "id": 2486, + "make_id": 1538, + "name": "650ci Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2498, + "make_id": 1538, + "name": "650i Convertible", + "class": "Compact Cars" + }, + { + "id": 2504, + "make_id": 1538, + "name": "650i Convertible xDrive", + "class": "Compact Cars" + }, + { + "id": 2506, + "make_id": 1538, + "name": "650i Coupe", + "class": "Compact Cars" + }, + { + "id": 2512, + "make_id": 1538, + "name": "650i Coupe xDrive", + "class": "Compact Cars" + }, + { + "id": 2514, + "make_id": 1538, + "name": "650i Gran Coupe", + "class": "Compact Cars" + }, + { + "id": 2518, + "make_id": 1538, + "name": "650i xDrive Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2522, + "make_id": 1538, + "name": "650i xDrive Coupe", + "class": "Subcompact Cars" + }, + { + "id": 2526, + "make_id": 1538, + "name": "650i xDrive Gran Coupe", + "class": "Compact Cars" + }, + { + "id": 2531, + "make_id": 1538, + "name": "7 Series", + "class": "Compact Cars" + }, + { + "id": 2541, + "make_id": 1538, + "name": "735i", + "class": "Midsize Cars" + }, + { + "id": 2549, + "make_id": 1538, + "name": "735i Luxury", + "class": "Midsize Cars" + }, + { + "id": 2550, + "make_id": 1538, + "name": "735il", + "class": "Midsize Cars" + }, + { + "id": 2557, + "make_id": 1538, + "name": "740i", + "class": "Midsize Cars" + }, + { + "id": 2571, + "make_id": 1538, + "name": "740i xDrive", + "class": "Large Cars" + }, + { + "id": 2572, + "make_id": 1538, + "name": "740i\/740i Sport", + "class": "Midsize Cars" + }, + { + "id": 2574, + "make_id": 1538, + "name": "740il", + "class": "Midsize Cars" + }, + { + "id": 2582, + "make_id": 1538, + "name": "740il\/740il Protection", + "class": "Large Cars" + }, + { + "id": 2583, + "make_id": 1538, + "name": "740Ld xDrive", + "class": "Large Cars" + }, + { + "id": 2584, + "make_id": 1538, + "name": "740Li", + "class": "Large Cars" + }, + { + "id": 2589, + "make_id": 1538, + "name": "740Li xDrive", + "class": "Large Cars" + }, + { + "id": 2592, + "make_id": 1538, + "name": "745i", + "class": "Large Cars" + }, + { + "id": 2596, + "make_id": 1538, + "name": "745li", + "class": "Large Cars" + }, + { + "id": 2600, + "make_id": 1538, + "name": "750 Series", + "class": "Large Cars" + }, + { + "id": 2601, + "make_id": 1538, + "name": "750i", + "class": "Large Cars" + }, + { + "id": 2613, + "make_id": 1538, + "name": "750i xDrive", + "class": "Large Cars" + }, + { + "id": 2620, + "make_id": 1538, + "name": "750il", + "class": "Midsize Cars" + }, + { + "id": 2634, + "make_id": 1538, + "name": "750il\/750il Protection", + "class": "Large Cars" + }, + { + "id": 2635, + "make_id": 1538, + "name": "750li", + "class": "Large Cars" + }, + { + "id": 2639, + "make_id": 1538, + "name": "750Li", + "class": "Large Cars" + }, + { + "id": 2645, + "make_id": 1538, + "name": "750Li xDrive", + "class": "Large Cars" + }, + { + "id": 2651, + "make_id": 1538, + "name": "760i", + "class": "Large Cars" + }, + { + "id": 2654, + "make_id": 1538, + "name": "760li", + "class": "Large Cars" + }, + { + "id": 2660, + "make_id": 1538, + "name": "760Li", + "class": "Large Cars" + }, + { + "id": 2666, + "make_id": 1538, + "name": "840ci", + "class": "Subcompact Cars" + }, + { + "id": 2670, + "make_id": 1538, + "name": "850ci", + "class": "Subcompact Cars" + }, + { + "id": 2676, + "make_id": 1538, + "name": "850csi", + "class": "Subcompact Cars" + }, + { + "id": 2678, + "make_id": 1538, + "name": "850i", + "class": "Subcompact Cars" + }, + { + "id": 2682, + "make_id": 1538, + "name": "Active E", + "class": "Subcompact Cars" + }, + { + "id": 2683, + "make_id": 1538, + "name": "ActiveHybrid 3", + "class": "Compact Cars" + }, + { + "id": 2686, + "make_id": 1538, + "name": "ActiveHybrid 5", + "class": "Midsize Cars" + }, + { + "id": 2691, + "make_id": 1538, + "name": "ActiveHybrid 7", + "class": "Midsize Cars" + }, + { + "id": 2692, + "make_id": 1538, + "name": "ActiveHybrid 7i", + "class": "Midsize Cars" + }, + { + "id": 2693, + "make_id": 1538, + "name": "ActiveHybrid 7L", + "class": "Large Cars" + }, + { + "id": 2697, + "make_id": 1538, + "name": "ActiveHybrid 7Li", + "class": "Large Cars" + }, + { + "id": 2698, + "make_id": 1538, + "name": "ActiveHybrid X6", + "class": "Sport Utility Vehicle" + }, + { + "id": 2700, + "make_id": 1538, + "name": "Alpina B6 Gran Coupe xDrive", + "class": "Compact Cars" + }, + { + "id": 2702, + "make_id": 1538, + "name": "Alpina B6 xDrive Gran Coupe", + "class": "Compact Cars" + }, + { + "id": 2703, + "make_id": 1538, + "name": "Alpina B7 LWB", + "class": "Large Cars" + }, + { + "id": 2708, + "make_id": 1538, + "name": "Alpina B7 LWB xDrive", + "class": "Large Cars" + }, + { + "id": 2713, + "make_id": 1538, + "name": "Alpina B7 SWB", + "class": "Large Cars" + }, + { + "id": 2718, + "make_id": 1538, + "name": "Alpina B7 SWB xDrive", + "class": "Large Cars" + }, + { + "id": 2723, + "make_id": 1538, + "name": "i3 BEV", + "class": "Subcompact Cars" + }, + { + "id": 2726, + "make_id": 1538, + "name": "i3 REX", + "class": "Subcompact Cars" + }, + { + "id": 2729, + "make_id": 1538, + "name": "i8", + "class": "Subcompact Cars" + }, + { + "id": 2732, + "make_id": 1538, + "name": "M Coupe", + "class": "Two Seaters" + }, + { + "id": 2735, + "make_id": 1538, + "name": "M Roadster", + "class": "Two Seaters" + }, + { + "id": 2739, + "make_id": 1538, + "name": "M1 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 2740, + "make_id": 1538, + "name": "M2", + "class": "Subcompact Cars" + }, + { + "id": 2742, + "make_id": 1538, + "name": "M235i", + "class": "Subcompact Cars" + }, + { + "id": 2748, + "make_id": 1538, + "name": "M235i Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2752, + "make_id": 1538, + "name": "M235i xDrive", + "class": "Subcompact Cars" + }, + { + "id": 2754, + "make_id": 1538, + "name": "M235i xDrive Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2755, + "make_id": 1538, + "name": "M3", + "class": "Subcompact Cars" + }, + { + "id": 2786, + "make_id": 1538, + "name": "M3 Convertible", + "class": "Minicompact Cars" + }, + { + "id": 2812, + "make_id": 1538, + "name": "M3 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 2824, + "make_id": 1538, + "name": "M3 Sedan", + "class": "Compact Cars" + }, + { + "id": 2826, + "make_id": 1538, + "name": "M4 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2830, + "make_id": 1538, + "name": "M4 Coupe", + "class": "Compact Cars" + }, + { + "id": 2834, + "make_id": 1538, + "name": "M4 GTS", + "class": "Two Seaters" + }, + { + "id": 2835, + "make_id": 1538, + "name": "M5", + "class": "Compact Cars" + }, + { + "id": 2859, + "make_id": 1538, + "name": "M6", + "class": "Subcompact Cars" + }, + { + "id": 2869, + "make_id": 1538, + "name": "M6 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 2888, + "make_id": 1538, + "name": "M6 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 2898, + "make_id": 1538, + "name": "M6 Gran Coupe", + "class": "Compact Cars" + }, + { + "id": 2908, + "make_id": 1538, + "name": "X1 sDrive28i", + "class": "Large Cars" + }, + { + "id": 2911, + "make_id": 1538, + "name": "X1 xDrive28i", + "class": "Large Cars" + }, + { + "id": 2915, + "make_id": 1538, + "name": "X1 xDrive35i", + "class": "Large Cars" + }, + { + "id": 2918, + "make_id": 1538, + "name": "X3", + "class": "Sport Utility Vehicle" + }, + { + "id": 2928, + "make_id": 1538, + "name": "X3 3.0i", + "class": "Sport Utility Vehicle" + }, + { + "id": 2930, + "make_id": 1538, + "name": "X3 3.0si", + "class": "Sport Utility Vehicle" + }, + { + "id": 2934, + "make_id": 1538, + "name": "X3 sDrive 28i", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 2936, + "make_id": 1538, + "name": "X3 sDrive28i", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 2937, + "make_id": 1538, + "name": "X3 xDrive28d", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 2939, + "make_id": 1538, + "name": "X3 xDrive28i", + "class": "Sport Utility Vehicle" + }, + { + "id": 2946, + "make_id": 1538, + "name": "X3 xDrive30i", + "class": "Sport Utility Vehicle" + }, + { + "id": 2950, + "make_id": 1538, + "name": "X3 xDrive35i", + "class": "Sport Utility Vehicle" + }, + { + "id": 2957, + "make_id": 1538, + "name": "X4 M40i", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 2959, + "make_id": 1538, + "name": "X4 xDrive28i", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 2961, + "make_id": 1538, + "name": "X4 xDrive35i", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 2963, + "make_id": 1538, + "name": "X5", + "class": "Sport Utility Vehicle" + }, + { + "id": 2984, + "make_id": 1538, + "name": "X5 3.0si", + "class": "Sport Utility Vehicle" + }, + { + "id": 2986, + "make_id": 1538, + "name": "X5 4.6is", + "class": "Sport Utility Vehicle" + }, + { + "id": 2988, + "make_id": 1538, + "name": "X5 4.8i", + "class": "Sport Utility Vehicle" + }, + { + "id": 2990, + "make_id": 1538, + "name": "X5 4.8IS", + "class": "Sport Utility Vehicle" + }, + { + "id": 2991, + "make_id": 1538, + "name": "X5 4.8is", + "class": "Sport Utility Vehicle" + }, + { + "id": 2993, + "make_id": 1538, + "name": "X5 M", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 2996, + "make_id": 1538, + "name": "X5 sDrive35i", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 2999, + "make_id": 1538, + "name": "X5 xDrive30i", + "class": "Sport Utility Vehicle" + }, + { + "id": 3001, + "make_id": 1538, + "name": "X5 xDrive35d", + "class": "Sport Utility Vehicle" + }, + { + "id": 3009, + "make_id": 1538, + "name": "X5 xDrive35i", + "class": "Sport Utility Vehicle" + }, + { + "id": 3015, + "make_id": 1538, + "name": "X5 xDrive40e", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 3016, + "make_id": 1538, + "name": "X5 xDrive48i", + "class": "Sport Utility Vehicle" + }, + { + "id": 3018, + "make_id": 1538, + "name": "X5 xDrive50i", + "class": "Sport Utility Vehicle" + }, + { + "id": 3024, + "make_id": 1538, + "name": "X5 xDriveM", + "class": "Sport Utility Vehicle" + }, + { + "id": 3027, + "make_id": 1538, + "name": "X6 M", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 3031, + "make_id": 1538, + "name": "X6 sDrive35i", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 3033, + "make_id": 1538, + "name": "X6 xDrive35i", + "class": "Sport Utility Vehicle" + }, + { + "id": 3042, + "make_id": 1538, + "name": "X6 xDrive50i", + "class": "Sport Utility Vehicle" + }, + { + "id": 3051, + "make_id": 1538, + "name": "X6 xDriveM", + "class": "Sport Utility Vehicle" + }, + { + "id": 3054, + "make_id": 1538, + "name": "Z3 Coupe", + "class": "Two Seaters" + }, + { + "id": 3062, + "make_id": 1538, + "name": "Z3 Roadster", + "class": "Two Seaters" + }, + { + "id": 3090, + "make_id": 1538, + "name": "Z4 3.0i", + "class": "Two Seaters" + }, + { + "id": 3096, + "make_id": 1538, + "name": "Z4 3.0si", + "class": "Two Seaters" + }, + { + "id": 3102, + "make_id": 1538, + "name": "Z4 3.0si Coupe", + "class": "Two Seaters" + }, + { + "id": 3104, + "make_id": 1538, + "name": "Z4 Coupe", + "class": "Two Seaters" + }, + { + "id": 3108, + "make_id": 1538, + "name": "Z4 M Coupe", + "class": "Two Seaters" + }, + { + "id": 3111, + "make_id": 1538, + "name": "Z4 M Roadster", + "class": "Two Seaters" + }, + { + "id": 3114, + "make_id": 1538, + "name": "Z4 Roadster", + "class": "Two Seaters" + }, + { + "id": 3131, + "make_id": 1538, + "name": "Z4 sDrive28i", + "class": "Two Seaters" + }, + { + "id": 3141, + "make_id": 1538, + "name": "Z4 sDrive30i", + "class": "Two Seaters" + }, + { + "id": 3147, + "make_id": 1538, + "name": "Z4 sDrive35i", + "class": "Two Seaters" + }, + { + "id": 3161, + "make_id": 1538, + "name": "Z4 sDrive35is", + "class": "Two Seaters" + }, + { + "id": 3167, + "make_id": 1538, + "name": "Z8", + "class": "Two Seaters" + }, + { + "id": 3171, + "make_id": 3171, + "name": "B7", + "class": "Large Cars" + }, + { + "id": 3173, + "make_id": 3171, + "name": "Roadster V8", + "class": "Two Seaters" + }, + { + "id": 3174, + "make_id": 3174, + "name": "Veyron", + "class": "Two Seaters" + }, + { + "id": 3182, + "make_id": 3182, + "name": "Cascada", + "class": "Subcompact Cars" + }, + { + "id": 3183, + "make_id": 3182, + "name": "Century", + "class": "Midsize Cars" + }, + { + "id": 3243, + "make_id": 3182, + "name": "Century Estate Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 3252, + "make_id": 3182, + "name": "Century Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 3293, + "make_id": 3182, + "name": "Coachbuilder Wagon", + "class": "Special Purpose Vehicle" + }, + { + "id": 3300, + "make_id": 3182, + "name": "Electra Estate Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 3303, + "make_id": 3182, + "name": "Electra\/Park Avenue", + "class": "Large Cars" + }, + { + "id": 3319, + "make_id": 3182, + "name": "Enclave", + "class": "Sport Utility Vehicle" + }, + { + "id": 3339, + "make_id": 3182, + "name": "Encore", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 3349, + "make_id": 3182, + "name": "Envision", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 3350, + "make_id": 3182, + "name": "Estate Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 3351, + "make_id": 3182, + "name": "Funeral Coach\/Hearse", + "class": "Special Purpose Vehicle" + }, + { + "id": 3352, + "make_id": 3182, + "name": "LaCrosse", + "class": "Midsize Cars" + }, + { + "id": 3370, + "make_id": 3182, + "name": "LaCrosse eAssist", + "class": "Midsize Cars" + }, + { + "id": 3375, + "make_id": 3182, + "name": "Lacrosse\/Allure", + "class": "Midsize Cars" + }, + { + "id": 3390, + "make_id": 3182, + "name": "LeSabre", + "class": "Large Cars" + }, + { + "id": 3425, + "make_id": 3182, + "name": "LeSabre\/Electra Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 3432, + "make_id": 3182, + "name": "Lucerne", + "class": "Large Cars" + }, + { + "id": 3447, + "make_id": 3182, + "name": "Park Avenue", + "class": "Large Cars" + }, + { + "id": 3475, + "make_id": 3182, + "name": "Rainier", + "class": "Sport Utility Vehicle" + }, + { + "id": 3491, + "make_id": 3182, + "name": "Reatta", + "class": "Two Seaters" + }, + { + "id": 3495, + "make_id": 3182, + "name": "Regal", + "class": "Midsize Cars" + }, + { + "id": 3585, + "make_id": 3182, + "name": "Regal eAssist", + "class": "Midsize Cars" + }, + { + "id": 3590, + "make_id": 3182, + "name": "Regal\/Century", + "class": "Midsize Cars" + }, + { + "id": 3593, + "make_id": 3182, + "name": "Rendezvous", + "class": "Sport Utility Vehicle" + }, + { + "id": 3610, + "make_id": 3182, + "name": "Riviera", + "class": "Midsize Cars" + }, + { + "id": 3635, + "make_id": 3182, + "name": "Riviera Convertible", + "class": "Compact Cars" + }, + { + "id": 3643, + "make_id": 3182, + "name": "Roadmaster", + "class": "Large Cars" + }, + { + "id": 3648, + "make_id": 3182, + "name": "Roadmaster Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 3655, + "make_id": 3182, + "name": "Skyhawk", + "class": "Compact Cars" + }, + { + "id": 3695, + "make_id": 3182, + "name": "Skyhawk Wagon", + "class": "Small Station Wagons" + }, + { + "id": 3723, + "make_id": 3182, + "name": "Skylark", + "class": "Compact Cars" + }, + { + "id": 3769, + "make_id": 3182, + "name": "Somerset Regal", + "class": "Compact Cars" + }, + { + "id": 3773, + "make_id": 3182, + "name": "Somerset\/Skylark", + "class": "Compact Cars" + }, + { + "id": 3779, + "make_id": 3182, + "name": "Terraza", + "class": "Minivan" + }, + { + "id": 3787, + "make_id": 3182, + "name": "Verano", + "class": "Compact Cars" + }, + { + "id": 3800, + "make_id": 3800, + "name": "e6", + "class": "Sport Utility Vehicle" + }, + { + "id": 3804, + "make_id": 3804, + "name": "Allante", + "class": "Two Seaters" + }, + { + "id": 3811, + "make_id": 3804, + "name": "Armored Deville", + "class": "Large Cars" + }, + { + "id": 3813, + "make_id": 3804, + "name": "Armored DTS", + "class": "Large Cars" + }, + { + "id": 3814, + "make_id": 3804, + "name": "ATS", + "class": "Compact Cars" + }, + { + "id": 3840, + "make_id": 3804, + "name": "ATS-V", + "class": "Compact Cars" + }, + { + "id": 3842, + "make_id": 3804, + "name": "Brougham", + "class": "Large Cars" + }, + { + "id": 3851, + "make_id": 3804, + "name": "Brougham\/DeVille", + "class": "Large Cars" + }, + { + "id": 3854, + "make_id": 3804, + "name": "Catera", + "class": "Midsize Cars" + }, + { + "id": 3859, + "make_id": 3804, + "name": "Cimarron", + "class": "Compact Cars" + }, + { + "id": 3881, + "make_id": 3804, + "name": "Commercial Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 3887, + "make_id": 3804, + "name": "CT6", + "class": "Large Cars" + }, + { + "id": 3890, + "make_id": 3804, + "name": "CTS", + "class": "Midsize Cars" + }, + { + "id": 3953, + "make_id": 3804, + "name": "CTS Sedan", + "class": "Midsize Cars" + }, + { + "id": 3968, + "make_id": 3804, + "name": "CTS V", + "class": "Midsize Cars" + }, + { + "id": 3970, + "make_id": 3804, + "name": "CTS Wagon", + "class": "Small Station Wagons" + }, + { + "id": 3998, + "make_id": 3804, + "name": "CTS-V", + "class": "Midsize Cars" + }, + { + "id": 4005, + "make_id": 3804, + "name": "DeVille", + "class": "Large Cars" + }, + { + "id": 4018, + "make_id": 3804, + "name": "DeVille\/60 Special", + "class": "Large Cars" + }, + { + "id": 4019, + "make_id": 3804, + "name": "DeVille\/Concourse", + "class": "Large Cars" + }, + { + "id": 4023, + "make_id": 3804, + "name": "DTS", + "class": "Large Cars" + }, + { + "id": 4034, + "make_id": 3804, + "name": "Eldorado", + "class": "Midsize Cars" + }, + { + "id": 4058, + "make_id": 3804, + "name": "Eldorado Convertible", + "class": "Compact Cars" + }, + { + "id": 4061, + "make_id": 3804, + "name": "ELR", + "class": "Subcompact Cars" + }, + { + "id": 4064, + "make_id": 3804, + "name": "ELR Sport", + "class": "Subcompact Cars" + }, + { + "id": 4065, + "make_id": 3804, + "name": "Escalade", + "class": "Sport Utility Vehicle" + }, + { + "id": 4100, + "make_id": 3804, + "name": "Escalade ESV", + "class": "Sport Utility Vehicle" + }, + { + "id": 4119, + "make_id": 3804, + "name": "Escalade Ext", + "class": "Sport Utility Vehicle" + }, + { + "id": 4127, + "make_id": 3804, + "name": "Escalade Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 4135, + "make_id": 3804, + "name": "Fleetwood", + "class": "Large Cars" + }, + { + "id": 4140, + "make_id": 3804, + "name": "Fleetwood Brougham", + "class": "Large Cars" + }, + { + "id": 4143, + "make_id": 3804, + "name": "Fleetwood\/DeVille", + "class": "Large Cars" + }, + { + "id": 4154, + "make_id": 3804, + "name": "Funeral Coach \/ Hearse", + "class": "Large Cars" + }, + { + "id": 4163, + "make_id": 3804, + "name": "Funeral Coach\/Hearse", + "class": "Large Cars" + }, + { + "id": 4165, + "make_id": 3804, + "name": "Limousine", + "class": "Large Cars" + }, + { + "id": 4181, + "make_id": 3804, + "name": "Seville", + "class": "Midsize Cars" + }, + { + "id": 4208, + "make_id": 3804, + "name": "SRX", + "class": "Sport Utility Vehicle" + }, + { + "id": 4248, + "make_id": 3804, + "name": "STS", + "class": "Midsize Cars" + }, + { + "id": 4273, + "make_id": 3804, + "name": "STS-V", + "class": "Midsize Cars" + }, + { + "id": 4277, + "make_id": 3804, + "name": "XLR", + "class": "Two Seaters" + }, + { + "id": 4283, + "make_id": 3804, + "name": "XLR-V", + "class": "Two Seaters" + }, + { + "id": 4287, + "make_id": 3804, + "name": "XT5", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 4289, + "make_id": 3804, + "name": "XTS", + "class": "Large Cars" + }, + { + "id": 4302, + "make_id": 3804, + "name": "XTS Hearse", + "class": "Special Purpose Vehicle" + }, + { + "id": 4306, + "make_id": 3804, + "name": "XTS Limo", + "class": "Special Purpose Vehicle" + }, + { + "id": 4311, + "make_id": 4311, + "name": "Duntov GT", + "class": "Large Cars" + }, + { + "id": 4313, + "make_id": 4313, + "name": "Astro (cargo)", + "class": "Vans" + }, + { + "id": 4380, + "make_id": 4313, + "name": "Astro (cargo) Conversion", + "class": "Vans, Cargo Type" + }, + { + "id": 4386, + "make_id": 4313, + "name": "Astro (passenger)", + "class": "Vans" + }, + { + "id": 4444, + "make_id": 4313, + "name": "Avalanche 1500", + "class": "Sport Utility Vehicle" + }, + { + "id": 4482, + "make_id": 4313, + "name": "Aveo", + "class": "Compact Cars" + }, + { + "id": 4496, + "make_id": 4313, + "name": "Aveo 5", + "class": "Compact Cars" + }, + { + "id": 4510, + "make_id": 4313, + "name": "Beretta", + "class": "Compact Cars" + }, + { + "id": 4555, + "make_id": 4313, + "name": "Blazer", + "class": "Special Purpose Vehicle" + }, + { + "id": 4602, + "make_id": 4313, + "name": "Blazer 1500", + "class": "Special Purpose Vehicle" + }, + { + "id": 4609, + "make_id": 4313, + "name": "Blazer V1500", + "class": "Special Purpose Vehicle" + }, + { + "id": 4619, + "make_id": 4313, + "name": "C10 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 4686, + "make_id": 4313, + "name": "C1500 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 4792, + "make_id": 4313, + "name": "C20 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 4829, + "make_id": 4313, + "name": "C2500 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 4877, + "make_id": 4313, + "name": "Camaro", + "class": "Subcompact Cars" + }, + { + "id": 5035, + "make_id": 4313, + "name": "Caprice", + "class": "Large Cars" + }, + { + "id": 5063, + "make_id": 4313, + "name": "Caprice Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 5080, + "make_id": 4313, + "name": "Caprice\/Impala", + "class": "Large Cars" + }, + { + "id": 5086, + "make_id": 4313, + "name": "Caprice\/Impala Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 5090, + "make_id": 4313, + "name": "Captiva", + "class": "Sport Utility Vehicle" + }, + { + "id": 5100, + "make_id": 4313, + "name": "Cavalier", + "class": "Compact Cars" + }, + { + "id": 5201, + "make_id": 4313, + "name": "Cavalier (Bi-fuel CNG)", + "class": "Subcompact Cars" + }, + { + "id": 5203, + "make_id": 4313, + "name": "Cavalier Convertible", + "class": "Subcompact Cars" + }, + { + "id": 5235, + "make_id": 4313, + "name": "Cavalier Dual-fuel", + "class": "Subcompact Cars" + }, + { + "id": 5238, + "make_id": 4313, + "name": "Cavalier Wagon", + "class": "Small Station Wagons" + }, + { + "id": 5285, + "make_id": 4313, + "name": "Celebrity", + "class": "Midsize Cars" + }, + { + "id": 5320, + "make_id": 4313, + "name": "Celebrity Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 5357, + "make_id": 4313, + "name": "Chevette", + "class": "Subcompact Cars" + }, + { + "id": 5372, + "make_id": 4313, + "name": "Chevette CS", + "class": "Subcompact Cars" + }, + { + "id": 5379, + "make_id": 4313, + "name": "Citation II", + "class": "Midsize Cars" + }, + { + "id": 5395, + "make_id": 4313, + "name": "City Express Cargo Van", + "class": "Special Purpose Vehicle" + }, + { + "id": 5397, + "make_id": 4313, + "name": "Classic", + "class": "Midsize Cars" + }, + { + "id": 5401, + "make_id": 4313, + "name": "Coachbuilder Wagon", + "class": "Special Purpose Vehicle" + }, + { + "id": 5405, + "make_id": 4313, + "name": "Cobalt", + "class": "Subcompact Cars" + }, + { + "id": 5426, + "make_id": 4313, + "name": "Cobalt Coupe", + "class": "Subcompact Cars" + }, + { + "id": 5428, + "make_id": 4313, + "name": "Cobalt Sedan", + "class": "Compact Cars" + }, + { + "id": 5430, + "make_id": 4313, + "name": "Cobalt SS Coupe", + "class": "Subcompact Cars" + }, + { + "id": 5431, + "make_id": 4313, + "name": "Cobalt XFE", + "class": "Subcompact Cars" + }, + { + "id": 5433, + "make_id": 4313, + "name": "Cobalt XFE Coupe", + "class": "Subcompact Cars" + }, + { + "id": 5434, + "make_id": 4313, + "name": "Cobalt XFE Sedan", + "class": "Compact Cars" + }, + { + "id": 5435, + "make_id": 4313, + "name": "Colorado", + "class": "Standard Pickup Trucks" + }, + { + "id": 5515, + "make_id": 4313, + "name": "Colorado Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 5517, + "make_id": 4313, + "name": "Colorado Cab Chassis inc", + "class": "Standard Pickup Trucks" + }, + { + "id": 5531, + "make_id": 4313, + "name": "Colorado Crew Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 5581, + "make_id": 4313, + "name": "Corsica", + "class": "Compact Cars" + }, + { + "id": 5616, + "make_id": 4313, + "name": "Corvette", + "class": "Two Seaters" + }, + { + "id": 5706, + "make_id": 4313, + "name": "Corvette Convertible", + "class": "Two Seaters" + }, + { + "id": 5713, + "make_id": 4313, + "name": "Cruze", + "class": "Midsize Cars" + }, + { + "id": 5736, + "make_id": 4313, + "name": "Cruze Eco", + "class": "Midsize Cars" + }, + { + "id": 5746, + "make_id": 4313, + "name": "Cruze Limited", + "class": "Midsize Cars" + }, + { + "id": 5750, + "make_id": 4313, + "name": "Cruze Limited Eco", + "class": "Midsize Cars" + }, + { + "id": 5752, + "make_id": 4313, + "name": "Cruze Premier", + "class": "Compact Cars" + }, + { + "id": 5753, + "make_id": 4313, + "name": "El Camino Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 5777, + "make_id": 4313, + "name": "Epica", + "class": "Midsize Cars" + }, + { + "id": 5780, + "make_id": 4313, + "name": "Equinox", + "class": "Sport Utility Vehicle" + }, + { + "id": 5846, + "make_id": 4313, + "name": "Express 1500", + "class": "Vans, Passenger Type" + }, + { + "id": 5854, + "make_id": 4313, + "name": "Express 1500 Cargo", + "class": "Vans, Cargo Type" + }, + { + "id": 5869, + "make_id": 4313, + "name": "Express 1500 Conversion Cargo", + "class": "Vans, Cargo Type" + }, + { + "id": 5879, + "make_id": 4313, + "name": "Express 1500 Passenger", + "class": "Vans, Passenger Type" + }, + { + "id": 5893, + "make_id": 4313, + "name": "Express 1500\/2500", + "class": "Vans" + }, + { + "id": 5926, + "make_id": 4313, + "name": "Express 2500 Cargo", + "class": "Vans, Cargo Type" + }, + { + "id": 5928, + "make_id": 4313, + "name": "Express 2500 Conversion Cargo", + "class": "Vans, Cargo Type" + }, + { + "id": 5934, + "make_id": 4313, + "name": "Express 2500 Passenger", + "class": "Vans, Passenger Type" + }, + { + "id": 5946, + "make_id": 4313, + "name": "Express 3500 Cargo", + "class": "Vans, Cargo Type" + }, + { + "id": 5948, + "make_id": 4313, + "name": "Express 3500 Passenger", + "class": "Vans, Passenger Type" + }, + { + "id": 5959, + "make_id": 4313, + "name": "Express Cargo (Bi-fuel)", + "class": "Vans, Cargo Type" + }, + { + "id": 5960, + "make_id": 4313, + "name": "Express Cargo (dedicated CNG)", + "class": "Vans, Cargo Type" + }, + { + "id": 5961, + "make_id": 4313, + "name": "Express Passenger (Bi-fuel)", + "class": "Vans, Passenger Type" + }, + { + "id": 5962, + "make_id": 4313, + "name": "Express Passenger (dedicated CNG)", + "class": "Vans, Passenger Type" + }, + { + "id": 5963, + "make_id": 4313, + "name": "G10\/20 Sport Van", + "class": "Vans, Passenger Type" + }, + { + "id": 6028, + "make_id": 4313, + "name": "G10\/20 Van", + "class": "Vans, Cargo Type" + }, + { + "id": 6124, + "make_id": 4313, + "name": "G10\/20 Van (cargo)", + "class": "Vans" + }, + { + "id": 6125, + "make_id": 4313, + "name": "G30 Sport Van", + "class": "Vans, Passenger Type" + }, + { + "id": 6137, + "make_id": 4313, + "name": "G30 Van", + "class": "Vans, Cargo Type" + }, + { + "id": 6156, + "make_id": 4313, + "name": "G30 Van (cargo)", + "class": "Vans" + }, + { + "id": 6157, + "make_id": 4313, + "name": "HHR", + "class": "Sport Utility Vehicle" + }, + { + "id": 6187, + "make_id": 4313, + "name": "HHR Panel", + "class": "Sport Utility Vehicle" + }, + { + "id": 6209, + "make_id": 4313, + "name": "Impala", + "class": "Large Cars" + }, + { + "id": 6261, + "make_id": 4313, + "name": "Impala Bi-Fuel ", + "class": "Midsize Cars" + }, + { + "id": 6263, + "make_id": 4313, + "name": "Impala eAssist", + "class": "Large Cars" + }, + { + "id": 6264, + "make_id": 4313, + "name": "Impala Limited", + "class": "Large Cars" + }, + { + "id": 6267, + "make_id": 4313, + "name": "Impala Police", + "class": "Large Cars" + }, + { + "id": 6271, + "make_id": 4313, + "name": "Impala\/Caprice", + "class": "Large Cars" + }, + { + "id": 6289, + "make_id": 4313, + "name": "K10 Blazer", + "class": "Special Purpose Vehicle" + }, + { + "id": 6298, + "make_id": 4313, + "name": "K10 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 6347, + "make_id": 4313, + "name": "K1500 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 6448, + "make_id": 4313, + "name": "K20 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 6473, + "make_id": 4313, + "name": "K2500 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 6522, + "make_id": 4313, + "name": "K5\/K10 Blazer", + "class": "Special Purpose Vehicle" + }, + { + "id": 6527, + "make_id": 4313, + "name": "Lumina", + "class": "Midsize Cars" + }, + { + "id": 6548, + "make_id": 4313, + "name": "Lumina Minivan", + "class": "Special Purpose Vehicle" + }, + { + "id": 6553, + "make_id": 4313, + "name": "Lumina\/APV Minivan", + "class": "Special Purpose Vehicle" + }, + { + "id": 6559, + "make_id": 4313, + "name": "Lumina\/Monte Carlo", + "class": "Midsize Cars" + }, + { + "id": 6575, + "make_id": 4313, + "name": "Malibu", + "class": "Midsize Cars" + }, + { + "id": 6625, + "make_id": 4313, + "name": "Malibu eAssist", + "class": "Midsize Cars" + }, + { + "id": 6627, + "make_id": 4313, + "name": "Malibu Hybrid", + "class": "Midsize Cars" + }, + { + "id": 6631, + "make_id": 4313, + "name": "Malibu Limited", + "class": "Midsize Cars" + }, + { + "id": 6632, + "make_id": 4313, + "name": "Malibu Maxx", + "class": "Large Cars" + }, + { + "id": 6638, + "make_id": 4313, + "name": "Metro", + "class": "Subcompact Cars" + }, + { + "id": 6648, + "make_id": 4313, + "name": "Monte Carlo", + "class": "Midsize Cars" + }, + { + "id": 6690, + "make_id": 4313, + "name": "Nova", + "class": "Compact Cars" + }, + { + "id": 6700, + "make_id": 4313, + "name": "Optra", + "class": "Compact Cars" + }, + { + "id": 6708, + "make_id": 4313, + "name": "Optra 5", + "class": "Compact Cars" + }, + { + "id": 6714, + "make_id": 4313, + "name": "Optra Wagon", + "class": "Small Station Wagons" + }, + { + "id": 6720, + "make_id": 4313, + "name": "Pickup 2500", + "class": "Standard Pickup Trucks" + }, + { + "id": 6796, + "make_id": 4313, + "name": "Postal Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 6800, + "make_id": 4313, + "name": "Prizm", + "class": "Compact Cars" + }, + { + "id": 6815, + "make_id": 4313, + "name": "R10 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 6828, + "make_id": 4313, + "name": "R10 Suburban", + "class": "Special Purpose Vehicle" + }, + { + "id": 6833, + "make_id": 4313, + "name": "R1500 Suburban", + "class": "Special Purpose Vehicle" + }, + { + "id": 6839, + "make_id": 4313, + "name": "R20 (C20) Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 6849, + "make_id": 4313, + "name": "S10 Blazer", + "class": "Special Purpose Vehicle" + }, + { + "id": 6917, + "make_id": 4313, + "name": "S10 Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 6936, + "make_id": 4313, + "name": "S10 Electric", + "class": "Small Pickup Trucks" + }, + { + "id": 6938, + "make_id": 4313, + "name": "S10 Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 7097, + "make_id": 4313, + "name": "S10 Utility Body", + "class": "Special Purpose Vehicle" + }, + { + "id": 7099, + "make_id": 4313, + "name": "Silverado 15 Hybrid", + "class": "Standard Pickup Trucks" + }, + { + "id": 7117, + "make_id": 4313, + "name": "Silverado 1500", + "class": "Standard Pickup Trucks" + }, + { + "id": 7213, + "make_id": 4313, + "name": "Silverado 2500", + "class": "Standard Pickup Trucks" + }, + { + "id": 7219, + "make_id": 4313, + "name": "Silverado 2500 (Bifuel)", + "class": "Standard Pickup Trucks" + }, + { + "id": 7220, + "make_id": 4313, + "name": "Silverado 2500 HD", + "class": "Standard Pickup Trucks" + }, + { + "id": 7221, + "make_id": 4313, + "name": "Silverado 2500 HD CNG", + "class": "Standard Pickup Trucks" + }, + { + "id": 7224, + "make_id": 4313, + "name": "Silverado C15", + "class": "Standard Pickup Trucks" + }, + { + "id": 7270, + "make_id": 4313, + "name": "Silverado C15 Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 7274, + "make_id": 4313, + "name": "Silverado C15 XFE", + "class": "Standard Pickup Trucks" + }, + { + "id": 7279, + "make_id": 4313, + "name": "Silverado Classic 15 Hybrid", + "class": "Standard Pickup Trucks" + }, + { + "id": 7281, + "make_id": 4313, + "name": "Silverado Classic 1500", + "class": "Standard Pickup Trucks" + }, + { + "id": 7293, + "make_id": 4313, + "name": "Silverado K15", + "class": "Standard Pickup Trucks" + }, + { + "id": 7339, + "make_id": 4313, + "name": "Silverado K15 Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 7343, + "make_id": 4313, + "name": "Silverado SS 1500", + "class": "Standard Pickup Trucks" + }, + { + "id": 7344, + "make_id": 4313, + "name": "Sonic", + "class": "Compact Cars" + }, + { + "id": 7364, + "make_id": 4313, + "name": "Sonic 5", + "class": "Midsize Cars" + }, + { + "id": 7384, + "make_id": 4313, + "name": "Sonic 5 RS", + "class": "Midsize Cars" + }, + { + "id": 7390, + "make_id": 4313, + "name": "Sonic RS", + "class": "Midsize Cars" + }, + { + "id": 7398, + "make_id": 4313, + "name": "Spark", + "class": "Subcompact Cars" + }, + { + "id": 7406, + "make_id": 4313, + "name": "Spark EV", + "class": "Subcompact Cars" + }, + { + "id": 7409, + "make_id": 4313, + "name": "Spectrum", + "class": "Subcompact Cars" + }, + { + "id": 7417, + "make_id": 4313, + "name": "Spectrum Turbo", + "class": "Subcompact Cars" + }, + { + "id": 7419, + "make_id": 4313, + "name": "Sport Van G10\/20", + "class": "Vans" + }, + { + "id": 7429, + "make_id": 4313, + "name": "Sport Van G10\/20 (passenger)", + "class": "Vans" + }, + { + "id": 7430, + "make_id": 4313, + "name": "Sport Van G30", + "class": "Vans" + }, + { + "id": 7431, + "make_id": 4313, + "name": "Sport Van G30 ", + "class": "Vans" + }, + { + "id": 7432, + "make_id": 4313, + "name": "Sport Van G30 (cargo)", + "class": "Vans, Cargo Type" + }, + { + "id": 7433, + "make_id": 4313, + "name": "Sprint", + "class": "Minicompact Cars" + }, + { + "id": 7453, + "make_id": 4313, + "name": "Sprint ER", + "class": "Minicompact Cars" + }, + { + "id": 7455, + "make_id": 4313, + "name": "Sprint Metro", + "class": "Minicompact Cars" + }, + { + "id": 7456, + "make_id": 4313, + "name": "Sprint Plus", + "class": "Subcompact Cars" + }, + { + "id": 7458, + "make_id": 4313, + "name": "SS", + "class": "Large Cars" + }, + { + "id": 7463, + "make_id": 4313, + "name": "SSR Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 7469, + "make_id": 4313, + "name": "Suburban 1500", + "class": "Special Purpose Vehicle" + }, + { + "id": 7532, + "make_id": 4313, + "name": "Suburban 2500", + "class": "Sport Utility Vehicle" + }, + { + "id": 7538, + "make_id": 4313, + "name": "Suburban C10", + "class": "Special Purpose Vehicle" + }, + { + "id": 7553, + "make_id": 4313, + "name": "Suburban C1500", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 7557, + "make_id": 4313, + "name": "Suburban K10", + "class": "Special Purpose Vehicle" + }, + { + "id": 7572, + "make_id": 4313, + "name": "Suburban K1500", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 7576, + "make_id": 4313, + "name": "Suburban V1500", + "class": "Special Purpose Vehicle" + }, + { + "id": 7585, + "make_id": 4313, + "name": "T10 (S10) Blazer", + "class": "Special Purpose Vehicle" + }, + { + "id": 7620, + "make_id": 4313, + "name": "T10 (S10) Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 7657, + "make_id": 4313, + "name": "Tahoe 1500", + "class": "Special Purpose Vehicle" + }, + { + "id": 7745, + "make_id": 4313, + "name": "Tahoe 1500 XFE", + "class": "Sport Utility Vehicle" + }, + { + "id": 7746, + "make_id": 4313, + "name": "Tahoe C10", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 7747, + "make_id": 4313, + "name": "Tahoe C1500", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 7751, + "make_id": 4313, + "name": "Tahoe Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 7763, + "make_id": 4313, + "name": "Tahoe K10", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 7764, + "make_id": 4313, + "name": "Tahoe K1500", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 7768, + "make_id": 4313, + "name": "Tracker Convertible", + "class": "Special Purpose Vehicle" + }, + { + "id": 7796, + "make_id": 4313, + "name": "Tracker Hardtop", + "class": "Special Purpose Vehicle" + }, + { + "id": 7824, + "make_id": 4313, + "name": "Tracker LT", + "class": "Sport Utility Vehicle" + }, + { + "id": 7832, + "make_id": 4313, + "name": "Tracker ZR2", + "class": "Sport Utility Vehicle" + }, + { + "id": 7836, + "make_id": 4313, + "name": "Tracker ZR2 Convertible", + "class": "Sport Utility Vehicle" + }, + { + "id": 7842, + "make_id": 4313, + "name": "TrailBlazer", + "class": "Sport Utility Vehicle" + }, + { + "id": 7874, + "make_id": 4313, + "name": "TrailBlazer Ext", + "class": "Sport Utility Vehicle" + }, + { + "id": 7893, + "make_id": 4313, + "name": "Traverse", + "class": "Sport Utility Vehicle" + }, + { + "id": 7911, + "make_id": 4313, + "name": "Trax", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 7915, + "make_id": 4313, + "name": "Turbo Sprint", + "class": "Minicompact Cars" + }, + { + "id": 7919, + "make_id": 4313, + "name": "Twin-Turbo Corvette", + "class": "Two Seaters" + }, + { + "id": 7921, + "make_id": 4313, + "name": "Uplander", + "class": "Minivan" + }, + { + "id": 7930, + "make_id": 4313, + "name": "V10 (K10) Blazer", + "class": "Special Purpose Vehicle" + }, + { + "id": 7935, + "make_id": 4313, + "name": "V10 (K10) Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 7947, + "make_id": 4313, + "name": "V10 (K10) Suburban", + "class": "Special Purpose Vehicle" + }, + { + "id": 7951, + "make_id": 4313, + "name": "V10 Blazer", + "class": "Special Purpose Vehicle" + }, + { + "id": 7954, + "make_id": 4313, + "name": "V10 Suburban", + "class": "Special Purpose Vehicle" + }, + { + "id": 7957, + "make_id": 4313, + "name": "V20 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 7961, + "make_id": 4313, + "name": "Van 15\/25 Conversion", + "class": "Vans, Cargo Type" + }, + { + "id": 7962, + "make_id": 4313, + "name": "Van 15\/25 Conversion", + "class": "Vans, Cargo Type" + }, + { + "id": 7973, + "make_id": 4313, + "name": "Van 1500 Cargo", + "class": "Vans, Cargo Type" + }, + { + "id": 7978, + "make_id": 4313, + "name": "Van 1500 Conversion", + "class": "Vans, Cargo Type" + }, + { + "id": 7986, + "make_id": 4313, + "name": "Van 1500 Conversion Cargo", + "class": "Vans, Cargo Type" + }, + { + "id": 7990, + "make_id": 4313, + "name": "Van 1500\/2500", + "class": "Vans" + }, + { + "id": 8033, + "make_id": 4313, + "name": "Venture", + "class": "Special Purpose Vehicle" + }, + { + "id": 8045, + "make_id": 4313, + "name": "Volt", + "class": "Compact Cars" + }, + { + "id": 8052, + "make_id": 8052, + "name": "200", + "class": "Midsize Cars" + }, + { + "id": 8074, + "make_id": 8052, + "name": "300", + "class": "Large Cars" + }, + { + "id": 8117, + "make_id": 8052, + "name": "200 Convertible", + "class": "Compact Cars" + }, + { + "id": 8126, + "make_id": 8052, + "name": "300 M", + "class": "Large Cars" + }, + { + "id": 8131, + "make_id": 8052, + "name": "300 SRT8", + "class": "Large Cars" + }, + { + "id": 8134, + "make_id": 8052, + "name": "300\/SRT-8", + "class": "Large Cars" + }, + { + "id": 8151, + "make_id": 8052, + "name": "300C", + "class": "Large Cars" + }, + { + "id": 8155, + "make_id": 8052, + "name": "300C\/SRT-8", + "class": "Large Cars" + }, + { + "id": 8160, + "make_id": 8052, + "name": "300M", + "class": "Large Cars" + }, + { + "id": 8161, + "make_id": 8052, + "name": "Aspen", + "class": "Sport Utility Vehicle" + }, + { + "id": 8175, + "make_id": 8052, + "name": "Aspen HEV", + "class": "Sport Utility Vehicle" + }, + { + "id": 8176, + "make_id": 8052, + "name": "Cirrus", + "class": "Midsize Cars" + }, + { + "id": 8190, + "make_id": 8052, + "name": "Concorde", + "class": "Large Cars" + }, + { + "id": 8212, + "make_id": 8052, + "name": "Concorde\/LHS", + "class": "Large Cars" + }, + { + "id": 8216, + "make_id": 8052, + "name": "Conquest", + "class": "Subcompact Cars" + }, + { + "id": 8222, + "make_id": 8052, + "name": "Crossfire", + "class": "Two Seaters" + }, + { + "id": 8224, + "make_id": 8052, + "name": "Crossfire Coupe", + "class": "Two Seaters" + }, + { + "id": 8234, + "make_id": 8052, + "name": "Crossfire Roadster", + "class": "Two Seaters" + }, + { + "id": 8244, + "make_id": 8052, + "name": "E Class\/New Yorker", + "class": "Midsize Cars" + }, + { + "id": 8250, + "make_id": 8052, + "name": "Executive Sedan\/Limousine", + "class": "Midsize Cars" + }, + { + "id": 8253, + "make_id": 8052, + "name": "Fifth Avenue\/Imperial", + "class": "Large Cars" + }, + { + "id": 8255, + "make_id": 8052, + "name": "Imperial\/New Yorker Fifth Avenue", + "class": "Large Cars" + }, + { + "id": 8257, + "make_id": 8052, + "name": "JX\/JXI\/Limited Convertible", + "class": "Compact Cars" + }, + { + "id": 8260, + "make_id": 8052, + "name": "Laser", + "class": "Subcompact Cars" + }, + { + "id": 8268, + "make_id": 8052, + "name": "Laser\/Daytona", + "class": "Subcompact Cars" + }, + { + "id": 8284, + "make_id": 8052, + "name": "LeBaron", + "class": "Midsize Cars" + }, + { + "id": 8343, + "make_id": 8052, + "name": "LeBaron Convertible", + "class": "Subcompact Cars" + }, + { + "id": 8394, + "make_id": 8052, + "name": "LeBaron GTS", + "class": "Midsize Cars" + }, + { + "id": 8427, + "make_id": 8052, + "name": "LeBaron Landau", + "class": "Midsize Cars" + }, + { + "id": 8428, + "make_id": 8052, + "name": "LHS", + "class": "Large Cars" + }, + { + "id": 8431, + "make_id": 8052, + "name": "Limousine", + "class": "Midsize Cars" + }, + { + "id": 8432, + "make_id": 8052, + "name": "New Yorker", + "class": "Midsize Cars" + }, + { + "id": 8446, + "make_id": 8052, + "name": "New Yorker Fifth Avenue\/Imperial", + "class": "Large Cars" + }, + { + "id": 8450, + "make_id": 8052, + "name": "New Yorker Turbo", + "class": "Midsize Cars" + }, + { + "id": 8451, + "make_id": 8052, + "name": "New Yorker\/5th Avenue", + "class": "Midsize Cars" + }, + { + "id": 8452, + "make_id": 8052, + "name": "New Yorker\/LHS", + "class": "Large Cars" + }, + { + "id": 8456, + "make_id": 8052, + "name": "Newport\/Fifth Avenue", + "class": "Midsize Cars" + }, + { + "id": 8464, + "make_id": 8052, + "name": "Pacifica", + "class": "Sport Utility Vehicle" + }, + { + "id": 8479, + "make_id": 8052, + "name": "Prowler", + "class": "Two Seaters" + }, + { + "id": 8480, + "make_id": 8052, + "name": "PT Cruiser", + "class": "Sport Utility Vehicle" + }, + { + "id": 8512, + "make_id": 8052, + "name": "PT Cruiser Convertible", + "class": "Sport Utility Vehicle" + }, + { + "id": 8528, + "make_id": 8052, + "name": "QC Car", + "class": "Two Seaters" + }, + { + "id": 8529, + "make_id": 8052, + "name": "Sebring", + "class": "Compact Cars" + }, + { + "id": 8594, + "make_id": 8052, + "name": "Sebring 4 Door", + "class": "Midsize Cars" + }, + { + "id": 8613, + "make_id": 8052, + "name": "Sebring Convertible", + "class": "Midsize Cars" + }, + { + "id": 8654, + "make_id": 8052, + "name": "TC By", + "class": "Two Seaters" + }, + { + "id": 8658, + "make_id": 8052, + "name": "TC By Convertible", + "class": "Two Seaters" + }, + { + "id": 8660, + "make_id": 8052, + "name": "TC by Maserati", + "class": "Two Seaters" + }, + { + "id": 8661, + "make_id": 8052, + "name": "Town and Country", + "class": "Special Purpose Vehicle" + }, + { + "id": 8704, + "make_id": 8052, + "name": "Town and Country Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 8718, + "make_id": 8052, + "name": "Town and Country\/Voyager\/Grand Voy.", + "class": "Minivan" + }, + { + "id": 8748, + "make_id": 8052, + "name": "Voyager\/Town and Country", + "class": "Minivan" + }, + { + "id": 8751, + "make_id": 8751, + "name": "CODA", + "class": "Subcompact Cars" + }, + { + "id": 8753, + "make_id": 8753, + "name": "Consulier GTP", + "class": "Two Seaters" + }, + { + "id": 8756, + "make_id": 8756, + "name": "CX 25 GTI", + "class": "Midsize Cars" + }, + { + "id": 8758, + "make_id": 8756, + "name": "CX 25 Prestige", + "class": "Large Cars" + }, + { + "id": 8759, + "make_id": 8756, + "name": "CX 25Tri", + "class": "Two Seaters" + }, + { + "id": 8761, + "make_id": 8756, + "name": "Cxestate", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 8764, + "make_id": 8756, + "name": "XM v6", + "class": "Midsize Cars" + }, + { + "id": 8769, + "make_id": 8756, + "name": "XM v6 Break", + "class": "Small Station Wagons" + }, + { + "id": 8771, + "make_id": 8756, + "name": "XM v6a", + "class": "Midsize Cars" + }, + { + "id": 8773, + "make_id": 8773, + "name": "WB", + "class": "Large Cars" + }, + { + "id": 8782, + "make_id": 8782, + "name": "Coupe", + "class": "Minicompact Cars" + }, + { + "id": 8783, + "make_id": 8782, + "name": "Sedan", + "class": "Minicompact Cars" + }, + { + "id": 8784, + "make_id": 8782, + "name": "Station Wagon", + "class": "Small Station Wagons" + }, + { + "id": 8785, + "make_id": 8785, + "name": "Kalos", + "class": "Compact Cars" + }, + { + "id": 8787, + "make_id": 8785, + "name": "Lacetti", + "class": "Compact Cars" + }, + { + "id": 8789, + "make_id": 8785, + "name": "Lanos", + "class": "Compact Cars" + }, + { + "id": 8811, + "make_id": 8785, + "name": "Leganza", + "class": "Midsize Cars" + }, + { + "id": 8823, + "make_id": 8785, + "name": "Magnus", + "class": "Midsize Cars" + }, + { + "id": 8824, + "make_id": 8785, + "name": "Nubira", + "class": "Compact Cars" + }, + { + "id": 8838, + "make_id": 8785, + "name": "Nubira Station Wagon", + "class": "Small Station Wagons" + }, + { + "id": 8848, + "make_id": 8785, + "name": "Nubira Wagon", + "class": "Small Station Wagons" + }, + { + "id": 8852, + "make_id": 8852, + "name": "Charade", + "class": "Subcompact Cars" + }, + { + "id": 8865, + "make_id": 8852, + "name": "Charade E", + "class": "Subcompact Cars" + }, + { + "id": 8866, + "make_id": 8852, + "name": "Rocky", + "class": "Special Purpose Vehicle" + }, + { + "id": 8869, + "make_id": 8869, + "name": "600", + "class": "Midsize Cars" + }, + { + "id": 8901, + "make_id": 8869, + "name": "600 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 8919, + "make_id": 8869, + "name": "AD100\/AD150 Ramcharger", + "class": "Special Purpose Vehicle" + }, + { + "id": 8947, + "make_id": 8869, + "name": "Aries", + "class": "Midsize Cars" + }, + { + "id": 8982, + "make_id": 8869, + "name": "Aries Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 9010, + "make_id": 8869, + "name": "Avenger", + "class": "Compact Cars" + }, + { + "id": 9054, + "make_id": 8869, + "name": "AW100\/AW150 Ramcharger", + "class": "Special Purpose Vehicle" + }, + { + "id": 9089, + "make_id": 8869, + "name": "B150\/B250 Van", + "class": "Vans, Cargo Type" + }, + { + "id": 9174, + "make_id": 8869, + "name": "B150\/B250 Wagon", + "class": "Vans, Passenger Type" + }, + { + "id": 9255, + "make_id": 8869, + "name": "B1500 Van", + "class": "Vans, Cargo Type" + }, + { + "id": 9264, + "make_id": 8869, + "name": "B1500 Wagon", + "class": "Vans, Passenger Type" + }, + { + "id": 9270, + "make_id": 8869, + "name": "B1500\/B2500 Van", + "class": "Vans" + }, + { + "id": 9282, + "make_id": 8869, + "name": "B1500\/B2500 Wagon", + "class": "Vans" + }, + { + "id": 9293, + "make_id": 8869, + "name": "B2500 Van", + "class": "Vans, Cargo Type" + }, + { + "id": 9299, + "make_id": 8869, + "name": "B2500 Wagon", + "class": "Vans, Passenger Type" + }, + { + "id": 9305, + "make_id": 8869, + "name": "B350 Van", + "class": "Vans, Cargo Type" + }, + { + "id": 9341, + "make_id": 8869, + "name": "B350 Wagon", + "class": "Vans, Passenger Type" + }, + { + "id": 9371, + "make_id": 8869, + "name": "B3500 Van", + "class": "Vans" + }, + { + "id": 9377, + "make_id": 8869, + "name": "B3500 Wagon", + "class": "Vans" + }, + { + "id": 9383, + "make_id": 8869, + "name": "Caliber", + "class": "Small Station Wagons" + }, + { + "id": 9410, + "make_id": 8869, + "name": "Caravan C\/V\/Grand Caravan", + "class": "Special Purpose Vehicle" + }, + { + "id": 9427, + "make_id": 8869, + "name": "Caravan\/Grand Caravan", + "class": "Special Purpose Vehicle" + }, + { + "id": 9538, + "make_id": 8869, + "name": "Caravan\/Grand Caravan\/Ram Van", + "class": "Special Purpose Vehicle" + }, + { + "id": 9562, + "make_id": 8869, + "name": "Caravan\/Ram Van", + "class": "Special Purpose Vehicle" + }, + { + "id": 9586, + "make_id": 8869, + "name": "Challenger", + "class": "Midsize Cars" + }, + { + "id": 9620, + "make_id": 8869, + "name": "Challenger SRT8", + "class": "Compact Cars" + }, + { + "id": 9636, + "make_id": 8869, + "name": "Charger", + "class": "Subcompact Cars" + }, + { + "id": 9726, + "make_id": 8869, + "name": "Charger GLH-S", + "class": "Subcompact Cars" + }, + { + "id": 9728, + "make_id": 8869, + "name": "Charger SRT8", + "class": "Large Cars" + }, + { + "id": 9735, + "make_id": 8869, + "name": "Colt", + "class": "Subcompact Cars" + }, + { + "id": 9790, + "make_id": 8869, + "name": "Colt Vista", + "class": "Small Station Wagons" + }, + { + "id": 9823, + "make_id": 8869, + "name": "Colt Wagon", + "class": "Small Station Wagons" + }, + { + "id": 9831, + "make_id": 8869, + "name": "Conquest", + "class": "Subcompact Cars" + }, + { + "id": 9845, + "make_id": 8869, + "name": "CSX", + "class": "Compact Cars" + }, + { + "id": 9846, + "make_id": 8869, + "name": "D100\/D150 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 9958, + "make_id": 8869, + "name": "D250 Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 9967, + "make_id": 8869, + "name": "D250 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 10040, + "make_id": 8869, + "name": "D250 Pickup Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 10041, + "make_id": 8869, + "name": "Dakota Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 10064, + "make_id": 8869, + "name": "Dakota Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 10262, + "make_id": 8869, + "name": "Dart", + "class": "Midsize Cars" + }, + { + "id": 10285, + "make_id": 8869, + "name": "Dart Aero", + "class": "Midsize Cars" + }, + { + "id": 10293, + "make_id": 8869, + "name": "Dart GT", + "class": "Midsize Cars" + }, + { + "id": 10299, + "make_id": 8869, + "name": "Daytona", + "class": "Subcompact Cars" + }, + { + "id": 10358, + "make_id": 8869, + "name": "Diplomat", + "class": "Midsize Cars" + }, + { + "id": 10376, + "make_id": 8869, + "name": "Durango", + "class": "Special Purpose Vehicle" + }, + { + "id": 10455, + "make_id": 8869, + "name": "Durango HEV", + "class": "Sport Utility Vehicle" + }, + { + "id": 10456, + "make_id": 8869, + "name": "Durango RWD", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 10462, + "make_id": 8869, + "name": "Dynasty", + "class": "Midsize Cars" + }, + { + "id": 10478, + "make_id": 8869, + "name": "GLH-S", + "class": "Compact Cars" + }, + { + "id": 10479, + "make_id": 8869, + "name": "Grand Caravan", + "class": "Minivan" + }, + { + "id": 10492, + "make_id": 8869, + "name": "Intrepid", + "class": "Large Cars" + }, + { + "id": 10528, + "make_id": 8869, + "name": "Journey", + "class": "Sport Utility Vehicle" + }, + { + "id": 10546, + "make_id": 8869, + "name": "Journey ", + "class": "Sport Utility Vehicle" + }, + { + "id": 10552, + "make_id": 8869, + "name": "Lancer", + "class": "Midsize Cars" + }, + { + "id": 10588, + "make_id": 8869, + "name": "Lancer Convertible", + "class": "Subcompact Cars" + }, + { + "id": 10590, + "make_id": 8869, + "name": "Magnum", + "class": "Sport Utility Vehicle" + }, + { + "id": 10616, + "make_id": 8869, + "name": "Monaco", + "class": "Large Cars" + }, + { + "id": 10619, + "make_id": 8869, + "name": "Neon", + "class": "Compact Cars" + }, + { + "id": 10635, + "make_id": 8869, + "name": "Neon\/SRT-4\/SX 2.0", + "class": "Compact Cars" + }, + { + "id": 10644, + "make_id": 8869, + "name": "Nitro", + "class": "Sport Utility Vehicle" + }, + { + "id": 10668, + "make_id": 8869, + "name": "Omni", + "class": "Compact Cars" + }, + { + "id": 10701, + "make_id": 8869, + "name": "Power Ram 50", + "class": "Standard Pickup Trucks" + }, + { + "id": 10715, + "make_id": 8869, + "name": "Power Ram 50 Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 10732, + "make_id": 8869, + "name": "Power Ram50", + "class": "Small Pickup Trucks" + }, + { + "id": 10740, + "make_id": 8869, + "name": "Raider", + "class": "Special Purpose Vehicle" + }, + { + "id": 10750, + "make_id": 8869, + "name": "Ram 1500 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 10908, + "make_id": 8869, + "name": "Ram 2500 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 10932, + "make_id": 8869, + "name": "Ram 50 Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 10979, + "make_id": 8869, + "name": "Ram Van 1500", + "class": "Vans, Cargo Type" + }, + { + "id": 10988, + "make_id": 8869, + "name": "Ram Van 2500", + "class": "Vans, Cargo Type" + }, + { + "id": 10997, + "make_id": 8869, + "name": "Ram Van 2500 CNG", + "class": "Vans, Cargo Type" + }, + { + "id": 11000, + "make_id": 8869, + "name": "Ram Wagon 1500", + "class": "Vans, Passenger Type" + }, + { + "id": 11003, + "make_id": 8869, + "name": "Ram Wagon 2500", + "class": "Vans, Passenger Type" + }, + { + "id": 11006, + "make_id": 8869, + "name": "Ram Wagon 2500 CNG", + "class": "Vans, Passenger Type" + }, + { + "id": 11008, + "make_id": 8869, + "name": "Ramcharger", + "class": "Special Purpose Vehicle" + }, + { + "id": 11019, + "make_id": 8869, + "name": "Rampage Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 11024, + "make_id": 8869, + "name": "Shadow", + "class": "Compact Cars" + }, + { + "id": 11078, + "make_id": 8869, + "name": "Shadow Convertible", + "class": "Subcompact Cars" + }, + { + "id": 11098, + "make_id": 8869, + "name": "Spirit", + "class": "Midsize Cars" + }, + { + "id": 11134, + "make_id": 8869, + "name": "Stealth", + "class": "Subcompact Cars" + }, + { + "id": 11164, + "make_id": 8869, + "name": "Stratus", + "class": "Midsize Cars" + }, + { + "id": 11218, + "make_id": 8869, + "name": "Stratus 4 Door", + "class": "Midsize Cars" + }, + { + "id": 11240, + "make_id": 8869, + "name": "Viper", + "class": "Two Seaters" + }, + { + "id": 11245, + "make_id": 8869, + "name": "Viper Convertible", + "class": "Two Seaters" + }, + { + "id": 11257, + "make_id": 8869, + "name": "Viper Coupe", + "class": "Two Seaters" + }, + { + "id": 11265, + "make_id": 8869, + "name": "Viper SRT", + "class": "Two Seaters" + }, + { + "id": 11267, + "make_id": 8869, + "name": "W100\/W150 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 11331, + "make_id": 8869, + "name": "W250 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 11372, + "make_id": 11372, + "name": "Funeral Coach", + "class": "Special Purpose Vehicle" + }, + { + "id": 11373, + "make_id": 11373, + "name": "Medallion Sedan", + "class": "Midsize Cars" + }, + { + "id": 11375, + "make_id": 11373, + "name": "Medallion Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 11377, + "make_id": 11373, + "name": "Premier", + "class": "Large Cars" + }, + { + "id": 11385, + "make_id": 11373, + "name": "Renault Medallion Sedan", + "class": "Midsize Cars" + }, + { + "id": 11387, + "make_id": 11373, + "name": "Renault Medallion Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 11389, + "make_id": 11373, + "name": "Summit", + "class": "Compact Cars" + }, + { + "id": 11421, + "make_id": 11373, + "name": "Summit Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 11455, + "make_id": 11373, + "name": "Talon", + "class": "Subcompact Cars" + }, + { + "id": 11519, + "make_id": 11373, + "name": "Vision", + "class": "Large Cars" + }, + { + "id": 11533, + "make_id": 11373, + "name": "Wagon", + "class": "Special Purpose Vehicle" + }, + { + "id": 11534, + "make_id": 11534, + "name": "ERD 1", + "class": "Two Seaters" + }, + { + "id": 11535, + "make_id": 11535, + "name": "Series 1", + "class": "Two Seaters" + }, + { + "id": 11537, + "make_id": 11535, + "name": "Series I", + "class": "Two Seaters" + }, + { + "id": 11538, + "make_id": 11538, + "name": "Phaeton", + "class": "Minicompact Cars" + }, + { + "id": 11539, + "make_id": 11539, + "name": "24E", + "class": "Large Cars" + }, + { + "id": 11540, + "make_id": 11539, + "name": "85J", + "class": "Large Cars" + }, + { + "id": 11541, + "make_id": 11539, + "name": "Eagle", + "class": "Large Cars" + }, + { + "id": 11542, + "make_id": 11539, + "name": "Formal", + "class": "Large Cars" + }, + { + "id": 11543, + "make_id": 11539, + "name": "Heritage", + "class": "Special Purpose Vehicle" + }, + { + "id": 11544, + "make_id": 11539, + "name": "Lincoln 100J", + "class": "Large Cars" + }, + { + "id": 11545, + "make_id": 11539, + "name": "Lincoln 24E", + "class": "Large Cars" + }, + { + "id": 11546, + "make_id": 11539, + "name": "Lincoln 85J", + "class": "Large Cars" + }, + { + "id": 11547, + "make_id": 11539, + "name": "Lincoln Eagle\/Windsor", + "class": "Large Cars" + }, + { + "id": 11548, + "make_id": 11539, + "name": "Lincoln Eaton", + "class": "Large Cars" + }, + { + "id": 11549, + "make_id": 11539, + "name": "Lincoln Stratford", + "class": "Special Purpose Vehicle" + }, + { + "id": 11550, + "make_id": 11539, + "name": "Renaissance", + "class": "Special Purpose Vehicle" + }, + { + "id": 11551, + "make_id": 11539, + "name": "Six Door", + "class": "Large Cars" + }, + { + "id": 11552, + "make_id": 11539, + "name": "Windsor", + "class": "Large Cars" + }, + { + "id": 11553, + "make_id": 11553, + "name": "308", + "class": "Two Seaters" + }, + { + "id": 11554, + "make_id": 11553, + "name": "575", + "class": "Two Seaters" + }, + { + "id": 11556, + "make_id": 11553, + "name": "3.2 Mondial\/Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 11559, + "make_id": 11553, + "name": "328 GTS\/GTB", + "class": "Two Seaters" + }, + { + "id": 11563, + "make_id": 11553, + "name": "348 TB\/TS", + "class": "Two Seaters" + }, + { + "id": 11568, + "make_id": 11553, + "name": "360 Modena\/Modena F1", + "class": "Two Seaters" + }, + { + "id": 11570, + "make_id": 11553, + "name": "360 Modena\/Spider", + "class": "Two Seaters" + }, + { + "id": 11579, + "make_id": 11553, + "name": "360 Modena\/Spider\/Challenge", + "class": "Two Seaters" + }, + { + "id": 11584, + "make_id": 11553, + "name": "456 MGT\/MGA", + "class": "Subcompact Cars" + }, + { + "id": 11594, + "make_id": 11553, + "name": "458 Italia", + "class": "Two Seaters" + }, + { + "id": 11602, + "make_id": 11553, + "name": "458 Italia Coupe", + "class": "Two Seaters" + }, + { + "id": 11604, + "make_id": 11553, + "name": "458 Italia Spider", + "class": "Two Seaters" + }, + { + "id": 11606, + "make_id": 11553, + "name": "458 Speciale", + "class": "Two Seaters" + }, + { + "id": 11610, + "make_id": 11553, + "name": "458 Speciale Spider", + "class": "Two Seaters" + }, + { + "id": 11612, + "make_id": 11553, + "name": "458 Spider", + "class": "Two Seaters" + }, + { + "id": 11618, + "make_id": 11553, + "name": "488 GTB", + "class": "Two Seaters" + }, + { + "id": 11620, + "make_id": 11553, + "name": "550 Maranello", + "class": "Two Seaters" + }, + { + "id": 11622, + "make_id": 11553, + "name": "550 Maranello\/Barchetta", + "class": "Two Seaters" + }, + { + "id": 11623, + "make_id": 11553, + "name": "575 M Maranello", + "class": "Two Seaters" + }, + { + "id": 11627, + "make_id": 11553, + "name": "575 M Maranello and Superamerica", + "class": "Two Seaters" + }, + { + "id": 11629, + "make_id": 11553, + "name": "599 GTB", + "class": "Two Seaters" + }, + { + "id": 11631, + "make_id": 11553, + "name": "599 GTB Fiorano", + "class": "Two Seaters" + }, + { + "id": 11639, + "make_id": 11553, + "name": "599 GTO", + "class": "Two Seaters" + }, + { + "id": 11640, + "make_id": 11553, + "name": "599 SA Aperta", + "class": "Two Seaters" + }, + { + "id": 11641, + "make_id": 11553, + "name": "612 Scaglietti", + "class": "Midsize Cars" + }, + { + "id": 11655, + "make_id": 11553, + "name": "California", + "class": "Minicompact Cars" + }, + { + "id": 11665, + "make_id": 11553, + "name": "California T", + "class": "Minicompact Cars" + }, + { + "id": 11669, + "make_id": 11553, + "name": "Enzo Ferrari", + "class": "Two Seaters" + }, + { + "id": 11670, + "make_id": 11553, + "name": "F 40", + "class": "Two Seaters" + }, + { + "id": 11671, + "make_id": 11553, + "name": "F12", + "class": "Two Seaters" + }, + { + "id": 11679, + "make_id": 11553, + "name": "F12 tdf", + "class": "Two Seaters" + }, + { + "id": 11681, + "make_id": 11553, + "name": "F141", + "class": "Two Seaters" + }, + { + "id": 11683, + "make_id": 11553, + "name": "F355\/355 F1", + "class": "Two Seaters" + }, + { + "id": 11685, + "make_id": 11553, + "name": "F40", + "class": "Two Seaters" + }, + { + "id": 11687, + "make_id": 11553, + "name": "F430", + "class": "Two Seaters" + }, + { + "id": 11697, + "make_id": 11553, + "name": "F60 America", + "class": "Two Seaters" + }, + { + "id": 11699, + "make_id": 11553, + "name": "Ferrari 348 TB\/TS", + "class": "Two Seaters" + }, + { + "id": 11700, + "make_id": 11553, + "name": "Ferrari 348 TB\/TS\/Spider", + "class": "Two Seaters" + }, + { + "id": 11703, + "make_id": 11553, + "name": "Ferrari 456", + "class": "Subcompact Cars" + }, + { + "id": 11705, + "make_id": 11553, + "name": "Ferrari 456 GT", + "class": "Subcompact Cars" + }, + { + "id": 11706, + "make_id": 11553, + "name": "Ferrari 456 GT\/GTA", + "class": "Subcompact Cars" + }, + { + "id": 11708, + "make_id": 11553, + "name": "Ferrari 512 TR", + "class": "Two Seaters" + }, + { + "id": 11710, + "make_id": 11553, + "name": "Ferrari 550 Maranello", + "class": "Two Seaters" + }, + { + "id": 11711, + "make_id": 11553, + "name": "Ferrari F355", + "class": "Two Seaters" + }, + { + "id": 11712, + "make_id": 11553, + "name": "Ferrari F355 Berlinetta\/GTS", + "class": "Two Seaters" + }, + { + "id": 11714, + "make_id": 11553, + "name": "Ferrari F355\/355 F1", + "class": "Two Seaters" + }, + { + "id": 11716, + "make_id": 11553, + "name": "Ferrari F50", + "class": "Two Seaters" + }, + { + "id": 11717, + "make_id": 11553, + "name": "Ferrari F512M", + "class": "Two Seaters" + }, + { + "id": 11718, + "make_id": 11553, + "name": "Ferrari Mondial T\/Cabriolet", + "class": "Subcompact Cars" + }, + { + "id": 11722, + "make_id": 11553, + "name": "FF", + "class": "Midsize Cars" + }, + { + "id": 11732, + "make_id": 11553, + "name": "LaFerrari Hybrid", + "class": "Two Seaters" + }, + { + "id": 11733, + "make_id": 11553, + "name": "Mondial", + "class": "Minicompact Cars" + }, + { + "id": 11734, + "make_id": 11553, + "name": "Mondial T\/Cabriolet", + "class": "Subcompact Cars" + }, + { + "id": 11739, + "make_id": 11553, + "name": "Mondial\/Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 11740, + "make_id": 11553, + "name": "Testarossa", + "class": "Two Seaters" + }, + { + "id": 11748, + "make_id": 11553, + "name": "Testerossa", + "class": "Two Seaters" + }, + { + "id": 11749, + "make_id": 11749, + "name": "500", + "class": "Minicompact Cars" + }, + { + "id": 11765, + "make_id": 11749, + "name": "124 Spider", + "class": "Two Seaters" + }, + { + "id": 11767, + "make_id": 11749, + "name": "500 Abarth", + "class": "Minicompact Cars" + }, + { + "id": 11774, + "make_id": 11749, + "name": "500 Cabrio", + "class": "Minicompact Cars" + }, + { + "id": 11775, + "make_id": 11749, + "name": "500 L", + "class": "Small Station Wagons" + }, + { + "id": 11782, + "make_id": 11749, + "name": "500 X", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 11785, + "make_id": 11749, + "name": "500e", + "class": "Minicompact Cars" + }, + { + "id": 11789, + "make_id": 11789, + "name": "Karma", + "class": "Subcompact Cars" + }, + { + "id": 11790, + "make_id": 11790, + "name": "Aerostar Van", + "class": "Vans" + }, + { + "id": 11827, + "make_id": 11790, + "name": "Aerostar Wagon", + "class": "Vans" + }, + { + "id": 11868, + "make_id": 11790, + "name": "Aspire", + "class": "Subcompact Cars" + }, + { + "id": 11876, + "make_id": 11790, + "name": "Bronco", + "class": "Special Purpose Vehicle" + }, + { + "id": 11962, + "make_id": 11790, + "name": "Bronco II", + "class": "Special Purpose Vehicle" + }, + { + "id": 11995, + "make_id": 11790, + "name": "C-MAX Energi Plug-in Hybrid", + "class": "Midsize Cars" + }, + { + "id": 11999, + "make_id": 11790, + "name": "C-MAX Hybrid", + "class": "Large Cars" + }, + { + "id": 12003, + "make_id": 11790, + "name": "Contour", + "class": "Compact Cars" + }, + { + "id": 12027, + "make_id": 11790, + "name": "Courier", + "class": "Small Pickup Trucks" + }, + { + "id": 12034, + "make_id": 11790, + "name": "Courier Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 12038, + "make_id": 11790, + "name": "Crown Victoria", + "class": "Large Cars" + }, + { + "id": 12057, + "make_id": 11790, + "name": "Crown Victoria CNG", + "class": "Large Cars" + }, + { + "id": 12065, + "make_id": 11790, + "name": "Crown Victoria Police", + "class": "Large Cars" + }, + { + "id": 12079, + "make_id": 11790, + "name": "E150 Club Wagon", + "class": "Vans, Passenger Type" + }, + { + "id": 12168, + "make_id": 11790, + "name": "E150 Econoline", + "class": "Vans, Cargo Type" + }, + { + "id": 12273, + "make_id": 11790, + "name": "E150 Van", + "class": "Vans, Cargo Type" + }, + { + "id": 12281, + "make_id": 11790, + "name": "E150 Wagon", + "class": "Vans, Passenger Type" + }, + { + "id": 12289, + "make_id": 11790, + "name": "E250 CNG", + "class": "Vans, Cargo Type" + }, + { + "id": 12290, + "make_id": 11790, + "name": "E250 Econoline", + "class": "Vans, Cargo Type" + }, + { + "id": 12361, + "make_id": 11790, + "name": "E250 Econoline CNG", + "class": "Vans, Cargo Type" + }, + { + "id": 12364, + "make_id": 11790, + "name": "E250 Van", + "class": "Vans, Cargo Type" + }, + { + "id": 12372, + "make_id": 11790, + "name": "E350 Van", + "class": "Vans, Cargo Type" + }, + { + "id": 12380, + "make_id": 11790, + "name": "E350 Wagon", + "class": "Vans, Passenger Type" + }, + { + "id": 12388, + "make_id": 11790, + "name": "Edge", + "class": "Sport Utility Vehicle" + }, + { + "id": 12431, + "make_id": 11790, + "name": "Escape", + "class": "Sport Utility Vehicle" + }, + { + "id": 12515, + "make_id": 11790, + "name": "Escape Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 12531, + "make_id": 11790, + "name": "Escort", + "class": "Compact Cars" + }, + { + "id": 12620, + "make_id": 11790, + "name": "Escort FS", + "class": "Compact Cars" + }, + { + "id": 12624, + "make_id": 11790, + "name": "Escort Wagon", + "class": "Small Station Wagons" + }, + { + "id": 12681, + "make_id": 11790, + "name": "Escort ZX2", + "class": "Subcompact Cars" + }, + { + "id": 12693, + "make_id": 11790, + "name": "EXP", + "class": "Two Seaters" + }, + { + "id": 12712, + "make_id": 11790, + "name": "Expedition", + "class": "Special Purpose Vehicle" + }, + { + "id": 12767, + "make_id": 11790, + "name": "Expedition EL", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 12773, + "make_id": 11790, + "name": "Expedition Limo.", + "class": "Sport Utility Vehicle" + }, + { + "id": 12774, + "make_id": 11790, + "name": "Explorer", + "class": "Special Purpose Vehicle" + }, + { + "id": 12920, + "make_id": 11790, + "name": "Explorer Sport", + "class": "Sport Utility Vehicle" + }, + { + "id": 12934, + "make_id": 11790, + "name": "Explorer Sport Trac", + "class": "Standard Pickup Trucks" + }, + { + "id": 12966, + "make_id": 11790, + "name": "Explorer USPS", + "class": "Sport Utility Vehicle" + }, + { + "id": 12970, + "make_id": 11790, + "name": "Explorer USPS Electric", + "class": "Sport Utility Vehicle" + }, + { + "id": 12972, + "make_id": 11790, + "name": "F150 2.7L GVWR>6649 LBS PAYLOAD PACKAGE", + "class": "Standard Pickup Trucks" + }, + { + "id": 12973, + "make_id": 11790, + "name": "F150 2.7L GVWR>6799 LBS PAYLOAD PACKAGE", + "class": "Standard Pickup Trucks" + }, + { + "id": 12974, + "make_id": 11790, + "name": "F150 3.5L GVWR>7599 LBS PAYLOAD PACKAGE", + "class": "Standard Pickup Trucks" + }, + { + "id": 12976, + "make_id": 11790, + "name": "F150 5.0L GVWR>7599 LBS PAYLOAD PACKAGE", + "class": "Standard Pickup Trucks" + }, + { + "id": 12978, + "make_id": 11790, + "name": "F150 CNG", + "class": "Standard Pickup Trucks" + }, + { + "id": 12982, + "make_id": 11790, + "name": "F150 Dual-fuel", + "class": "Standard Pickup Trucks" + }, + { + "id": 12990, + "make_id": 11790, + "name": "F150 Dual-fuel (LPG)", + "class": "Standard Pickup Trucks" + }, + { + "id": 12998, + "make_id": 11790, + "name": "F150 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 13434, + "make_id": 11790, + "name": "F150 Pickup CNG", + "class": "Standard Pickup Trucks" + }, + { + "id": 13435, + "make_id": 11790, + "name": "F150 Raptor Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 13439, + "make_id": 11790, + "name": "F150 SFE", + "class": "Standard Pickup Trucks" + }, + { + "id": 13440, + "make_id": 11790, + "name": "F150 STX SE", + "class": "Standard Pickup Trucks" + }, + { + "id": 13444, + "make_id": 11790, + "name": "F250", + "class": "Standard Pickup Trucks" + }, + { + "id": 13449, + "make_id": 11790, + "name": "F250 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 13612, + "make_id": 11790, + "name": "F250 Pickup Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 13615, + "make_id": 11790, + "name": "F250 Pickup CNG", + "class": "Standard Pickup Trucks" + }, + { + "id": 13617, + "make_id": 11790, + "name": "Festiva", + "class": "Subcompact Cars" + }, + { + "id": 13630, + "make_id": 11790, + "name": "Fiesta", + "class": "Subcompact Cars" + }, + { + "id": 13642, + "make_id": 11790, + "name": "Fiesta SFE", + "class": "Subcompact Cars" + }, + { + "id": 13649, + "make_id": 11790, + "name": "Fiesta ST", + "class": "Compact Cars" + }, + { + "id": 13652, + "make_id": 11790, + "name": "Five Hundred", + "class": "Large Cars" + }, + { + "id": 13660, + "make_id": 11790, + "name": "Flex", + "class": "Sport Utility Vehicle" + }, + { + "id": 13683, + "make_id": 11790, + "name": "Focus", + "class": "Compact Cars" + }, + { + "id": 13763, + "make_id": 11790, + "name": "Focus Electric", + "class": "Compact Cars" + }, + { + "id": 13768, + "make_id": 11790, + "name": "Focus RS", + "class": "Midsize Cars" + }, + { + "id": 13769, + "make_id": 11790, + "name": "Focus SFE", + "class": "Compact Cars" + }, + { + "id": 13774, + "make_id": 11790, + "name": "Focus ST", + "class": "Midsize Cars" + }, + { + "id": 13775, + "make_id": 11790, + "name": "Focus Station Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 13802, + "make_id": 11790, + "name": "Freestar Cargo Van", + "class": "Minivan" + }, + { + "id": 13809, + "make_id": 11790, + "name": "Freestar Wagon", + "class": "Minivan" + }, + { + "id": 13817, + "make_id": 11790, + "name": "Freestyle", + "class": "Sport Utility Vehicle" + }, + { + "id": 13823, + "make_id": 11790, + "name": "Fusion", + "class": "Midsize Cars" + }, + { + "id": 13884, + "make_id": 11790, + "name": "Fusion Energi Plug-in Hybrid", + "class": "Midsize Cars" + }, + { + "id": 13889, + "make_id": 11790, + "name": "Fusion Hybrid", + "class": "Midsize Cars" + }, + { + "id": 13897, + "make_id": 11790, + "name": "Fusion S", + "class": "Midsize Cars" + }, + { + "id": 13901, + "make_id": 11790, + "name": "GT", + "class": "Two Seaters" + }, + { + "id": 13903, + "make_id": 11790, + "name": "Laser", + "class": "Subcompact Cars" + }, + { + "id": 13916, + "make_id": 11790, + "name": "Lightning F150", + "class": "Standard Pickup Trucks" + }, + { + "id": 13918, + "make_id": 11790, + "name": "Lightning Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 13919, + "make_id": 11790, + "name": "LTD", + "class": "Midsize Cars" + }, + { + "id": 13935, + "make_id": 11790, + "name": "LTD Crown Victoria", + "class": "Large Cars" + }, + { + "id": 13957, + "make_id": 11790, + "name": "LTD Crown Victoria Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 13965, + "make_id": 11790, + "name": "LTD Crown Victoria\/Country Squire Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 13966, + "make_id": 11790, + "name": "LTD Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 13974, + "make_id": 11790, + "name": "Mustang", + "class": "Subcompact Cars" + }, + { + "id": 14157, + "make_id": 11790, + "name": "Mustang Convertible", + "class": "Subcompact Cars" + }, + { + "id": 14169, + "make_id": 11790, + "name": "Mustang Performance Package", + "class": "Subcompact Cars" + }, + { + "id": 14172, + "make_id": 11790, + "name": "Postal Vehicle", + "class": "Minivan" + }, + { + "id": 14173, + "make_id": 11790, + "name": "Probe", + "class": "Compact Cars" + }, + { + "id": 14214, + "make_id": 11790, + "name": "Ranger", + "class": "Standard Pickup Trucks" + }, + { + "id": 14236, + "make_id": 11790, + "name": "Ranger Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 14518, + "make_id": 11790, + "name": "Ranger Pickup Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 14528, + "make_id": 11790, + "name": "Ranger2WD", + "class": "Standard Pickup Trucks" + }, + { + "id": 14529, + "make_id": 11790, + "name": "Shelby GT350 Mustang", + "class": "Subcompact Cars" + }, + { + "id": 14531, + "make_id": 11790, + "name": "Special Service Police", + "class": "Large Cars" + }, + { + "id": 14534, + "make_id": 11790, + "name": "Taurus", + "class": "Midsize Cars" + }, + { + "id": 14637, + "make_id": 11790, + "name": "Taurus SHO", + "class": "Midsize Cars" + }, + { + "id": 14650, + "make_id": 11790, + "name": "Taurus Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 14697, + "make_id": 11790, + "name": "Taurus Wagon 3.0 A\/C", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 14698, + "make_id": 11790, + "name": "Taurus Wagon V6 A\/C", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 14704, + "make_id": 11790, + "name": "Taurus X", + "class": "Sport Utility Vehicle" + }, + { + "id": 14708, + "make_id": 11790, + "name": "Tempo", + "class": "Compact Cars" + }, + { + "id": 14758, + "make_id": 11790, + "name": "Tempo FS", + "class": "Compact Cars" + }, + { + "id": 14759, + "make_id": 11790, + "name": "Th!nk", + "class": "Two Seaters" + }, + { + "id": 14760, + "make_id": 11790, + "name": "Thunderbird", + "class": "Compact Cars" + }, + { + "id": 14828, + "make_id": 11790, + "name": "Transit Connect", + "class": "Special Purpose Vehicle" + }, + { + "id": 14830, + "make_id": 11790, + "name": "Transit Connect Van", + "class": "Special Purpose Vehicle" + }, + { + "id": 14839, + "make_id": 11790, + "name": "Transit Connect Wagon", + "class": "Special Purpose Vehicle" + }, + { + "id": 14848, + "make_id": 11790, + "name": "Transit Connect Wagon LWB", + "class": "Special Purpose Vehicle" + }, + { + "id": 14852, + "make_id": 11790, + "name": "Transit T150 Wagon", + "class": "Vans, Passenger Type" + }, + { + "id": 14856, + "make_id": 11790, + "name": "Windstar Cargo Van", + "class": "Minivan" + }, + { + "id": 14860, + "make_id": 11790, + "name": "Windstar Van", + "class": "Special Purpose Vehicle" + }, + { + "id": 14871, + "make_id": 11790, + "name": "Windstar Wagon", + "class": "Special Purpose Vehicle" + }, + { + "id": 14886, + "make_id": 14886, + "name": "Coachbuilder Wagon", + "class": "Special Purpose Vehicle" + }, + { + "id": 14887, + "make_id": 14887, + "name": "G80", + "class": "Large Cars" + }, + { + "id": 14888, + "make_id": 14887, + "name": "G80 RWD", + "class": "Large Cars" + }, + { + "id": 14890, + "make_id": 14887, + "name": "G90", + "class": "Large Cars" + }, + { + "id": 14892, + "make_id": 14887, + "name": "G90 RWD", + "class": "Large Cars" + }, + { + "id": 14894, + "make_id": 14894, + "name": "Metro", + "class": "Subcompact Cars" + }, + { + "id": 14914, + "make_id": 14894, + "name": "Metro LSI", + "class": "Subcompact Cars" + }, + { + "id": 14924, + "make_id": 14894, + "name": "Metro LSI Convertible", + "class": "Two Seaters" + }, + { + "id": 14932, + "make_id": 14894, + "name": "Metro XFI", + "class": "Subcompact Cars" + }, + { + "id": 14937, + "make_id": 14894, + "name": "Prizm", + "class": "Subcompact Cars" + }, + { + "id": 14971, + "make_id": 14894, + "name": "Spectrum", + "class": "Subcompact Cars" + }, + { + "id": 14973, + "make_id": 14894, + "name": "Storm", + "class": "Subcompact Cars" + }, + { + "id": 14989, + "make_id": 14894, + "name": "Tracker", + "class": "Special Purpose Vehicle" + }, + { + "id": 14993, + "make_id": 14894, + "name": "Tracker Convertible", + "class": "Special Purpose Vehicle" + }, + { + "id": 15019, + "make_id": 14894, + "name": "Tracker Convertible 4x4", + "class": "Special Purpose Vehicle" + }, + { + "id": 15023, + "make_id": 14894, + "name": "Tracker Hardtop", + "class": "Special Purpose Vehicle" + }, + { + "id": 15025, + "make_id": 14894, + "name": "Tracker Van", + "class": "Special Purpose Vehicle" + }, + { + "id": 15037, + "make_id": 14894, + "name": "Tracker Van 4x4", + "class": "Special Purpose Vehicle" + }, + { + "id": 15041, + "make_id": 15041, + "name": "Acadia", + "class": "Sport Utility Vehicle" + }, + { + "id": 15065, + "make_id": 15041, + "name": "Acadia Limited", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 15067, + "make_id": 15041, + "name": "C15 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 15134, + "make_id": 15041, + "name": "C15 Suburban", + "class": "Special Purpose Vehicle" + }, + { + "id": 15148, + "make_id": 15041, + "name": "C25 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 15185, + "make_id": 15041, + "name": "C2500 Sierra", + "class": "Standard Pickup Trucks" + }, + { + "id": 15231, + "make_id": 15041, + "name": "Caballero Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 15255, + "make_id": 15041, + "name": "Canyon", + "class": "Standard Pickup Trucks" + }, + { + "id": 15335, + "make_id": 15041, + "name": "Canyon Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 15337, + "make_id": 15041, + "name": "Canyon Cab Chassis Inc", + "class": "Standard Pickup Trucks" + }, + { + "id": 15351, + "make_id": 15041, + "name": "Canyon Crew Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 15401, + "make_id": 15041, + "name": "Envoy", + "class": "Sport Utility Vehicle" + }, + { + "id": 15427, + "make_id": 15041, + "name": "Envoy XL", + "class": "Sport Utility Vehicle" + }, + { + "id": 15446, + "make_id": 15041, + "name": "Envoy XUV", + "class": "Sport Utility Vehicle" + }, + { + "id": 15452, + "make_id": 15041, + "name": "EV1", + "class": "Two Seaters" + }, + { + "id": 15454, + "make_id": 15041, + "name": "G15\/25 Rally", + "class": "Vans, Passenger Type" + }, + { + "id": 15518, + "make_id": 15041, + "name": "G15\/25 Vandura", + "class": "Vans" + }, + { + "id": 15577, + "make_id": 15041, + "name": "G35 Rally", + "class": "Vans, Passenger Type" + }, + { + "id": 15589, + "make_id": 15041, + "name": "G35 Vandura", + "class": "Vans" + }, + { + "id": 15599, + "make_id": 15041, + "name": "Jimmy", + "class": "Special Purpose Vehicle" + }, + { + "id": 15654, + "make_id": 15041, + "name": "Jimmy Sonoma", + "class": "Special Purpose Vehicle" + }, + { + "id": 15658, + "make_id": 15041, + "name": "Jimmy V1500", + "class": "Special Purpose Vehicle" + }, + { + "id": 15668, + "make_id": 15041, + "name": "K15 Jimmy", + "class": "Special Purpose Vehicle" + }, + { + "id": 15682, + "make_id": 15041, + "name": "K15 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 15731, + "make_id": 15041, + "name": "K15 Suburban", + "class": "Special Purpose Vehicle" + }, + { + "id": 15745, + "make_id": 15041, + "name": "K25 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 15770, + "make_id": 15041, + "name": "K2500 Sierra", + "class": "Standard Pickup Trucks" + }, + { + "id": 15816, + "make_id": 15041, + "name": "R15 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 15829, + "make_id": 15041, + "name": "R15 Suburban", + "class": "Special Purpose Vehicle" + }, + { + "id": 15834, + "make_id": 15041, + "name": "R1500 Suburban", + "class": "Special Purpose Vehicle" + }, + { + "id": 15840, + "make_id": 15041, + "name": "R25 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 15850, + "make_id": 15041, + "name": "Rally G15\/25", + "class": "Vans" + }, + { + "id": 15861, + "make_id": 15041, + "name": "Rally G15\/25 (passenger)", + "class": "Vans Passenger" + }, + { + "id": 15862, + "make_id": 15041, + "name": "Rally G35", + "class": "Vans" + }, + { + "id": 15864, + "make_id": 15041, + "name": "S15 Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 15880, + "make_id": 15041, + "name": "S15 Jimmy", + "class": "Special Purpose Vehicle" + }, + { + "id": 15930, + "make_id": 15041, + "name": "S15 Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 15996, + "make_id": 15041, + "name": "S15 Utility Body", + "class": "Special Purpose Vehicle" + }, + { + "id": 15998, + "make_id": 15041, + "name": "Safari (cargo)", + "class": "Vans" + }, + { + "id": 16065, + "make_id": 15041, + "name": "Safari (passenger)", + "class": "Vans" + }, + { + "id": 16111, + "make_id": 15041, + "name": "Safari (Passenger)", + "class": "Vans, Passenger Type" + }, + { + "id": 16123, + "make_id": 15041, + "name": "Safari Conversion (cargo)", + "class": "Vans, Cargo Type" + }, + { + "id": 16129, + "make_id": 15041, + "name": "Savana (cargo) (Bi-fuel)", + "class": "Vans, Cargo Type" + }, + { + "id": 16130, + "make_id": 15041, + "name": "Savana 15\/25 Conversion (cargo)", + "class": "Vans, Cargo Type" + }, + { + "id": 16145, + "make_id": 15041, + "name": "Savana 1500 (cargo)", + "class": "Vans, Cargo Type" + }, + { + "id": 16151, + "make_id": 15041, + "name": "Savana 1500 Conversion (cargo)", + "class": "Vans, Cargo Type" + }, + { + "id": 16163, + "make_id": 15041, + "name": "Savana 1500 (cargo)", + "class": "Vans, Cargo Type" + }, + { + "id": 16177, + "make_id": 15041, + "name": "Savana 1500 (Passenger)", + "class": "Vans, Passenger Type" + }, + { + "id": 16200, + "make_id": 15041, + "name": "Savana 1500 Conversion (cargo)", + "class": "Vans, Cargo Type" + }, + { + "id": 16207, + "make_id": 15041, + "name": "Savana 1500\/2500 (Passenger)", + "class": "Vans, Passenger Type" + }, + { + "id": 16210, + "make_id": 15041, + "name": "Savana 1500\/2500 (cargo)", + "class": "Vans" + }, + { + "id": 16253, + "make_id": 15041, + "name": "Savana 1500\/2500 (passenger)", + "class": "Vans" + }, + { + "id": 16265, + "make_id": 15041, + "name": "Savana 1500\/2500 (Passenger)", + "class": "Vans, Passenger Type" + }, + { + "id": 16283, + "make_id": 15041, + "name": "Savana 2500 (cargo)", + "class": "Vans, Cargo Type" + }, + { + "id": 16285, + "make_id": 15041, + "name": "Savana 2500 (Passenger)", + "class": "Vans, Passenger Type" + }, + { + "id": 16296, + "make_id": 15041, + "name": "Savana 2500 Conversion (cargo)", + "class": "Vans, Cargo Type" + }, + { + "id": 16302, + "make_id": 15041, + "name": "Savana 3500 (cargo)", + "class": "Vans, Cargo Type" + }, + { + "id": 16304, + "make_id": 15041, + "name": "Savana 3500 (Passenger)", + "class": "Vans, Passenger Type" + }, + { + "id": 16315, + "make_id": 15041, + "name": "Savana Cargo (dedicated CNG)", + "class": "Vans, Cargo Type" + }, + { + "id": 16316, + "make_id": 15041, + "name": "Savana Passenger (Bi-fuel)", + "class": "Vans, Passenger Type" + }, + { + "id": 16317, + "make_id": 15041, + "name": "Savana Passenger (dedicated CNG)", + "class": "Vans, Passenger Type" + }, + { + "id": 16318, + "make_id": 15041, + "name": "Sierra 15 Hybrid", + "class": "Standard Pickup Trucks" + }, + { + "id": 16336, + "make_id": 15041, + "name": "Sierra 1500", + "class": "Standard Pickup Trucks" + }, + { + "id": 16637, + "make_id": 15041, + "name": "Sierra 2500", + "class": "Standard Pickup Trucks" + }, + { + "id": 16721, + "make_id": 15041, + "name": "Sierra 2500 Hd", + "class": "Standard Pickup Trucks" + }, + { + "id": 16722, + "make_id": 15041, + "name": "Sierra 2500 HD CNG", + "class": "Standard Pickup Trucks" + }, + { + "id": 16724, + "make_id": 15041, + "name": "Sierra C15", + "class": "Standard Pickup Trucks" + }, + { + "id": 16772, + "make_id": 15041, + "name": "Sierra C15 Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 16776, + "make_id": 15041, + "name": "Sierra C15 XFE", + "class": "Standard Pickup Trucks" + }, + { + "id": 16781, + "make_id": 15041, + "name": "Sierra Classic 15 Hybrid", + "class": "Standard Pickup Trucks" + }, + { + "id": 16783, + "make_id": 15041, + "name": "Sierra Classic 1500", + "class": "Standard Pickup Trucks" + }, + { + "id": 16796, + "make_id": 15041, + "name": "Sierra Denali 1500", + "class": "Standard Pickup Trucks" + }, + { + "id": 16798, + "make_id": 15041, + "name": "Sierra K15", + "class": "Standard Pickup Trucks" + }, + { + "id": 16851, + "make_id": 15041, + "name": "Sierra K15 Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 16855, + "make_id": 15041, + "name": "Sonoma", + "class": "Small Pickup Trucks" + }, + { + "id": 16946, + "make_id": 15041, + "name": "Sonoma (FFV)", + "class": "Small Pickup Trucks" + }, + { + "id": 16950, + "make_id": 15041, + "name": "Suburban 1500", + "class": "Special Purpose Vehicle" + }, + { + "id": 16964, + "make_id": 15041, + "name": "Suburban V1500", + "class": "Special Purpose Vehicle" + }, + { + "id": 16973, + "make_id": 15041, + "name": "T15 (S15) Jimmy", + "class": "Special Purpose Vehicle" + }, + { + "id": 17008, + "make_id": 15041, + "name": "T15 (S15) Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 17045, + "make_id": 15041, + "name": "Terrain", + "class": "Sport Utility Vehicle" + }, + { + "id": 17094, + "make_id": 15041, + "name": "V15 Jimmy", + "class": "Special Purpose Vehicle" + }, + { + "id": 17102, + "make_id": 15041, + "name": "V15 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 17114, + "make_id": 15041, + "name": "V15 Suburban", + "class": "Special Purpose Vehicle" + }, + { + "id": 17121, + "make_id": 15041, + "name": "V25 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 17125, + "make_id": 15041, + "name": "Vandura 2500", + "class": "Special Purpose Vehicle" + }, + { + "id": 17126, + "make_id": 15041, + "name": "Vandura G15\/25", + "class": "Vans, Cargo Type" + }, + { + "id": 17163, + "make_id": 15041, + "name": "Vandura G15\/25 (cargo)", + "class": "Vans" + }, + { + "id": 17164, + "make_id": 15041, + "name": "Vandura G35", + "class": "Vans, Cargo Type" + }, + { + "id": 17171, + "make_id": 15041, + "name": "Vandura G35 ", + "class": "Vans" + }, + { + "id": 17173, + "make_id": 15041, + "name": "Vandura G35 (cargo)", + "class": "Vans" + }, + { + "id": 17174, + "make_id": 15041, + "name": "Yukon 1500", + "class": "Special Purpose Vehicle" + }, + { + "id": 17273, + "make_id": 15041, + "name": "Yukon 1500 Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 17285, + "make_id": 15041, + "name": "Yukon 1500 XFE", + "class": "Sport Utility Vehicle" + }, + { + "id": 17286, + "make_id": 15041, + "name": "Yukon C10", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 17288, + "make_id": 15041, + "name": "Yukon C1500", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 17295, + "make_id": 15041, + "name": "Yukon C1500 XL", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 17302, + "make_id": 15041, + "name": "Yukon Denali 1500", + "class": "Sport Utility Vehicle" + }, + { + "id": 17310, + "make_id": 15041, + "name": "Yukon Denali 1500 Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 17313, + "make_id": 15041, + "name": "Yukon Denali K10", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 17314, + "make_id": 15041, + "name": "Yukon Denali XL 1500", + "class": "Sport Utility Vehicle" + }, + { + "id": 17315, + "make_id": 15041, + "name": "Yukon K10", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 17316, + "make_id": 15041, + "name": "Yukon K1500", + "class": "Special Purpose Vehicle" + }, + { + "id": 17326, + "make_id": 15041, + "name": "Yukon K1500 XL", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 17333, + "make_id": 15041, + "name": "Yukon XL 1500", + "class": "Sport Utility Vehicle" + }, + { + "id": 17393, + "make_id": 15041, + "name": "Yukon XL 2500", + "class": "Sport Utility Vehicle" + }, + { + "id": 17399, + "make_id": 15041, + "name": "Yukon XL C10", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 17401, + "make_id": 15041, + "name": "Yukon XL K10", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 17403, + "make_id": 17403, + "name": "Goldacre Limited", + "class": "Two Seaters" + }, + { + "id": 17404, + "make_id": 17404, + "name": "LLV", + "class": "Special Purpose Vehicle" + }, + { + "id": 17405, + "make_id": 17405, + "name": "Kubvan", + "class": "Special Purpose Vehicle" + }, + { + "id": 17409, + "make_id": 17409, + "name": "Accord", + "class": "Subcompact Cars" + }, + { + "id": 17550, + "make_id": 17409, + "name": "Accord Coupe", + "class": "Compact Cars" + }, + { + "id": 17570, + "make_id": 17409, + "name": "Accord Crosstour", + "class": "Sport Utility Vehicle" + }, + { + "id": 17574, + "make_id": 17409, + "name": "Accord Hybrid", + "class": "Midsize Cars" + }, + { + "id": 17579, + "make_id": 17409, + "name": "Accord Plug-in Hybrid", + "class": "Midsize Cars" + }, + { + "id": 17580, + "make_id": 17409, + "name": "Accord Wagon", + "class": "Small Station Wagons" + }, + { + "id": 17600, + "make_id": 17409, + "name": "Civic", + "class": "Subcompact Cars" + }, + { + "id": 17752, + "make_id": 17409, + "name": "Civic 2Dr", + "class": "Compact Cars" + }, + { + "id": 17755, + "make_id": 17409, + "name": "Civic 4Dr", + "class": "Midsize Cars" + }, + { + "id": 17758, + "make_id": 17409, + "name": "Civic CNG", + "class": "Subcompact Cars" + }, + { + "id": 17771, + "make_id": 17409, + "name": "Civic CRX", + "class": "Two Seaters" + }, + { + "id": 17800, + "make_id": 17409, + "name": "Civic CRX HF", + "class": "Two Seaters" + }, + { + "id": 17814, + "make_id": 17409, + "name": "Civic Del Sol", + "class": "Two Seaters" + }, + { + "id": 17828, + "make_id": 17409, + "name": "Civic HB VX", + "class": "Subcompact Cars" + }, + { + "id": 17836, + "make_id": 17409, + "name": "Civic HF", + "class": "Compact Cars" + }, + { + "id": 17840, + "make_id": 17409, + "name": "Civic HX", + "class": "Subcompact Cars" + }, + { + "id": 17852, + "make_id": 17409, + "name": "Civic Hybrid", + "class": "Compact Cars" + }, + { + "id": 17874, + "make_id": 17409, + "name": "Civic Natural Gas", + "class": "Compact Cars" + }, + { + "id": 17878, + "make_id": 17409, + "name": "Civic Wagon", + "class": "Small Station Wagons" + }, + { + "id": 17909, + "make_id": 17409, + "name": "CR-V", + "class": "Special Purpose Vehicle" + }, + { + "id": 17960, + "make_id": 17409, + "name": "CR-Z", + "class": "Two Seaters" + }, + { + "id": 17972, + "make_id": 17409, + "name": "Crosstour", + "class": "Sport Utility Vehicle" + }, + { + "id": 17984, + "make_id": 17409, + "name": "Del Sol", + "class": "Two Seaters" + }, + { + "id": 17994, + "make_id": 17409, + "name": "Element", + "class": "Sport Utility Vehicle" + }, + { + "id": 18029, + "make_id": 17409, + "name": "EV Plus", + "class": "Compact Cars" + }, + { + "id": 18031, + "make_id": 17409, + "name": "Fit", + "class": "Small Station Wagons" + }, + { + "id": 18058, + "make_id": 17409, + "name": "Fit EV", + "class": "Small Station Wagons" + }, + { + "id": 18060, + "make_id": 17409, + "name": "HR-V", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 18065, + "make_id": 17409, + "name": "Insight", + "class": "Two Seaters" + }, + { + "id": 18089, + "make_id": 17409, + "name": "Odyssey", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 18120, + "make_id": 17409, + "name": "Passport", + "class": "Special Purpose Vehicle" + }, + { + "id": 18160, + "make_id": 17409, + "name": "Pilot", + "class": "Sport Utility Vehicle" + }, + { + "id": 18187, + "make_id": 17409, + "name": "Prelude", + "class": "Subcompact Cars" + }, + { + "id": 18257, + "make_id": 17409, + "name": "Ridgeline", + "class": "Small Pickup Trucks" + }, + { + "id": 18259, + "make_id": 17409, + "name": "Ridgeline Truck", + "class": "Standard Pickup Trucks" + }, + { + "id": 18268, + "make_id": 17409, + "name": "S2000", + "class": "Two Seaters" + }, + { + "id": 18278, + "make_id": 18278, + "name": "H3", + "class": "Sport Utility Vehicle" + }, + { + "id": 18291, + "make_id": 18278, + "name": "H3T", + "class": "Standard Pickup Trucks" + }, + { + "id": 18297, + "make_id": 18297, + "name": "Accent", + "class": "Compact Cars" + }, + { + "id": 18331, + "make_id": 18297, + "name": "Accent (SOHC)", + "class": "Compact Cars" + }, + { + "id": 18333, + "make_id": 18297, + "name": "Accent (Sporty)", + "class": "Compact Cars" + }, + { + "id": 18335, + "make_id": 18297, + "name": "Accent Blue", + "class": "Compact Cars" + }, + { + "id": 18337, + "make_id": 18297, + "name": "Accent\/Brio", + "class": "Compact Cars" + }, + { + "id": 18359, + "make_id": 18297, + "name": "Azera", + "class": "Large Cars" + }, + { + "id": 18374, + "make_id": 18297, + "name": "Azera Limited", + "class": "Large Cars" + }, + { + "id": 18376, + "make_id": 18297, + "name": "Elantra", + "class": "Compact Cars" + }, + { + "id": 18442, + "make_id": 18297, + "name": "Elantra Blue", + "class": "Midsize Cars" + }, + { + "id": 18444, + "make_id": 18297, + "name": "Elantra Coupe", + "class": "Midsize Cars" + }, + { + "id": 18449, + "make_id": 18297, + "name": "Elantra GT", + "class": "Midsize Cars" + }, + { + "id": 18459, + "make_id": 18297, + "name": "Elantra Hatchback", + "class": "Midsize Cars" + }, + { + "id": 18460, + "make_id": 18297, + "name": "Elantra Limited", + "class": "Midsize Cars" + }, + { + "id": 18463, + "make_id": 18297, + "name": "Elantra SE", + "class": "Midsize Cars" + }, + { + "id": 18464, + "make_id": 18297, + "name": "Elantra Touring", + "class": "Small Station Wagons" + }, + { + "id": 18472, + "make_id": 18297, + "name": "Elantra Wagon", + "class": "Small Station Wagons" + }, + { + "id": 18482, + "make_id": 18297, + "name": "Entourage", + "class": "Minivan" + }, + { + "id": 18487, + "make_id": 18297, + "name": "Equus", + "class": "Large Cars" + }, + { + "id": 18493, + "make_id": 18297, + "name": "Excel", + "class": "Subcompact Cars" + }, + { + "id": 18520, + "make_id": 18297, + "name": "Genesis", + "class": "Large Cars" + }, + { + "id": 18533, + "make_id": 18297, + "name": "Genesis Coupe", + "class": "Subcompact Cars" + }, + { + "id": 18557, + "make_id": 18297, + "name": "Genesis R Spec", + "class": "Large Cars" + }, + { + "id": 18558, + "make_id": 18297, + "name": "Genesis R-Spec", + "class": "Large Cars" + }, + { + "id": 18560, + "make_id": 18297, + "name": "Genesis RWD", + "class": "Large Cars" + }, + { + "id": 18564, + "make_id": 18297, + "name": "J-Car\/Elantra", + "class": "Compact Cars" + }, + { + "id": 18566, + "make_id": 18297, + "name": "Pony Excel", + "class": "Subcompact Cars" + }, + { + "id": 18569, + "make_id": 18297, + "name": "Precis", + "class": "Compact Cars" + }, + { + "id": 18570, + "make_id": 18297, + "name": "Santa Fe", + "class": "Sport Utility Vehicle" + }, + { + "id": 18646, + "make_id": 18297, + "name": "Santa Fe Sport", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 18666, + "make_id": 18297, + "name": "Santa Fe Sport Ultimate", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 18670, + "make_id": 18297, + "name": "Santa Fe Ultimate", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 18678, + "make_id": 18297, + "name": "Scoupe", + "class": "Subcompact Cars" + }, + { + "id": 18691, + "make_id": 18297, + "name": "Sonata", + "class": "Midsize Cars" + }, + { + "id": 18784, + "make_id": 18297, + "name": "Sonata (Y-3)", + "class": "Midsize Cars" + }, + { + "id": 18787, + "make_id": 18297, + "name": "Sonata Hybrid", + "class": "Midsize Cars" + }, + { + "id": 18794, + "make_id": 18297, + "name": "Sonata Hybrid Limited", + "class": "Midsize Cars" + }, + { + "id": 18797, + "make_id": 18297, + "name": "Sonata Hybrid SE", + "class": "Midsize Cars" + }, + { + "id": 18799, + "make_id": 18297, + "name": "Sonata Limited", + "class": "Large Cars" + }, + { + "id": 18802, + "make_id": 18297, + "name": "Sonata Plug-in Hybrid", + "class": "Midsize Cars" + }, + { + "id": 18803, + "make_id": 18297, + "name": "Sonata Sport Limited", + "class": "Large Cars" + }, + { + "id": 18806, + "make_id": 18297, + "name": "Tiburon", + "class": "Subcompact Cars" + }, + { + "id": 18849, + "make_id": 18297, + "name": "Tiburon (Coupe)", + "class": "Subcompact Cars" + }, + { + "id": 18853, + "make_id": 18297, + "name": "Tucson", + "class": "Sport Utility Vehicle" + }, + { + "id": 18916, + "make_id": 18297, + "name": "Tucson Eco", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 18920, + "make_id": 18297, + "name": "Veloster", + "class": "Compact Cars" + }, + { + "id": 18938, + "make_id": 18297, + "name": "Veracruz", + "class": "Sport Utility Vehicle" + }, + { + "id": 18950, + "make_id": 18297, + "name": "XG300", + "class": "Midsize Cars" + }, + { + "id": 18951, + "make_id": 18297, + "name": "XG350", + "class": "Midsize Cars" + }, + { + "id": 18955, + "make_id": 18955, + "name": "1fas 410", + "class": "Small Pickup Trucks" + }, + { + "id": 18956, + "make_id": 18956, + "name": "BMW 325i", + "class": "Compact Cars" + }, + { + "id": 18957, + "make_id": 18956, + "name": "BMW 325I", + "class": "Compact Cars" + }, + { + "id": 18958, + "make_id": 18956, + "name": "ITS 190E", + "class": "Subcompact Cars" + }, + { + "id": 18959, + "make_id": 18956, + "name": "ITS 190E 2.0", + "class": "Subcompact Cars" + }, + { + "id": 18960, + "make_id": 18956, + "name": "ITS 190E 2.3", + "class": "Subcompact Cars" + }, + { + "id": 18961, + "make_id": 18956, + "name": "ITS 200TE", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 18962, + "make_id": 18956, + "name": "ITS 230CE", + "class": "Subcompact Cars" + }, + { + "id": 18963, + "make_id": 18956, + "name": "ITS 230TE", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 18964, + "make_id": 18956, + "name": "ITS 320", + "class": "Compact Cars" + }, + { + "id": 18965, + "make_id": 18956, + "name": "ITS 520", + "class": "Midsize Cars" + }, + { + "id": 18967, + "make_id": 18956, + "name": "MB 300E", + "class": "Compact Cars" + }, + { + "id": 18968, + "make_id": 18956, + "name": "MB 300SL", + "class": "Two Seaters" + }, + { + "id": 18969, + "make_id": 18969, + "name": "EX35", + "class": "Small Station Wagons" + }, + { + "id": 18979, + "make_id": 18969, + "name": "EX37", + "class": "Small Station Wagons" + }, + { + "id": 18981, + "make_id": 18969, + "name": "FX35", + "class": "Sport Utility Vehicle" + }, + { + "id": 18992, + "make_id": 18969, + "name": "FX35 RWD", + "class": "Sport Utility Vehicle" + }, + { + "id": 19001, + "make_id": 18969, + "name": "FX37", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 19002, + "make_id": 18969, + "name": "FX37 RWD", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 19003, + "make_id": 18969, + "name": "FX45", + "class": "Sport Utility Vehicle" + }, + { + "id": 19009, + "make_id": 18969, + "name": "FX50", + "class": "Sport Utility Vehicle" + }, + { + "id": 19014, + "make_id": 18969, + "name": "G20", + "class": "Compact Cars" + }, + { + "id": 19037, + "make_id": 18969, + "name": "G25", + "class": "Midsize Cars" + }, + { + "id": 19039, + "make_id": 18969, + "name": "G25x", + "class": "Midsize Cars" + }, + { + "id": 19041, + "make_id": 18969, + "name": "G35", + "class": "Compact Cars" + }, + { + "id": 19061, + "make_id": 18969, + "name": "G35 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 19063, + "make_id": 18969, + "name": "G35x", + "class": "Midsize Cars" + }, + { + "id": 19065, + "make_id": 18969, + "name": "G37", + "class": "Midsize Cars" + }, + { + "id": 19073, + "make_id": 18969, + "name": "G37 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 19083, + "make_id": 18969, + "name": "G37 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 19095, + "make_id": 18969, + "name": "G37x", + "class": "Midsize Cars" + }, + { + "id": 19099, + "make_id": 18969, + "name": "G37x Coupe", + "class": "Subcompact Cars" + }, + { + "id": 19104, + "make_id": 18969, + "name": "I30", + "class": "Midsize Cars" + }, + { + "id": 19114, + "make_id": 18969, + "name": "I35", + "class": "Midsize Cars" + }, + { + "id": 19117, + "make_id": 18969, + "name": "J30", + "class": "Subcompact Cars" + }, + { + "id": 19122, + "make_id": 18969, + "name": "JX35", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 19124, + "make_id": 18969, + "name": "M30", + "class": "Subcompact Cars" + }, + { + "id": 19127, + "make_id": 18969, + "name": "M35", + "class": "Large Cars" + }, + { + "id": 19133, + "make_id": 18969, + "name": "M35h", + "class": "Midsize Cars" + }, + { + "id": 19135, + "make_id": 18969, + "name": "M35x", + "class": "Large Cars" + }, + { + "id": 19139, + "make_id": 18969, + "name": "M37", + "class": "Midsize Cars" + }, + { + "id": 19142, + "make_id": 18969, + "name": "M37x", + "class": "Midsize Cars" + }, + { + "id": 19145, + "make_id": 18969, + "name": "M45", + "class": "Compact Cars" + }, + { + "id": 19152, + "make_id": 18969, + "name": "M45x", + "class": "Large Cars" + }, + { + "id": 19155, + "make_id": 18969, + "name": "M56", + "class": "Midsize Cars" + }, + { + "id": 19158, + "make_id": 18969, + "name": "M56x", + "class": "Midsize Cars" + }, + { + "id": 19161, + "make_id": 18969, + "name": "Q40", + "class": "Midsize Cars" + }, + { + "id": 19163, + "make_id": 18969, + "name": "Q45", + "class": "Midsize Cars" + }, + { + "id": 19180, + "make_id": 18969, + "name": "Q45 Full-Active Suspension", + "class": "Midsize Cars" + }, + { + "id": 19185, + "make_id": 18969, + "name": "Q45 Sport", + "class": "Midsize Cars" + }, + { + "id": 19186, + "make_id": 18969, + "name": "Q50", + "class": "Midsize Cars" + }, + { + "id": 19194, + "make_id": 18969, + "name": "Q50 Hybrid", + "class": "Compact Cars" + }, + { + "id": 19200, + "make_id": 18969, + "name": "Q50a", + "class": "Midsize Cars" + }, + { + "id": 19204, + "make_id": 18969, + "name": "Q50S", + "class": "Midsize Cars" + }, + { + "id": 19206, + "make_id": 18969, + "name": "Q50S Hybrid", + "class": "Compact Cars" + }, + { + "id": 19210, + "make_id": 18969, + "name": "Q50S Red Sport", + "class": "Midsize Cars" + }, + { + "id": 19211, + "make_id": 18969, + "name": "Q50S Red Sport ", + "class": "Midsize Cars" + }, + { + "id": 19212, + "make_id": 18969, + "name": "Q60", + "class": "Subcompact Cars" + }, + { + "id": 19215, + "make_id": 18969, + "name": "Q60 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 19219, + "make_id": 18969, + "name": "Q60 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 19222, + "make_id": 18969, + "name": "Q70", + "class": "Midsize Cars" + }, + { + "id": 19234, + "make_id": 18969, + "name": "Q70 Hybrid", + "class": "Midsize Cars" + }, + { + "id": 19237, + "make_id": 18969, + "name": "QX4", + "class": "Special Purpose Vehicle" + }, + { + "id": 19248, + "make_id": 18969, + "name": "QX50", + "class": "Small Station Wagons" + }, + { + "id": 19254, + "make_id": 18969, + "name": "QX56", + "class": "Sport Utility Vehicle" + }, + { + "id": 19274, + "make_id": 18969, + "name": "QX60", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 19280, + "make_id": 18969, + "name": "QX60 Hybrid", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 19286, + "make_id": 18969, + "name": "QX70", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 19290, + "make_id": 18969, + "name": "QX70 RWD", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 19293, + "make_id": 18969, + "name": "QX80", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 19299, + "make_id": 18969, + "name": "QX80 (over 6000 lbs curb weight)", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 19300, + "make_id": 19300, + "name": "Morgan Plus 8", + "class": "Two Seaters" + }, + { + "id": 19301, + "make_id": 19301, + "name": "750C\/I-Mark", + "class": "Subcompact Cars" + }, + { + "id": 19303, + "make_id": 19301, + "name": "Amigo", + "class": "Special Purpose Vehicle" + }, + { + "id": 19334, + "make_id": 19301, + "name": "Ascender", + "class": "Sport Utility Vehicle" + }, + { + "id": 19342, + "make_id": 19301, + "name": "Ascender 5-passenger", + "class": "Sport Utility Vehicle" + }, + { + "id": 19353, + "make_id": 19301, + "name": "Ascender 7-passenger", + "class": "Sport Utility Vehicle" + }, + { + "id": 19362, + "make_id": 19301, + "name": "Axiom", + "class": "Sport Utility Vehicle" + }, + { + "id": 19368, + "make_id": 19301, + "name": "Hombre Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 19393, + "make_id": 19301, + "name": "Hombre Pickup (FFV)", + "class": "Small Pickup Trucks" + }, + { + "id": 19397, + "make_id": 19301, + "name": "i-280 Extended Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 19399, + "make_id": 19301, + "name": "i-290 Extended Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 19403, + "make_id": 19301, + "name": "i-350 Crew Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 19404, + "make_id": 19301, + "name": "i-370 Crew Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 19408, + "make_id": 19301, + "name": "i-370 Extended Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 19410, + "make_id": 19301, + "name": "I-Mark", + "class": "Subcompact Cars" + }, + { + "id": 19439, + "make_id": 19301, + "name": "Impulse", + "class": "Subcompact Cars" + }, + { + "id": 19478, + "make_id": 19301, + "name": "Oasis", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 19482, + "make_id": 19301, + "name": "Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 19573, + "make_id": 19301, + "name": "Pickup 1-Ton", + "class": "Standard Pickup Trucks" + }, + { + "id": 19578, + "make_id": 19301, + "name": "Rodeo", + "class": "Special Purpose Vehicle" + }, + { + "id": 19651, + "make_id": 19301, + "name": "Rodeo Sport", + "class": "Sport Utility Vehicle" + }, + { + "id": 19665, + "make_id": 19301, + "name": "Stylus", + "class": "Compact Cars" + }, + { + "id": 19677, + "make_id": 19301, + "name": "Trooper", + "class": "Special Purpose Vehicle" + }, + { + "id": 19732, + "make_id": 19301, + "name": "Vehicross", + "class": "Special Purpose Vehicle" + }, + { + "id": 19735, + "make_id": 19735, + "name": "190E 2.3 MERC BENZ", + "class": "Compact Cars" + }, + { + "id": 19736, + "make_id": 19735, + "name": "230E MERC BENZ", + "class": "Midsize Cars" + }, + { + "id": 19737, + "make_id": 19735, + "name": "300CE MERC BENZ", + "class": "Midsize Cars" + }, + { + "id": 19738, + "make_id": 19735, + "name": "300E MERC BENZ", + "class": "Midsize Cars" + }, + { + "id": 19739, + "make_id": 19735, + "name": "300SL", + "class": "Two Seaters" + }, + { + "id": 19741, + "make_id": 19735, + "name": "300SL MERC BENZ", + "class": "Two Seaters" + }, + { + "id": 19742, + "make_id": 19735, + "name": "300TE MERC BENZ", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 19743, + "make_id": 19735, + "name": "BMW535I", + "class": "Midsize Cars" + }, + { + "id": 19745, + "make_id": 19735, + "name": "BMW635CSI", + "class": "Midsize Cars" + }, + { + "id": 19747, + "make_id": 19735, + "name": "BMW635L6", + "class": "Midsize Cars" + }, + { + "id": 19749, + "make_id": 19735, + "name": "BMW735I", + "class": "Midsize Cars" + }, + { + "id": 19751, + "make_id": 19735, + "name": "BMW735IL", + "class": "Midsize Cars" + }, + { + "id": 19753, + "make_id": 19735, + "name": "MERC BENZ 300CE", + "class": "Midsize Cars" + }, + { + "id": 19755, + "make_id": 19735, + "name": "MERC BENZ 300E", + "class": "Midsize Cars" + }, + { + "id": 19757, + "make_id": 19735, + "name": "MERC BENZ 300SE", + "class": "Midsize Cars" + }, + { + "id": 19759, + "make_id": 19735, + "name": "MERC BENZ 300SEL", + "class": "Large Cars" + }, + { + "id": 19761, + "make_id": 19735, + "name": "MERC BENZ 300TE", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 19763, + "make_id": 19735, + "name": "MERC.BENZ 260E", + "class": "Midsize Cars" + }, + { + "id": 19764, + "make_id": 19735, + "name": "MERC.BENZ.300SE", + "class": "Midsize Cars" + }, + { + "id": 19765, + "make_id": 19735, + "name": "PORSCHE 928 S4", + "class": "Midsize Cars" + }, + { + "id": 19766, + "make_id": 19735, + "name": "Testarossa", + "class": "Two Seaters" + }, + { + "id": 19771, + "make_id": 19771, + "name": "F-Pace", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 19772, + "make_id": 19771, + "name": "F-Type Convertible", + "class": "Two Seaters" + }, + { + "id": 19778, + "make_id": 19771, + "name": "F-Type Coupe", + "class": "Two Seaters" + }, + { + "id": 19783, + "make_id": 19771, + "name": "F-Type R Convertible", + "class": "Two Seaters" + }, + { + "id": 19786, + "make_id": 19771, + "name": "F-Type R Coupe", + "class": "Two Seaters" + }, + { + "id": 19789, + "make_id": 19771, + "name": "F-Type S Convertible", + "class": "Two Seaters" + }, + { + "id": 19797, + "make_id": 19771, + "name": "F-Type S Coupe", + "class": "Two Seaters" + }, + { + "id": 19804, + "make_id": 19771, + "name": "F-Type V8 S Convertible", + "class": "Two Seaters" + }, + { + "id": 19806, + "make_id": 19771, + "name": "S-Type", + "class": "Midsize Cars" + }, + { + "id": 19810, + "make_id": 19771, + "name": "S-type (X200) V6", + "class": "Midsize Cars" + }, + { + "id": 19811, + "make_id": 19771, + "name": "S-type (X200) V8", + "class": "Midsize Cars" + }, + { + "id": 19812, + "make_id": 19771, + "name": "S-Type 3.0 Litre", + "class": "Midsize Cars" + }, + { + "id": 19821, + "make_id": 19771, + "name": "S-Type 4.2 Litre", + "class": "Midsize Cars" + }, + { + "id": 19827, + "make_id": 19771, + "name": "S-Type R", + "class": "Midsize Cars" + }, + { + "id": 19833, + "make_id": 19771, + "name": "Super V8", + "class": "Midsize Cars" + }, + { + "id": 19840, + "make_id": 19771, + "name": "Vanden Plas", + "class": "Midsize Cars" + }, + { + "id": 19848, + "make_id": 19771, + "name": "Vanden Plas S.C.", + "class": "Midsize Cars" + }, + { + "id": 19849, + "make_id": 19771, + "name": "Vanden Plas S\/C", + "class": "Midsize Cars" + }, + { + "id": 19851, + "make_id": 19771, + "name": "Vdp", + "class": "Large Cars" + }, + { + "id": 19852, + "make_id": 19771, + "name": "Vdp 4.2 Litre", + "class": "Large Cars" + }, + { + "id": 19853, + "make_id": 19771, + "name": "Vdp Lwb", + "class": "Large Cars" + }, + { + "id": 19857, + "make_id": 19771, + "name": "X-Type", + "class": "Compact Cars" + }, + { + "id": 19875, + "make_id": 19771, + "name": "X-Type Sport Brake", + "class": "Midsize Cars" + }, + { + "id": 19883, + "make_id": 19771, + "name": "XE", + "class": "Compact Cars" + }, + { + "id": 19886, + "make_id": 19771, + "name": "XF", + "class": "Midsize Cars" + }, + { + "id": 19913, + "make_id": 19771, + "name": "XF Supercharged", + "class": "Midsize Cars" + }, + { + "id": 19914, + "make_id": 19771, + "name": "XJ", + "class": "Subcompact Cars" + }, + { + "id": 19940, + "make_id": 19771, + "name": "XJ LWB", + "class": "Large Cars" + }, + { + "id": 19948, + "make_id": 19771, + "name": "XJ Sport", + "class": "Compact Cars" + }, + { + "id": 19950, + "make_id": 19771, + "name": "XJ-S", + "class": "Subcompact Cars" + }, + { + "id": 19951, + "make_id": 19771, + "name": "XJ-SC", + "class": "Two Seaters" + }, + { + "id": 19953, + "make_id": 19771, + "name": "XJ12", + "class": "Compact Cars" + }, + { + "id": 19956, + "make_id": 19771, + "name": "XJ6", + "class": "Subcompact Cars" + }, + { + "id": 19969, + "make_id": 19771, + "name": "XJ6L", + "class": "Midsize Cars" + }, + { + "id": 19970, + "make_id": 19771, + "name": "XJ8", + "class": "Compact Cars" + }, + { + "id": 19979, + "make_id": 19771, + "name": "XJ8 4.2 Litre", + "class": "Large Cars" + }, + { + "id": 19981, + "make_id": 19771, + "name": "XJ8L", + "class": "Midsize Cars" + }, + { + "id": 19985, + "make_id": 19771, + "name": "XJ8l", + "class": "Large Cars" + }, + { + "id": 19990, + "make_id": 19771, + "name": "XJL", + "class": "Large Cars" + }, + { + "id": 20003, + "make_id": 19771, + "name": "XJR", + "class": "Compact Cars" + }, + { + "id": 20015, + "make_id": 19771, + "name": "XJR 4.2 Litre", + "class": "Large Cars" + }, + { + "id": 20017, + "make_id": 19771, + "name": "XJRS Convertble", + "class": "Two Seaters" + }, + { + "id": 20018, + "make_id": 19771, + "name": "XJRS Coupe", + "class": "Subcompact Cars" + }, + { + "id": 20019, + "make_id": 19771, + "name": "XJS", + "class": "Subcompact Cars" + }, + { + "id": 20023, + "make_id": 19771, + "name": "XJS Convertible", + "class": "Two Seaters" + }, + { + "id": 20035, + "make_id": 19771, + "name": "XJS Coupe", + "class": "Subcompact Cars" + }, + { + "id": 20045, + "make_id": 19771, + "name": "XJS V12 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 20046, + "make_id": 19771, + "name": "XJS V12 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 20048, + "make_id": 19771, + "name": "XK", + "class": "Minicompact Cars" + }, + { + "id": 20063, + "make_id": 19771, + "name": "XK Convertible", + "class": "Minicompact Cars" + }, + { + "id": 20077, + "make_id": 19771, + "name": "XK8", + "class": "Subcompact Cars" + }, + { + "id": 20086, + "make_id": 19771, + "name": "XK8 Convertible", + "class": "Minicompact Cars" + }, + { + "id": 20095, + "make_id": 19771, + "name": "XKR", + "class": "Subcompact Cars" + }, + { + "id": 20105, + "make_id": 19771, + "name": "XKR Convertible", + "class": "Minicompact Cars" + }, + { + "id": 20115, + "make_id": 20115, + "name": "W-126\/4 Series", + "class": "Large Cars" + }, + { + "id": 20116, + "make_id": 20116, + "name": "Cherokee", + "class": "Special Purpose Vehicle" + }, + { + "id": 20228, + "make_id": 20116, + "name": "Cherokee Active Drive II", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 20234, + "make_id": 20116, + "name": "Cherokee Trailhawk", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 20240, + "make_id": 20116, + "name": "Cherokee\/Wagoneer", + "class": "Special Purpose Vehicle" + }, + { + "id": 20305, + "make_id": 20116, + "name": "CJ7", + "class": "Special Purpose Vehicle" + }, + { + "id": 20331, + "make_id": 20116, + "name": "CJ8", + "class": "Special Purpose Vehicle" + }, + { + "id": 20332, + "make_id": 20116, + "name": "Comanche", + "class": "Standard Pickup Trucks" + }, + { + "id": 20367, + "make_id": 20116, + "name": "Comanche Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 20419, + "make_id": 20116, + "name": "Commander", + "class": "Sport Utility Vehicle" + }, + { + "id": 20449, + "make_id": 20116, + "name": "Compass", + "class": "Sport Utility Vehicle" + }, + { + "id": 20513, + "make_id": 20116, + "name": "Grand Cherokee", + "class": "Special Purpose Vehicle" + }, + { + "id": 20636, + "make_id": 20116, + "name": "Grand Cherokee SRT8", + "class": "Sport Utility Vehicle" + }, + { + "id": 20643, + "make_id": 20116, + "name": "Grand Wagoneer", + "class": "Special Purpose Vehicle" + }, + { + "id": 20662, + "make_id": 20116, + "name": "J-10 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 20669, + "make_id": 20116, + "name": "J-10 Pickup Truck", + "class": "Standard Pickup Trucks" + }, + { + "id": 20681, + "make_id": 20116, + "name": "J-20 Pickup Truck", + "class": "Standard Pickup Trucks" + }, + { + "id": 20685, + "make_id": 20116, + "name": "Liberty", + "class": "Sport Utility Vehicle" + }, + { + "id": 20701, + "make_id": 20116, + "name": "Liberty\/Cherokee", + "class": "Sport Utility Vehicle" + }, + { + "id": 20729, + "make_id": 20116, + "name": "Patriot", + "class": "Sport Utility Vehicle" + }, + { + "id": 20797, + "make_id": 20116, + "name": "Renegade", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 20805, + "make_id": 20116, + "name": "Scrambler", + "class": "Small Pickup Trucks" + }, + { + "id": 20817, + "make_id": 20116, + "name": "Scrambler Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 20829, + "make_id": 20116, + "name": "Wagoneer", + "class": "Special Purpose Vehicle" + }, + { + "id": 20830, + "make_id": 20116, + "name": "Wagoneer Limited", + "class": "Special Purpose Vehicle" + }, + { + "id": 20831, + "make_id": 20116, + "name": "Wrangler", + "class": "Special Purpose Vehicle" + }, + { + "id": 20912, + "make_id": 20116, + "name": "Wrangler Unlimited", + "class": "Sport Utility Vehicle" + }, + { + "id": 20922, + "make_id": 20116, + "name": "Wrangler\/TJ", + "class": "Sport Utility Vehicle" + }, + { + "id": 20936, + "make_id": 20936, + "name": "Kenyon 5.0 Cabrio", + "class": "Two Seaters" + }, + { + "id": 20937, + "make_id": 20936, + "name": "Kenyon 5.0 Coupe", + "class": "Compact Cars" + }, + { + "id": 20938, + "make_id": 20936, + "name": "Kenyon 5.0 Sedan", + "class": "Midsize Cars" + }, + { + "id": 20939, + "make_id": 20936, + "name": "Kenyon 5.0 Sp Sedan", + "class": "Compact Cars" + }, + { + "id": 20940, + "make_id": 20940, + "name": "Amanti", + "class": "Large Cars" + }, + { + "id": 20946, + "make_id": 20940, + "name": "Borrego", + "class": "Sport Utility Vehicle" + }, + { + "id": 20958, + "make_id": 20940, + "name": "Cadenza", + "class": "Large Cars" + }, + { + "id": 20961, + "make_id": 20940, + "name": "Forte", + "class": "Compact Cars" + }, + { + "id": 20991, + "make_id": 20940, + "name": "Forte 5", + "class": "Large Cars" + }, + { + "id": 21001, + "make_id": 20940, + "name": "Forte Eco", + "class": "Midsize Cars" + }, + { + "id": 21005, + "make_id": 20940, + "name": "Forte Koup", + "class": "Compact Cars" + }, + { + "id": 21029, + "make_id": 20940, + "name": "K900", + "class": "Large Cars" + }, + { + "id": 21035, + "make_id": 20940, + "name": "Optima", + "class": "Midsize Cars" + }, + { + "id": 21086, + "make_id": 20940, + "name": "Optima (2006 New Model)", + "class": "Midsize Cars" + }, + { + "id": 21089, + "make_id": 20940, + "name": "Optima FE", + "class": "Large Cars" + }, + { + "id": 21091, + "make_id": 20940, + "name": "Optima Hybrid", + "class": "Midsize Cars" + }, + { + "id": 21097, + "make_id": 20940, + "name": "Optima Hybrid EX", + "class": "Midsize Cars" + }, + { + "id": 21101, + "make_id": 20940, + "name": "Rio", + "class": "Compact Cars" + }, + { + "id": 21137, + "make_id": 20940, + "name": "Rio Eco", + "class": "Compact Cars" + }, + { + "id": 21142, + "make_id": 20940, + "name": "Rondo", + "class": "Midsize Station Wagons" + }, + { + "id": 21154, + "make_id": 20940, + "name": "Sedona", + "class": "Minivan" + }, + { + "id": 21169, + "make_id": 20940, + "name": "Sedona SX", + "class": "Minivan" + }, + { + "id": 21172, + "make_id": 20940, + "name": "Sedona SXL", + "class": "Minivan" + }, + { + "id": 21175, + "make_id": 20940, + "name": "Sephia", + "class": "Compact Cars" + }, + { + "id": 21197, + "make_id": 20940, + "name": "Sephia\/Spectra", + "class": "Compact Cars" + }, + { + "id": 21201, + "make_id": 20940, + "name": "Sorento", + "class": "Sport Utility Vehicle" + }, + { + "id": 21267, + "make_id": 20940, + "name": "Sorento FE", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 21269, + "make_id": 20940, + "name": "Soul", + "class": "Small Station Wagons" + }, + { + "id": 21294, + "make_id": 20940, + "name": "Soul Eco", + "class": "Small Station Wagons" + }, + { + "id": 21298, + "make_id": 20940, + "name": "Soul ECO dynamics", + "class": "Small Station Wagons" + }, + { + "id": 21301, + "make_id": 20940, + "name": "Soul Electric", + "class": "Small Station Wagons" + }, + { + "id": 21303, + "make_id": 20940, + "name": "Spectra", + "class": "Compact Cars" + }, + { + "id": 21317, + "make_id": 20940, + "name": "Spectra 1.8L", + "class": "Compact Cars" + }, + { + "id": 21319, + "make_id": 20940, + "name": "Spectra 2.0L", + "class": "Midsize Cars" + }, + { + "id": 21321, + "make_id": 20940, + "name": "Sportage", + "class": "Special Purpose Vehicle" + }, + { + "id": 21418, + "make_id": 20940, + "name": "Sportage FE", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 21420, + "make_id": 20940, + "name": "Sportage SX", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 21424, + "make_id": 21424, + "name": "Laforza", + "class": "Special Purpose Vehicle" + }, + { + "id": 21426, + "make_id": 21426, + "name": "300E", + "class": "Compact Cars" + }, + { + "id": 21427, + "make_id": 21427, + "name": "Aventador Coupe", + "class": "Two Seaters" + }, + { + "id": 21433, + "make_id": 21427, + "name": "Aventador Roadster", + "class": "Two Seaters" + }, + { + "id": 21438, + "make_id": 21427, + "name": "Aventador Veneno Coupe", + "class": "Two Seaters" + }, + { + "id": 21439, + "make_id": 21427, + "name": "Countach", + "class": "Two Seaters" + }, + { + "id": 21444, + "make_id": 21427, + "name": "Countach Lp500s", + "class": "Two Seaters" + }, + { + "id": 21446, + "make_id": 21427, + "name": "DB132\/144 - Diablo", + "class": "Two Seaters" + }, + { + "id": 21447, + "make_id": 21427, + "name": "DB132\/144 Diablo", + "class": "Two Seaters" + }, + { + "id": 21450, + "make_id": 21427, + "name": "DB132\/Diablo", + "class": "Two Seaters" + }, + { + "id": 21458, + "make_id": 21427, + "name": "Gallardo Coupe", + "class": "Two Seaters" + }, + { + "id": 21474, + "make_id": 21427, + "name": "Gallardo Coupe SL", + "class": "Two Seaters" + }, + { + "id": 21476, + "make_id": 21427, + "name": "Gallardo Spyder", + "class": "Two Seaters" + }, + { + "id": 21492, + "make_id": 21427, + "name": "Huracan", + "class": "Two Seaters" + }, + { + "id": 21496, + "make_id": 21427, + "name": "Huracan Spyder", + "class": "Two Seaters" + }, + { + "id": 21499, + "make_id": 21427, + "name": "L-140\/141 Gallardo", + "class": "Two Seaters" + }, + { + "id": 21503, + "make_id": 21427, + "name": "L-140\/715 Gallardo", + "class": "Two Seaters" + }, + { + "id": 21507, + "make_id": 21427, + "name": "L-147 Murcielago", + "class": "Two Seaters" + }, + { + "id": 21511, + "make_id": 21427, + "name": "L-147\/148 Murcielago", + "class": "Two Seaters" + }, + { + "id": 21519, + "make_id": 21427, + "name": "Murcielago", + "class": "Two Seaters" + }, + { + "id": 21525, + "make_id": 21427, + "name": "Murcielago Reventon", + "class": "Two Seaters" + }, + { + "id": 21526, + "make_id": 21427, + "name": "Murcielago Reventon Roadster", + "class": "Two Seaters" + }, + { + "id": 21527, + "make_id": 21427, + "name": "Murcielago Roadster", + "class": "Two Seaters" + }, + { + "id": 21533, + "make_id": 21427, + "name": "Veneno Roadster", + "class": "Two Seaters" + }, + { + "id": 21534, + "make_id": 21534, + "name": "Defender 110", + "class": "Special Purpose Vehicle" + }, + { + "id": 21535, + "make_id": 21534, + "name": "Defender 90", + "class": "Special Purpose Vehicle" + }, + { + "id": 21538, + "make_id": 21534, + "name": "Discovery", + "class": "Special Purpose Vehicle" + }, + { + "id": 21548, + "make_id": 21534, + "name": "Discovery Series II", + "class": "Sport Utility Vehicle" + }, + { + "id": 21554, + "make_id": 21534, + "name": "Discovery Sport", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 21556, + "make_id": 21534, + "name": "Freelander", + "class": "Sport Utility Vehicle" + }, + { + "id": 21559, + "make_id": 21534, + "name": "Freelander 3 Door", + "class": "Sport Utility Vehicle" + }, + { + "id": 21560, + "make_id": 21534, + "name": "Freelander 5 Door", + "class": "Sport Utility Vehicle" + }, + { + "id": 21561, + "make_id": 21534, + "name": "LR2", + "class": "Sport Utility Vehicle" + }, + { + "id": 21569, + "make_id": 21534, + "name": "LR3", + "class": "Sport Utility Vehicle" + }, + { + "id": 21577, + "make_id": 21534, + "name": "LR4", + "class": "Sport Utility Vehicle" + }, + { + "id": 21584, + "make_id": 21534, + "name": "Range Rover", + "class": "Special Purpose Vehicle" + }, + { + "id": 21629, + "make_id": 21534, + "name": "Range Rover 4.0", + "class": "Special Purpose Vehicle" + }, + { + "id": 21630, + "make_id": 21534, + "name": "Range Rover 4.6", + "class": "Special Purpose Vehicle" + }, + { + "id": 21631, + "make_id": 21534, + "name": "Range Rover County", + "class": "Special Purpose Vehicle" + }, + { + "id": 21633, + "make_id": 21534, + "name": "Range Rover County Classic", + "class": "Special Purpose Vehicle" + }, + { + "id": 21634, + "make_id": 21534, + "name": "Range Rover County LWB", + "class": "Special Purpose Vehicle" + }, + { + "id": 21637, + "make_id": 21534, + "name": "Range Rover Evoque", + "class": "Sport Utility Vehicle" + }, + { + "id": 21642, + "make_id": 21534, + "name": "Range Rover Evoque Convertible", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 21643, + "make_id": 21534, + "name": "Range Rover L", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 21646, + "make_id": 21534, + "name": "Range Rover LWB", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 21649, + "make_id": 21534, + "name": "Range Rover Sport", + "class": "Sport Utility Vehicle" + }, + { + "id": 21674, + "make_id": 21534, + "name": "Range Rover Sport TDV6", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 21675, + "make_id": 21534, + "name": "Range Rover TDV6", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 21676, + "make_id": 21676, + "name": "CT 200h", + "class": "Compact Cars" + }, + { + "id": 21682, + "make_id": 21676, + "name": "ES 250", + "class": "Compact Cars" + }, + { + "id": 21686, + "make_id": 21676, + "name": "ES 300", + "class": "Compact Cars" + }, + { + "id": 21700, + "make_id": 21676, + "name": "ES 300h", + "class": "Midsize Cars" + }, + { + "id": 21704, + "make_id": 21676, + "name": "ES 330", + "class": "Midsize Cars" + }, + { + "id": 21707, + "make_id": 21676, + "name": "ES 350", + "class": "Midsize Cars" + }, + { + "id": 21717, + "make_id": 21676, + "name": "GS 200t", + "class": "Midsize Cars" + }, + { + "id": 21718, + "make_id": 21676, + "name": "GS 200t F Sport", + "class": "Midsize Cars" + }, + { + "id": 21719, + "make_id": 21676, + "name": "GS 300", + "class": "Midsize Cars" + }, + { + "id": 21724, + "make_id": 21676, + "name": "GS 300\/GS 400", + "class": "Midsize Cars" + }, + { + "id": 21730, + "make_id": 21676, + "name": "GS 300\/GS 430", + "class": "Midsize Cars" + }, + { + "id": 21742, + "make_id": 21676, + "name": "GS 350", + "class": "Midsize Cars" + }, + { + "id": 21760, + "make_id": 21676, + "name": "GS 350 F Sport", + "class": "Midsize Cars" + }, + { + "id": 21761, + "make_id": 21676, + "name": "GS 430", + "class": "Midsize Cars" + }, + { + "id": 21762, + "make_id": 21676, + "name": "GS 450h", + "class": "Compact Cars" + }, + { + "id": 21771, + "make_id": 21676, + "name": "GS 460", + "class": "Midsize Cars" + }, + { + "id": 21775, + "make_id": 21676, + "name": "GS F", + "class": "Compact Cars" + }, + { + "id": 21776, + "make_id": 21676, + "name": "GS300", + "class": "Midsize Cars" + }, + { + "id": 21777, + "make_id": 21676, + "name": "GX 460", + "class": "Sport Utility Vehicle" + }, + { + "id": 21784, + "make_id": 21676, + "name": "GX 470", + "class": "Sport Utility Vehicle" + }, + { + "id": 21791, + "make_id": 21676, + "name": "HS 250h", + "class": "Compact Cars" + }, + { + "id": 21794, + "make_id": 21676, + "name": "IS 200t", + "class": "Compact Cars" + }, + { + "id": 21795, + "make_id": 21676, + "name": "IS 250", + "class": "Subcompact Cars" + }, + { + "id": 21815, + "make_id": 21676, + "name": "IS 250 C", + "class": "Subcompact Cars" + }, + { + "id": 21817, + "make_id": 21676, + "name": "IS 250\/IS 250C", + "class": "Subcompact Cars" + }, + { + "id": 21824, + "make_id": 21676, + "name": "IS 300", + "class": "Subcompact Cars" + }, + { + "id": 21834, + "make_id": 21676, + "name": "IS 350", + "class": "Subcompact Cars" + }, + { + "id": 21847, + "make_id": 21676, + "name": "IS 350 C", + "class": "Subcompact Cars" + }, + { + "id": 21849, + "make_id": 21676, + "name": "IS 350\/IS 350C", + "class": "Subcompact Cars" + }, + { + "id": 21853, + "make_id": 21676, + "name": "IS F", + "class": "Subcompact Cars" + }, + { + "id": 21860, + "make_id": 21676, + "name": "LFA", + "class": "Two Seaters" + }, + { + "id": 21861, + "make_id": 21676, + "name": "LS 400", + "class": "Midsize Cars" + }, + { + "id": 21872, + "make_id": 21676, + "name": "LS 430", + "class": "Large Cars" + }, + { + "id": 21878, + "make_id": 21676, + "name": "LS 460", + "class": "Midsize Cars" + }, + { + "id": 21896, + "make_id": 21676, + "name": "LS 460 L", + "class": "Midsize Cars" + }, + { + "id": 21914, + "make_id": 21676, + "name": "LS 600h L", + "class": "Midsize Cars" + }, + { + "id": 21923, + "make_id": 21676, + "name": "LX 450", + "class": "Special Purpose Vehicle" + }, + { + "id": 21925, + "make_id": 21676, + "name": "LX 470", + "class": "Special Purpose Vehicle" + }, + { + "id": 21935, + "make_id": 21676, + "name": "LX 570", + "class": "Sport Utility Vehicle" + }, + { + "id": 21943, + "make_id": 21676, + "name": "NX 200t", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 21947, + "make_id": 21676, + "name": "NX 200t F Sport", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 21949, + "make_id": 21676, + "name": "NX 300h", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 21953, + "make_id": 21676, + "name": "RC 200t", + "class": "Subcompact Cars" + }, + { + "id": 21954, + "make_id": 21676, + "name": "RC 300", + "class": "Subcompact Cars" + }, + { + "id": 21955, + "make_id": 21676, + "name": "RC 350", + "class": "Subcompact Cars" + }, + { + "id": 21959, + "make_id": 21676, + "name": "RC F", + "class": "Subcompact Cars" + }, + { + "id": 21961, + "make_id": 21676, + "name": "RX 300", + "class": "Midsize Station Wagons" + }, + { + "id": 21971, + "make_id": 21676, + "name": "RX 330", + "class": "Sport Utility Vehicle" + }, + { + "id": 21983, + "make_id": 21676, + "name": "RX 350", + "class": "Sport Utility Vehicle" + }, + { + "id": 22012, + "make_id": 21676, + "name": "RX 400h", + "class": "Sport Utility Vehicle" + }, + { + "id": 22018, + "make_id": 21676, + "name": "RX 450h", + "class": "Sport Utility Vehicle" + }, + { + "id": 22032, + "make_id": 21676, + "name": "SC", + "class": "Subcompact Cars" + }, + { + "id": 22036, + "make_id": 21676, + "name": "SC 300\/SC 400", + "class": "Subcompact Cars" + }, + { + "id": 22056, + "make_id": 21676, + "name": "SC 300\/SC 430", + "class": "Minicompact Cars" + }, + { + "id": 22058, + "make_id": 21676, + "name": "SC 430", + "class": "Minicompact Cars" + }, + { + "id": 22065, + "make_id": 22065, + "name": "Aviator", + "class": "Sport Utility Vehicle" + }, + { + "id": 22071, + "make_id": 22065, + "name": "Blackwood", + "class": "Standard Pickup Trucks" + }, + { + "id": 22073, + "make_id": 22065, + "name": "Continental", + "class": "Midsize Cars" + }, + { + "id": 22096, + "make_id": 22065, + "name": "LS", + "class": "Midsize Cars" + }, + { + "id": 22125, + "make_id": 22065, + "name": "Mark LT", + "class": "Standard Pickup Trucks" + }, + { + "id": 22131, + "make_id": 22065, + "name": "Mark VII", + "class": "Midsize Cars" + }, + { + "id": 22143, + "make_id": 22065, + "name": "Mark VIII", + "class": "Midsize Cars" + }, + { + "id": 22149, + "make_id": 22065, + "name": "MKC", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 22153, + "make_id": 22065, + "name": "MKC ", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 22159, + "make_id": 22065, + "name": "MKS", + "class": "Large Cars" + }, + { + "id": 22182, + "make_id": 22065, + "name": "MKT", + "class": "Sport Utility Vehicle" + }, + { + "id": 22198, + "make_id": 22065, + "name": "MKT Hearse", + "class": "Sport Utility Vehicle" + }, + { + "id": 22199, + "make_id": 22065, + "name": "MKT Livery", + "class": "Special Purpose Vehicle" + }, + { + "id": 22207, + "make_id": 22065, + "name": "MKX", + "class": "Sport Utility Vehicle" + }, + { + "id": 22229, + "make_id": 22065, + "name": "MKZ", + "class": "Midsize Cars" + }, + { + "id": 22259, + "make_id": 22065, + "name": "MKZ Hybrid", + "class": "Midsize Cars" + }, + { + "id": 22266, + "make_id": 22065, + "name": "Navigator", + "class": "Special Purpose Vehicle" + }, + { + "id": 22300, + "make_id": 22065, + "name": "Navigator L", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 22306, + "make_id": 22065, + "name": "Navigator Limo.", + "class": "Sport Utility Vehicle" + }, + { + "id": 22307, + "make_id": 22065, + "name": "Town Car", + "class": "Large Cars" + }, + { + "id": 22340, + "make_id": 22065, + "name": "Zephyr", + "class": "Midsize Cars" + }, + { + "id": 22341, + "make_id": 22341, + "name": "London Taxi", + "class": "Large Cars" + }, + { + "id": 22342, + "make_id": 22342, + "name": "London Taxi", + "class": "Special Purpose Vehicle" + }, + { + "id": 22343, + "make_id": 22343, + "name": "98 Esrit V8", + "class": "Two Seaters" + }, + { + "id": 22344, + "make_id": 22343, + "name": "Elan", + "class": "Two Seaters" + }, + { + "id": 22347, + "make_id": 22343, + "name": "Elise\/exige", + "class": "Two Seaters" + }, + { + "id": 22348, + "make_id": 22343, + "name": "Elise\/Exige", + "class": "Two Seaters" + }, + { + "id": 22359, + "make_id": 22343, + "name": "Espirit Turbo", + "class": "Two Seaters" + }, + { + "id": 22360, + "make_id": 22343, + "name": "Esprit", + "class": "Two Seaters" + }, + { + "id": 22362, + "make_id": 22343, + "name": "Esprit Turbo", + "class": "Two Seaters" + }, + { + "id": 22372, + "make_id": 22343, + "name": "Esprit Turbo HC PI", + "class": "Two Seaters" + }, + { + "id": 22374, + "make_id": 22343, + "name": "Esprit V8", + "class": "Two Seaters" + }, + { + "id": 22380, + "make_id": 22343, + "name": "Esprit.v8", + "class": "Two Seaters" + }, + { + "id": 22381, + "make_id": 22343, + "name": "Evora", + "class": "Minicompact Cars" + }, + { + "id": 22398, + "make_id": 22398, + "name": "TR40", + "class": "Standard Pickup Trucks" + }, + { + "id": 22399, + "make_id": 22399, + "name": "225", + "class": "Minicompact Cars" + }, + { + "id": 22400, + "make_id": 22399, + "name": "228", + "class": "Midsize Cars" + }, + { + "id": 22404, + "make_id": 22399, + "name": "430", + "class": "Subcompact Cars" + }, + { + "id": 22409, + "make_id": 22399, + "name": "222E", + "class": "Minicompact Cars" + }, + { + "id": 22412, + "make_id": 22399, + "name": "Biturbo", + "class": "Minicompact Cars" + }, + { + "id": 22421, + "make_id": 22399, + "name": "Biturbo 425", + "class": "Subcompact Cars" + }, + { + "id": 22424, + "make_id": 22399, + "name": "Biturbo Spyder", + "class": "Two Seaters" + }, + { + "id": 22427, + "make_id": 22399, + "name": "Coupe and Gransport", + "class": "Subcompact Cars" + }, + { + "id": 22429, + "make_id": 22399, + "name": "Coupe Cambiocorsa\/coupe GT", + "class": "Subcompact Cars" + }, + { + "id": 22431, + "make_id": 22399, + "name": "Coupe Cambiocorsa\/Coupe GT", + "class": "Subcompact Cars" + }, + { + "id": 22435, + "make_id": 22399, + "name": "Coupe Cambiocorsa\/GT\/G-Sport", + "class": "Subcompact Cars" + }, + { + "id": 22437, + "make_id": 22399, + "name": "Ghibli S RWD", + "class": "Midsize Cars" + }, + { + "id": 22438, + "make_id": 22399, + "name": "Ghibli V6", + "class": "Midsize Cars" + }, + { + "id": 22442, + "make_id": 22399, + "name": "Ghibli V6 SQ4", + "class": "Midsize Cars" + }, + { + "id": 22444, + "make_id": 22399, + "name": "GranTurismo", + "class": "Subcompact Cars" + }, + { + "id": 22456, + "make_id": 22399, + "name": "GranTurismo Convertible", + "class": "Subcompact Cars" + }, + { + "id": 22464, + "make_id": 22399, + "name": "Karif", + "class": "Two Seaters" + }, + { + "id": 22468, + "make_id": 22399, + "name": "Q", + "class": "Two Seaters" + }, + { + "id": 22469, + "make_id": 22399, + "name": "Quattroporte", + "class": "Midsize Cars" + }, + { + "id": 22483, + "make_id": 22399, + "name": "Quattroporte GTS", + "class": "Large Cars" + }, + { + "id": 22486, + "make_id": 22399, + "name": "Quattroporte S", + "class": "Large Cars" + }, + { + "id": 22487, + "make_id": 22399, + "name": "Quattroporte SQ4 V6", + "class": "Large Cars" + }, + { + "id": 22490, + "make_id": 22399, + "name": "Quattroporte\/QP Sport GT", + "class": "Large Cars" + }, + { + "id": 22492, + "make_id": 22399, + "name": "Spider Cambiocorsa\/spider GT", + "class": "Two Seaters" + }, + { + "id": 22494, + "make_id": 22399, + "name": "Spider Cambiocorsa\/Spider GT", + "class": "Two Seaters" + }, + { + "id": 22498, + "make_id": 22399, + "name": "Spyder", + "class": "Two Seaters" + }, + { + "id": 22504, + "make_id": 22399, + "name": "Spyder Cambiocorsa\/GT\/90 ANV", + "class": "Two Seaters" + }, + { + "id": 22506, + "make_id": 22506, + "name": "57", + "class": "Large Cars" + }, + { + "id": 22515, + "make_id": 22506, + "name": "62", + "class": "Large Cars" + }, + { + "id": 22523, + "make_id": 22506, + "name": "57 S", + "class": "Large Cars" + }, + { + "id": 22525, + "make_id": 22506, + "name": "57 Zeppelin", + "class": "Large Cars" + }, + { + "id": 22526, + "make_id": 22506, + "name": "57S", + "class": "Large Cars" + }, + { + "id": 22531, + "make_id": 22506, + "name": "62 S", + "class": "Large Cars" + }, + { + "id": 22533, + "make_id": 22506, + "name": "62S", + "class": "Large Cars" + }, + { + "id": 22536, + "make_id": 22506, + "name": "Landaulet", + "class": "Large Cars" + }, + { + "id": 22537, + "make_id": 22537, + "name": "2", + "class": "Compact Cars" + }, + { + "id": 22547, + "make_id": 22537, + "name": "3", + "class": "Compact Cars" + }, + { + "id": 22589, + "make_id": 22537, + "name": "5", + "class": "Midsize Station Wagons" + }, + { + "id": 22606, + "make_id": 22537, + "name": "6", + "class": "Midsize Cars" + }, + { + "id": 22656, + "make_id": 22537, + "name": "323", + "class": "Compact Cars" + }, + { + "id": 22684, + "make_id": 22537, + "name": "626", + "class": "Compact Cars" + }, + { + "id": 22739, + "make_id": 22537, + "name": "929", + "class": "Midsize Cars" + }, + { + "id": 22751, + "make_id": 22537, + "name": "2500", + "class": "Standard Pickup Trucks" + }, + { + "id": 22753, + "make_id": 22537, + "name": "3 4-Door", + "class": "Compact Cars" + }, + { + "id": 22767, + "make_id": 22537, + "name": "3 5-Door", + "class": "Midsize Cars" + }, + { + "id": 22781, + "make_id": 22537, + "name": "3 DI 4-Door", + "class": "Compact Cars" + }, + { + "id": 22785, + "make_id": 22537, + "name": "3 DI 5-Door", + "class": "Midsize Cars" + }, + { + "id": 22789, + "make_id": 22537, + "name": "323 Protege 4x4", + "class": "Compact Cars" + }, + { + "id": 22791, + "make_id": 22537, + "name": "323 Wagon", + "class": "Small Station Wagons" + }, + { + "id": 22797, + "make_id": 22537, + "name": "323\/323 Protege", + "class": "Compact Cars" + }, + { + "id": 22811, + "make_id": 22537, + "name": "6 Sport Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 22819, + "make_id": 22537, + "name": "626\/MX-6", + "class": "Midsize Cars" + }, + { + "id": 22839, + "make_id": 22537, + "name": "B2000", + "class": "Small Pickup Trucks" + }, + { + "id": 22841, + "make_id": 22537, + "name": "B2000\/B2200 Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 22848, + "make_id": 22537, + "name": "B2000\/B2200\/B2600", + "class": "Small Pickup Trucks" + }, + { + "id": 22855, + "make_id": 22537, + "name": "B2200\/B2600", + "class": "Small Pickup Trucks" + }, + { + "id": 22863, + "make_id": 22537, + "name": "B2200\/B2600i", + "class": "Standard Pickup Trucks" + }, + { + "id": 22889, + "make_id": 22537, + "name": "B2300", + "class": "Standard Pickup Trucks" + }, + { + "id": 22907, + "make_id": 22537, + "name": "B2300\/B3000\/B4000 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 22950, + "make_id": 22537, + "name": "B2500", + "class": "Standard Pickup Trucks" + }, + { + "id": 22954, + "make_id": 22537, + "name": "B2500\/B3000\/B4000", + "class": "Standard Pickup Trucks" + }, + { + "id": 22964, + "make_id": 22537, + "name": "B2600 4x4", + "class": "Small Pickup Trucks" + }, + { + "id": 22968, + "make_id": 22537, + "name": "B2600i 4x4", + "class": "Small Pickup Trucks" + }, + { + "id": 22977, + "make_id": 22537, + "name": "B3000", + "class": "Standard Pickup Trucks" + }, + { + "id": 23009, + "make_id": 22537, + "name": "B3000 (FFV) Ethanol", + "class": "Standard Pickup Trucks" + }, + { + "id": 23010, + "make_id": 22537, + "name": "B4000", + "class": "Standard Pickup Trucks" + }, + { + "id": 23050, + "make_id": 22537, + "name": "CX-3", + "class": "Compact Cars" + }, + { + "id": 23054, + "make_id": 22537, + "name": "CX-5", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 23070, + "make_id": 22537, + "name": "CX-7", + "class": "Sport Utility Vehicle" + }, + { + "id": 23085, + "make_id": 22537, + "name": "CX-9", + "class": "Sport Utility Vehicle" + }, + { + "id": 23105, + "make_id": 22537, + "name": "GLC", + "class": "Subcompact Cars" + }, + { + "id": 23115, + "make_id": 22537, + "name": "GLC Wagon", + "class": "Small Station Wagons" + }, + { + "id": 23124, + "make_id": 22537, + "name": "Millenia", + "class": "Compact Cars" + }, + { + "id": 23140, + "make_id": 22537, + "name": "MPV", + "class": "Special Purpose Vehicle" + }, + { + "id": 23173, + "make_id": 22537, + "name": "MPV 4x4", + "class": "Special Purpose Vehicle" + }, + { + "id": 23186, + "make_id": 22537, + "name": "MX-3", + "class": "Subcompact Cars" + }, + { + "id": 23206, + "make_id": 22537, + "name": "MX-5", + "class": "Two Seaters" + }, + { + "id": 23238, + "make_id": 22537, + "name": "MX-5 Miata", + "class": "Two Seaters" + }, + { + "id": 23277, + "make_id": 22537, + "name": "MX-6", + "class": "Subcompact Cars" + }, + { + "id": 23297, + "make_id": 22537, + "name": "Navajo", + "class": "Special Purpose Vehicle" + }, + { + "id": 23307, + "make_id": 22537, + "name": "Navajo 4x4", + "class": "Special Purpose Vehicle" + }, + { + "id": 23313, + "make_id": 22537, + "name": "Protege", + "class": "Compact Cars" + }, + { + "id": 23351, + "make_id": 22537, + "name": "Protege\/Protege 5", + "class": "Compact Cars" + }, + { + "id": 23358, + "make_id": 22537, + "name": "Protege\/Protege MPS", + "class": "Compact Cars" + }, + { + "id": 23362, + "make_id": 22537, + "name": "RX-7", + "class": "Two Seaters" + }, + { + "id": 23398, + "make_id": 22537, + "name": "RX-8", + "class": "Subcompact Cars" + }, + { + "id": 23414, + "make_id": 22537, + "name": "Speed 3", + "class": "Midsize Cars" + }, + { + "id": 23420, + "make_id": 22537, + "name": "Tribute", + "class": "Sport Utility Vehicle" + }, + { + "id": 23468, + "make_id": 22537, + "name": "Tribute Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 23477, + "make_id": 23477, + "name": "240 DL\/240 GL Sedan", + "class": "Compact Cars" + }, + { + "id": 23479, + "make_id": 23477, + "name": "240 DL\/240 GL Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 23481, + "make_id": 23477, + "name": "740 GLE Sedan", + "class": "Midsize Cars" + }, + { + "id": 23482, + "make_id": 23477, + "name": "740 GLE Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 23483, + "make_id": 23483, + "name": "570S Coupe", + "class": "Two Seaters" + }, + { + "id": 23484, + "make_id": 23483, + "name": "650S Coupe", + "class": "Two Seaters" + }, + { + "id": 23486, + "make_id": 23483, + "name": "650S Spider", + "class": "Two Seaters" + }, + { + "id": 23488, + "make_id": 23483, + "name": "675LT Coupe", + "class": "Two Seaters" + }, + { + "id": 23489, + "make_id": 23483, + "name": "MP4-12C Coupe", + "class": "Two Seaters" + }, + { + "id": 23491, + "make_id": 23483, + "name": "MP4-12C Spider", + "class": "Two Seaters" + }, + { + "id": 23492, + "make_id": 23483, + "name": "P1", + "class": "Two Seaters" + }, + { + "id": 23494, + "make_id": 23494, + "name": "190", + "class": "Subcompact Cars" + }, + { + "id": 23504, + "make_id": 23494, + "name": "190 D 2.2\/190 E 2.3", + "class": "Subcompact Cars" + }, + { + "id": 23514, + "make_id": 23494, + "name": "190D 2.5", + "class": "Subcompact Cars" + }, + { + "id": 23518, + "make_id": 23494, + "name": "190D 2.5 Turbo", + "class": "Subcompact Cars" + }, + { + "id": 23519, + "make_id": 23494, + "name": "190E", + "class": "Subcompact Cars" + }, + { + "id": 23521, + "make_id": 23494, + "name": "190E 2.3", + "class": "Subcompact Cars" + }, + { + "id": 23531, + "make_id": 23494, + "name": "190E 2.3-16", + "class": "Subcompact Cars" + }, + { + "id": 23533, + "make_id": 23494, + "name": "190E 2.6", + "class": "Subcompact Cars" + }, + { + "id": 23546, + "make_id": 23494, + "name": "200E", + "class": "Compact Cars" + }, + { + "id": 23547, + "make_id": 23494, + "name": "230CE", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 23548, + "make_id": 23494, + "name": "230E", + "class": "Compact Cars" + }, + { + "id": 23550, + "make_id": 23494, + "name": "230TE", + "class": "Subcompact Cars" + }, + { + "id": 23551, + "make_id": 23494, + "name": "260E", + "class": "Compact Cars" + }, + { + "id": 23556, + "make_id": 23494, + "name": "300CE", + "class": "Subcompact Cars" + }, + { + "id": 23562, + "make_id": 23494, + "name": "300D", + "class": "Compact Cars" + }, + { + "id": 23563, + "make_id": 23494, + "name": "300D 2.5 Turbo", + "class": "Compact Cars" + }, + { + "id": 23567, + "make_id": 23494, + "name": "300D\/300CD", + "class": "Compact Cars" + }, + { + "id": 23572, + "make_id": 23494, + "name": "300E", + "class": "Compact Cars" + }, + { + "id": 23583, + "make_id": 23494, + "name": "300E 2.6", + "class": "Compact Cars" + }, + { + "id": 23586, + "make_id": 23494, + "name": "300E 2.8", + "class": "Compact Cars" + }, + { + "id": 23587, + "make_id": 23494, + "name": "300E 4Matic", + "class": "Compact Cars" + }, + { + "id": 23591, + "make_id": 23494, + "name": "300SD", + "class": "Compact Cars" + }, + { + "id": 23595, + "make_id": 23494, + "name": "300SD\/380SE", + "class": "Compact Cars" + }, + { + "id": 23600, + "make_id": 23494, + "name": "300SDL", + "class": "Midsize Cars" + }, + { + "id": 23602, + "make_id": 23494, + "name": "300SE", + "class": "Compact Cars" + }, + { + "id": 23608, + "make_id": 23494, + "name": "300SEL", + "class": "Midsize Cars" + }, + { + "id": 23616, + "make_id": 23494, + "name": "300SL", + "class": "Two Seaters" + }, + { + "id": 23625, + "make_id": 23494, + "name": "300TD", + "class": "Midsize Station Wagons" + }, + { + "id": 23631, + "make_id": 23494, + "name": "300TE", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 23637, + "make_id": 23494, + "name": "300TE 4Matic", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 23641, + "make_id": 23494, + "name": "350SD Turbo", + "class": "Compact Cars" + }, + { + "id": 23642, + "make_id": 23494, + "name": "350SDL Turbo", + "class": "Midsize Cars" + }, + { + "id": 23644, + "make_id": 23494, + "name": "380SE", + "class": "Compact Cars" + }, + { + "id": 23645, + "make_id": 23494, + "name": "380SL", + "class": "Two Seaters" + }, + { + "id": 23648, + "make_id": 23494, + "name": "400E", + "class": "Compact Cars" + }, + { + "id": 23650, + "make_id": 23494, + "name": "400SE", + "class": "Large Cars" + }, + { + "id": 23651, + "make_id": 23494, + "name": "400SEL", + "class": "Large Cars" + }, + { + "id": 23652, + "make_id": 23494, + "name": "420 SE", + "class": "Midsize Cars" + }, + { + "id": 23653, + "make_id": 23494, + "name": "420SE", + "class": "Midsize Cars" + }, + { + "id": 23654, + "make_id": 23494, + "name": "420SEL", + "class": "Midsize Cars" + }, + { + "id": 23660, + "make_id": 23494, + "name": "500E", + "class": "Compact Cars" + }, + { + "id": 23662, + "make_id": 23494, + "name": "500SE", + "class": "Midsize Cars" + }, + { + "id": 23665, + "make_id": 23494, + "name": "500SEC", + "class": "Compact Cars" + }, + { + "id": 23672, + "make_id": 23494, + "name": "500SEL", + "class": "Midsize Cars" + }, + { + "id": 23678, + "make_id": 23494, + "name": "500SEL 5.0L", + "class": "Large Cars" + }, + { + "id": 23679, + "make_id": 23494, + "name": "500SEL 5.6L", + "class": "Midsize Cars" + }, + { + "id": 23680, + "make_id": 23494, + "name": "500SL", + "class": "Two Seaters" + }, + { + "id": 23688, + "make_id": 23494, + "name": "560SE", + "class": "Midsize Cars" + }, + { + "id": 23689, + "make_id": 23494, + "name": "560SEC", + "class": "Compact Cars" + }, + { + "id": 23696, + "make_id": 23494, + "name": "560SEL", + "class": "Midsize Cars" + }, + { + "id": 23703, + "make_id": 23494, + "name": "560SL", + "class": "Two Seaters" + }, + { + "id": 23708, + "make_id": 23494, + "name": "600SEL", + "class": "Large Cars" + }, + { + "id": 23709, + "make_id": 23494, + "name": "600SEL\/SEC", + "class": "Large Cars" + }, + { + "id": 23710, + "make_id": 23494, + "name": "600SL", + "class": "Two Seaters" + }, + { + "id": 23711, + "make_id": 23494, + "name": "AMG C63", + "class": "Compact Cars" + }, + { + "id": 23713, + "make_id": 23494, + "name": "AMG C63 S", + "class": "Compact Cars" + }, + { + "id": 23715, + "make_id": 23494, + "name": "AMG CLA45 4matic", + "class": "Compact Cars" + }, + { + "id": 23716, + "make_id": 23494, + "name": "AMG CLS63 S 4matic", + "class": "Compact Cars" + }, + { + "id": 23717, + "make_id": 23494, + "name": "AMG E63 4matic", + "class": "Midsize Cars" + }, + { + "id": 23718, + "make_id": 23494, + "name": "AMG E63 S 4matic", + "class": "Midsize Cars" + }, + { + "id": 23719, + "make_id": 23494, + "name": "AMG E63 S 4matic (wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 23720, + "make_id": 23494, + "name": "AMG G63", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 23721, + "make_id": 23494, + "name": "AMG G65", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 23722, + "make_id": 23494, + "name": "AMG GL63", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 23723, + "make_id": 23494, + "name": "AMG GLA45 4matic", + "class": "Midsize Station Wagons" + }, + { + "id": 23724, + "make_id": 23494, + "name": "AMG GLE63", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 23725, + "make_id": 23494, + "name": "AMG GLE63 S", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 23726, + "make_id": 23494, + "name": "AMG GLE63 S Coupe", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 23727, + "make_id": 23494, + "name": "AMG GLS63", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 23728, + "make_id": 23494, + "name": "AMG GT S", + "class": "Two Seaters" + }, + { + "id": 23729, + "make_id": 23494, + "name": "AMG S63 4matic", + "class": "Large Cars" + }, + { + "id": 23730, + "make_id": 23494, + "name": "AMG S63 4matic Coupe", + "class": "Compact Cars" + }, + { + "id": 23731, + "make_id": 23494, + "name": "AMG S65", + "class": "Large Cars" + }, + { + "id": 23732, + "make_id": 23494, + "name": "AMG S65 Coupe", + "class": "Compact Cars" + }, + { + "id": 23733, + "make_id": 23494, + "name": "AMG SL63", + "class": "Two Seaters" + }, + { + "id": 23734, + "make_id": 23494, + "name": "AMG SL65", + "class": "Two Seaters" + }, + { + "id": 23735, + "make_id": 23494, + "name": "AMG SLK55", + "class": "Two Seaters" + }, + { + "id": 23736, + "make_id": 23494, + "name": "B-Class Electric Drive", + "class": "Midsize Cars" + }, + { + "id": 23738, + "make_id": 23494, + "name": "B250e", + "class": "Midsize Cars" + }, + { + "id": 23739, + "make_id": 23494, + "name": "C220", + "class": "Compact Cars" + }, + { + "id": 23742, + "make_id": 23494, + "name": "C230", + "class": "Compact Cars" + }, + { + "id": 23748, + "make_id": 23494, + "name": "C230 Kompressor", + "class": "Compact Cars" + }, + { + "id": 23760, + "make_id": 23494, + "name": "C230 Kompressor Sports Coupe", + "class": "Compact Cars" + }, + { + "id": 23764, + "make_id": 23494, + "name": "C240", + "class": "Compact Cars" + }, + { + "id": 23774, + "make_id": 23494, + "name": "C240 (Wagon)", + "class": "Small Station Wagons" + }, + { + "id": 23780, + "make_id": 23494, + "name": "C240 4matic", + "class": "Compact Cars" + }, + { + "id": 23783, + "make_id": 23494, + "name": "C240 4matic (Wagon)", + "class": "Small Station Wagons" + }, + { + "id": 23786, + "make_id": 23494, + "name": "C250", + "class": "Compact Cars" + }, + { + "id": 23789, + "make_id": 23494, + "name": "C250 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 23793, + "make_id": 23494, + "name": "C280", + "class": "Compact Cars" + }, + { + "id": 23802, + "make_id": 23494, + "name": "C280 4matic", + "class": "Compact Cars" + }, + { + "id": 23804, + "make_id": 23494, + "name": "C300", + "class": "Compact Cars" + }, + { + "id": 23815, + "make_id": 23494, + "name": "C300 4matic", + "class": "Compact Cars" + }, + { + "id": 23830, + "make_id": 23494, + "name": "C300 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 23831, + "make_id": 23494, + "name": "C300 Coupe 4matic", + "class": "Subcompact Cars" + }, + { + "id": 23832, + "make_id": 23494, + "name": "C32 AMG", + "class": "Compact Cars" + }, + { + "id": 23835, + "make_id": 23494, + "name": "C320", + "class": "Compact Cars" + }, + { + "id": 23843, + "make_id": 23494, + "name": "C320 (Wagon)", + "class": "Small Station Wagons" + }, + { + "id": 23847, + "make_id": 23494, + "name": "C320 4matic", + "class": "Compact Cars" + }, + { + "id": 23849, + "make_id": 23494, + "name": "C320 4matic (Wagon)", + "class": "Small Station Wagons" + }, + { + "id": 23851, + "make_id": 23494, + "name": "C320 4matic Sedan", + "class": "Compact Cars" + }, + { + "id": 23852, + "make_id": 23494, + "name": "C320 Sports Coupe", + "class": "Compact Cars" + }, + { + "id": 23858, + "make_id": 23494, + "name": "C350", + "class": "Compact Cars" + }, + { + "id": 23874, + "make_id": 23494, + "name": "C350 4matic", + "class": "Compact Cars" + }, + { + "id": 23876, + "make_id": 23494, + "name": "C350 4matic Coupe", + "class": "Subcompact Cars" + }, + { + "id": 23880, + "make_id": 23494, + "name": "C350 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 23884, + "make_id": 23494, + "name": "C36", + "class": "Compact Cars" + }, + { + "id": 23885, + "make_id": 23494, + "name": "C36 AMG", + "class": "Compact Cars" + }, + { + "id": 23887, + "make_id": 23494, + "name": "C400 4matic", + "class": "Compact Cars" + }, + { + "id": 23888, + "make_id": 23494, + "name": "C43", + "class": "Compact Cars" + }, + { + "id": 23889, + "make_id": 23494, + "name": "C43 AMG", + "class": "Compact Cars" + }, + { + "id": 23891, + "make_id": 23494, + "name": "C450 AMG", + "class": "Compact Cars" + }, + { + "id": 23892, + "make_id": 23494, + "name": "C55 AMG", + "class": "Compact Cars" + }, + { + "id": 23894, + "make_id": 23494, + "name": "C63 AMG", + "class": "Compact Cars" + }, + { + "id": 23901, + "make_id": 23494, + "name": "C63 AMG Black Series Coupe", + "class": "Subcompact Cars" + }, + { + "id": 23903, + "make_id": 23494, + "name": "C63 AMG Coupe", + "class": "Subcompact Cars" + }, + { + "id": 23907, + "make_id": 23494, + "name": "CL500", + "class": "Compact Cars" + }, + { + "id": 23916, + "make_id": 23494, + "name": "CL55 AMG", + "class": "Compact Cars" + }, + { + "id": 23922, + "make_id": 23494, + "name": "CL550", + "class": "Compact Cars" + }, + { + "id": 23924, + "make_id": 23494, + "name": "CL550 4matic", + "class": "Compact Cars" + }, + { + "id": 23930, + "make_id": 23494, + "name": "CL600", + "class": "Compact Cars" + }, + { + "id": 23946, + "make_id": 23494, + "name": "CL63 AMG", + "class": "Compact Cars" + }, + { + "id": 23953, + "make_id": 23494, + "name": "CL65 AMG", + "class": "Compact Cars" + }, + { + "id": 23962, + "make_id": 23494, + "name": "CLA250", + "class": "Compact Cars" + }, + { + "id": 23965, + "make_id": 23494, + "name": "CLA250 4matic", + "class": "Compact Cars" + }, + { + "id": 23970, + "make_id": 23494, + "name": "CLA45 AMG 4matic", + "class": "Compact Cars" + }, + { + "id": 23972, + "make_id": 23494, + "name": "CLK320", + "class": "Subcompact Cars" + }, + { + "id": 23980, + "make_id": 23494, + "name": "CLK320 (Cabriolet)", + "class": "Minicompact Cars" + }, + { + "id": 23986, + "make_id": 23494, + "name": "CLK320 Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 23987, + "make_id": 23494, + "name": "CLK350", + "class": "Subcompact Cars" + }, + { + "id": 23991, + "make_id": 23494, + "name": "CLK350 (Cabriolet)", + "class": "Subcompact Cars" + }, + { + "id": 23995, + "make_id": 23494, + "name": "CLK430", + "class": "Subcompact Cars" + }, + { + "id": 23999, + "make_id": 23494, + "name": "CLK430 (Cabriolet)", + "class": "Minicompact Cars" + }, + { + "id": 24003, + "make_id": 23494, + "name": "CLK500", + "class": "Subcompact Cars" + }, + { + "id": 24007, + "make_id": 23494, + "name": "CLK500 (Cabriolet)", + "class": "Subcompact Cars" + }, + { + "id": 24010, + "make_id": 23494, + "name": "CLK55 AMG", + "class": "Subcompact Cars" + }, + { + "id": 24015, + "make_id": 23494, + "name": "CLK55 AMG (Cabriolet)", + "class": "Subcompact Cars" + }, + { + "id": 24019, + "make_id": 23494, + "name": "CLK550", + "class": "Subcompact Cars" + }, + { + "id": 24022, + "make_id": 23494, + "name": "CLK550 (Cabriolet)", + "class": "Subcompact Cars" + }, + { + "id": 24025, + "make_id": 23494, + "name": "CLK63 AMG", + "class": "Subcompact Cars" + }, + { + "id": 24026, + "make_id": 23494, + "name": "CLK63 AMG (Cabriolet)", + "class": "Subcompact Cars" + }, + { + "id": 24028, + "make_id": 23494, + "name": "CLS400", + "class": "Compact Cars" + }, + { + "id": 24030, + "make_id": 23494, + "name": "CLS400 4matic", + "class": "Compact Cars" + }, + { + "id": 24032, + "make_id": 23494, + "name": "CLS500", + "class": "Compact Cars" + }, + { + "id": 24033, + "make_id": 23494, + "name": "CLS55 AMG", + "class": "Compact Cars" + }, + { + "id": 24034, + "make_id": 23494, + "name": "CLS550", + "class": "Compact Cars" + }, + { + "id": 24044, + "make_id": 23494, + "name": "CLS550 4matic", + "class": "Compact Cars" + }, + { + "id": 24049, + "make_id": 23494, + "name": "CLS63 AMG", + "class": "Compact Cars" + }, + { + "id": 24057, + "make_id": 23494, + "name": "CLS63 AMG 4matic", + "class": "Compact Cars" + }, + { + "id": 24058, + "make_id": 23494, + "name": "CLS63 AMG S", + "class": "Compact Cars" + }, + { + "id": 24059, + "make_id": 23494, + "name": "CLS63 AMG S 4matic", + "class": "Compact Cars" + }, + { + "id": 24061, + "make_id": 23494, + "name": "E250 Bluetec", + "class": "Midsize Cars" + }, + { + "id": 24064, + "make_id": 23494, + "name": "E250 Bluetec 4matic", + "class": "Midsize Cars" + }, + { + "id": 24067, + "make_id": 23494, + "name": "E300", + "class": "Midsize Cars" + }, + { + "id": 24068, + "make_id": 23494, + "name": "E300 4matic", + "class": "Midsize Cars" + }, + { + "id": 24069, + "make_id": 23494, + "name": "E300 Diesel", + "class": "Compact Cars" + }, + { + "id": 24072, + "make_id": 23494, + "name": "E300 Turbodiesel", + "class": "Midsize Cars" + }, + { + "id": 24074, + "make_id": 23494, + "name": "E320", + "class": "Compact Cars" + }, + { + "id": 24082, + "make_id": 23494, + "name": "E320 (Wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24088, + "make_id": 23494, + "name": "E320 4Matic", + "class": "Midsize Cars" + }, + { + "id": 24091, + "make_id": 23494, + "name": "E320 4matic", + "class": "Midsize Cars" + }, + { + "id": 24093, + "make_id": 23494, + "name": "E320 4Matic (Wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24097, + "make_id": 23494, + "name": "E320 4matic (Wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24099, + "make_id": 23494, + "name": "E320 Bluetec", + "class": "Midsize Cars" + }, + { + "id": 24102, + "make_id": 23494, + "name": "E320 Cdi", + "class": "Midsize Cars" + }, + { + "id": 24104, + "make_id": 23494, + "name": "E320 Convertible", + "class": "Minicompact Cars" + }, + { + "id": 24106, + "make_id": 23494, + "name": "E320 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 24108, + "make_id": 23494, + "name": "E320 Sedan", + "class": "Compact Cars" + }, + { + "id": 24113, + "make_id": 23494, + "name": "E320 Sedan 4Matic", + "class": "Midsize Cars" + }, + { + "id": 24114, + "make_id": 23494, + "name": "E320 Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 24119, + "make_id": 23494, + "name": "E320 Wagon 4Matic", + "class": "Midsize Station Wagons" + }, + { + "id": 24120, + "make_id": 23494, + "name": "E350", + "class": "Midsize Cars" + }, + { + "id": 24137, + "make_id": 23494, + "name": "E350 (wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24138, + "make_id": 23494, + "name": "E350 4matic", + "class": "Midsize Cars" + }, + { + "id": 24147, + "make_id": 23494, + "name": "E350 4Matic", + "class": "Midsize Cars" + }, + { + "id": 24155, + "make_id": 23494, + "name": "E350 4matic (wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24165, + "make_id": 23494, + "name": "E350 4matic Coupe", + "class": "Subcompact Cars" + }, + { + "id": 24173, + "make_id": 23494, + "name": "E350 Bluetec", + "class": "Midsize Cars" + }, + { + "id": 24176, + "make_id": 23494, + "name": "E350 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 24184, + "make_id": 23494, + "name": "E350 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 24195, + "make_id": 23494, + "name": "E400", + "class": "Midsize Cars" + }, + { + "id": 24197, + "make_id": 23494, + "name": "E400 4matic", + "class": "Midsize Cars" + }, + { + "id": 24199, + "make_id": 23494, + "name": "E400 4matic (wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24200, + "make_id": 23494, + "name": "E400 4matic Coupe", + "class": "Subcompact Cars" + }, + { + "id": 24202, + "make_id": 23494, + "name": "E400 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 24204, + "make_id": 23494, + "name": "E400 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 24206, + "make_id": 23494, + "name": "E400 Hybrid", + "class": "Midsize Cars" + }, + { + "id": 24209, + "make_id": 23494, + "name": "E420", + "class": "Compact Cars" + }, + { + "id": 24212, + "make_id": 23494, + "name": "E430", + "class": "Midsize Cars" + }, + { + "id": 24216, + "make_id": 23494, + "name": "E430 4Matic", + "class": "Midsize Cars" + }, + { + "id": 24219, + "make_id": 23494, + "name": "E500", + "class": "Compact Cars" + }, + { + "id": 24224, + "make_id": 23494, + "name": "E500 (Wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24225, + "make_id": 23494, + "name": "E500 4matic", + "class": "Midsize Cars" + }, + { + "id": 24228, + "make_id": 23494, + "name": "E500 4matic (Wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24230, + "make_id": 23494, + "name": "E500 4matic (wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24231, + "make_id": 23494, + "name": "E55 AMG", + "class": "Midsize Cars" + }, + { + "id": 24239, + "make_id": 23494, + "name": "E55 AMG (Wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24240, + "make_id": 23494, + "name": "E55 AMG (wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24241, + "make_id": 23494, + "name": "E550", + "class": "Midsize Cars" + }, + { + "id": 24246, + "make_id": 23494, + "name": "E550 4matic", + "class": "Midsize Cars" + }, + { + "id": 24255, + "make_id": 23494, + "name": "E550 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 24261, + "make_id": 23494, + "name": "E550 Coupe", + "class": "Subcompact Cars" + }, + { + "id": 24268, + "make_id": 23494, + "name": "E63 AMG", + "class": "Midsize Cars" + }, + { + "id": 24276, + "make_id": 23494, + "name": "E63 AMG (wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24281, + "make_id": 23494, + "name": "E63 AMG 4matic", + "class": "Midsize Cars" + }, + { + "id": 24283, + "make_id": 23494, + "name": "E63 AMG 4matic (wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24284, + "make_id": 23494, + "name": "E63 AMG S", + "class": "Midsize Cars" + }, + { + "id": 24285, + "make_id": 23494, + "name": "E63 AMG S 4matic", + "class": "Midsize Cars" + }, + { + "id": 24287, + "make_id": 23494, + "name": "E63 AMG S 4matic (wagon)", + "class": "Midsize Station Wagons" + }, + { + "id": 24289, + "make_id": 23494, + "name": "G500", + "class": "Sport Utility Vehicle" + }, + { + "id": 24296, + "make_id": 23494, + "name": "G55 AMG", + "class": "Sport Utility Vehicle" + }, + { + "id": 24305, + "make_id": 23494, + "name": "G550", + "class": "Sport Utility Vehicle" + }, + { + "id": 24312, + "make_id": 23494, + "name": "G63 AMG", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24315, + "make_id": 23494, + "name": "GL320 Bluetec", + "class": "Sport Utility Vehicle" + }, + { + "id": 24316, + "make_id": 23494, + "name": "GL320 CDI 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24318, + "make_id": 23494, + "name": "GL350 Bluetec", + "class": "Sport Utility Vehicle" + }, + { + "id": 24319, + "make_id": 23494, + "name": "GL350 Bluetec 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24325, + "make_id": 23494, + "name": "GL450 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24335, + "make_id": 23494, + "name": "GL550 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24344, + "make_id": 23494, + "name": "GL63 AMG", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24347, + "make_id": 23494, + "name": "GLA250", + "class": "Midsize Station Wagons" + }, + { + "id": 24349, + "make_id": 23494, + "name": "GLA250 4matic", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 24353, + "make_id": 23494, + "name": "GLA45 AMG 4matic", + "class": "Midsize Station Wagons" + }, + { + "id": 24354, + "make_id": 23494, + "name": "GLC300", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 24355, + "make_id": 23494, + "name": "GLC300 4matic", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 24356, + "make_id": 23494, + "name": "GLE300 d 4matic", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24357, + "make_id": 23494, + "name": "GLE350", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24358, + "make_id": 23494, + "name": "GLE350 4matic", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24360, + "make_id": 23494, + "name": "GLE350 d 4matic", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24361, + "make_id": 23494, + "name": "GLE350 d 4matic Coupe", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24362, + "make_id": 23494, + "name": "GLE400 4matic", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24363, + "make_id": 23494, + "name": "GLE450 AMG Coupe", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24364, + "make_id": 23494, + "name": "GLE550e 4matic", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24365, + "make_id": 23494, + "name": "GLK250 Bluetec 4matic", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 24368, + "make_id": 23494, + "name": "GLK350", + "class": "Sport Utility Vehicle" + }, + { + "id": 24377, + "make_id": 23494, + "name": "GLK350 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24386, + "make_id": 23494, + "name": "GLS450 4matic", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24387, + "make_id": 23494, + "name": "GLS550 4matic", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24388, + "make_id": 23494, + "name": "Maybach S 600", + "class": "Large Cars" + }, + { + "id": 24389, + "make_id": 23494, + "name": "Metris (Cargo Van)", + "class": "Special Purpose Vehicle" + }, + { + "id": 24390, + "make_id": 23494, + "name": "Metris (Passenger Van)", + "class": "Special Purpose Vehicle" + }, + { + "id": 24391, + "make_id": 23494, + "name": "ML250 Bluetec 4matic", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24392, + "make_id": 23494, + "name": "ML320", + "class": "Special Purpose Vehicle" + }, + { + "id": 24398, + "make_id": 23494, + "name": "ML320 Bluetec", + "class": "Sport Utility Vehicle" + }, + { + "id": 24399, + "make_id": 23494, + "name": "ML320 CDI 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24401, + "make_id": 23494, + "name": "ML350", + "class": "Sport Utility Vehicle" + }, + { + "id": 24411, + "make_id": 23494, + "name": "ML350 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24424, + "make_id": 23494, + "name": "ML350 Bluetec", + "class": "Sport Utility Vehicle" + }, + { + "id": 24425, + "make_id": 23494, + "name": "ML350 Bluetec 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24429, + "make_id": 23494, + "name": "ML400 4matic", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 24430, + "make_id": 23494, + "name": "ML430", + "class": "Sport Utility Vehicle" + }, + { + "id": 24433, + "make_id": 23494, + "name": "ML450 Hybrid 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24435, + "make_id": 23494, + "name": "ML500", + "class": "Sport Utility Vehicle" + }, + { + "id": 24440, + "make_id": 23494, + "name": "ML500 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24441, + "make_id": 23494, + "name": "ML55", + "class": "Sport Utility Vehicle" + }, + { + "id": 24442, + "make_id": 23494, + "name": "ML55 AMG", + "class": "Sport Utility Vehicle" + }, + { + "id": 24445, + "make_id": 23494, + "name": "ML550 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24452, + "make_id": 23494, + "name": "ML63 AMG", + "class": "Sport Utility Vehicle" + }, + { + "id": 24461, + "make_id": 23494, + "name": "R320 Bluetec", + "class": "Sport Utility Vehicle" + }, + { + "id": 24462, + "make_id": 23494, + "name": "R320 CDI 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24464, + "make_id": 23494, + "name": "R350", + "class": "Sport Utility Vehicle" + }, + { + "id": 24466, + "make_id": 23494, + "name": "R350 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24473, + "make_id": 23494, + "name": "R350 Bluetec", + "class": "Sport Utility Vehicle" + }, + { + "id": 24474, + "make_id": 23494, + "name": "R350 Bluetec 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24476, + "make_id": 23494, + "name": "R500", + "class": "Sport Utility Vehicle" + }, + { + "id": 24477, + "make_id": 23494, + "name": "R500 4matic", + "class": "Sport Utility Vehicle" + }, + { + "id": 24478, + "make_id": 23494, + "name": "R63 AMG", + "class": "Sport Utility Vehicle" + }, + { + "id": 24479, + "make_id": 23494, + "name": "S320", + "class": "Large Cars" + }, + { + "id": 24492, + "make_id": 23494, + "name": "S350", + "class": "Large Cars" + }, + { + "id": 24494, + "make_id": 23494, + "name": "S350 Bluetec 4matic", + "class": "Large Cars" + }, + { + "id": 24496, + "make_id": 23494, + "name": "S350D", + "class": "Large Cars" + }, + { + "id": 24497, + "make_id": 23494, + "name": "S400 Hybrid", + "class": "Large Cars" + }, + { + "id": 24501, + "make_id": 23494, + "name": "S420", + "class": "Large Cars" + }, + { + "id": 24507, + "make_id": 23494, + "name": "S430", + "class": "Large Cars" + }, + { + "id": 24514, + "make_id": 23494, + "name": "S430 4matic", + "class": "Large Cars" + }, + { + "id": 24518, + "make_id": 23494, + "name": "S500", + "class": "Large Cars" + }, + { + "id": 24529, + "make_id": 23494, + "name": "S500 4matic", + "class": "Large Cars" + }, + { + "id": 24533, + "make_id": 23494, + "name": "S500 Coupe", + "class": "Compact Cars" + }, + { + "id": 24537, + "make_id": 23494, + "name": "S500 Sedan", + "class": "Large Cars" + }, + { + "id": 24539, + "make_id": 23494, + "name": "S55 AMG", + "class": "Large Cars" + }, + { + "id": 24545, + "make_id": 23494, + "name": "S550", + "class": "Large Cars" + }, + { + "id": 24555, + "make_id": 23494, + "name": "S550 4matic", + "class": "Large Cars" + }, + { + "id": 24565, + "make_id": 23494, + "name": "S550 4matic Coupe", + "class": "Compact Cars" + }, + { + "id": 24567, + "make_id": 23494, + "name": "S550e", + "class": "Large Cars" + }, + { + "id": 24569, + "make_id": 23494, + "name": "S600", + "class": "Large Cars" + }, + { + "id": 24588, + "make_id": 23494, + "name": "S600 Coupe", + "class": "Compact Cars" + }, + { + "id": 24592, + "make_id": 23494, + "name": "S600 Sedan", + "class": "Large Cars" + }, + { + "id": 24594, + "make_id": 23494, + "name": "S63 AMG", + "class": "Large Cars" + }, + { + "id": 24600, + "make_id": 23494, + "name": "S63 AMG 4matic", + "class": "Large Cars" + }, + { + "id": 24602, + "make_id": 23494, + "name": "S63 AMG 4matic Coupe", + "class": "Compact Cars" + }, + { + "id": 24603, + "make_id": 23494, + "name": "S65 AMG", + "class": "Large Cars" + }, + { + "id": 24612, + "make_id": 23494, + "name": "S65 AMG Coupe", + "class": "Compact Cars" + }, + { + "id": 24613, + "make_id": 23494, + "name": "SL320", + "class": "Two Seaters" + }, + { + "id": 24617, + "make_id": 23494, + "name": "SL400", + "class": "Two Seaters" + }, + { + "id": 24619, + "make_id": 23494, + "name": "SL500", + "class": "Two Seaters" + }, + { + "id": 24632, + "make_id": 23494, + "name": "SL55 AMG", + "class": "Two Seaters" + }, + { + "id": 24638, + "make_id": 23494, + "name": "SL550", + "class": "Two Seaters" + }, + { + "id": 24647, + "make_id": 23494, + "name": "SL600", + "class": "Two Seaters" + }, + { + "id": 24662, + "make_id": 23494, + "name": "SL63 AMG", + "class": "Two Seaters" + }, + { + "id": 24668, + "make_id": 23494, + "name": "SL65 AMG", + "class": "Two Seaters" + }, + { + "id": 24677, + "make_id": 23494, + "name": "SLK230", + "class": "Two Seaters" + }, + { + "id": 24679, + "make_id": 23494, + "name": "SLK230 Kompressor", + "class": "Two Seaters" + }, + { + "id": 24689, + "make_id": 23494, + "name": "SLK250", + "class": "Two Seaters" + }, + { + "id": 24697, + "make_id": 23494, + "name": "SLK280", + "class": "Two Seaters" + }, + { + "id": 24703, + "make_id": 23494, + "name": "SLK300", + "class": "Two Seaters" + }, + { + "id": 24710, + "make_id": 23494, + "name": "SLK32 AMG", + "class": "Two Seaters" + }, + { + "id": 24713, + "make_id": 23494, + "name": "SLK320", + "class": "Two Seaters" + }, + { + "id": 24721, + "make_id": 23494, + "name": "SLK350", + "class": "Two Seaters" + }, + { + "id": 24740, + "make_id": 23494, + "name": "SLK55 AMG", + "class": "Two Seaters" + }, + { + "id": 24750, + "make_id": 23494, + "name": "SLR", + "class": "Two Seaters" + }, + { + "id": 24755, + "make_id": 23494, + "name": "SLS AMG", + "class": "Two Seaters" + }, + { + "id": 24757, + "make_id": 23494, + "name": "SLS AMG Black Series Coupe", + "class": "Two Seaters" + }, + { + "id": 24758, + "make_id": 23494, + "name": "SLS AMG Coupe", + "class": "Two Seaters" + }, + { + "id": 24760, + "make_id": 23494, + "name": "SLS AMG GT Coupe", + "class": "Two Seaters" + }, + { + "id": 24763, + "make_id": 23494, + "name": "SLS AMG GT Roadster", + "class": "Two Seaters" + }, + { + "id": 24766, + "make_id": 23494, + "name": "SLS AMG Roadster", + "class": "Two Seaters" + }, + { + "id": 24769, + "make_id": 24769, + "name": "Capri", + "class": "Subcompact Cars" + }, + { + "id": 24806, + "make_id": 24769, + "name": "Cougar", + "class": "Compact Cars" + }, + { + "id": 24864, + "make_id": 24769, + "name": "Grand Marquis", + "class": "Large Cars" + }, + { + "id": 24896, + "make_id": 24769, + "name": "Grand Marquis Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 24905, + "make_id": 24769, + "name": "Lynx", + "class": "Compact Cars" + }, + { + "id": 24945, + "make_id": 24769, + "name": "Lynx Wagon", + "class": "Small Station Wagons" + }, + { + "id": 24969, + "make_id": 24769, + "name": "Marauder", + "class": "Large Cars" + }, + { + "id": 24971, + "make_id": 24769, + "name": "Mariner", + "class": "Sport Utility Vehicle" + }, + { + "id": 24999, + "make_id": 24769, + "name": "Mariner Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 25009, + "make_id": 24769, + "name": "Marquis", + "class": "Midsize Cars" + }, + { + "id": 25025, + "make_id": 24769, + "name": "Marquis Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 25033, + "make_id": 24769, + "name": "Milan", + "class": "Midsize Cars" + }, + { + "id": 25056, + "make_id": 24769, + "name": "Milan Hybrid", + "class": "Midsize Cars" + }, + { + "id": 25058, + "make_id": 24769, + "name": "Milan S", + "class": "Midsize Cars" + }, + { + "id": 25061, + "make_id": 24769, + "name": "Montego", + "class": "Large Cars" + }, + { + "id": 25069, + "make_id": 24769, + "name": "Monterey Wagon", + "class": "Minivan" + }, + { + "id": 25073, + "make_id": 24769, + "name": "Mountaineer", + "class": "Special Purpose Vehicle" + }, + { + "id": 25134, + "make_id": 24769, + "name": "Mystique", + "class": "Compact Cars" + }, + { + "id": 25158, + "make_id": 24769, + "name": "Sable", + "class": "Midsize Cars" + }, + { + "id": 25205, + "make_id": 24769, + "name": "Sable (FFV)", + "class": "Midsize Cars" + }, + { + "id": 25206, + "make_id": 24769, + "name": "Sable Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 25248, + "make_id": 24769, + "name": "Sable Wagon (FFV)", + "class": "Midsize Station Wagons" + }, + { + "id": 25249, + "make_id": 24769, + "name": "Sable Wagon 3.0 A\/C", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 25250, + "make_id": 24769, + "name": "Sable Wagon V6 A\/C", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 25256, + "make_id": 24769, + "name": "Topaz", + "class": "Compact Cars" + }, + { + "id": 25306, + "make_id": 24769, + "name": "Tracer", + "class": "Compact Cars" + }, + { + "id": 25340, + "make_id": 24769, + "name": "Tracer Wagon", + "class": "Small Station Wagons" + }, + { + "id": 25362, + "make_id": 24769, + "name": "Villager Van", + "class": "Special Purpose Vehicle" + }, + { + "id": 25368, + "make_id": 24769, + "name": "Villager Wagon", + "class": "Special Purpose Vehicle" + }, + { + "id": 25378, + "make_id": 25378, + "name": "Scorpio", + "class": "Midsize Cars" + }, + { + "id": 25382, + "make_id": 25378, + "name": "XR4Ti", + "class": "Compact Cars" + }, + { + "id": 25392, + "make_id": 25392, + "name": "Clubman", + "class": "Subcompact Cars" + }, + { + "id": 25400, + "make_id": 25392, + "name": "Clubman S", + "class": "Subcompact Cars" + }, + { + "id": 25406, + "make_id": 25392, + "name": "Cooper", + "class": "Minicompact Cars" + }, + { + "id": 25429, + "make_id": 25392, + "name": "Cooper (3-doors)", + "class": "Subcompact Cars" + }, + { + "id": 25433, + "make_id": 25392, + "name": "Cooper (5-doors)", + "class": "Subcompact Cars" + }, + { + "id": 25435, + "make_id": 25392, + "name": "Cooper Clubman", + "class": "Subcompact Cars" + }, + { + "id": 25443, + "make_id": 25392, + "name": "Cooper Clubvan", + "class": "Two Seaters" + }, + { + "id": 25447, + "make_id": 25392, + "name": "Cooper Convertible", + "class": "Minicompact Cars" + }, + { + "id": 25471, + "make_id": 25392, + "name": "Cooper Countryman", + "class": "Compact Cars" + }, + { + "id": 25483, + "make_id": 25392, + "name": "Cooper Countryman Coupe", + "class": "Compact Cars" + }, + { + "id": 25485, + "make_id": 25392, + "name": "Cooper Coupe", + "class": "Two Seaters" + }, + { + "id": 25493, + "make_id": 25392, + "name": "Cooper Hardtop 2 door", + "class": "Subcompact Cars" + }, + { + "id": 25495, + "make_id": 25392, + "name": "Cooper Hardtop 4 door", + "class": "Subcompact Cars" + }, + { + "id": 25497, + "make_id": 25392, + "name": "Cooper Paceman", + "class": "Compact Cars" + }, + { + "id": 25503, + "make_id": 25392, + "name": "Cooper Roadster", + "class": "Two Seaters" + }, + { + "id": 25511, + "make_id": 25392, + "name": "Cooper S", + "class": "Minicompact Cars" + }, + { + "id": 25531, + "make_id": 25392, + "name": "Cooper S (3-doors)", + "class": "Subcompact Cars" + }, + { + "id": 25535, + "make_id": 25392, + "name": "Cooper S (5-doors)", + "class": "Subcompact Cars" + }, + { + "id": 25537, + "make_id": 25392, + "name": "Cooper S Clubman", + "class": "Subcompact Cars" + }, + { + "id": 25547, + "make_id": 25392, + "name": "Cooper S Clubman All4", + "class": "Midsize Cars" + }, + { + "id": 25549, + "make_id": 25392, + "name": "Cooper S Convertible", + "class": "Minicompact Cars" + }, + { + "id": 25573, + "make_id": 25392, + "name": "Cooper S Countryman", + "class": "Compact Cars" + }, + { + "id": 25585, + "make_id": 25392, + "name": "Cooper S Countryman All4", + "class": "Compact Cars" + }, + { + "id": 25597, + "make_id": 25392, + "name": "Cooper S Countryman Coupe", + "class": "Compact Cars" + }, + { + "id": 25599, + "make_id": 25392, + "name": "Cooper S Countryman Coupe All4", + "class": "Compact Cars" + }, + { + "id": 25601, + "make_id": 25392, + "name": "Cooper S Coupe", + "class": "Two Seaters" + }, + { + "id": 25609, + "make_id": 25392, + "name": "Cooper S Hardtop 2 door", + "class": "Subcompact Cars" + }, + { + "id": 25611, + "make_id": 25392, + "name": "Cooper S Hardtop 4 door", + "class": "Subcompact Cars" + }, + { + "id": 25613, + "make_id": 25392, + "name": "Cooper S JCWorks GP Kit", + "class": "Two Seaters" + }, + { + "id": 25614, + "make_id": 25392, + "name": "Cooper S Paceman", + "class": "Compact Cars" + }, + { + "id": 25620, + "make_id": 25392, + "name": "Cooper S Paceman All4", + "class": "Compact Cars" + }, + { + "id": 25626, + "make_id": 25392, + "name": "Cooper S Roadster", + "class": "Two Seaters" + }, + { + "id": 25634, + "make_id": 25392, + "name": "JCW Countryman All4", + "class": "Compact Cars" + }, + { + "id": 25642, + "make_id": 25392, + "name": "JCW Countryman Coupe All4", + "class": "Compact Cars" + }, + { + "id": 25644, + "make_id": 25392, + "name": "JCW Paceman All4", + "class": "Compact Cars" + }, + { + "id": 25650, + "make_id": 25392, + "name": "John Cooper Works", + "class": "Minicompact Cars" + }, + { + "id": 25656, + "make_id": 25392, + "name": "John Cooper Works Clubman", + "class": "Subcompact Cars" + }, + { + "id": 25664, + "make_id": 25392, + "name": "John Cooper Works Convertible", + "class": "Minicompact Cars" + }, + { + "id": 25676, + "make_id": 25392, + "name": "John Cooper Works Coupe", + "class": "Two Seaters" + }, + { + "id": 25683, + "make_id": 25392, + "name": "John Cooper Works GP-2", + "class": "Two Seaters" + }, + { + "id": 25684, + "make_id": 25392, + "name": "John Cooper Works Hardtop", + "class": "Subcompact Cars" + }, + { + "id": 25688, + "make_id": 25392, + "name": "John Cooper Works Roadster", + "class": "Two Seaters" + }, + { + "id": 25695, + "make_id": 25392, + "name": "MiniE", + "class": "Minicompact Cars" + }, + { + "id": 25696, + "make_id": 25696, + "name": "3000 GT", + "class": "Subcompact Cars" + }, + { + "id": 25724, + "make_id": 25696, + "name": "3000 GT Spyder", + "class": "Subcompact Cars" + }, + { + "id": 25732, + "make_id": 25696, + "name": "3000GT", + "class": "Subcompact Cars" + }, + { + "id": 25737, + "make_id": 25696, + "name": "Cordia", + "class": "Subcompact Cars" + }, + { + "id": 25758, + "make_id": 25696, + "name": "Diamante", + "class": "Compact Cars" + }, + { + "id": 25774, + "make_id": 25696, + "name": "Diamante Sedan", + "class": "Midsize Cars" + }, + { + "id": 25778, + "make_id": 25696, + "name": "Diamante Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 25780, + "make_id": 25696, + "name": "Eclipse", + "class": "Subcompact Cars" + }, + { + "id": 25913, + "make_id": 25696, + "name": "Eclipse Convertible", + "class": "Minicompact Cars" + }, + { + "id": 25929, + "make_id": 25696, + "name": "Eclipse Spyder", + "class": "Minicompact Cars" + }, + { + "id": 25973, + "make_id": 25696, + "name": "Endeavor", + "class": "Sport Utility Vehicle" + }, + { + "id": 25989, + "make_id": 25696, + "name": "Expo", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 26006, + "make_id": 25696, + "name": "Expo.LRV", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 26024, + "make_id": 25696, + "name": "Galant", + "class": "Compact Cars" + }, + { + "id": 26096, + "make_id": 25696, + "name": "Galant Sigma", + "class": "Compact Cars" + }, + { + "id": 26098, + "make_id": 25696, + "name": "i-MiEV", + "class": "Subcompact Cars" + }, + { + "id": 26103, + "make_id": 25696, + "name": "Lancer", + "class": "Compact Cars" + }, + { + "id": 26171, + "make_id": 25696, + "name": "Lancer Evolution", + "class": "Compact Cars" + }, + { + "id": 26193, + "make_id": 25696, + "name": "Lancer Sportback", + "class": "Small Station Wagons" + }, + { + "id": 26213, + "make_id": 25696, + "name": "Mirage", + "class": "Subcompact Cars" + }, + { + "id": 26308, + "make_id": 25696, + "name": "Mirage G4", + "class": "Compact Cars" + }, + { + "id": 26310, + "make_id": 25696, + "name": "Mirage Wagon", + "class": "Small Station Wagons" + }, + { + "id": 26316, + "make_id": 25696, + "name": "Montero", + "class": "Special Purpose Vehicle" + }, + { + "id": 26379, + "make_id": 25696, + "name": "Montero Sport", + "class": "Special Purpose Vehicle" + }, + { + "id": 26411, + "make_id": 25696, + "name": "Nativa", + "class": "Special Purpose Vehicle" + }, + { + "id": 26424, + "make_id": 25696, + "name": "Nativa (Puerto Rico Only)", + "class": "Sport Utility Vehicle" + }, + { + "id": 26432, + "make_id": 25696, + "name": "Nativa(Puerto Rico Only)", + "class": "Sport Utility Vehicle" + }, + { + "id": 26434, + "make_id": 25696, + "name": "Outlander", + "class": "Sport Utility Vehicle" + }, + { + "id": 26481, + "make_id": 25696, + "name": "Outlander Sport", + "class": "Sport Utility Vehicle" + }, + { + "id": 26503, + "make_id": 25696, + "name": "Precis", + "class": "Subcompact Cars" + }, + { + "id": 26527, + "make_id": 25696, + "name": "Raider Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 26557, + "make_id": 25696, + "name": "Sigma", + "class": "Compact Cars" + }, + { + "id": 26560, + "make_id": 25696, + "name": "Space Wagon", + "class": "Small Station Wagons" + }, + { + "id": 26572, + "make_id": 25696, + "name": "Starion", + "class": "Subcompact Cars" + }, + { + "id": 26592, + "make_id": 25696, + "name": "Tredia", + "class": "Subcompact Cars" + }, + { + "id": 26615, + "make_id": 25696, + "name": "Truck", + "class": "Small Pickup Trucks" + }, + { + "id": 26708, + "make_id": 25696, + "name": "Van", + "class": "Vans" + }, + { + "id": 26712, + "make_id": 25696, + "name": "Wagon", + "class": "Vans" + }, + { + "id": 26716, + "make_id": 26716, + "name": "MV-1", + "class": "Special Purpose Vehicle" + }, + { + "id": 26717, + "make_id": 26716, + "name": "MV-1 CNG", + "class": "Special Purpose Vehicle" + }, + { + "id": 26718, + "make_id": 26718, + "name": "Plus Eight", + "class": "Two Seaters" + }, + { + "id": 26721, + "make_id": 26721, + "name": "200SX", + "class": "Subcompact Cars" + }, + { + "id": 26746, + "make_id": 26721, + "name": "240SX", + "class": "Subcompact Cars" + }, + { + "id": 26765, + "make_id": 26721, + "name": "300ZX", + "class": "Two Seaters" + }, + { + "id": 26825, + "make_id": 26721, + "name": "300ZX 2x2", + "class": "Subcompact Cars" + }, + { + "id": 26858, + "make_id": 26721, + "name": "350z", + "class": "Two Seaters" + }, + { + "id": 26871, + "make_id": 26721, + "name": "350z Roadster", + "class": "Two Seaters" + }, + { + "id": 26883, + "make_id": 26721, + "name": "370z", + "class": "Two Seaters" + }, + { + "id": 26885, + "make_id": 26721, + "name": "370Z", + "class": "Two Seaters" + }, + { + "id": 26901, + "make_id": 26721, + "name": "370Z Roadster", + "class": "Two Seaters" + }, + { + "id": 26917, + "make_id": 26721, + "name": "Altima", + "class": "Compact Cars" + }, + { + "id": 26974, + "make_id": 26721, + "name": "Altima \/ Stanza", + "class": "Compact Cars" + }, + { + "id": 26984, + "make_id": 26721, + "name": "Altima Coupe", + "class": "Subcompact Cars" + }, + { + "id": 27005, + "make_id": 26721, + "name": "Altima Hybrid", + "class": "Midsize Cars" + }, + { + "id": 27010, + "make_id": 26721, + "name": "Altima SR", + "class": "Midsize Cars" + }, + { + "id": 27011, + "make_id": 26721, + "name": "Altra EV", + "class": "Midsize Station Wagons" + }, + { + "id": 27012, + "make_id": 26721, + "name": "Armada", + "class": "Sport Utility Vehicle" + }, + { + "id": 27052, + "make_id": 26721, + "name": "Axxess", + "class": "Special Purpose Vehicle" + }, + { + "id": 27064, + "make_id": 26721, + "name": "Cube", + "class": "Small Station Wagons" + }, + { + "id": 27076, + "make_id": 26721, + "name": "Frontier", + "class": "Standard Pickup Trucks" + }, + { + "id": 27153, + "make_id": 26721, + "name": "Frontier V6", + "class": "Standard Pickup Trucks" + }, + { + "id": 27203, + "make_id": 26721, + "name": "GT-R", + "class": "Subcompact Cars" + }, + { + "id": 27212, + "make_id": 26721, + "name": "Hardbody", + "class": "Small Pickup Trucks" + }, + { + "id": 27219, + "make_id": 26721, + "name": "Hyper-Mini", + "class": "Two Seaters" + }, + { + "id": 27220, + "make_id": 26721, + "name": "Juke", + "class": "Small Station Wagons" + }, + { + "id": 27238, + "make_id": 26721, + "name": "Juke Nismo RS", + "class": "Small Station Wagons" + }, + { + "id": 27242, + "make_id": 26721, + "name": "Leaf", + "class": "Midsize Cars" + }, + { + "id": 27247, + "make_id": 26721, + "name": "Leaf (24 kW-hr battery pack)", + "class": "Midsize Cars" + }, + { + "id": 27248, + "make_id": 26721, + "name": "Leaf (30 kW-hr battery pack)", + "class": "Midsize Cars" + }, + { + "id": 27249, + "make_id": 26721, + "name": "Maxima", + "class": "Subcompact Cars" + }, + { + "id": 27312, + "make_id": 26721, + "name": "Maxima Wagon", + "class": "Small Station Wagons" + }, + { + "id": 27318, + "make_id": 26721, + "name": "Murano", + "class": "Sport Utility Vehicle" + }, + { + "id": 27344, + "make_id": 26721, + "name": "Murano CrossCabriolet", + "class": "Sport Utility Vehicle" + }, + { + "id": 27348, + "make_id": 26721, + "name": "Murano Hybrid", + "class": "Midsize Station Wagons" + }, + { + "id": 27350, + "make_id": 26721, + "name": "NV200 Cargo Van", + "class": "Vans, Cargo Type" + }, + { + "id": 27354, + "make_id": 26721, + "name": "NV200 NYC Taxi", + "class": "Special Purpose Vehicle" + }, + { + "id": 27356, + "make_id": 26721, + "name": "NX", + "class": "Minicompact Cars" + }, + { + "id": 27364, + "make_id": 26721, + "name": "NX Coupe", + "class": "Minicompact Cars" + }, + { + "id": 27368, + "make_id": 26721, + "name": "Pathfinder", + "class": "Sport Utility Vehicle" + }, + { + "id": 27475, + "make_id": 26721, + "name": "Pathfinder Armada", + "class": "Sport Utility Vehicle" + }, + { + "id": 27477, + "make_id": 26721, + "name": "Pathfinder FE", + "class": "Sport Utility Vehicle" + }, + { + "id": 27479, + "make_id": 26721, + "name": "Pathfinder Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 27483, + "make_id": 26721, + "name": "Pathfinder Platinum", + "class": "Sport Utility Vehicle" + }, + { + "id": 27485, + "make_id": 26721, + "name": "Pickup", + "class": "Small Pickup Trucks" + }, + { + "id": 27494, + "make_id": 26721, + "name": "Pickup Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 27496, + "make_id": 26721, + "name": "Pulsar NX", + "class": "Subcompact Cars" + }, + { + "id": 27513, + "make_id": 26721, + "name": "Pulsar\/Pulsar-NX", + "class": "Subcompact Cars" + }, + { + "id": 27523, + "make_id": 26721, + "name": "Quest", + "class": "Special Purpose Vehicle" + }, + { + "id": 27548, + "make_id": 26721, + "name": "Rogue", + "class": "Sport Utility Vehicle" + }, + { + "id": 27566, + "make_id": 26721, + "name": "Rogue Select", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 27570, + "make_id": 26721, + "name": "Sentra", + "class": "Subcompact Cars" + }, + { + "id": 27686, + "make_id": 26721, + "name": "Sentra Classic", + "class": "Subcompact Cars" + }, + { + "id": 27688, + "make_id": 26721, + "name": "Sentra Coupe", + "class": "Subcompact Cars" + }, + { + "id": 27696, + "make_id": 26721, + "name": "Sentra FE", + "class": "Midsize Cars" + }, + { + "id": 27701, + "make_id": 26721, + "name": "Sentra Honeybee", + "class": "Subcompact Cars" + }, + { + "id": 27703, + "make_id": 26721, + "name": "Sentra Wagon", + "class": "Small Station Wagons" + }, + { + "id": 27730, + "make_id": 26721, + "name": "Sentra\/200SX", + "class": "Subcompact Cars" + }, + { + "id": 27750, + "make_id": 26721, + "name": "Stanza", + "class": "Compact Cars" + }, + { + "id": 27772, + "make_id": 26721, + "name": "Stanza Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 27783, + "make_id": 26721, + "name": "Titan", + "class": "Standard Pickup Trucks" + }, + { + "id": 27829, + "make_id": 26721, + "name": "Titan FE", + "class": "Standard Pickup Trucks" + }, + { + "id": 27830, + "make_id": 26721, + "name": "Truck", + "class": "Small Pickup Trucks" + }, + { + "id": 27915, + "make_id": 26721, + "name": "Truck Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 27926, + "make_id": 26721, + "name": "Van (cargo)", + "class": "Vans" + }, + { + "id": 27928, + "make_id": 26721, + "name": "Van (passenger)", + "class": "Vans" + }, + { + "id": 27934, + "make_id": 26721, + "name": "Van(cargo)", + "class": "Vans" + }, + { + "id": 27936, + "make_id": 26721, + "name": "Versa", + "class": "Midsize Cars" + }, + { + "id": 27974, + "make_id": 26721, + "name": "Versa FE", + "class": "Midsize Cars" + }, + { + "id": 27975, + "make_id": 26721, + "name": "Xterra", + "class": "Sport Utility Vehicle" + }, + { + "id": 28019, + "make_id": 26721, + "name": "Xterra V6", + "class": "Sport Utility Vehicle" + }, + { + "id": 28049, + "make_id": 28049, + "name": "Achieva", + "class": "Compact Cars" + }, + { + "id": 28081, + "make_id": 28049, + "name": "Alero", + "class": "Compact Cars" + }, + { + "id": 28098, + "make_id": 28049, + "name": "Aurora", + "class": "Midsize Cars" + }, + { + "id": 28108, + "make_id": 28049, + "name": "Bravada", + "class": "Special Purpose Vehicle" + }, + { + "id": 28126, + "make_id": 28049, + "name": "Calais", + "class": "Compact Cars" + }, + { + "id": 28136, + "make_id": 28049, + "name": "Ciera SL", + "class": "Midsize Cars" + }, + { + "id": 28138, + "make_id": 28049, + "name": "Ciera SL Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 28139, + "make_id": 28049, + "name": "Custom Cruiser", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 28147, + "make_id": 28049, + "name": "Custom Cruiser Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 28153, + "make_id": 28049, + "name": "Cutlass", + "class": "Midsize Cars" + }, + { + "id": 28158, + "make_id": 28049, + "name": "Cutlass Calais", + "class": "Compact Cars" + }, + { + "id": 28179, + "make_id": 28049, + "name": "Cutlass Ciera", + "class": "Midsize Cars" + }, + { + "id": 28229, + "make_id": 28049, + "name": "Cutlass Cruiser", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 28258, + "make_id": 28049, + "name": "Cutlass Cruiser Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 28276, + "make_id": 28049, + "name": "Cutlass Supreme", + "class": "Midsize Cars" + }, + { + "id": 28329, + "make_id": 28049, + "name": "Cutlass Supreme Classic", + "class": "Midsize Cars" + }, + { + "id": 28330, + "make_id": 28049, + "name": "Delta 88", + "class": "Large Cars" + }, + { + "id": 28339, + "make_id": 28049, + "name": "Delta 88 Royale", + "class": "Large Cars" + }, + { + "id": 28349, + "make_id": 28049, + "name": "Eighty-Eight", + "class": "Large Cars" + }, + { + "id": 28358, + "make_id": 28049, + "name": "Eighty-Eight\/Regency", + "class": "Large Cars" + }, + { + "id": 28362, + "make_id": 28049, + "name": "Eighty-Eight\/Regency\/LSS", + "class": "Large Cars" + }, + { + "id": 28364, + "make_id": 28049, + "name": "Firenza", + "class": "Compact Cars" + }, + { + "id": 28402, + "make_id": 28049, + "name": "Firenza Cruiser", + "class": "Small Station Wagons" + }, + { + "id": 28416, + "make_id": 28049, + "name": "Firenza Cruiser Wagon", + "class": "Small Station Wagons" + }, + { + "id": 28436, + "make_id": 28049, + "name": "Intrigue", + "class": "Midsize Cars" + }, + { + "id": 28442, + "make_id": 28049, + "name": "Ninety-Eight", + "class": "Large Cars" + }, + { + "id": 28453, + "make_id": 28049, + "name": "Ninety-Eight II", + "class": "Large Cars" + }, + { + "id": 28454, + "make_id": 28049, + "name": "Ninety-Eight Regency", + "class": "Large Cars" + }, + { + "id": 28461, + "make_id": 28049, + "name": "Ninety-Eight\/Touring", + "class": "Large Cars" + }, + { + "id": 28465, + "make_id": 28049, + "name": "Omega", + "class": "Compact Cars" + }, + { + "id": 28473, + "make_id": 28049, + "name": "Silhouette", + "class": "Special Purpose Vehicle" + }, + { + "id": 28495, + "make_id": 28049, + "name": "Toronado", + "class": "Midsize Cars" + }, + { + "id": 28509, + "make_id": 28049, + "name": "Trofeo\/Toronado", + "class": "Midsize Cars" + }, + { + "id": 28511, + "make_id": 28511, + "name": "Huayra Coupe", + "class": "Two Seaters" + }, + { + "id": 28513, + "make_id": 28513, + "name": "Roadster", + "class": "Two Seaters" + }, + { + "id": 28514, + "make_id": 28514, + "name": "Panoz Roadster", + "class": "Two Seaters" + }, + { + "id": 28515, + "make_id": 28515, + "name": "Kallista", + "class": "Two Seaters" + }, + { + "id": 28519, + "make_id": 28519, + "name": "Pas-Syclone", + "class": "Small Pickup Trucks" + }, + { + "id": 28520, + "make_id": 28519, + "name": "Pas-typhoon", + "class": "Special Purpose Vehicle" + }, + { + "id": 28521, + "make_id": 28521, + "name": "Pas-Syclone", + "class": "Small Pickup Trucks" + }, + { + "id": 28522, + "make_id": 28521, + "name": "Pas-Typhoon", + "class": "Special Purpose Vehicle" + }, + { + "id": 28523, + "make_id": 28523, + "name": "505", + "class": "Compact Cars" + }, + { + "id": 28528, + "make_id": 28523, + "name": "405 Sedan", + "class": "Compact Cars" + }, + { + "id": 28543, + "make_id": 28523, + "name": "405 Sports Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 28547, + "make_id": 28523, + "name": "405 Station Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 28549, + "make_id": 28523, + "name": "505 Sedan", + "class": "Compact Cars" + }, + { + "id": 28587, + "make_id": 28523, + "name": "505 Station Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 28616, + "make_id": 28523, + "name": "505 Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 28619, + "make_id": 28523, + "name": "604 Sedan", + "class": "Compact Cars" + }, + { + "id": 28621, + "make_id": 28621, + "name": "Spider", + "class": "Two Seaters" + }, + { + "id": 28627, + "make_id": 28627, + "name": "Acclaim", + "class": "Midsize Cars" + }, + { + "id": 28656, + "make_id": 28627, + "name": "Breeze", + "class": "Midsize Cars" + }, + { + "id": 28670, + "make_id": 28627, + "name": "Caravelle", + "class": "Midsize Cars" + }, + { + "id": 28688, + "make_id": 28627, + "name": "Colt", + "class": "Subcompact Cars" + }, + { + "id": 28740, + "make_id": 28627, + "name": "Colt Vista", + "class": "Small Station Wagons" + }, + { + "id": 28795, + "make_id": 28627, + "name": "Colt Wagon", + "class": "Small Station Wagons" + }, + { + "id": 28803, + "make_id": 28627, + "name": "Conquest", + "class": "Subcompact Cars" + }, + { + "id": 28817, + "make_id": 28627, + "name": "Gran Fury", + "class": "Midsize Cars" + }, + { + "id": 28835, + "make_id": 28627, + "name": "Horizon", + "class": "Compact Cars" + }, + { + "id": 28862, + "make_id": 28627, + "name": "Laser", + "class": "Subcompact Cars" + }, + { + "id": 28896, + "make_id": 28627, + "name": "Neon", + "class": "Compact Cars" + }, + { + "id": 28910, + "make_id": 28627, + "name": "Prowler", + "class": "Two Seaters" + }, + { + "id": 28913, + "make_id": 28627, + "name": "Reliant", + "class": "Midsize Cars" + }, + { + "id": 28948, + "make_id": 28627, + "name": "Reliant Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 28976, + "make_id": 28627, + "name": "Sundance", + "class": "Compact Cars" + }, + { + "id": 29008, + "make_id": 28627, + "name": "Sundance Convertible", + "class": "Subcompact Cars" + }, + { + "id": 29013, + "make_id": 28627, + "name": "Sundance\/Duster", + "class": "Compact Cars" + }, + { + "id": 29033, + "make_id": 28627, + "name": "Turismo", + "class": "Subcompact Cars" + }, + { + "id": 29057, + "make_id": 28627, + "name": "Voyager", + "class": "Special Purpose Vehicle" + }, + { + "id": 29071, + "make_id": 28627, + "name": "Voyager\/Grand Voyager", + "class": "Special Purpose Vehicle" + }, + { + "id": 29153, + "make_id": 29153, + "name": "1000", + "class": "Subcompact Cars" + }, + { + "id": 29174, + "make_id": 29153, + "name": "6000", + "class": "Midsize Cars" + }, + { + "id": 29214, + "make_id": 29153, + "name": "2000 Sunbird", + "class": "Compact Cars" + }, + { + "id": 29225, + "make_id": 29153, + "name": "2000 Sunbird Convertible", + "class": "Subcompact Cars" + }, + { + "id": 29233, + "make_id": 29153, + "name": "2000 Sunbird Wagon", + "class": "Small Station Wagons" + }, + { + "id": 29239, + "make_id": 29153, + "name": "20th Anniversary Trans Am", + "class": "Subcompact Cars" + }, + { + "id": 29240, + "make_id": 29153, + "name": "6000 Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 29275, + "make_id": 29153, + "name": "Aztek", + "class": "Sport Utility Vehicle" + }, + { + "id": 29285, + "make_id": 29153, + "name": "Bonneville", + "class": "Midsize Cars" + }, + { + "id": 29336, + "make_id": 29153, + "name": "Fiero", + "class": "Two Seaters" + }, + { + "id": 29358, + "make_id": 29153, + "name": "Firebird", + "class": "Subcompact Cars" + }, + { + "id": 29393, + "make_id": 29153, + "name": "Firebird\/Formula", + "class": "Subcompact Cars" + }, + { + "id": 29420, + "make_id": 29153, + "name": "Firebird\/Trans Am", + "class": "Subcompact Cars" + }, + { + "id": 29467, + "make_id": 29153, + "name": "Firebird\/Trans Am\/Formula", + "class": "Subcompact Cars" + }, + { + "id": 29475, + "make_id": 29153, + "name": "Firefly", + "class": "Minicompact Cars" + }, + { + "id": 29497, + "make_id": 29153, + "name": "Firefly FE", + "class": "Minicompact Cars" + }, + { + "id": 29499, + "make_id": 29153, + "name": "G3 (3-Door)", + "class": "Subcompact Cars" + }, + { + "id": 29501, + "make_id": 29153, + "name": "G3 (5-Door)", + "class": "Compact Cars" + }, + { + "id": 29503, + "make_id": 29153, + "name": "G3 Wave", + "class": "Compact Cars" + }, + { + "id": 29505, + "make_id": 29153, + "name": "G3 Wave 5", + "class": "Subcompact Cars" + }, + { + "id": 29507, + "make_id": 29153, + "name": "G5", + "class": "Subcompact Cars" + }, + { + "id": 29511, + "make_id": 29153, + "name": "G5 GT", + "class": "Subcompact Cars" + }, + { + "id": 29515, + "make_id": 29153, + "name": "G5 XFE", + "class": "Subcompact Cars" + }, + { + "id": 29518, + "make_id": 29153, + "name": "G5\/Pursuit", + "class": "Subcompact Cars" + }, + { + "id": 29526, + "make_id": 29153, + "name": "G6", + "class": "Compact Cars" + }, + { + "id": 29558, + "make_id": 29153, + "name": "G6 GT\/GTP Convertible", + "class": "Compact Cars" + }, + { + "id": 29561, + "make_id": 29153, + "name": "G8", + "class": "Large Cars" + }, + { + "id": 29567, + "make_id": 29153, + "name": "Grand Am", + "class": "Compact Cars" + }, + { + "id": 29648, + "make_id": 29153, + "name": "Grand Prix", + "class": "Midsize Cars" + }, + { + "id": 29735, + "make_id": 29153, + "name": "Grand Prix Ste Turbo", + "class": "Midsize Cars" + }, + { + "id": 29736, + "make_id": 29153, + "name": "Grand Prix Turbo", + "class": "Midsize Cars" + }, + { + "id": 29738, + "make_id": 29153, + "name": "GTO", + "class": "Compact Cars" + }, + { + "id": 29744, + "make_id": 29153, + "name": "Lemans", + "class": "Compact Cars" + }, + { + "id": 29769, + "make_id": 29153, + "name": "Montana", + "class": "Minivan" + }, + { + "id": 29777, + "make_id": 29153, + "name": "Montana SV6", + "class": "Minivan" + }, + { + "id": 29780, + "make_id": 29153, + "name": "Montana SVX", + "class": "Minivan" + }, + { + "id": 29782, + "make_id": 29153, + "name": "Monterey Wagon", + "class": "Minivan" + }, + { + "id": 29783, + "make_id": 29153, + "name": "Parisienne", + "class": "Large Cars" + }, + { + "id": 29801, + "make_id": 29153, + "name": "Parisienne Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 29809, + "make_id": 29153, + "name": "Phoenix", + "class": "Midsize Cars" + }, + { + "id": 29815, + "make_id": 29153, + "name": "Safari Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 29818, + "make_id": 29153, + "name": "Solstice", + "class": "Two Seaters" + }, + { + "id": 29836, + "make_id": 29153, + "name": "Sunbird", + "class": "Compact Cars" + }, + { + "id": 29883, + "make_id": 29153, + "name": "Sunbird Convertible", + "class": "Subcompact Cars" + }, + { + "id": 29913, + "make_id": 29153, + "name": "Sunbird Wagon", + "class": "Small Station Wagons" + }, + { + "id": 29925, + "make_id": 29153, + "name": "Sunburst", + "class": "Subcompact Cars" + }, + { + "id": 29933, + "make_id": 29153, + "name": "Sunfire", + "class": "Compact Cars" + }, + { + "id": 29979, + "make_id": 29153, + "name": "Torrent", + "class": "Sport Utility Vehicle" + }, + { + "id": 29991, + "make_id": 29153, + "name": "Trans Sport", + "class": "Special Purpose Vehicle" + }, + { + "id": 30004, + "make_id": 29153, + "name": "Trans Sport\/Montana", + "class": "Minivan" + }, + { + "id": 30005, + "make_id": 29153, + "name": "Turbo Firefly", + "class": "Minicompact Cars" + }, + { + "id": 30009, + "make_id": 29153, + "name": "Vibe", + "class": "Small Station Wagons" + }, + { + "id": 30040, + "make_id": 29153, + "name": "Wave", + "class": "Compact Cars" + }, + { + "id": 30042, + "make_id": 29153, + "name": "Wave 5", + "class": "Compact Cars" + }, + { + "id": 30046, + "make_id": 30046, + "name": "911", + "class": "Minicompact Cars" + }, + { + "id": 30050, + "make_id": 30046, + "name": "944", + "class": "Minicompact Cars" + }, + { + "id": 30067, + "make_id": 30046, + "name": "968", + "class": "Two Seaters" + }, + { + "id": 30083, + "make_id": 30046, + "name": "911 C4 GTS", + "class": "Minicompact Cars" + }, + { + "id": 30085, + "make_id": 30046, + "name": "911 C4 GTS Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30087, + "make_id": 30046, + "name": "911 Carrera", + "class": "Minicompact Cars" + }, + { + "id": 30118, + "make_id": 30046, + "name": "911 Carrera 2\/4", + "class": "Minicompact Cars" + }, + { + "id": 30122, + "make_id": 30046, + "name": "911 Carrera 4", + "class": "Minicompact Cars" + }, + { + "id": 30139, + "make_id": 30046, + "name": "911 Carrera 4 Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30157, + "make_id": 30046, + "name": "911 Carrera 4 GTS", + "class": "Minicompact Cars" + }, + { + "id": 30161, + "make_id": 30046, + "name": "911 Carrera 4 GTS Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30165, + "make_id": 30046, + "name": "911 Carrera 4 Targa", + "class": "Minicompact Cars" + }, + { + "id": 30171, + "make_id": 30046, + "name": "911 Carrera 4\/2", + "class": "Minicompact Cars" + }, + { + "id": 30207, + "make_id": 30046, + "name": "911 Carrera 4S", + "class": "Minicompact Cars" + }, + { + "id": 30225, + "make_id": 30046, + "name": "911 Carrera 4S Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30241, + "make_id": 30046, + "name": "911 Carrera 4S Targa", + "class": "Minicompact Cars" + }, + { + "id": 30247, + "make_id": 30046, + "name": "911 Carrera Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30265, + "make_id": 30046, + "name": "911 Carrera GTS", + "class": "Minicompact Cars" + }, + { + "id": 30269, + "make_id": 30046, + "name": "911 Carrera GTS Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30273, + "make_id": 30046, + "name": "911 Carrera S", + "class": "Minicompact Cars" + }, + { + "id": 30289, + "make_id": 30046, + "name": "911 Carrera S Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30305, + "make_id": 30046, + "name": "911 GT2", + "class": "Two Seaters" + }, + { + "id": 30308, + "make_id": 30046, + "name": "911 GT2 RS", + "class": "Two Seaters" + }, + { + "id": 30309, + "make_id": 30046, + "name": "911 GT3", + "class": "Minicompact Cars" + }, + { + "id": 30316, + "make_id": 30046, + "name": "911 GT3 RS", + "class": "Minicompact Cars" + }, + { + "id": 30322, + "make_id": 30046, + "name": "911 GTS", + "class": "Minicompact Cars" + }, + { + "id": 30326, + "make_id": 30046, + "name": "911 GTS Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30330, + "make_id": 30046, + "name": "911 SC", + "class": "Minicompact Cars" + }, + { + "id": 30332, + "make_id": 30046, + "name": "911 Speedster", + "class": "Two Seaters" + }, + { + "id": 30334, + "make_id": 30046, + "name": "911 Targa", + "class": "Minicompact Cars" + }, + { + "id": 30336, + "make_id": 30046, + "name": "911 Targa 4", + "class": "Minicompact Cars" + }, + { + "id": 30344, + "make_id": 30046, + "name": "911 Targa 4 GTS", + "class": "Minicompact Cars" + }, + { + "id": 30346, + "make_id": 30046, + "name": "911 Targa 4S", + "class": "Minicompact Cars" + }, + { + "id": 30354, + "make_id": 30046, + "name": "911 Turbo", + "class": "Minicompact Cars" + }, + { + "id": 30375, + "make_id": 30046, + "name": "911 Turbo Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30390, + "make_id": 30046, + "name": "911 Turbo Coupe", + "class": "Minicompact Cars" + }, + { + "id": 30396, + "make_id": 30046, + "name": "911 Turbo S", + "class": "Minicompact Cars" + }, + { + "id": 30401, + "make_id": 30046, + "name": "911 Turbo S Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30408, + "make_id": 30046, + "name": "911 Turbo S Coupe", + "class": "Minicompact Cars" + }, + { + "id": 30411, + "make_id": 30046, + "name": "918 Spyder", + "class": "Two Seaters" + }, + { + "id": 30412, + "make_id": 30046, + "name": "924 S", + "class": "Minicompact Cars" + }, + { + "id": 30416, + "make_id": 30046, + "name": "928 GTS", + "class": "Minicompact Cars" + }, + { + "id": 30422, + "make_id": 30046, + "name": "928 S", + "class": "Minicompact Cars" + }, + { + "id": 30430, + "make_id": 30046, + "name": "928 S4", + "class": "Minicompact Cars" + }, + { + "id": 30440, + "make_id": 30046, + "name": "944 S", + "class": "Minicompact Cars" + }, + { + "id": 30441, + "make_id": 30046, + "name": "944 S2", + "class": "Minicompact Cars" + }, + { + "id": 30444, + "make_id": 30046, + "name": "944 Turbo", + "class": "Minicompact Cars" + }, + { + "id": 30446, + "make_id": 30046, + "name": "Boxster", + "class": "Two Seaters" + }, + { + "id": 30492, + "make_id": 30046, + "name": "Boxster GTS", + "class": "Two Seaters" + }, + { + "id": 30496, + "make_id": 30046, + "name": "Boxster S", + "class": "Two Seaters" + }, + { + "id": 30532, + "make_id": 30046, + "name": "Boxster Spyder", + "class": "Two Seaters" + }, + { + "id": 30537, + "make_id": 30046, + "name": "Carrera", + "class": "Two Seaters" + }, + { + "id": 30538, + "make_id": 30046, + "name": "Carrera 2 911 GT3", + "class": "Two Seaters" + }, + { + "id": 30540, + "make_id": 30046, + "name": "Carrera 2 Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30556, + "make_id": 30046, + "name": "Carrera 2 Cabriolet Kit", + "class": "Minicompact Cars" + }, + { + "id": 30561, + "make_id": 30046, + "name": "Carrera 2 Coupe", + "class": "Minicompact Cars" + }, + { + "id": 30577, + "make_id": 30046, + "name": "Carrera 2 Coupe Kit", + "class": "Minicompact Cars" + }, + { + "id": 30582, + "make_id": 30046, + "name": "Carrera 2 S Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30592, + "make_id": 30046, + "name": "Carrera 2 S Coupe", + "class": "Minicompact Cars" + }, + { + "id": 30602, + "make_id": 30046, + "name": "Carrera 4", + "class": "Two Seaters" + }, + { + "id": 30603, + "make_id": 30046, + "name": "Carrera 4 Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30617, + "make_id": 30046, + "name": "Carrera 4 Cabriolet Kit", + "class": "Minicompact Cars" + }, + { + "id": 30622, + "make_id": 30046, + "name": "Carrera 4 Coupe", + "class": "Minicompact Cars" + }, + { + "id": 30630, + "make_id": 30046, + "name": "Carrera 4 S", + "class": "Minicompact Cars" + }, + { + "id": 30632, + "make_id": 30046, + "name": "Carrera 4 S Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30644, + "make_id": 30046, + "name": "Carrera 4 S Cabriolet Kit", + "class": "Minicompact Cars" + }, + { + "id": 30647, + "make_id": 30046, + "name": "Carrera 4 S Coupe", + "class": "Minicompact Cars" + }, + { + "id": 30659, + "make_id": 30046, + "name": "Carrera 4 S Kit", + "class": "Minicompact Cars" + }, + { + "id": 30664, + "make_id": 30046, + "name": "Carrera 4 S Targa", + "class": "Minicompact Cars" + }, + { + "id": 30670, + "make_id": 30046, + "name": "Carrera 4 Targa", + "class": "Minicompact Cars" + }, + { + "id": 30676, + "make_id": 30046, + "name": "Carrera GT", + "class": "Two Seaters" + }, + { + "id": 30678, + "make_id": 30046, + "name": "Cayenne", + "class": "Sport Utility Vehicle" + }, + { + "id": 30700, + "make_id": 30046, + "name": "Cayenne Diesel", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 30704, + "make_id": 30046, + "name": "Cayenne GTS", + "class": "Sport Utility Vehicle" + }, + { + "id": 30714, + "make_id": 30046, + "name": "Cayenne S", + "class": "Special Purpose Vehicle" + }, + { + "id": 30729, + "make_id": 30046, + "name": "Cayenne S e-Hybrid", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 30731, + "make_id": 30046, + "name": "Cayenne S Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 30735, + "make_id": 30046, + "name": "Cayenne TransSiberia", + "class": "Sport Utility Vehicle" + }, + { + "id": 30736, + "make_id": 30046, + "name": "Cayenne Turbo", + "class": "Special Purpose Vehicle" + }, + { + "id": 30751, + "make_id": 30046, + "name": "Cayenne Turbo Kit", + "class": "Sport Utility Vehicle" + }, + { + "id": 30752, + "make_id": 30046, + "name": "Cayenne Turbo S", + "class": "Sport Utility Vehicle" + }, + { + "id": 30757, + "make_id": 30046, + "name": "Cayman", + "class": "Two Seaters" + }, + { + "id": 30777, + "make_id": 30046, + "name": "Cayman GT4", + "class": "Two Seaters" + }, + { + "id": 30778, + "make_id": 30046, + "name": "Cayman GTS", + "class": "Two Seaters" + }, + { + "id": 30782, + "make_id": 30046, + "name": "Cayman R", + "class": "Two Seaters" + }, + { + "id": 30784, + "make_id": 30046, + "name": "Cayman S", + "class": "Two Seaters" + }, + { + "id": 30804, + "make_id": 30046, + "name": "Macan GTS", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 30805, + "make_id": 30046, + "name": "Macan S", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 30808, + "make_id": 30046, + "name": "Macan Turbo", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 30811, + "make_id": 30046, + "name": "New 911 Carrera", + "class": "Minicompact Cars" + }, + { + "id": 30813, + "make_id": 30046, + "name": "New 911 Carrera Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30815, + "make_id": 30046, + "name": "New 911 Carrera S", + "class": "Minicompact Cars" + }, + { + "id": 30817, + "make_id": 30046, + "name": "New 911 Carrera S Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 30819, + "make_id": 30046, + "name": "Panamera", + "class": "Large Cars" + }, + { + "id": 30825, + "make_id": 30046, + "name": "Panamera 4", + "class": "Large Cars" + }, + { + "id": 30831, + "make_id": 30046, + "name": "Panamera 4S", + "class": "Large Cars" + }, + { + "id": 30838, + "make_id": 30046, + "name": "Panamera 4S Executive", + "class": "Large Cars" + }, + { + "id": 30841, + "make_id": 30046, + "name": "Panamera GTS", + "class": "Large Cars" + }, + { + "id": 30845, + "make_id": 30046, + "name": "Panamera S", + "class": "Large Cars" + }, + { + "id": 30852, + "make_id": 30046, + "name": "Panamera S E-Hybrid", + "class": "Large Cars" + }, + { + "id": 30855, + "make_id": 30046, + "name": "Panamera S Hybrid", + "class": "Large Cars" + }, + { + "id": 30857, + "make_id": 30046, + "name": "Panamera Turbo", + "class": "Large Cars" + }, + { + "id": 30864, + "make_id": 30046, + "name": "Panamera Turbo Executive", + "class": "Large Cars" + }, + { + "id": 30867, + "make_id": 30046, + "name": "Panamera Turbo S", + "class": "Large Cars" + }, + { + "id": 30872, + "make_id": 30046, + "name": "Panamera Turbo S Executive", + "class": "Large Cars" + }, + { + "id": 30875, + "make_id": 30046, + "name": "Targa", + "class": "Minicompact Cars" + }, + { + "id": 30881, + "make_id": 30046, + "name": "Targa Kit", + "class": "Minicompact Cars" + }, + { + "id": 30886, + "make_id": 30046, + "name": "Turbo", + "class": "Minicompact Cars" + }, + { + "id": 30888, + "make_id": 30046, + "name": "Turbo 2 911 Gt2", + "class": "Two Seaters" + }, + { + "id": 30889, + "make_id": 30046, + "name": "Turbo 2 911 GT2", + "class": "Two Seaters" + }, + { + "id": 30890, + "make_id": 30046, + "name": "Turbo 4 911", + "class": "Minicompact Cars" + }, + { + "id": 30892, + "make_id": 30046, + "name": "Turbo 4 911 Cab", + "class": "Minicompact Cars" + }, + { + "id": 30896, + "make_id": 30046, + "name": "Turbo 4 911 Cab Kit", + "class": "Minicompact Cars" + }, + { + "id": 30900, + "make_id": 30046, + "name": "Turbo 4 911 Kit", + "class": "Minicompact Cars" + }, + { + "id": 30904, + "make_id": 30046, + "name": "Turbo 4 911 S", + "class": "Minicompact Cars" + }, + { + "id": 30906, + "make_id": 30046, + "name": "Turbo 4 911 Turbo", + "class": "Minicompact Cars" + }, + { + "id": 30910, + "make_id": 30046, + "name": "Turbo 4 911 Turbo Cab S", + "class": "Minicompact Cars" + }, + { + "id": 30912, + "make_id": 30046, + "name": "Turbo GT2", + "class": "Two Seaters" + }, + { + "id": 30913, + "make_id": 30046, + "name": "Turbo Kit", + "class": "Minicompact Cars" + }, + { + "id": 30915, + "make_id": 30915, + "name": "Chevrolet Cavalier", + "class": "Subcompact Cars" + }, + { + "id": 30917, + "make_id": 30917, + "name": "Detomaso Mangusta", + "class": "Minicompact Cars" + }, + { + "id": 30918, + "make_id": 30918, + "name": "1500", + "class": "Standard Pickup Trucks" + }, + { + "id": 30955, + "make_id": 30918, + "name": "1500 HFE", + "class": "Standard Pickup Trucks" + }, + { + "id": 30961, + "make_id": 30918, + "name": "C\/V", + "class": "Minivan" + }, + { + "id": 30964, + "make_id": 30918, + "name": "C\/V Cargo Van", + "class": "Minivan" + }, + { + "id": 30965, + "make_id": 30918, + "name": "C\/V Tradesman", + "class": "Minivan" + }, + { + "id": 30967, + "make_id": 30918, + "name": "Promaster City", + "class": "Special Purpose Vehicle" + }, + { + "id": 30970, + "make_id": 30970, + "name": "Delta 204T", + "class": "Two Seaters" + }, + { + "id": 30972, + "make_id": 30972, + "name": "18i", + "class": "Subcompact Cars" + }, + { + "id": 30976, + "make_id": 30972, + "name": "18i 4DR Wagon", + "class": "Small Station Wagons" + }, + { + "id": 30978, + "make_id": 30972, + "name": "18i Sportwagon", + "class": "Small Station Wagons" + }, + { + "id": 30980, + "make_id": 30972, + "name": "Alliance", + "class": "Compact Cars" + }, + { + "id": 30986, + "make_id": 30972, + "name": "Alliance Convertible", + "class": "Subcompact Cars" + }, + { + "id": 30990, + "make_id": 30972, + "name": "Alliance\/Encore", + "class": "Compact Cars" + }, + { + "id": 31011, + "make_id": 30972, + "name": "Fuego", + "class": "Subcompact Cars" + }, + { + "id": 31022, + "make_id": 30972, + "name": "GTA", + "class": "Compact Cars" + }, + { + "id": 31023, + "make_id": 30972, + "name": "GTA Convertible", + "class": "Subcompact Cars" + }, + { + "id": 31024, + "make_id": 30972, + "name": "Sportwagon", + "class": "Small Station Wagons" + }, + { + "id": 31028, + "make_id": 31028, + "name": "Azure", + "class": "Subcompact Cars" + }, + { + "id": 31030, + "make_id": 31028, + "name": "Brooklands", + "class": "Midsize Cars" + }, + { + "id": 31032, + "make_id": 31028, + "name": "Brooklands and (LWB)", + "class": "Midsize Cars" + }, + { + "id": 31035, + "make_id": 31028, + "name": "Brooklands\/Brklnds L", + "class": "Midsize Cars" + }, + { + "id": 31036, + "make_id": 31028, + "name": "Camargue", + "class": "Compact Cars" + }, + { + "id": 31041, + "make_id": 31028, + "name": "Continental", + "class": "Subcompact Cars" + }, + { + "id": 31052, + "make_id": 31028, + "name": "Continental (turbo)", + "class": "Subcompact Cars" + }, + { + "id": 31053, + "make_id": 31028, + "name": "Continental R", + "class": "Compact Cars" + }, + { + "id": 31058, + "make_id": 31028, + "name": "Continental T", + "class": "Subcompact Cars" + }, + { + "id": 31059, + "make_id": 31028, + "name": "Corniche", + "class": "Subcompact Cars" + }, + { + "id": 31063, + "make_id": 31028, + "name": "Corniche II", + "class": "Subcompact Cars" + }, + { + "id": 31068, + "make_id": 31028, + "name": "Corniche II\/Continental", + "class": "Subcompact Cars" + }, + { + "id": 31069, + "make_id": 31028, + "name": "Corniche III", + "class": "Subcompact Cars" + }, + { + "id": 31071, + "make_id": 31028, + "name": "Corniche IV", + "class": "Subcompact Cars" + }, + { + "id": 31075, + "make_id": 31028, + "name": "Corniche S", + "class": "Subcompact Cars" + }, + { + "id": 31076, + "make_id": 31028, + "name": "Corniche\/Continental", + "class": "Subcompact Cars" + }, + { + "id": 31077, + "make_id": 31028, + "name": "Dawn", + "class": "Compact Cars" + }, + { + "id": 31078, + "make_id": 31028, + "name": "Eight\/Mulsan", + "class": "Midsize Cars" + }, + { + "id": 31084, + "make_id": 31028, + "name": "Eight\/Mulsanne S", + "class": "Midsize Cars" + }, + { + "id": 31085, + "make_id": 31028, + "name": "Eight\/Mulsanne S and S", + "class": "Midsize Cars" + }, + { + "id": 31086, + "make_id": 31028, + "name": "Flying Spur", + "class": "Midsize Cars" + }, + { + "id": 31087, + "make_id": 31028, + "name": "Ghost", + "class": "Large Cars" + }, + { + "id": 31094, + "make_id": 31028, + "name": "Ghost EWB", + "class": "Large Cars" + }, + { + "id": 31099, + "make_id": 31028, + "name": "Limousine", + "class": "Large Cars" + }, + { + "id": 31101, + "make_id": 31028, + "name": "Park Ward", + "class": "Large Cars" + }, + { + "id": 31104, + "make_id": 31028, + "name": "Phantom", + "class": "Midsize Cars" + }, + { + "id": 31118, + "make_id": 31028, + "name": "Phantom Coupe", + "class": "Compact Cars" + }, + { + "id": 31127, + "make_id": 31028, + "name": "Phantom Drophead Coupe", + "class": "Compact Cars" + }, + { + "id": 31137, + "make_id": 31028, + "name": "Phantom EWB", + "class": "Midsize Cars" + }, + { + "id": 31148, + "make_id": 31028, + "name": "Silver Dawn", + "class": "Midsize Cars" + }, + { + "id": 31149, + "make_id": 31028, + "name": "Silver Seraph", + "class": "Midsize Cars" + }, + { + "id": 31152, + "make_id": 31028, + "name": "Silver Spirit II\/Silver Spur", + "class": "Midsize Cars" + }, + { + "id": 31156, + "make_id": 31028, + "name": "Silver Spirit III\/Spur III", + "class": "Midsize Cars" + }, + { + "id": 31157, + "make_id": 31028, + "name": "Silver Spirit\/Silver Spur", + "class": "Midsize Cars" + }, + { + "id": 31162, + "make_id": 31028, + "name": "Silver Spirit\/Spur\/Mulsanne", + "class": "Midsize Cars" + }, + { + "id": 31166, + "make_id": 31028, + "name": "Silver Spur", + "class": "Midsize Cars" + }, + { + "id": 31169, + "make_id": 31028, + "name": "Silver Spur II Mpw Touring L", + "class": "Large Cars" + }, + { + "id": 31170, + "make_id": 31028, + "name": "Silver Spur III Limousine", + "class": "Large Cars" + }, + { + "id": 31172, + "make_id": 31028, + "name": "Silver Spur Limousine", + "class": "Large Cars" + }, + { + "id": 31182, + "make_id": 31028, + "name": "Silver Spur Park Ward", + "class": "Large Cars" + }, + { + "id": 31184, + "make_id": 31028, + "name": "Silver Spur\/Silver Dawn", + "class": "Midsize Cars" + }, + { + "id": 31185, + "make_id": 31028, + "name": "Spirit III\/Spur III\/Dawn", + "class": "Midsize Cars" + }, + { + "id": 31186, + "make_id": 31028, + "name": "Turbo R", + "class": "Midsize Cars" + }, + { + "id": 31189, + "make_id": 31028, + "name": "Turbo R\/Rl Bklds Turbo\/LWB", + "class": "Midsize Cars" + }, + { + "id": 31190, + "make_id": 31028, + "name": "Turbo R\/Turbo R(lwb)", + "class": "Midsize Cars" + }, + { + "id": 31192, + "make_id": 31028, + "name": "Turbo R\/Turbo Rl", + "class": "Midsize Cars" + }, + { + "id": 31194, + "make_id": 31028, + "name": "Wraith", + "class": "Midsize Cars" + }, + { + "id": 31197, + "make_id": 31197, + "name": "Boss F150 Super Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 31198, + "make_id": 31197, + "name": "F150 Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 31204, + "make_id": 31197, + "name": "F150 Raptor Pickup", + "class": "Standard Pickup Trucks" + }, + { + "id": 31205, + "make_id": 31197, + "name": "Stage 3 F-150", + "class": "Standard Pickup Trucks" + }, + { + "id": 31207, + "make_id": 31197, + "name": "Stage 3 F-150 Supercab", + "class": "Standard Pickup Trucks" + }, + { + "id": 31209, + "make_id": 31197, + "name": "Stage 3 F-150 Supercrew", + "class": "Standard Pickup Trucks" + }, + { + "id": 31211, + "make_id": 31197, + "name": "Stage 3 F150 Regular Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 31215, + "make_id": 31197, + "name": "Stage 3 F150 Super Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 31219, + "make_id": 31197, + "name": "Stage 3 F150 Super Crew", + "class": "Standard Pickup Trucks" + }, + { + "id": 31223, + "make_id": 31197, + "name": "Stage 3 Mustang", + "class": "Subcompact Cars" + }, + { + "id": 31249, + "make_id": 31197, + "name": "Stage 3 Mustang Coupe", + "class": "Subcompact Cars" + }, + { + "id": 31250, + "make_id": 31250, + "name": "Ruf", + "class": "Two Seaters" + }, + { + "id": 31253, + "make_id": 31253, + "name": "Funeral Coach ", + "class": "Special Purpose Vehicle" + }, + { + "id": 31254, + "make_id": 31254, + "name": "900", + "class": "Compact Cars" + }, + { + "id": 31329, + "make_id": 31254, + "name": "9000", + "class": "Large Cars" + }, + { + "id": 31384, + "make_id": 31254, + "name": "9-2x Wagon", + "class": "Small Station Wagons" + }, + { + "id": 31388, + "make_id": 31254, + "name": "9-2X Wagon", + "class": "Small Station Wagons" + }, + { + "id": 31392, + "make_id": 31254, + "name": "9-3", + "class": "Midsize Cars" + }, + { + "id": 31405, + "make_id": 31254, + "name": "9-3 Aero Sedan", + "class": "Compact Cars" + }, + { + "id": 31411, + "make_id": 31254, + "name": "9-3 Aero SportCombi", + "class": "Small Station Wagons" + }, + { + "id": 31417, + "make_id": 31254, + "name": "9-3 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 31459, + "make_id": 31254, + "name": "9-3 Sedan", + "class": "Compact Cars" + }, + { + "id": 31466, + "make_id": 31254, + "name": "9-3 Sport Sedan", + "class": "Compact Cars" + }, + { + "id": 31501, + "make_id": 31254, + "name": "9-3 SportCombi", + "class": "Small Station Wagons" + }, + { + "id": 31523, + "make_id": 31254, + "name": "9-3 Viggen", + "class": "Midsize Cars" + }, + { + "id": 31527, + "make_id": 31254, + "name": "9-3 Viggen Convertible", + "class": "Subcompact Cars" + }, + { + "id": 31530, + "make_id": 31254, + "name": "9-3X SportCombi", + "class": "Small Station Wagons" + }, + { + "id": 31537, + "make_id": 31254, + "name": "9-4X", + "class": "Sport Utility Vehicle" + }, + { + "id": 31543, + "make_id": 31254, + "name": "9-5", + "class": "Midsize Cars" + }, + { + "id": 31574, + "make_id": 31254, + "name": "9-5 Sedan", + "class": "Midsize Cars" + }, + { + "id": 31587, + "make_id": 31254, + "name": "9-5 SportCombi", + "class": "Midsize Station Wagons" + }, + { + "id": 31595, + "make_id": 31254, + "name": "9-5 Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 31626, + "make_id": 31254, + "name": "9-7X", + "class": "Sport Utility Vehicle" + }, + { + "id": 31638, + "make_id": 31254, + "name": "900 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 31667, + "make_id": 31254, + "name": "900S", + "class": "Midsize Cars" + }, + { + "id": 31671, + "make_id": 31254, + "name": "900S Convertible", + "class": "Subcompact Cars" + }, + { + "id": 31673, + "make_id": 31254, + "name": "900SE", + "class": "Midsize Cars" + }, + { + "id": 31675, + "make_id": 31254, + "name": "900SE Convertible", + "class": "Subcompact Cars" + }, + { + "id": 31677, + "make_id": 31254, + "name": "Convertible", + "class": "Subcompact Cars" + }, + { + "id": 31686, + "make_id": 31686, + "name": "Mustang", + "class": "Subcompact Cars" + }, + { + "id": 31687, + "make_id": 31686, + "name": "Mustang S351", + "class": "Subcompact Cars" + }, + { + "id": 31689, + "make_id": 31686, + "name": "SSC", + "class": "Subcompact Cars" + }, + { + "id": 31691, + "make_id": 31691, + "name": "F150 Supercharged", + "class": "Standard Pickup Trucks" + }, + { + "id": 31692, + "make_id": 31691, + "name": "S281 Family", + "class": "Subcompact Cars" + }, + { + "id": 31695, + "make_id": 31691, + "name": "S331 Family", + "class": "Standard Pickup Trucks" + }, + { + "id": 31696, + "make_id": 31696, + "name": "Astra 2DR Hatchback", + "class": "Compact Cars" + }, + { + "id": 31700, + "make_id": 31696, + "name": "Astra 4DR Hatchback", + "class": "Compact Cars" + }, + { + "id": 31704, + "make_id": 31696, + "name": "Aura", + "class": "Midsize Cars" + }, + { + "id": 31714, + "make_id": 31696, + "name": "Aura Hybrid", + "class": "Midsize Cars" + }, + { + "id": 31717, + "make_id": 31696, + "name": "Ion", + "class": "Compact Cars" + }, + { + "id": 31737, + "make_id": 31696, + "name": "L100\/200", + "class": "Midsize Cars" + }, + { + "id": 31741, + "make_id": 31696, + "name": "L200", + "class": "Midsize Cars" + }, + { + "id": 31743, + "make_id": 31696, + "name": "L300", + "class": "Midsize Cars" + }, + { + "id": 31749, + "make_id": 31696, + "name": "LS", + "class": "Midsize Cars" + }, + { + "id": 31752, + "make_id": 31696, + "name": "LW", + "class": "Midsize Station Wagons" + }, + { + "id": 31754, + "make_id": 31696, + "name": "LW200", + "class": "Midsize Station Wagons" + }, + { + "id": 31760, + "make_id": 31696, + "name": "LW300", + "class": "Midsize Station Wagons" + }, + { + "id": 31766, + "make_id": 31696, + "name": "Outlook", + "class": "Sport Utility Vehicle" + }, + { + "id": 31774, + "make_id": 31696, + "name": "Relay", + "class": "Minivan" + }, + { + "id": 31781, + "make_id": 31696, + "name": "SC", + "class": "Subcompact Cars" + }, + { + "id": 31825, + "make_id": 31696, + "name": "SKY", + "class": "Two Seaters" + }, + { + "id": 31841, + "make_id": 31696, + "name": "SL", + "class": "Compact Cars" + }, + { + "id": 31889, + "make_id": 31696, + "name": "SW", + "class": "Small Station Wagons" + }, + { + "id": 31923, + "make_id": 31696, + "name": "Vue", + "class": "Sport Utility Vehicle" + }, + { + "id": 31969, + "make_id": 31696, + "name": "Vue Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 31974, + "make_id": 31974, + "name": "FR-S", + "class": "Minicompact Cars" + }, + { + "id": 31982, + "make_id": 31974, + "name": "iA", + "class": "Subcompact Cars" + }, + { + "id": 31984, + "make_id": 31974, + "name": "iM", + "class": "Midsize Cars" + }, + { + "id": 31986, + "make_id": 31974, + "name": "iQ", + "class": "Minicompact Cars" + }, + { + "id": 31991, + "make_id": 31974, + "name": "iQ EV", + "class": "Minicompact Cars" + }, + { + "id": 31992, + "make_id": 31974, + "name": "tC", + "class": "Subcompact Cars" + }, + { + "id": 32016, + "make_id": 31974, + "name": "xA", + "class": "Subcompact Cars" + }, + { + "id": 32022, + "make_id": 31974, + "name": "xB", + "class": "Small Station Wagons" + }, + { + "id": 32044, + "make_id": 31974, + "name": "xD", + "class": "Subcompact Cars" + }, + { + "id": 32058, + "make_id": 32058, + "name": "Mustang GT", + "class": "Two Seaters" + }, + { + "id": 32059, + "make_id": 32059, + "name": "fortwo cabriolet", + "class": "Two Seaters" + }, + { + "id": 32065, + "make_id": 32059, + "name": "fortwo convertible", + "class": "Two Seaters" + }, + { + "id": 32067, + "make_id": 32059, + "name": "fortwo coupe", + "class": "Two Seaters" + }, + { + "id": 32077, + "make_id": 32059, + "name": "fortwo electric drive cabriolet", + "class": "Two Seaters" + }, + { + "id": 32078, + "make_id": 32059, + "name": "fortwo electric drive convertible", + "class": "Two Seaters" + }, + { + "id": 32082, + "make_id": 32059, + "name": "fortwo electric drive coupe", + "class": "Two Seaters" + }, + { + "id": 32087, + "make_id": 32087, + "name": "C8", + "class": "Two Seaters" + }, + { + "id": 32088, + "make_id": 32087, + "name": "C8 Aileron", + "class": "Two Seaters" + }, + { + "id": 32090, + "make_id": 32087, + "name": "C8 Double 12 S", + "class": "Minicompact Cars" + }, + { + "id": 32091, + "make_id": 32087, + "name": "C8 Double 12 Spyder", + "class": "Two Seaters" + }, + { + "id": 32092, + "make_id": 32087, + "name": "C8 Laviolette", + "class": "Minicompact Cars" + }, + { + "id": 32095, + "make_id": 32087, + "name": "C8 Spyder", + "class": "Two Seaters" + }, + { + "id": 32098, + "make_id": 32087, + "name": "C8 Spyder Wide Body", + "class": "Two Seaters" + }, + { + "id": 32100, + "make_id": 32100, + "name": "Viper", + "class": "Two Seaters" + }, + { + "id": 32102, + "make_id": 32102, + "name": "825", + "class": "Compact Cars" + }, + { + "id": 32106, + "make_id": 32102, + "name": "827", + "class": "Compact Cars" + }, + { + "id": 32114, + "make_id": 32114, + "name": "3 Door Turbo", + "class": "Compact Cars" + }, + { + "id": 32115, + "make_id": 32114, + "name": "B9 Tribeca", + "class": "Sport Utility Vehicle" + }, + { + "id": 32117, + "make_id": 32114, + "name": "Baja", + "class": "Sport Utility Vehicle" + }, + { + "id": 32131, + "make_id": 32114, + "name": "Brat", + "class": "Special Purpose Vehicle" + }, + { + "id": 32145, + "make_id": 32114, + "name": "BRZ", + "class": "Minicompact Cars" + }, + { + "id": 32153, + "make_id": 32114, + "name": "Forester", + "class": "Special Purpose Vehicle" + }, + { + "id": 32211, + "make_id": 32114, + "name": "Hatchback", + "class": "Subcompact Cars" + }, + { + "id": 32235, + "make_id": 32114, + "name": "Impreza", + "class": "Subcompact Cars" + }, + { + "id": 32330, + "make_id": 32114, + "name": "Impreza Sport", + "class": "Small Station Wagons" + }, + { + "id": 32334, + "make_id": 32114, + "name": "Impreza Wagon", + "class": "Small Station Wagons" + }, + { + "id": 32373, + "make_id": 32114, + "name": "Impreza Wagon\/Outback Sport", + "class": "Small Station Wagons" + }, + { + "id": 32386, + "make_id": 32114, + "name": "Impreza Wagon\/Outback SPT", + "class": "Small Station Wagons" + }, + { + "id": 32416, + "make_id": 32114, + "name": "Justy", + "class": "Subcompact Cars" + }, + { + "id": 32443, + "make_id": 32114, + "name": "Legacy", + "class": "Compact Cars" + }, + { + "id": 32540, + "make_id": 32114, + "name": "Legacy (incl. Outback)", + "class": "Compact Cars" + }, + { + "id": 32542, + "make_id": 32114, + "name": "Legacy Turbo", + "class": "Compact Cars" + }, + { + "id": 32551, + "make_id": 32114, + "name": "Legacy Wagon", + "class": "Small Station Wagons" + }, + { + "id": 32610, + "make_id": 32114, + "name": "Legacy Wagon (incl. Outback)", + "class": "Midsize Station Wagons" + }, + { + "id": 32613, + "make_id": 32114, + "name": "Legacy Wagon Turbo", + "class": "Small Station Wagons" + }, + { + "id": 32617, + "make_id": 32114, + "name": "Legacy\/Outback", + "class": "Compact Cars" + }, + { + "id": 32625, + "make_id": 32114, + "name": "Legacy\/Outback Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 32633, + "make_id": 32114, + "name": "Loyale", + "class": "Compact Cars" + }, + { + "id": 32650, + "make_id": 32114, + "name": "Loyale Turbo", + "class": "Compact Cars" + }, + { + "id": 32651, + "make_id": 32114, + "name": "Loyale Wagon", + "class": "Small Station Wagons" + }, + { + "id": 32670, + "make_id": 32114, + "name": "Loyale Wagon Turbo", + "class": "Small Station Wagons" + }, + { + "id": 32671, + "make_id": 32114, + "name": "Outback", + "class": "Sport Utility Vehicle" + }, + { + "id": 32688, + "make_id": 32114, + "name": "Outback Wagon", + "class": "Sport Utility Vehicle" + }, + { + "id": 32722, + "make_id": 32114, + "name": "RX Turbo", + "class": "Subcompact Cars" + }, + { + "id": 32724, + "make_id": 32114, + "name": "Sedan", + "class": "Subcompact Cars" + }, + { + "id": 32752, + "make_id": 32114, + "name": "Sedan\/3 Door", + "class": "Compact Cars" + }, + { + "id": 32780, + "make_id": 32114, + "name": "Sedan\/3Door Turbo", + "class": "Compact Cars" + }, + { + "id": 32786, + "make_id": 32114, + "name": "SVX", + "class": "Subcompact Cars" + }, + { + "id": 32795, + "make_id": 32114, + "name": "Tribeca", + "class": "Sport Utility Vehicle" + }, + { + "id": 32802, + "make_id": 32114, + "name": "Wagon", + "class": "Small Station Wagons" + }, + { + "id": 32855, + "make_id": 32114, + "name": "Wagon Turbo", + "class": "Small Station Wagons" + }, + { + "id": 32861, + "make_id": 32114, + "name": "WRX", + "class": "Compact Cars" + }, + { + "id": 32870, + "make_id": 32114, + "name": "XT", + "class": "Subcompact Cars" + }, + { + "id": 32920, + "make_id": 32114, + "name": "XT-DL", + "class": "Two Seaters" + }, + { + "id": 32926, + "make_id": 32114, + "name": "XV Crosstrek", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 32934, + "make_id": 32114, + "name": "XV Crosstrek Hybrid", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 32937, + "make_id": 32937, + "name": "Funeral Coach ", + "class": "Special Purpose Vehicle" + }, + { + "id": 32938, + "make_id": 32938, + "name": "Aerio", + "class": "Compact Cars" + }, + { + "id": 32955, + "make_id": 32938, + "name": "Aerio SX", + "class": "Small Station Wagons" + }, + { + "id": 32969, + "make_id": 32938, + "name": "Equator", + "class": "Small Pickup Trucks" + }, + { + "id": 32985, + "make_id": 32938, + "name": "Esteem", + "class": "Subcompact Cars" + }, + { + "id": 33006, + "make_id": 32938, + "name": "Esteem Wagon", + "class": "Small Station Wagons" + }, + { + "id": 33021, + "make_id": 32938, + "name": "Forenza", + "class": "Compact Cars" + }, + { + "id": 33031, + "make_id": 32938, + "name": "Forenza Wagon", + "class": "Small Station Wagons" + }, + { + "id": 33039, + "make_id": 32938, + "name": "Forsa", + "class": "Subcompact Cars" + }, + { + "id": 33043, + "make_id": 32938, + "name": "Forsa Turbo", + "class": "Minicompact Cars" + }, + { + "id": 33045, + "make_id": 32938, + "name": "Grand Vitara", + "class": "Sport Utility Vehicle" + }, + { + "id": 33098, + "make_id": 32938, + "name": "Grand Vitara 4Door", + "class": "Sport Utility Vehicle" + }, + { + "id": 33106, + "make_id": 32938, + "name": "Grand Vitara XL7", + "class": "Sport Utility Vehicle" + }, + { + "id": 33130, + "make_id": 32938, + "name": "Kizashi", + "class": "Compact Cars" + }, + { + "id": 33142, + "make_id": 32938, + "name": "Kizashi S", + "class": "Compact Cars" + }, + { + "id": 33153, + "make_id": 32938, + "name": "Reno", + "class": "Compact Cars" + }, + { + "id": 33161, + "make_id": 32938, + "name": "SA310", + "class": "Minicompact Cars" + }, + { + "id": 33163, + "make_id": 32938, + "name": "Samurai", + "class": "Special Purpose Vehicle" + }, + { + "id": 33168, + "make_id": 32938, + "name": "Samurai Convertible", + "class": "Special Purpose Vehicle" + }, + { + "id": 33172, + "make_id": 32938, + "name": "Samurai Hardtop", + "class": "Special Purpose Vehicle" + }, + { + "id": 33177, + "make_id": 32938, + "name": "Samurai Soft-top", + "class": "Special Purpose Vehicle" + }, + { + "id": 33182, + "make_id": 32938, + "name": "Sidekick", + "class": "Special Purpose Vehicle" + }, + { + "id": 33187, + "make_id": 32938, + "name": "Sidekick 2Door", + "class": "Special Purpose Vehicle" + }, + { + "id": 33205, + "make_id": 32938, + "name": "Sidekick 2Door RWD", + "class": "Special Purpose Vehicle" + }, + { + "id": 33207, + "make_id": 32938, + "name": "Sidekick 4Door", + "class": "Special Purpose Vehicle" + }, + { + "id": 33221, + "make_id": 32938, + "name": "Sidekick 4Door RWD", + "class": "Special Purpose Vehicle" + }, + { + "id": 33223, + "make_id": 32938, + "name": "Sidekick Convertible", + "class": "Special Purpose Vehicle" + }, + { + "id": 33226, + "make_id": 32938, + "name": "Sidekick Hardtop", + "class": "Special Purpose Vehicle" + }, + { + "id": 33247, + "make_id": 32938, + "name": "Sidekick Soft-top", + "class": "Special Purpose Vehicle" + }, + { + "id": 33255, + "make_id": 32938, + "name": "Sidekick Sport", + "class": "Special Purpose Vehicle" + }, + { + "id": 33263, + "make_id": 32938, + "name": "Sidekick Sport RWD", + "class": "Special Purpose Vehicle" + }, + { + "id": 33265, + "make_id": 32938, + "name": "SJ 410", + "class": "Special Purpose Vehicle" + }, + { + "id": 33267, + "make_id": 32938, + "name": "SJ 410V", + "class": "Special Purpose Vehicle" + }, + { + "id": 33269, + "make_id": 32938, + "name": "SJ410K P\/U", + "class": "Small Pickup Trucks" + }, + { + "id": 33270, + "make_id": 32938, + "name": "SW", + "class": "Subcompact Cars" + }, + { + "id": 33272, + "make_id": 32938, + "name": "Swift", + "class": "Subcompact Cars" + }, + { + "id": 33310, + "make_id": 32938, + "name": "Swift GA", + "class": "Subcompact Cars" + }, + { + "id": 33311, + "make_id": 32938, + "name": "Swift GT", + "class": "Subcompact Cars" + }, + { + "id": 33317, + "make_id": 32938, + "name": "Swift GTI", + "class": "Subcompact Cars" + }, + { + "id": 33319, + "make_id": 32938, + "name": "Swift x", + "class": "Compact Cars" + }, + { + "id": 33327, + "make_id": 32938, + "name": "SX4", + "class": "Small Station Wagons" + }, + { + "id": 33355, + "make_id": 32938, + "name": "SX4 Sedan", + "class": "Compact Cars" + }, + { + "id": 33367, + "make_id": 32938, + "name": "SX4 Sport", + "class": "Compact Cars" + }, + { + "id": 33375, + "make_id": 32938, + "name": "SX4 Sport\/Anniversary Edition", + "class": "Compact Cars" + }, + { + "id": 33377, + "make_id": 32938, + "name": "Verona", + "class": "Midsize Cars" + }, + { + "id": 33380, + "make_id": 32938, + "name": "Vitara 2 Door", + "class": "Sport Utility Vehicle" + }, + { + "id": 33384, + "make_id": 32938, + "name": "Vitara 2Door", + "class": "Sport Utility Vehicle" + }, + { + "id": 33412, + "make_id": 32938, + "name": "Vitara 4 Door", + "class": "Sport Utility Vehicle" + }, + { + "id": 33420, + "make_id": 32938, + "name": "Vitara 4Door", + "class": "Sport Utility Vehicle" + }, + { + "id": 33436, + "make_id": 32938, + "name": "X-90", + "class": "Two Seaters" + }, + { + "id": 33445, + "make_id": 32938, + "name": "X-90 RWD", + "class": "Two Seaters" + }, + { + "id": 33447, + "make_id": 32938, + "name": "XL7", + "class": "Sport Utility Vehicle" + }, + { + "id": 33453, + "make_id": 33453, + "name": "Foose F150 Regular Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 33455, + "make_id": 33453, + "name": "Foose F150 Super Cab", + "class": "Standard Pickup Trucks" + }, + { + "id": 33457, + "make_id": 33453, + "name": "Foose F150 Super Crew", + "class": "Standard Pickup Trucks" + }, + { + "id": 33459, + "make_id": 33459, + "name": "Model S", + "class": "Large Cars" + }, + { + "id": 33460, + "make_id": 33459, + "name": "Model S - 70D", + "class": "Large Cars" + }, + { + "id": 33462, + "make_id": 33459, + "name": "Model S - 75D", + "class": "Large Cars" + }, + { + "id": 33463, + "make_id": 33459, + "name": "Model S - 85D", + "class": "Large Cars" + }, + { + "id": 33465, + "make_id": 33459, + "name": "Model S - 90D", + "class": "Large Cars" + }, + { + "id": 33467, + "make_id": 33459, + "name": "Model S - P85D", + "class": "Large Cars" + }, + { + "id": 33469, + "make_id": 33459, + "name": "Model S - P90D", + "class": "Large Cars" + }, + { + "id": 33471, + "make_id": 33459, + "name": "Model S (40 kW-hr battery pack)", + "class": "Large Cars" + }, + { + "id": 33472, + "make_id": 33459, + "name": "Model S (60 kW-hr battery pack)", + "class": "Large Cars" + }, + { + "id": 33475, + "make_id": 33459, + "name": "Model S (70 kW-hr battery pack)", + "class": "Large Cars" + }, + { + "id": 33476, + "make_id": 33459, + "name": "Model S (75 kW-hr battery pack)", + "class": "Large Cars" + }, + { + "id": 33477, + "make_id": 33459, + "name": "Model S (85 kW-hr battery pack)", + "class": "Large Cars" + }, + { + "id": 33482, + "make_id": 33459, + "name": "Model S (90 kW-hr battery pack)", + "class": "Large Cars" + }, + { + "id": 33484, + "make_id": 33459, + "name": "Model X - 75D", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 33485, + "make_id": 33459, + "name": "Model X - 90D", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 33486, + "make_id": 33459, + "name": "Model X - P90D", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 33487, + "make_id": 33487, + "name": "500 SEC", + "class": "Compact Cars" + }, + { + "id": 33488, + "make_id": 33487, + "name": "500SE", + "class": "Midsize Cars" + }, + { + "id": 33489, + "make_id": 33487, + "name": "500SEL", + "class": "Midsize Cars" + }, + { + "id": 33490, + "make_id": 33487, + "name": "500SL", + "class": "Two Seaters" + }, + { + "id": 33491, + "make_id": 33491, + "name": "86", + "class": "Minicompact Cars" + }, + { + "id": 33493, + "make_id": 33491, + "name": "1-Ton Truck", + "class": "Standard Pickup Trucks" + }, + { + "id": 33509, + "make_id": 33491, + "name": "4Runner", + "class": "Special Purpose Vehicle" + }, + { + "id": 33647, + "make_id": 33491, + "name": "Avalon", + "class": "Large Cars" + }, + { + "id": 33671, + "make_id": 33491, + "name": "Avalon Hybrid", + "class": "Midsize Cars" + }, + { + "id": 33675, + "make_id": 33491, + "name": "Cab Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 33679, + "make_id": 33491, + "name": "Cab\/Chassis", + "class": "Special Purpose Vehicle" + }, + { + "id": 33697, + "make_id": 33491, + "name": "Camry", + "class": "Compact Cars" + }, + { + "id": 33819, + "make_id": 33491, + "name": "Camry CNG", + "class": "Compact Cars" + }, + { + "id": 33822, + "make_id": 33491, + "name": "Camry Hybrid", + "class": "Midsize Cars" + }, + { + "id": 33827, + "make_id": 33491, + "name": "Camry Hybrid LE", + "class": "Midsize Cars" + }, + { + "id": 33832, + "make_id": 33491, + "name": "Camry Hybrid XLE", + "class": "Midsize Cars" + }, + { + "id": 33834, + "make_id": 33491, + "name": "Camry Hybrid XLE\/SE", + "class": "Midsize Cars" + }, + { + "id": 33837, + "make_id": 33491, + "name": "Camry Solara", + "class": "Compact Cars" + }, + { + "id": 33871, + "make_id": 33491, + "name": "Camry Solara Convertible", + "class": "Subcompact Cars" + }, + { + "id": 33884, + "make_id": 33491, + "name": "Camry Wagon", + "class": "Small Station Wagons" + }, + { + "id": 33906, + "make_id": 33491, + "name": "Cargo Van", + "class": "Vans, Cargo Type" + }, + { + "id": 33918, + "make_id": 33491, + "name": "Celica", + "class": "Subcompact Cars" + }, + { + "id": 34009, + "make_id": 33491, + "name": "Celica Convertible", + "class": "Minicompact Cars" + }, + { + "id": 34034, + "make_id": 33491, + "name": "Celica Supra", + "class": "Subcompact Cars" + }, + { + "id": 34042, + "make_id": 33491, + "name": "Corolla", + "class": "Compact Cars" + }, + { + "id": 34162, + "make_id": 33491, + "name": "Corolla All-Trac Wagon", + "class": "Small Station Wagons" + }, + { + "id": 34172, + "make_id": 33491, + "name": "Corolla FX", + "class": "Subcompact Cars" + }, + { + "id": 34178, + "make_id": 33491, + "name": "Corolla LE Eco", + "class": "Midsize Cars" + }, + { + "id": 34184, + "make_id": 33491, + "name": "Corolla Sport", + "class": "Subcompact Cars" + }, + { + "id": 34198, + "make_id": 33491, + "name": "Corolla Wagon", + "class": "Small Station Wagons" + }, + { + "id": 34216, + "make_id": 33491, + "name": "Cressida", + "class": "Subcompact Cars" + }, + { + "id": 34231, + "make_id": 33491, + "name": "Cressida Wagon", + "class": "Small Station Wagons" + }, + { + "id": 34236, + "make_id": 33491, + "name": "Echo", + "class": "Compact Cars" + }, + { + "id": 34248, + "make_id": 33491, + "name": "FJ Cruiser", + "class": "Sport Utility Vehicle" + }, + { + "id": 34272, + "make_id": 33491, + "name": "Highlander", + "class": "Sport Utility Vehicle" + }, + { + "id": 34326, + "make_id": 33491, + "name": "Highlander Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 34339, + "make_id": 33491, + "name": "Highlander Hybrid LE Plus", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 34342, + "make_id": 33491, + "name": "Land Cruiser Wagon", + "class": "Special Purpose Vehicle" + }, + { + "id": 34374, + "make_id": 33491, + "name": "Matrix", + "class": "Small Station Wagons" + }, + { + "id": 34420, + "make_id": 33491, + "name": "MR2", + "class": "Two Seaters" + }, + { + "id": 34457, + "make_id": 33491, + "name": "Paseo", + "class": "Minicompact Cars" + }, + { + "id": 34473, + "make_id": 33491, + "name": "Paseo Convertible", + "class": "Minicompact Cars" + }, + { + "id": 34479, + "make_id": 33491, + "name": "Previa", + "class": "Vans" + }, + { + "id": 34491, + "make_id": 33491, + "name": "Previa All-Trac", + "class": "Vans" + }, + { + "id": 34502, + "make_id": 33491, + "name": "Prius", + "class": "Compact Cars" + }, + { + "id": 34518, + "make_id": 33491, + "name": "Prius c", + "class": "Compact Cars" + }, + { + "id": 34523, + "make_id": 33491, + "name": "Prius Eco", + "class": "Midsize Cars" + }, + { + "id": 34524, + "make_id": 33491, + "name": "Prius Plug-in Hybrid", + "class": "Midsize Cars" + }, + { + "id": 34528, + "make_id": 33491, + "name": "Prius v", + "class": "Midsize Station Wagons" + }, + { + "id": 34534, + "make_id": 33491, + "name": "RAV4", + "class": "Special Purpose Vehicle" + }, + { + "id": 34610, + "make_id": 33491, + "name": "RAV4 EV", + "class": "Sport Utility Vehicle" + }, + { + "id": 34617, + "make_id": 33491, + "name": "RAV4 Hybrid", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 34618, + "make_id": 33491, + "name": "RAV4 LE\/XLE", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 34620, + "make_id": 33491, + "name": "RAV4 Limited", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 34623, + "make_id": 33491, + "name": "RAV4 Limited\/SE", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 34624, + "make_id": 33491, + "name": "RAV4 Soft Top", + "class": "Special Purpose Vehicle" + }, + { + "id": 34636, + "make_id": 33491, + "name": "Sequoia", + "class": "Sport Utility Vehicle" + }, + { + "id": 34686, + "make_id": 33491, + "name": "Sienna", + "class": "Special Purpose Vehicle" + }, + { + "id": 34721, + "make_id": 33491, + "name": "Starlet", + "class": "Minicompact Cars" + }, + { + "id": 34724, + "make_id": 33491, + "name": "Supra", + "class": "Subcompact Cars" + }, + { + "id": 34772, + "make_id": 33491, + "name": "T100", + "class": "Standard Pickup Trucks" + }, + { + "id": 34806, + "make_id": 33491, + "name": "Tacoma", + "class": "Small Pickup Trucks" + }, + { + "id": 34982, + "make_id": 33491, + "name": "Tacoma Double Cab", + "class": "Small Pickup Trucks" + }, + { + "id": 34983, + "make_id": 33491, + "name": "Tercel", + "class": "Subcompact Cars" + }, + { + "id": 35039, + "make_id": 33491, + "name": "Tercel EZ", + "class": "Subcompact Cars" + }, + { + "id": 35040, + "make_id": 33491, + "name": "Tercel Wagon", + "class": "Small Station Wagons" + }, + { + "id": 35065, + "make_id": 33491, + "name": "Truck", + "class": "Standard Pickup Trucks" + }, + { + "id": 35193, + "make_id": 33491, + "name": "Truck\/T100", + "class": "Standard Pickup Trucks" + }, + { + "id": 35203, + "make_id": 33491, + "name": "Tundra", + "class": "Standard Pickup Trucks" + }, + { + "id": 35298, + "make_id": 33491, + "name": "Van", + "class": "Vans, Passenger Type" + }, + { + "id": 35310, + "make_id": 33491, + "name": "Van (cargo)", + "class": "Vans" + }, + { + "id": 35317, + "make_id": 33491, + "name": "Van (passenger)", + "class": "Vans" + }, + { + "id": 35325, + "make_id": 33491, + "name": "Venza", + "class": "Sport Utility Vehicle" + }, + { + "id": 35353, + "make_id": 33491, + "name": "Yaris", + "class": "Subcompact Cars" + }, + { + "id": 35373, + "make_id": 35373, + "name": "TVR 280i Convertible", + "class": "Two Seaters" + }, + { + "id": 35374, + "make_id": 35373, + "name": "TVR 280i Coupe", + "class": "Two Seaters" + }, + { + "id": 35375, + "make_id": 35373, + "name": "TVR 280i\/350i Convertible", + "class": "Two Seaters" + }, + { + "id": 35376, + "make_id": 35373, + "name": "TVR 280i\/350i Coupe", + "class": "Two Seaters" + }, + { + "id": 35377, + "make_id": 35377, + "name": "Avtech SC \/ M12", + "class": "Two Seaters" + }, + { + "id": 35379, + "make_id": 35377, + "name": "W8", + "class": "Two Seaters" + }, + { + "id": 35381, + "make_id": 35381, + "name": "21 TD", + "class": "Special Purpose Vehicle" + }, + { + "id": 35382, + "make_id": 35382, + "name": "Niva", + "class": "Special Purpose Vehicle" + }, + { + "id": 35383, + "make_id": 35383, + "name": "Beetle", + "class": "Subcompact Cars" + }, + { + "id": 35411, + "make_id": 35383, + "name": "Beetle Convertible", + "class": "Subcompact Cars" + }, + { + "id": 35430, + "make_id": 35383, + "name": "Beetle Dune", + "class": "Compact Cars" + }, + { + "id": 35431, + "make_id": 35383, + "name": "Cabrio", + "class": "Subcompact Cars" + }, + { + "id": 35447, + "make_id": 35383, + "name": "Cabriolet", + "class": "Minicompact Cars" + }, + { + "id": 35465, + "make_id": 35383, + "name": "CC", + "class": "Compact Cars" + }, + { + "id": 35484, + "make_id": 35383, + "name": "CC 4motion", + "class": "Compact Cars" + }, + { + "id": 35492, + "make_id": 35383, + "name": "Corrado", + "class": "Subcompact Cars" + }, + { + "id": 35497, + "make_id": 35383, + "name": "Corrado SLC", + "class": "Subcompact Cars" + }, + { + "id": 35504, + "make_id": 35383, + "name": "e-Golf", + "class": "Compact Cars" + }, + { + "id": 35506, + "make_id": 35383, + "name": "Eos", + "class": "Subcompact Cars" + }, + { + "id": 35523, + "make_id": 35383, + "name": "Eurovan", + "class": "Vans" + }, + { + "id": 35533, + "make_id": 35383, + "name": "Eurovan Camper", + "class": "Vans" + }, + { + "id": 35541, + "make_id": 35383, + "name": "Fox", + "class": "Subcompact Cars" + }, + { + "id": 35553, + "make_id": 35383, + "name": "Fox GL Wagon", + "class": "Small Station Wagons" + }, + { + "id": 35554, + "make_id": 35383, + "name": "Fox Wagon", + "class": "Small Station Wagons" + }, + { + "id": 35557, + "make_id": 35383, + "name": "Golf", + "class": "Compact Cars" + }, + { + "id": 35627, + "make_id": 35383, + "name": "Golf III", + "class": "Compact Cars" + }, + { + "id": 35631, + "make_id": 35383, + "name": "Golf III \/ GTI", + "class": "Compact Cars" + }, + { + "id": 35634, + "make_id": 35383, + "name": "Golf R", + "class": "Compact Cars" + }, + { + "id": 35639, + "make_id": 35383, + "name": "Golf SportWagen", + "class": "Small Station Wagons" + }, + { + "id": 35645, + "make_id": 35383, + "name": "Golf\/GTI", + "class": "Compact Cars" + }, + { + "id": 35663, + "make_id": 35383, + "name": "GTI", + "class": "Compact Cars" + }, + { + "id": 35714, + "make_id": 35383, + "name": "GTI 16v", + "class": "Compact Cars" + }, + { + "id": 35720, + "make_id": 35383, + "name": "GTI VR6", + "class": "Compact Cars" + }, + { + "id": 35724, + "make_id": 35383, + "name": "GTI\/Golf GT", + "class": "Compact Cars" + }, + { + "id": 35726, + "make_id": 35383, + "name": "Jetta", + "class": "Subcompact Cars" + }, + { + "id": 35905, + "make_id": 35383, + "name": "Jetta GLI", + "class": "Compact Cars" + }, + { + "id": 35907, + "make_id": 35383, + "name": "Jetta GLI 16v", + "class": "Compact Cars" + }, + { + "id": 35913, + "make_id": 35383, + "name": "Jetta GLI\/Wolfsburg Edition", + "class": "Compact Cars" + }, + { + "id": 35915, + "make_id": 35383, + "name": "Jetta GLX", + "class": "Compact Cars" + }, + { + "id": 35921, + "make_id": 35383, + "name": "Jetta Hybrid", + "class": "Compact Cars" + }, + { + "id": 35925, + "make_id": 35383, + "name": "Jetta III", + "class": "Compact Cars" + }, + { + "id": 35932, + "make_id": 35383, + "name": "Jetta III GLX", + "class": "Compact Cars" + }, + { + "id": 35936, + "make_id": 35383, + "name": "Jetta SportWagen", + "class": "Small Station Wagons" + }, + { + "id": 35964, + "make_id": 35383, + "name": "Jetta Wagon", + "class": "Small Station Wagons" + }, + { + "id": 35994, + "make_id": 35383, + "name": "New Beetle", + "class": "Subcompact Cars" + }, + { + "id": 36055, + "make_id": 35383, + "name": "New Beetle Convertible", + "class": "Minicompact Cars" + }, + { + "id": 36076, + "make_id": 35383, + "name": "New Golf", + "class": "Compact Cars" + }, + { + "id": 36080, + "make_id": 35383, + "name": "New GTI", + "class": "Compact Cars" + }, + { + "id": 36083, + "make_id": 35383, + "name": "New Jetta", + "class": "Compact Cars" + }, + { + "id": 36089, + "make_id": 35383, + "name": "Passat", + "class": "Midsize Cars" + }, + { + "id": 36188, + "make_id": 35383, + "name": "Passat 4motion", + "class": "Midsize Cars" + }, + { + "id": 36206, + "make_id": 35383, + "name": "Passat Syncro", + "class": "Midsize Cars" + }, + { + "id": 36209, + "make_id": 35383, + "name": "Passat Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36273, + "make_id": 35383, + "name": "Passat Wagon 4motion", + "class": "Midsize Station Wagons" + }, + { + "id": 36290, + "make_id": 35383, + "name": "Passat Wagon Syncro", + "class": "Midsize Station Wagons" + }, + { + "id": 36293, + "make_id": 35383, + "name": "Phaeton", + "class": "Large Cars" + }, + { + "id": 36299, + "make_id": 35383, + "name": "Quantum", + "class": "Compact Cars" + }, + { + "id": 36318, + "make_id": 35383, + "name": "Quantum Syncro Wagon", + "class": "Small Station Wagons" + }, + { + "id": 36322, + "make_id": 35383, + "name": "Quantum Wagon", + "class": "Small Station Wagons" + }, + { + "id": 36343, + "make_id": 35383, + "name": "R32", + "class": "Subcompact Cars" + }, + { + "id": 36345, + "make_id": 35383, + "name": "Rabbit", + "class": "Subcompact Cars" + }, + { + "id": 36369, + "make_id": 35383, + "name": "Rabbit Convertible", + "class": "Minicompact Cars" + }, + { + "id": 36373, + "make_id": 35383, + "name": "Routan", + "class": "Minivan" + }, + { + "id": 36381, + "make_id": 35383, + "name": "Scirocco", + "class": "Subcompact Cars" + }, + { + "id": 36391, + "make_id": 35383, + "name": "Scirocco 16v", + "class": "Subcompact Cars" + }, + { + "id": 36394, + "make_id": 35383, + "name": "Tiguan", + "class": "Sport Utility Vehicle" + }, + { + "id": 36408, + "make_id": 35383, + "name": "Tiguan 4motion", + "class": "Sport Utility Vehicle" + }, + { + "id": 36416, + "make_id": 35383, + "name": "Touareg", + "class": "Sport Utility Vehicle" + }, + { + "id": 36447, + "make_id": 35383, + "name": "Touareg Hybrid", + "class": "Sport Utility Vehicle" + }, + { + "id": 36452, + "make_id": 35383, + "name": "Vanagon", + "class": "Vans, Passenger Type" + }, + { + "id": 36460, + "make_id": 35383, + "name": "Vanagon Syncro", + "class": "Vans" + }, + { + "id": 36466, + "make_id": 35383, + "name": "Vanagon\/Camper", + "class": "Vans" + }, + { + "id": 36478, + "make_id": 36478, + "name": "240", + "class": "Compact Cars" + }, + { + "id": 36490, + "make_id": 36478, + "name": "740", + "class": "Midsize Cars" + }, + { + "id": 36510, + "make_id": 36478, + "name": "760", + "class": "Midsize Cars" + }, + { + "id": 36514, + "make_id": 36478, + "name": "780", + "class": "Compact Cars" + }, + { + "id": 36521, + "make_id": 36478, + "name": "850", + "class": "Midsize Cars" + }, + { + "id": 36536, + "make_id": 36478, + "name": "940", + "class": "Midsize Cars" + }, + { + "id": 36544, + "make_id": 36478, + "name": "960", + "class": "Midsize Cars" + }, + { + "id": 36549, + "make_id": 36478, + "name": "240 DL\/240 GL", + "class": "Compact Cars" + }, + { + "id": 36559, + "make_id": 36478, + "name": "240 DL\/240 GL Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36569, + "make_id": 36478, + "name": "240 DL\/GL\/Turbo", + "class": "Compact Cars" + }, + { + "id": 36583, + "make_id": 36478, + "name": "240 DL\/GL\/turbo", + "class": "Compact Cars" + }, + { + "id": 36588, + "make_id": 36478, + "name": "240 DL\/GL\/Turbo Wagon", + "class": "Midsize Station Wagons" + }, + { + "id": 36602, + "make_id": 36478, + "name": "240 DL\/GL\/turbo Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36607, + "make_id": 36478, + "name": "240 Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36619, + "make_id": 36478, + "name": "740 16-Valve", + "class": "Midsize Cars" + }, + { + "id": 36621, + "make_id": 36478, + "name": "740 16-Valve Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36623, + "make_id": 36478, + "name": "740 Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36644, + "make_id": 36478, + "name": "740\/760", + "class": "Midsize Cars" + }, + { + "id": 36669, + "make_id": 36478, + "name": "740\/760 Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36682, + "make_id": 36478, + "name": "760 GLE", + "class": "Midsize Cars" + }, + { + "id": 36691, + "make_id": 36478, + "name": "760 Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36693, + "make_id": 36478, + "name": "850 Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36708, + "make_id": 36478, + "name": "940 GLE 16-Valve", + "class": "Midsize Cars" + }, + { + "id": 36709, + "make_id": 36478, + "name": "940 GLE 16-Valve Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36710, + "make_id": 36478, + "name": "940 SE", + "class": "Midsize Cars" + }, + { + "id": 36711, + "make_id": 36478, + "name": "940 SE Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36712, + "make_id": 36478, + "name": "940 Turbo", + "class": "Midsize Cars" + }, + { + "id": 36713, + "make_id": 36478, + "name": "940 Turbo Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36714, + "make_id": 36478, + "name": "940 Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36721, + "make_id": 36478, + "name": "960 Wagon", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 36727, + "make_id": 36478, + "name": "960 Wagon\/V90", + "class": "Small Station Wagons" + }, + { + "id": 36728, + "make_id": 36478, + "name": "960\/S90", + "class": "Compact Cars" + }, + { + "id": 36729, + "make_id": 36478, + "name": "C30", + "class": "Compact Cars" + }, + { + "id": 36747, + "make_id": 36478, + "name": "C70", + "class": "Compact Cars" + }, + { + "id": 36759, + "make_id": 36478, + "name": "C70 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 36787, + "make_id": 36478, + "name": "C70 Coupe", + "class": "Compact Cars" + }, + { + "id": 36795, + "make_id": 36478, + "name": "Coupe", + "class": "Compact Cars" + }, + { + "id": 36796, + "make_id": 36478, + "name": "New C70 Convertible", + "class": "Subcompact Cars" + }, + { + "id": 36797, + "make_id": 36478, + "name": "S40", + "class": "Compact Cars" + }, + { + "id": 36841, + "make_id": 36478, + "name": "S60", + "class": "Compact Cars" + }, + { + "id": 36917, + "make_id": 36478, + "name": "S60 CC", + "class": "Compact Cars" + }, + { + "id": 36919, + "make_id": 36478, + "name": "S60 Inscription", + "class": "Compact Cars" + }, + { + "id": 36923, + "make_id": 36478, + "name": "S60 PoleStar", + "class": "Compact Cars" + }, + { + "id": 36925, + "make_id": 36478, + "name": "S60 R", + "class": "Compact Cars" + }, + { + "id": 36933, + "make_id": 36478, + "name": "S70", + "class": "Midsize Cars" + }, + { + "id": 36951, + "make_id": 36478, + "name": "S80", + "class": "Midsize Cars" + }, + { + "id": 36985, + "make_id": 36478, + "name": "S80\/S80 Executive", + "class": "Midsize Cars" + }, + { + "id": 36991, + "make_id": 36478, + "name": "S80\/S80 Premier", + "class": "Midsize Cars" + }, + { + "id": 36994, + "make_id": 36478, + "name": "S90", + "class": "Compact Cars" + }, + { + "id": 36997, + "make_id": 36478, + "name": "V40", + "class": "Small Station Wagons" + }, + { + "id": 37002, + "make_id": 36478, + "name": "V50", + "class": "Small Station Wagons" + }, + { + "id": 37038, + "make_id": 36478, + "name": "V60", + "class": "Small Station Wagons" + }, + { + "id": 37048, + "make_id": 36478, + "name": "V60 CC", + "class": "Small Sport Utility Vehicle" + }, + { + "id": 37052, + "make_id": 36478, + "name": "V60 PoleStar", + "class": "Small Station Wagons" + }, + { + "id": 37054, + "make_id": 36478, + "name": "V70", + "class": "Midsize Station Wagons" + }, + { + "id": 37123, + "make_id": 36478, + "name": "V70 R", + "class": "Midsize Station Wagons" + }, + { + "id": 37131, + "make_id": 36478, + "name": "V70 XC", + "class": "Sport Utility Vehicle" + }, + { + "id": 37133, + "make_id": 36478, + "name": "V90", + "class": "Small Station Wagons" + }, + { + "id": 37134, + "make_id": 36478, + "name": "XC 60", + "class": "Sport Utility Vehicle" + }, + { + "id": 37138, + "make_id": 36478, + "name": "XC 70", + "class": "Sport Utility Vehicle" + }, + { + "id": 37148, + "make_id": 36478, + "name": "XC 90", + "class": "Sport Utility Vehicle" + }, + { + "id": 37175, + "make_id": 36478, + "name": "XC60", + "class": "Sport Utility Vehicle" + }, + { + "id": 37200, + "make_id": 36478, + "name": "XC70", + "class": "Sport Utility Vehicle" + }, + { + "id": 37217, + "make_id": 36478, + "name": "XC90", + "class": "Sport Utility Vehicle" + }, + { + "id": 37231, + "make_id": 36478, + "name": "XC90 PHEV", + "class": "Standard Sport Utility Vehicle" + }, + { + "id": 37232, + "make_id": 37232, + "name": "MV-1", + "class": "Special Purpose Vehicle" + }, + { + "id": 37235, + "make_id": 37232, + "name": "MV-1 CNG", + "class": "Special Purpose Vehicle" + }, + { + "id": 37237, + "make_id": 37237, + "name": "Wetl 190E", + "class": "Subcompact Cars" + }, + { + "id": 37239, + "make_id": 37237, + "name": "Wetl 190E 2.3", + "class": "Subcompact Cars" + }, + { + "id": 37241, + "make_id": 37237, + "name": "Wetl 300 CE", + "class": "Subcompact Cars" + }, + { + "id": 37243, + "make_id": 37237, + "name": "Wetl 300 E", + "class": "Compact Cars" + }, + { + "id": 37245, + "make_id": 37237, + "name": "Wetl 300 GE", + "class": "Special Purpose Vehicle" + }, + { + "id": 37246, + "make_id": 37237, + "name": "Wetl 300 SL", + "class": "Minicompact Cars" + }, + { + "id": 37248, + "make_id": 37237, + "name": "Wetl 300 TE", + "class": "Midsize-Large Station Wagons" + }, + { + "id": 37250, + "make_id": 37237, + "name": "Wetl 412", + "class": "Compact Cars" + }, + { + "id": 37252, + "make_id": 37237, + "name": "Wetl 500 SE", + "class": "Compact Cars" + }, + { + "id": 37254, + "make_id": 37237, + "name": "Wetl 500 SEC", + "class": "Compact Cars" + }, + { + "id": 37256, + "make_id": 37237, + "name": "Wetl 500 SEL", + "class": "Midsize Cars" + }, + { + "id": 37258, + "make_id": 37237, + "name": "Wetl 500 SL", + "class": "Two Seaters" + }, + { + "id": 37259, + "make_id": 37237, + "name": "Wetl 560 SEC", + "class": "Compact Cars" + }, + { + "id": 37261, + "make_id": 37237, + "name": "Wetl 560 SEL", + "class": "Midsize Cars" + }, + { + "id": 37263, + "make_id": 37237, + "name": "Wetl 560 SL", + "class": "Two Seaters" + }, + { + "id": 37264, + "make_id": 37237, + "name": "Wetl 600 SEL", + "class": "Large Cars" + }, + { + "id": 37265, + "make_id": 37237, + "name": "Wetl 850I", + "class": "Subcompact Cars" + }, + { + "id": 37267, + "make_id": 37237, + "name": "Wetl Testarossa", + "class": "Two Seaters" + }, + { + "id": 37269, + "make_id": 37269, + "name": "GV", + "class": "Subcompact Cars" + }, + { + "id": 37271, + "make_id": 37269, + "name": "GV Plus\/GV\/Cabrio", + "class": "Subcompact Cars" + }, + { + "id": 37273, + "make_id": 37269, + "name": "GV\/GVX", + "class": "Subcompact Cars" + }, + { + "id": 37276, + "make_id": 37269, + "name": "Gy\/yugo GVX", + "class": "Minicompact Cars" + } +] \ No newline at end of file diff --git a/src/Vehicle/Data/options.json b/src/Vehicle/Data/options.json new file mode 100644 index 0000000..e95fbdb --- /dev/null +++ b/src/Vehicle/Data/options.json @@ -0,0 +1,372762 @@ +[ + { + "id": 1, + "make_id": 1, + "model_id": 1, + "year_id": 1, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2, + "make_id": 1, + "model_id": 1, + "year_id": 1, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3, + "make_id": 1, + "model_id": 1, + "year_id": 1, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4, + "make_id": 1, + "model_id": 4, + "year_id": 4, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5, + "make_id": 1, + "model_id": 4, + "year_id": 4, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6, + "make_id": 1, + "model_id": 4, + "year_id": 4, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7, + "make_id": 1, + "model_id": 4, + "year_id": 7, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8, + "make_id": 1, + "model_id": 4, + "year_id": 7, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9, + "make_id": 1, + "model_id": 4, + "year_id": 7, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10, + "make_id": 1, + "model_id": 10, + "year_id": 10, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11, + "make_id": 1, + "model_id": 11, + "year_id": 11, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12, + "make_id": 1, + "model_id": 11, + "year_id": 11, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13, + "make_id": 1, + "model_id": 11, + "year_id": 13, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14, + "make_id": 1, + "model_id": 11, + "year_id": 13, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15, + "make_id": 1, + "model_id": 11, + "year_id": 15, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16, + "make_id": 1, + "model_id": 11, + "year_id": 15, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17, + "make_id": 1, + "model_id": 17, + "year_id": 17, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18, + "make_id": 1, + "model_id": 17, + "year_id": 18, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19, + "make_id": 1, + "model_id": 17, + "year_id": 19, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20, + "make_id": 1, + "model_id": 17, + "year_id": 19, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21, + "make_id": 1, + "model_id": 21, + "year_id": 21, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22, + "make_id": 1, + "model_id": 21, + "year_id": 22, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23, + "make_id": 1, + "model_id": 21, + "year_id": 23, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24, + "make_id": 1, + "model_id": 21, + "year_id": 24, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25, + "make_id": 1, + "model_id": 21, + "year_id": 25, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26, + "make_id": 1, + "model_id": 26, + "year_id": 26, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27, + "make_id": 1, + "model_id": 26, + "year_id": 27, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28, + "make_id": 1, + "model_id": 26, + "year_id": 28, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29, + "make_id": 1, + "model_id": 26, + "year_id": 29, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30, + "make_id": 1, + "model_id": 26, + "year_id": 30, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31, + "make_id": 1, + "model_id": 26, + "year_id": 31, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32, + "make_id": 1, + "model_id": 26, + "year_id": 32, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33, + "make_id": 1, + "model_id": 26, + "year_id": 33, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34, + "make_id": 1, + "model_id": 26, + "year_id": 34, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35, + "make_id": 1, + "model_id": 35, + "year_id": 35, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36, + "make_id": 1, + "model_id": 35, + "year_id": 35, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37, + "make_id": 1, + "model_id": 35, + "year_id": 37, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 38, + "make_id": 1, + "model_id": 35, + "year_id": 37, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 39, + "make_id": 1, + "model_id": 35, + "year_id": 39, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 40, + "make_id": 1, + "model_id": 35, + "year_id": 39, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 41, + "make_id": 1, + "model_id": 35, + "year_id": 41, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automated Manual" + }, + { + "id": 42, + "make_id": 1, + "model_id": 35, + "year_id": 42, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automated Manual" + }, + { + "id": 43, + "make_id": 1, + "model_id": 43, + "year_id": 43, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 44, + "make_id": 1, + "model_id": 43, + "year_id": 44, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 45, + "make_id": 1, + "model_id": 45, + "year_id": 45, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 46, + "make_id": 1, + "model_id": 45, + "year_id": 45, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 47, + "make_id": 1, + "model_id": 45, + "year_id": 47, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 48, + "make_id": 1, + "model_id": 45, + "year_id": 47, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 49, + "make_id": 1, + "model_id": 45, + "year_id": 49, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 50, + "make_id": 1, + "model_id": 45, + "year_id": 49, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 51, + "make_id": 1, + "model_id": 45, + "year_id": 51, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 52, + "make_id": 1, + "model_id": 45, + "year_id": 51, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 53, + "make_id": 1, + "model_id": 45, + "year_id": 53, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 54, + "make_id": 1, + "model_id": 45, + "year_id": 53, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 55, + "make_id": 1, + "model_id": 45, + "year_id": 55, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 56, + "make_id": 1, + "model_id": 45, + "year_id": 55, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 57, + "make_id": 1, + "model_id": 45, + "year_id": 57, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 58, + "make_id": 1, + "model_id": 45, + "year_id": 57, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 59, + "make_id": 1, + "model_id": 45, + "year_id": 57, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 60, + "make_id": 1, + "model_id": 45, + "year_id": 60, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 61, + "make_id": 1, + "model_id": 45, + "year_id": 60, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 62, + "make_id": 1, + "model_id": 45, + "year_id": 60, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 63, + "make_id": 1, + "model_id": 45, + "year_id": 63, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 64, + "make_id": 1, + "model_id": 45, + "year_id": 63, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 65, + "make_id": 1, + "model_id": 45, + "year_id": 63, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 66, + "make_id": 1, + "model_id": 45, + "year_id": 66, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 67, + "make_id": 1, + "model_id": 45, + "year_id": 66, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 68, + "make_id": 1, + "model_id": 45, + "year_id": 66, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 69, + "make_id": 1, + "model_id": 45, + "year_id": 69, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 70, + "make_id": 1, + "model_id": 45, + "year_id": 69, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 71, + "make_id": 1, + "model_id": 45, + "year_id": 69, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 72, + "make_id": 1, + "model_id": 45, + "year_id": 72, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 73, + "make_id": 1, + "model_id": 45, + "year_id": 72, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 74, + "make_id": 1, + "model_id": 45, + "year_id": 72, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 75, + "make_id": 1, + "model_id": 45, + "year_id": 75, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 76, + "make_id": 1, + "model_id": 45, + "year_id": 75, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 77, + "make_id": 1, + "model_id": 45, + "year_id": 75, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 78, + "make_id": 1, + "model_id": 45, + "year_id": 78, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 79, + "make_id": 1, + "model_id": 45, + "year_id": 78, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 80, + "make_id": 1, + "model_id": 45, + "year_id": 78, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 81, + "make_id": 1, + "model_id": 45, + "year_id": 81, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 82, + "make_id": 1, + "model_id": 45, + "year_id": 81, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 83, + "make_id": 1, + "model_id": 45, + "year_id": 81, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 84, + "make_id": 1, + "model_id": 45, + "year_id": 84, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 85, + "make_id": 1, + "model_id": 45, + "year_id": 84, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 86, + "make_id": 1, + "model_id": 45, + "year_id": 84, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 87, + "make_id": 1, + "model_id": 87, + "year_id": 87, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 88, + "make_id": 1, + "model_id": 87, + "year_id": 87, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 89, + "make_id": 1, + "model_id": 87, + "year_id": 89, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 90, + "make_id": 1, + "model_id": 87, + "year_id": 89, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 91, + "make_id": 1, + "model_id": 87, + "year_id": 89, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 92, + "make_id": 1, + "model_id": 87, + "year_id": 89, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 93, + "make_id": 1, + "model_id": 87, + "year_id": 93, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 94, + "make_id": 1, + "model_id": 87, + "year_id": 93, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 95, + "make_id": 1, + "model_id": 87, + "year_id": 95, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 96, + "make_id": 1, + "model_id": 87, + "year_id": 95, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 97, + "make_id": 1, + "model_id": 87, + "year_id": 97, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 98, + "make_id": 1, + "model_id": 87, + "year_id": 97, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 99, + "make_id": 1, + "model_id": 87, + "year_id": 99, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 100, + "make_id": 1, + "model_id": 87, + "year_id": 99, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 101, + "make_id": 1, + "model_id": 87, + "year_id": 101, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 102, + "make_id": 1, + "model_id": 87, + "year_id": 101, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 103, + "make_id": 1, + "model_id": 87, + "year_id": 103, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 104, + "make_id": 1, + "model_id": 87, + "year_id": 103, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 105, + "make_id": 1, + "model_id": 87, + "year_id": 103, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 106, + "make_id": 1, + "model_id": 87, + "year_id": 103, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 107, + "make_id": 1, + "model_id": 87, + "year_id": 107, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 108, + "make_id": 1, + "model_id": 87, + "year_id": 107, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 109, + "make_id": 1, + "model_id": 87, + "year_id": 107, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 110, + "make_id": 1, + "model_id": 87, + "year_id": 107, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 111, + "make_id": 1, + "model_id": 87, + "year_id": 111, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 112, + "make_id": 1, + "model_id": 87, + "year_id": 111, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 113, + "make_id": 1, + "model_id": 87, + "year_id": 111, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 114, + "make_id": 1, + "model_id": 87, + "year_id": 111, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 115, + "make_id": 1, + "model_id": 115, + "year_id": 115, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 116, + "make_id": 1, + "model_id": 115, + "year_id": 116, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 117, + "make_id": 1, + "model_id": 115, + "year_id": 117, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 118, + "make_id": 1, + "model_id": 115, + "year_id": 118, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 119, + "make_id": 1, + "model_id": 115, + "year_id": 119, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 120, + "make_id": 1, + "model_id": 115, + "year_id": 120, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 121, + "make_id": 1, + "model_id": 115, + "year_id": 121, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 122, + "make_id": 1, + "model_id": 115, + "year_id": 122, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 123, + "make_id": 1, + "model_id": 115, + "year_id": 123, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 124, + "make_id": 1, + "model_id": 115, + "year_id": 124, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 125, + "make_id": 1, + "model_id": 115, + "year_id": 125, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 126, + "make_id": 1, + "model_id": 115, + "year_id": 126, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 127, + "make_id": 1, + "model_id": 115, + "year_id": 127, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 128, + "make_id": 1, + "model_id": 115, + "year_id": 128, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 129, + "make_id": 1, + "model_id": 115, + "year_id": 128, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 130, + "make_id": 1, + "model_id": 115, + "year_id": 130, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 131, + "make_id": 1, + "model_id": 115, + "year_id": 130, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 132, + "make_id": 1, + "model_id": 115, + "year_id": 132, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 133, + "make_id": 1, + "model_id": 115, + "year_id": 132, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 134, + "make_id": 1, + "model_id": 115, + "year_id": 132, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 135, + "make_id": 1, + "model_id": 115, + "year_id": 132, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 136, + "make_id": 1, + "model_id": 115, + "year_id": 136, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 137, + "make_id": 1, + "model_id": 115, + "year_id": 136, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 138, + "make_id": 1, + "model_id": 115, + "year_id": 136, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 139, + "make_id": 1, + "model_id": 115, + "year_id": 136, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 140, + "make_id": 1, + "model_id": 140, + "year_id": 140, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 141, + "make_id": 1, + "model_id": 140, + "year_id": 140, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 142, + "make_id": 1, + "model_id": 140, + "year_id": 142, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 143, + "make_id": 1, + "model_id": 140, + "year_id": 142, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 144, + "make_id": 1, + "model_id": 140, + "year_id": 144, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 145, + "make_id": 1, + "model_id": 140, + "year_id": 144, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 146, + "make_id": 1, + "model_id": 140, + "year_id": 146, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 147, + "make_id": 1, + "model_id": 140, + "year_id": 146, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 148, + "make_id": 1, + "model_id": 140, + "year_id": 148, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 149, + "make_id": 1, + "model_id": 140, + "year_id": 148, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 150, + "make_id": 1, + "model_id": 140, + "year_id": 150, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 151, + "make_id": 1, + "model_id": 140, + "year_id": 150, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 152, + "make_id": 1, + "model_id": 140, + "year_id": 152, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 153, + "make_id": 1, + "model_id": 140, + "year_id": 152, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 154, + "make_id": 1, + "model_id": 140, + "year_id": 154, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 155, + "make_id": 1, + "model_id": 140, + "year_id": 154, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 156, + "make_id": 1, + "model_id": 140, + "year_id": 156, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 157, + "make_id": 1, + "model_id": 140, + "year_id": 156, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 158, + "make_id": 1, + "model_id": 140, + "year_id": 158, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 159, + "make_id": 1, + "model_id": 140, + "year_id": 158, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 160, + "make_id": 1, + "model_id": 140, + "year_id": 160, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 161, + "make_id": 1, + "model_id": 140, + "year_id": 160, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 162, + "make_id": 1, + "model_id": 140, + "year_id": 162, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 163, + "make_id": 1, + "model_id": 140, + "year_id": 162, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 164, + "make_id": 1, + "model_id": 140, + "year_id": 164, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 165, + "make_id": 1, + "model_id": 140, + "year_id": 164, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 166, + "make_id": 1, + "model_id": 140, + "year_id": 166, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 167, + "make_id": 1, + "model_id": 140, + "year_id": 166, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 168, + "make_id": 1, + "model_id": 168, + "year_id": 168, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automated Manual" + }, + { + "id": 169, + "make_id": 1, + "model_id": 169, + "year_id": 169, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 170, + "make_id": 1, + "model_id": 169, + "year_id": 170, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 171, + "make_id": 1, + "model_id": 169, + "year_id": 171, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 172, + "make_id": 1, + "model_id": 169, + "year_id": 172, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 173, + "make_id": 1, + "model_id": 169, + "year_id": 172, + "cylinders": 4, + "displacement": 2.3, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 174, + "make_id": 1, + "model_id": 169, + "year_id": 174, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 175, + "make_id": 1, + "model_id": 169, + "year_id": 174, + "cylinders": 4, + "displacement": 2.3, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 176, + "make_id": 1, + "model_id": 169, + "year_id": 176, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 177, + "make_id": 1, + "model_id": 169, + "year_id": 176, + "cylinders": 4, + "displacement": 2.3, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 178, + "make_id": 1, + "model_id": 169, + "year_id": 178, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 179, + "make_id": 1, + "model_id": 169, + "year_id": 178, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 180, + "make_id": 1, + "model_id": 169, + "year_id": 180, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 181, + "make_id": 1, + "model_id": 169, + "year_id": 180, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 182, + "make_id": 1, + "model_id": 169, + "year_id": 182, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 183, + "make_id": 1, + "model_id": 169, + "year_id": 182, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 184, + "make_id": 1, + "model_id": 169, + "year_id": 184, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 185, + "make_id": 1, + "model_id": 169, + "year_id": 184, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 186, + "make_id": 1, + "model_id": 169, + "year_id": 186, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 187, + "make_id": 1, + "model_id": 169, + "year_id": 186, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 188, + "make_id": 1, + "model_id": 188, + "year_id": 188, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 189, + "make_id": 1, + "model_id": 188, + "year_id": 189, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 190, + "make_id": 1, + "model_id": 188, + "year_id": 190, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 191, + "make_id": 1, + "model_id": 188, + "year_id": 191, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 192, + "make_id": 1, + "model_id": 188, + "year_id": 192, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 193, + "make_id": 1, + "model_id": 188, + "year_id": 193, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 194, + "make_id": 1, + "model_id": 188, + "year_id": 194, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 195, + "make_id": 1, + "model_id": 188, + "year_id": 195, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 196, + "make_id": 1, + "model_id": 196, + "year_id": 196, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 197, + "make_id": 1, + "model_id": 196, + "year_id": 197, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 198, + "make_id": 1, + "model_id": 196, + "year_id": 198, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 199, + "make_id": 1, + "model_id": 199, + "year_id": 199, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 200, + "make_id": 1, + "model_id": 199, + "year_id": 200, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 201, + "make_id": 1, + "model_id": 201, + "year_id": 201, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 202, + "make_id": 1, + "model_id": 201, + "year_id": 201, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 203, + "make_id": 1, + "model_id": 201, + "year_id": 201, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 204, + "make_id": 1, + "model_id": 201, + "year_id": 204, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 205, + "make_id": 1, + "model_id": 201, + "year_id": 204, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 206, + "make_id": 1, + "model_id": 201, + "year_id": 204, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 207, + "make_id": 1, + "model_id": 201, + "year_id": 207, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 208, + "make_id": 1, + "model_id": 201, + "year_id": 207, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 209, + "make_id": 1, + "model_id": 201, + "year_id": 207, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 210, + "make_id": 1, + "model_id": 201, + "year_id": 210, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 211, + "make_id": 1, + "model_id": 201, + "year_id": 210, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 212, + "make_id": 1, + "model_id": 201, + "year_id": 210, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 213, + "make_id": 1, + "model_id": 201, + "year_id": 213, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 214, + "make_id": 1, + "model_id": 201, + "year_id": 213, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 215, + "make_id": 1, + "model_id": 201, + "year_id": 213, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 216, + "make_id": 1, + "model_id": 216, + "year_id": 216, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 217, + "make_id": 1, + "model_id": 216, + "year_id": 216, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 218, + "make_id": 1, + "model_id": 216, + "year_id": 218, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 219, + "make_id": 1, + "model_id": 216, + "year_id": 218, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 220, + "make_id": 1, + "model_id": 216, + "year_id": 220, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 221, + "make_id": 1, + "model_id": 216, + "year_id": 221, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 222, + "make_id": 1, + "model_id": 222, + "year_id": 222, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 223, + "make_id": 1, + "model_id": 222, + "year_id": 222, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 224, + "make_id": 1, + "model_id": 222, + "year_id": 224, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 225, + "make_id": 1, + "model_id": 222, + "year_id": 224, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 226, + "make_id": 1, + "model_id": 222, + "year_id": 226, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 227, + "make_id": 1, + "model_id": 222, + "year_id": 226, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 228, + "make_id": 1, + "model_id": 222, + "year_id": 228, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 229, + "make_id": 1, + "model_id": 222, + "year_id": 228, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 230, + "make_id": 1, + "model_id": 222, + "year_id": 228, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 231, + "make_id": 1, + "model_id": 222, + "year_id": 231, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 232, + "make_id": 1, + "model_id": 222, + "year_id": 231, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 233, + "make_id": 1, + "model_id": 222, + "year_id": 231, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 234, + "make_id": 1, + "model_id": 222, + "year_id": 234, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 235, + "make_id": 1, + "model_id": 222, + "year_id": 234, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 236, + "make_id": 1, + "model_id": 222, + "year_id": 236, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 237, + "make_id": 1, + "model_id": 222, + "year_id": 236, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 238, + "make_id": 1, + "model_id": 222, + "year_id": 236, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 239, + "make_id": 1, + "model_id": 222, + "year_id": 239, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 240, + "make_id": 1, + "model_id": 222, + "year_id": 239, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 241, + "make_id": 1, + "model_id": 222, + "year_id": 239, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 242, + "make_id": 1, + "model_id": 222, + "year_id": 242, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 243, + "make_id": 1, + "model_id": 222, + "year_id": 242, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 244, + "make_id": 1, + "model_id": 222, + "year_id": 242, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 245, + "make_id": 1, + "model_id": 222, + "year_id": 245, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 246, + "make_id": 1, + "model_id": 222, + "year_id": 245, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 247, + "make_id": 1, + "model_id": 222, + "year_id": 245, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 248, + "make_id": 1, + "model_id": 222, + "year_id": 248, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 249, + "make_id": 1, + "model_id": 222, + "year_id": 248, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 250, + "make_id": 1, + "model_id": 222, + "year_id": 248, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 251, + "make_id": 1, + "model_id": 251, + "year_id": 251, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automated Manual" + }, + { + "id": 252, + "make_id": 1, + "model_id": 251, + "year_id": 251, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 253, + "make_id": 1, + "model_id": 251, + "year_id": 251, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 254, + "make_id": 1, + "model_id": 251, + "year_id": 254, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automated Manual" + }, + { + "id": 255, + "make_id": 1, + "model_id": 251, + "year_id": 254, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 256, + "make_id": 1, + "model_id": 251, + "year_id": 254, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 257, + "make_id": 1, + "model_id": 257, + "year_id": 257, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 258, + "make_id": 1, + "model_id": 257, + "year_id": 257, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 259, + "make_id": 1, + "model_id": 257, + "year_id": 259, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 260, + "make_id": 1, + "model_id": 257, + "year_id": 259, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 261, + "make_id": 1, + "model_id": 257, + "year_id": 261, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 262, + "make_id": 1, + "model_id": 257, + "year_id": 261, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 263, + "make_id": 1, + "model_id": 257, + "year_id": 263, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 264, + "make_id": 1, + "model_id": 257, + "year_id": 263, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 265, + "make_id": 1, + "model_id": 257, + "year_id": 265, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 266, + "make_id": 1, + "model_id": 257, + "year_id": 265, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 267, + "make_id": 1, + "model_id": 257, + "year_id": 267, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 268, + "make_id": 1, + "model_id": 257, + "year_id": 267, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 269, + "make_id": 1, + "model_id": 257, + "year_id": 269, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 270, + "make_id": 1, + "model_id": 257, + "year_id": 269, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 271, + "make_id": 1, + "model_id": 257, + "year_id": 269, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 272, + "make_id": 1, + "model_id": 257, + "year_id": 272, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 273, + "make_id": 1, + "model_id": 257, + "year_id": 272, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 274, + "make_id": 1, + "model_id": 257, + "year_id": 272, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 275, + "make_id": 1, + "model_id": 257, + "year_id": 275, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 276, + "make_id": 1, + "model_id": 257, + "year_id": 275, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 277, + "make_id": 1, + "model_id": 257, + "year_id": 275, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 278, + "make_id": 1, + "model_id": 257, + "year_id": 278, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 279, + "make_id": 1, + "model_id": 257, + "year_id": 278, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 280, + "make_id": 1, + "model_id": 257, + "year_id": 278, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 281, + "make_id": 1, + "model_id": 257, + "year_id": 281, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 282, + "make_id": 1, + "model_id": 257, + "year_id": 281, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 283, + "make_id": 1, + "model_id": 257, + "year_id": 281, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 284, + "make_id": 1, + "model_id": 284, + "year_id": 284, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 285, + "make_id": 1, + "model_id": 284, + "year_id": 285, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 286, + "make_id": 1, + "model_id": 284, + "year_id": 286, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 287, + "make_id": 1, + "model_id": 284, + "year_id": 287, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 288, + "make_id": 1, + "model_id": 288, + "year_id": 288, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 289, + "make_id": 1, + "model_id": 288, + "year_id": 288, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 290, + "make_id": 1, + "model_id": 288, + "year_id": 290, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 291, + "make_id": 1, + "model_id": 288, + "year_id": 290, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 292, + "make_id": 1, + "model_id": 288, + "year_id": 292, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 293, + "make_id": 1, + "model_id": 288, + "year_id": 292, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 294, + "make_id": 1, + "model_id": 294, + "year_id": 294, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 295, + "make_id": 1, + "model_id": 294, + "year_id": 295, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 296, + "make_id": 1, + "model_id": 294, + "year_id": 296, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 297, + "make_id": 1, + "model_id": 294, + "year_id": 297, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 298, + "make_id": 298, + "model_id": 298, + "year_id": 298, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 299, + "make_id": 298, + "model_id": 298, + "year_id": 298, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 300, + "make_id": 298, + "model_id": 298, + "year_id": 298, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 301, + "make_id": 298, + "model_id": 298, + "year_id": 301, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 302, + "make_id": 298, + "model_id": 298, + "year_id": 301, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 303, + "make_id": 298, + "model_id": 298, + "year_id": 301, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 304, + "make_id": 298, + "model_id": 298, + "year_id": 304, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 305, + "make_id": 298, + "model_id": 298, + "year_id": 304, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 306, + "make_id": 298, + "model_id": 298, + "year_id": 304, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 307, + "make_id": 298, + "model_id": 298, + "year_id": 307, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 308, + "make_id": 298, + "model_id": 298, + "year_id": 307, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 309, + "make_id": 298, + "model_id": 298, + "year_id": 309, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 310, + "make_id": 298, + "model_id": 298, + "year_id": 309, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 311, + "make_id": 298, + "model_id": 311, + "year_id": 311, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 312, + "make_id": 298, + "model_id": 311, + "year_id": 312, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 313, + "make_id": 298, + "model_id": 313, + "year_id": 313, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 314, + "make_id": 298, + "model_id": 314, + "year_id": 314, + "cylinders": 6, + "displacement": 2.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 315, + "make_id": 298, + "model_id": 314, + "year_id": 314, + "cylinders": 6, + "displacement": 2.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 316, + "make_id": 298, + "model_id": 314, + "year_id": 316, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 317, + "make_id": 298, + "model_id": 317, + "year_id": 317, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 318, + "make_id": 298, + "model_id": 317, + "year_id": 318, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 319, + "make_id": 298, + "model_id": 319, + "year_id": 319, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 320, + "make_id": 298, + "model_id": 319, + "year_id": 319, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 321, + "make_id": 298, + "model_id": 319, + "year_id": 319, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 322, + "make_id": 298, + "model_id": 319, + "year_id": 322, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 323, + "make_id": 298, + "model_id": 319, + "year_id": 322, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 324, + "make_id": 298, + "model_id": 319, + "year_id": 322, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 325, + "make_id": 298, + "model_id": 319, + "year_id": 325, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 326, + "make_id": 298, + "model_id": 319, + "year_id": 325, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 327, + "make_id": 298, + "model_id": 319, + "year_id": 325, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 328, + "make_id": 298, + "model_id": 328, + "year_id": 328, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 329, + "make_id": 298, + "model_id": 328, + "year_id": 329, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 330, + "make_id": 298, + "model_id": 328, + "year_id": 330, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 331, + "make_id": 298, + "model_id": 328, + "year_id": 331, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 332, + "make_id": 298, + "model_id": 328, + "year_id": 332, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 333, + "make_id": 298, + "model_id": 328, + "year_id": 333, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 334, + "make_id": 298, + "model_id": 328, + "year_id": 333, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 335, + "make_id": 298, + "model_id": 328, + "year_id": 335, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 336, + "make_id": 298, + "model_id": 328, + "year_id": 335, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 337, + "make_id": 298, + "model_id": 328, + "year_id": 337, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 338, + "make_id": 298, + "model_id": 328, + "year_id": 337, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 339, + "make_id": 298, + "model_id": 328, + "year_id": 339, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 340, + "make_id": 298, + "model_id": 340, + "year_id": 340, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 341, + "make_id": 298, + "model_id": 340, + "year_id": 340, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 342, + "make_id": 298, + "model_id": 340, + "year_id": 342, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 343, + "make_id": 343, + "model_id": 343, + "year_id": 343, + "cylinders": 4, + "displacement": 2.5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 344, + "make_id": 343, + "model_id": 343, + "year_id": 343, + "cylinders": 4, + "displacement": 2.5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 345, + "make_id": 343, + "model_id": 345, + "year_id": 345, + "cylinders": 6, + "displacement": 4.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 346, + "make_id": 343, + "model_id": 345, + "year_id": 345, + "cylinders": 6, + "displacement": 4.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 347, + "make_id": 343, + "model_id": 347, + "year_id": 347, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 348, + "make_id": 343, + "model_id": 348, + "year_id": 348, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 349, + "make_id": 349, + "model_id": 349, + "year_id": 349, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 350, + "make_id": 349, + "model_id": 349, + "year_id": 349, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 351, + "make_id": 349, + "model_id": 349, + "year_id": 349, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 352, + "make_id": 349, + "model_id": 349, + "year_id": 349, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 353, + "make_id": 349, + "model_id": 349, + "year_id": 349, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 354, + "make_id": 349, + "model_id": 349, + "year_id": 349, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 355, + "make_id": 349, + "model_id": 349, + "year_id": 349, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 356, + "make_id": 349, + "model_id": 349, + "year_id": 349, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 357, + "make_id": 349, + "model_id": 349, + "year_id": 349, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 358, + "make_id": 349, + "model_id": 349, + "year_id": 358, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 359, + "make_id": 349, + "model_id": 349, + "year_id": 358, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 360, + "make_id": 349, + "model_id": 349, + "year_id": 360, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 361, + "make_id": 349, + "model_id": 349, + "year_id": 360, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 362, + "make_id": 349, + "model_id": 362, + "year_id": 362, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 363, + "make_id": 349, + "model_id": 362, + "year_id": 362, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 364, + "make_id": 349, + "model_id": 362, + "year_id": 362, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 365, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 366, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 367, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 368, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 369, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 370, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 371, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 372, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 373, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 374, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 375, + "make_id": 349, + "model_id": 365, + "year_id": 365, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 376, + "make_id": 376, + "model_id": 376, + "year_id": 376, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 377, + "make_id": 377, + "model_id": 377, + "year_id": 377, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 378, + "make_id": 377, + "model_id": 377, + "year_id": 377, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 379, + "make_id": 377, + "model_id": 379, + "year_id": 379, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 380, + "make_id": 377, + "model_id": 380, + "year_id": 380, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 381, + "make_id": 377, + "model_id": 381, + "year_id": 381, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 382, + "make_id": 377, + "model_id": 381, + "year_id": 381, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 383, + "make_id": 377, + "model_id": 381, + "year_id": 383, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 384, + "make_id": 377, + "model_id": 381, + "year_id": 383, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 385, + "make_id": 377, + "model_id": 385, + "year_id": 385, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 386, + "make_id": 377, + "model_id": 385, + "year_id": 385, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 387, + "make_id": 377, + "model_id": 385, + "year_id": 387, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 388, + "make_id": 377, + "model_id": 385, + "year_id": 387, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 389, + "make_id": 377, + "model_id": 389, + "year_id": 389, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 390, + "make_id": 377, + "model_id": 389, + "year_id": 389, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 391, + "make_id": 377, + "model_id": 389, + "year_id": 391, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 392, + "make_id": 377, + "model_id": 389, + "year_id": 391, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 393, + "make_id": 377, + "model_id": 393, + "year_id": 393, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 394, + "make_id": 377, + "model_id": 393, + "year_id": 393, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 395, + "make_id": 377, + "model_id": 393, + "year_id": 395, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 396, + "make_id": 377, + "model_id": 393, + "year_id": 395, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 397, + "make_id": 377, + "model_id": 397, + "year_id": 397, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 398, + "make_id": 377, + "model_id": 397, + "year_id": 398, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 399, + "make_id": 377, + "model_id": 397, + "year_id": 398, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 400, + "make_id": 377, + "model_id": 397, + "year_id": 400, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 401, + "make_id": 377, + "model_id": 397, + "year_id": 400, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 402, + "make_id": 377, + "model_id": 397, + "year_id": 402, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 403, + "make_id": 377, + "model_id": 397, + "year_id": 402, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 404, + "make_id": 377, + "model_id": 397, + "year_id": 404, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 405, + "make_id": 377, + "model_id": 397, + "year_id": 404, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 406, + "make_id": 377, + "model_id": 397, + "year_id": 406, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 407, + "make_id": 377, + "model_id": 397, + "year_id": 407, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 408, + "make_id": 377, + "model_id": 397, + "year_id": 408, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 409, + "make_id": 377, + "model_id": 397, + "year_id": 409, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 410, + "make_id": 377, + "model_id": 410, + "year_id": 410, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 411, + "make_id": 377, + "model_id": 410, + "year_id": 411, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 412, + "make_id": 377, + "model_id": 410, + "year_id": 412, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 413, + "make_id": 377, + "model_id": 410, + "year_id": 412, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 414, + "make_id": 377, + "model_id": 414, + "year_id": 414, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 415, + "make_id": 377, + "model_id": 414, + "year_id": 415, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 416, + "make_id": 377, + "model_id": 414, + "year_id": 416, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 417, + "make_id": 377, + "model_id": 417, + "year_id": 417, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 418, + "make_id": 377, + "model_id": 417, + "year_id": 418, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 419, + "make_id": 377, + "model_id": 417, + "year_id": 419, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 420, + "make_id": 377, + "model_id": 417, + "year_id": 420, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 421, + "make_id": 377, + "model_id": 417, + "year_id": 420, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 422, + "make_id": 377, + "model_id": 422, + "year_id": 422, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 423, + "make_id": 377, + "model_id": 422, + "year_id": 423, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 424, + "make_id": 377, + "model_id": 422, + "year_id": 424, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 425, + "make_id": 377, + "model_id": 425, + "year_id": 425, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 426, + "make_id": 377, + "model_id": 425, + "year_id": 425, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 427, + "make_id": 377, + "model_id": 425, + "year_id": 427, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 428, + "make_id": 377, + "model_id": 425, + "year_id": 427, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 429, + "make_id": 377, + "model_id": 425, + "year_id": 429, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 430, + "make_id": 377, + "model_id": 425, + "year_id": 429, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 431, + "make_id": 377, + "model_id": 431, + "year_id": 431, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 432, + "make_id": 377, + "model_id": 431, + "year_id": 431, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 433, + "make_id": 377, + "model_id": 433, + "year_id": 433, + "cylinders": 8, + "displacement": 5.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 434, + "make_id": 377, + "model_id": 433, + "year_id": 433, + "cylinders": 8, + "displacement": 5.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 435, + "make_id": 377, + "model_id": 433, + "year_id": 435, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 436, + "make_id": 377, + "model_id": 433, + "year_id": 435, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 437, + "make_id": 377, + "model_id": 433, + "year_id": 437, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 438, + "make_id": 377, + "model_id": 433, + "year_id": 438, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 439, + "make_id": 377, + "model_id": 433, + "year_id": 439, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 440, + "make_id": 377, + "model_id": 440, + "year_id": 440, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 441, + "make_id": 377, + "model_id": 440, + "year_id": 441, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 442, + "make_id": 377, + "model_id": 440, + "year_id": 442, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 443, + "make_id": 377, + "model_id": 443, + "year_id": 443, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 444, + "make_id": 377, + "model_id": 443, + "year_id": 444, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 445, + "make_id": 377, + "model_id": 443, + "year_id": 445, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 446, + "make_id": 377, + "model_id": 446, + "year_id": 446, + "cylinders": 8, + "displacement": 5.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 447, + "make_id": 377, + "model_id": 446, + "year_id": 446, + "cylinders": 8, + "displacement": 5.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 448, + "make_id": 377, + "model_id": 448, + "year_id": 448, + "cylinders": 8, + "displacement": 5.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 449, + "make_id": 377, + "model_id": 448, + "year_id": 448, + "cylinders": 8, + "displacement": 5.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 450, + "make_id": 377, + "model_id": 448, + "year_id": 450, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 451, + "make_id": 377, + "model_id": 448, + "year_id": 450, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 452, + "make_id": 377, + "model_id": 448, + "year_id": 450, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 453, + "make_id": 377, + "model_id": 448, + "year_id": 450, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 454, + "make_id": 377, + "model_id": 448, + "year_id": 454, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 455, + "make_id": 377, + "model_id": 448, + "year_id": 454, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 456, + "make_id": 377, + "model_id": 448, + "year_id": 456, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 457, + "make_id": 377, + "model_id": 448, + "year_id": 456, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 458, + "make_id": 377, + "model_id": 448, + "year_id": 458, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 459, + "make_id": 377, + "model_id": 448, + "year_id": 458, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 460, + "make_id": 377, + "model_id": 460, + "year_id": 460, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 461, + "make_id": 377, + "model_id": 461, + "year_id": 461, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 462, + "make_id": 377, + "model_id": 461, + "year_id": 462, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 463, + "make_id": 377, + "model_id": 463, + "year_id": 463, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 464, + "make_id": 377, + "model_id": 463, + "year_id": 464, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 465, + "make_id": 377, + "model_id": 465, + "year_id": 465, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 466, + "make_id": 377, + "model_id": 465, + "year_id": 466, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 467, + "make_id": 377, + "model_id": 467, + "year_id": 467, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 468, + "make_id": 377, + "model_id": 467, + "year_id": 468, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 469, + "make_id": 377, + "model_id": 467, + "year_id": 469, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 470, + "make_id": 377, + "model_id": 467, + "year_id": 469, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 471, + "make_id": 377, + "model_id": 467, + "year_id": 471, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 472, + "make_id": 377, + "model_id": 467, + "year_id": 471, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 473, + "make_id": 377, + "model_id": 467, + "year_id": 473, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 474, + "make_id": 377, + "model_id": 467, + "year_id": 473, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 475, + "make_id": 377, + "model_id": 467, + "year_id": 475, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 476, + "make_id": 377, + "model_id": 467, + "year_id": 475, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 477, + "make_id": 377, + "model_id": 467, + "year_id": 477, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 478, + "make_id": 377, + "model_id": 467, + "year_id": 477, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 479, + "make_id": 377, + "model_id": 467, + "year_id": 477, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 480, + "make_id": 377, + "model_id": 467, + "year_id": 480, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 481, + "make_id": 377, + "model_id": 467, + "year_id": 480, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 482, + "make_id": 377, + "model_id": 467, + "year_id": 482, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 483, + "make_id": 377, + "model_id": 467, + "year_id": 482, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 484, + "make_id": 377, + "model_id": 467, + "year_id": 484, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 485, + "make_id": 377, + "model_id": 467, + "year_id": 484, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 486, + "make_id": 377, + "model_id": 467, + "year_id": 486, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 487, + "make_id": 377, + "model_id": 467, + "year_id": 486, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 488, + "make_id": 377, + "model_id": 488, + "year_id": 488, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 489, + "make_id": 377, + "model_id": 489, + "year_id": 489, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 490, + "make_id": 377, + "model_id": 489, + "year_id": 490, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 491, + "make_id": 377, + "model_id": 489, + "year_id": 491, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 492, + "make_id": 377, + "model_id": 489, + "year_id": 491, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 493, + "make_id": 377, + "model_id": 489, + "year_id": 493, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 494, + "make_id": 377, + "model_id": 489, + "year_id": 493, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 495, + "make_id": 377, + "model_id": 489, + "year_id": 495, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 496, + "make_id": 377, + "model_id": 489, + "year_id": 495, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 497, + "make_id": 377, + "model_id": 489, + "year_id": 497, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 498, + "make_id": 377, + "model_id": 489, + "year_id": 497, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 499, + "make_id": 377, + "model_id": 499, + "year_id": 499, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 500, + "make_id": 377, + "model_id": 499, + "year_id": 500, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 501, + "make_id": 377, + "model_id": 499, + "year_id": 501, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 502, + "make_id": 377, + "model_id": 499, + "year_id": 502, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 503, + "make_id": 377, + "model_id": 499, + "year_id": 503, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 504, + "make_id": 377, + "model_id": 504, + "year_id": 504, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 505, + "make_id": 377, + "model_id": 504, + "year_id": 504, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 506, + "make_id": 377, + "model_id": 504, + "year_id": 506, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 507, + "make_id": 377, + "model_id": 504, + "year_id": 506, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 508, + "make_id": 377, + "model_id": 508, + "year_id": 508, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 509, + "make_id": 377, + "model_id": 509, + "year_id": 509, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 510, + "make_id": 377, + "model_id": 509, + "year_id": 509, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 511, + "make_id": 377, + "model_id": 509, + "year_id": 511, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 512, + "make_id": 377, + "model_id": 509, + "year_id": 511, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 513, + "make_id": 377, + "model_id": 513, + "year_id": 513, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 514, + "make_id": 377, + "model_id": 513, + "year_id": 513, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 515, + "make_id": 515, + "model_id": 515, + "year_id": 515, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 516, + "make_id": 515, + "model_id": 515, + "year_id": 515, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 517, + "make_id": 515, + "model_id": 515, + "year_id": 517, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 518, + "make_id": 515, + "model_id": 515, + "year_id": 517, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 519, + "make_id": 515, + "model_id": 519, + "year_id": 519, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 520, + "make_id": 515, + "model_id": 519, + "year_id": 519, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 521, + "make_id": 515, + "model_id": 519, + "year_id": 521, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 522, + "make_id": 515, + "model_id": 519, + "year_id": 521, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 523, + "make_id": 515, + "model_id": 519, + "year_id": 523, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 524, + "make_id": 515, + "model_id": 519, + "year_id": 523, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 525, + "make_id": 515, + "model_id": 519, + "year_id": 525, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 526, + "make_id": 515, + "model_id": 519, + "year_id": 525, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 527, + "make_id": 515, + "model_id": 519, + "year_id": 525, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 528, + "make_id": 515, + "model_id": 528, + "year_id": 528, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 529, + "make_id": 515, + "model_id": 528, + "year_id": 528, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 530, + "make_id": 515, + "model_id": 528, + "year_id": 530, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 531, + "make_id": 515, + "model_id": 528, + "year_id": 530, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 532, + "make_id": 515, + "model_id": 528, + "year_id": 532, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 533, + "make_id": 515, + "model_id": 528, + "year_id": 533, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 534, + "make_id": 515, + "model_id": 528, + "year_id": 533, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 535, + "make_id": 515, + "model_id": 528, + "year_id": 533, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 536, + "make_id": 515, + "model_id": 528, + "year_id": 536, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 537, + "make_id": 515, + "model_id": 528, + "year_id": 536, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 538, + "make_id": 515, + "model_id": 528, + "year_id": 538, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 539, + "make_id": 515, + "model_id": 528, + "year_id": 538, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 540, + "make_id": 515, + "model_id": 540, + "year_id": 540, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 541, + "make_id": 515, + "model_id": 540, + "year_id": 540, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 542, + "make_id": 515, + "model_id": 540, + "year_id": 542, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 543, + "make_id": 515, + "model_id": 540, + "year_id": 543, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 544, + "make_id": 515, + "model_id": 544, + "year_id": 544, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 545, + "make_id": 515, + "model_id": 544, + "year_id": 544, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 546, + "make_id": 515, + "model_id": 544, + "year_id": 544, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 547, + "make_id": 515, + "model_id": 544, + "year_id": 544, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 548, + "make_id": 515, + "model_id": 544, + "year_id": 548, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 549, + "make_id": 515, + "model_id": 544, + "year_id": 548, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 550, + "make_id": 515, + "model_id": 550, + "year_id": 550, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 551, + "make_id": 515, + "model_id": 550, + "year_id": 551, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 552, + "make_id": 515, + "model_id": 550, + "year_id": 552, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 553, + "make_id": 515, + "model_id": 550, + "year_id": 553, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 554, + "make_id": 515, + "model_id": 550, + "year_id": 553, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 555, + "make_id": 515, + "model_id": 550, + "year_id": 555, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 556, + "make_id": 515, + "model_id": 550, + "year_id": 555, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 557, + "make_id": 515, + "model_id": 550, + "year_id": 557, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 558, + "make_id": 515, + "model_id": 550, + "year_id": 557, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 559, + "make_id": 515, + "model_id": 559, + "year_id": 559, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 560, + "make_id": 515, + "model_id": 559, + "year_id": 560, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 561, + "make_id": 515, + "model_id": 559, + "year_id": 561, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 562, + "make_id": 515, + "model_id": 562, + "year_id": 562, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 563, + "make_id": 515, + "model_id": 562, + "year_id": 562, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 564, + "make_id": 515, + "model_id": 562, + "year_id": 564, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 565, + "make_id": 515, + "model_id": 565, + "year_id": 565, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 566, + "make_id": 515, + "model_id": 565, + "year_id": 566, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 567, + "make_id": 515, + "model_id": 567, + "year_id": 567, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 568, + "make_id": 515, + "model_id": 568, + "year_id": 568, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 569, + "make_id": 515, + "model_id": 569, + "year_id": 569, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 570, + "make_id": 515, + "model_id": 569, + "year_id": 570, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 571, + "make_id": 515, + "model_id": 571, + "year_id": 571, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 572, + "make_id": 515, + "model_id": 571, + "year_id": 572, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 573, + "make_id": 515, + "model_id": 573, + "year_id": 573, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 574, + "make_id": 515, + "model_id": 573, + "year_id": 573, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 575, + "make_id": 515, + "model_id": 575, + "year_id": 575, + "cylinders": 5, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 576, + "make_id": 515, + "model_id": 575, + "year_id": 575, + "cylinders": 5, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 577, + "make_id": 515, + "model_id": 577, + "year_id": 577, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 578, + "make_id": 515, + "model_id": 577, + "year_id": 577, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 579, + "make_id": 515, + "model_id": 579, + "year_id": 579, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 580, + "make_id": 515, + "model_id": 579, + "year_id": 579, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 581, + "make_id": 515, + "model_id": 581, + "year_id": 581, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 582, + "make_id": 515, + "model_id": 581, + "year_id": 582, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 583, + "make_id": 515, + "model_id": 581, + "year_id": 583, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 584, + "make_id": 515, + "model_id": 584, + "year_id": 584, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 585, + "make_id": 515, + "model_id": 584, + "year_id": 585, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 586, + "make_id": 515, + "model_id": 584, + "year_id": 586, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 587, + "make_id": 515, + "model_id": 587, + "year_id": 587, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 588, + "make_id": 515, + "model_id": 587, + "year_id": 587, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 589, + "make_id": 515, + "model_id": 587, + "year_id": 589, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 590, + "make_id": 515, + "model_id": 587, + "year_id": 589, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 591, + "make_id": 515, + "model_id": 591, + "year_id": 591, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 592, + "make_id": 515, + "model_id": 591, + "year_id": 591, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 593, + "make_id": 515, + "model_id": 591, + "year_id": 591, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 594, + "make_id": 515, + "model_id": 591, + "year_id": 591, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 595, + "make_id": 515, + "model_id": 591, + "year_id": 595, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 596, + "make_id": 515, + "model_id": 591, + "year_id": 595, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 597, + "make_id": 515, + "model_id": 591, + "year_id": 595, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 598, + "make_id": 515, + "model_id": 591, + "year_id": 595, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 599, + "make_id": 515, + "model_id": 591, + "year_id": 599, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 600, + "make_id": 515, + "model_id": 591, + "year_id": 599, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 601, + "make_id": 515, + "model_id": 601, + "year_id": 601, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 602, + "make_id": 515, + "model_id": 601, + "year_id": 602, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 603, + "make_id": 515, + "model_id": 603, + "year_id": 603, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 604, + "make_id": 515, + "model_id": 603, + "year_id": 603, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 605, + "make_id": 515, + "model_id": 603, + "year_id": 603, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 606, + "make_id": 515, + "model_id": 603, + "year_id": 603, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 607, + "make_id": 515, + "model_id": 603, + "year_id": 603, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 608, + "make_id": 515, + "model_id": 603, + "year_id": 603, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 609, + "make_id": 515, + "model_id": 603, + "year_id": 609, + "cylinders": 5, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 610, + "make_id": 515, + "model_id": 603, + "year_id": 609, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 611, + "make_id": 515, + "model_id": 603, + "year_id": 609, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 612, + "make_id": 515, + "model_id": 603, + "year_id": 609, + "cylinders": 5, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 613, + "make_id": 515, + "model_id": 613, + "year_id": 613, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 614, + "make_id": 515, + "model_id": 613, + "year_id": 613, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 615, + "make_id": 515, + "model_id": 613, + "year_id": 613, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 616, + "make_id": 515, + "model_id": 613, + "year_id": 613, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 617, + "make_id": 515, + "model_id": 613, + "year_id": 617, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 618, + "make_id": 515, + "model_id": 613, + "year_id": 617, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 619, + "make_id": 515, + "model_id": 613, + "year_id": 619, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 620, + "make_id": 515, + "model_id": 613, + "year_id": 619, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 621, + "make_id": 515, + "model_id": 613, + "year_id": 621, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 622, + "make_id": 515, + "model_id": 613, + "year_id": 621, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 623, + "make_id": 515, + "model_id": 613, + "year_id": 621, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 624, + "make_id": 515, + "model_id": 613, + "year_id": 621, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 625, + "make_id": 515, + "model_id": 613, + "year_id": 625, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 626, + "make_id": 515, + "model_id": 613, + "year_id": 625, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 627, + "make_id": 515, + "model_id": 627, + "year_id": 627, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 628, + "make_id": 515, + "model_id": 627, + "year_id": 628, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 629, + "make_id": 515, + "model_id": 627, + "year_id": 629, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 630, + "make_id": 515, + "model_id": 630, + "year_id": 630, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 631, + "make_id": 515, + "model_id": 630, + "year_id": 630, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 632, + "make_id": 515, + "model_id": 630, + "year_id": 630, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 633, + "make_id": 515, + "model_id": 630, + "year_id": 633, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 634, + "make_id": 515, + "model_id": 630, + "year_id": 633, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 635, + "make_id": 515, + "model_id": 630, + "year_id": 633, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 636, + "make_id": 515, + "model_id": 630, + "year_id": 633, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 637, + "make_id": 515, + "model_id": 630, + "year_id": 637, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 638, + "make_id": 515, + "model_id": 630, + "year_id": 637, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 639, + "make_id": 515, + "model_id": 639, + "year_id": 639, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 640, + "make_id": 515, + "model_id": 639, + "year_id": 640, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 641, + "make_id": 515, + "model_id": 641, + "year_id": 641, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 642, + "make_id": 515, + "model_id": 641, + "year_id": 642, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 643, + "make_id": 515, + "model_id": 641, + "year_id": 643, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 644, + "make_id": 515, + "model_id": 644, + "year_id": 644, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 645, + "make_id": 515, + "model_id": 644, + "year_id": 645, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 646, + "make_id": 515, + "model_id": 646, + "year_id": 646, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 647, + "make_id": 515, + "model_id": 646, + "year_id": 646, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 648, + "make_id": 515, + "model_id": 646, + "year_id": 648, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 649, + "make_id": 515, + "model_id": 646, + "year_id": 648, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 650, + "make_id": 515, + "model_id": 646, + "year_id": 650, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 651, + "make_id": 515, + "model_id": 646, + "year_id": 650, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 652, + "make_id": 515, + "model_id": 646, + "year_id": 652, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 653, + "make_id": 515, + "model_id": 646, + "year_id": 652, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 654, + "make_id": 515, + "model_id": 646, + "year_id": 654, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 655, + "make_id": 515, + "model_id": 646, + "year_id": 654, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 656, + "make_id": 515, + "model_id": 646, + "year_id": 654, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 657, + "make_id": 515, + "model_id": 646, + "year_id": 657, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 658, + "make_id": 515, + "model_id": 646, + "year_id": 657, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 659, + "make_id": 515, + "model_id": 646, + "year_id": 657, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 660, + "make_id": 515, + "model_id": 646, + "year_id": 660, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 661, + "make_id": 515, + "model_id": 646, + "year_id": 660, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 662, + "make_id": 515, + "model_id": 646, + "year_id": 660, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 663, + "make_id": 515, + "model_id": 646, + "year_id": 663, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 664, + "make_id": 515, + "model_id": 646, + "year_id": 663, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 665, + "make_id": 515, + "model_id": 646, + "year_id": 663, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 666, + "make_id": 515, + "model_id": 646, + "year_id": 666, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 667, + "make_id": 515, + "model_id": 646, + "year_id": 666, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 668, + "make_id": 515, + "model_id": 646, + "year_id": 668, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 669, + "make_id": 515, + "model_id": 669, + "year_id": 669, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 670, + "make_id": 515, + "model_id": 669, + "year_id": 670, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 671, + "make_id": 515, + "model_id": 671, + "year_id": 671, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 672, + "make_id": 515, + "model_id": 671, + "year_id": 672, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 673, + "make_id": 515, + "model_id": 673, + "year_id": 673, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 674, + "make_id": 515, + "model_id": 674, + "year_id": 674, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 675, + "make_id": 515, + "model_id": 675, + "year_id": 675, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 676, + "make_id": 515, + "model_id": 675, + "year_id": 676, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 677, + "make_id": 515, + "model_id": 675, + "year_id": 677, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 678, + "make_id": 515, + "model_id": 675, + "year_id": 678, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 679, + "make_id": 515, + "model_id": 675, + "year_id": 678, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 680, + "make_id": 515, + "model_id": 675, + "year_id": 680, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 681, + "make_id": 515, + "model_id": 675, + "year_id": 681, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 682, + "make_id": 515, + "model_id": 675, + "year_id": 682, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 683, + "make_id": 515, + "model_id": 675, + "year_id": 683, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 684, + "make_id": 515, + "model_id": 675, + "year_id": 684, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 685, + "make_id": 515, + "model_id": 675, + "year_id": 685, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 686, + "make_id": 515, + "model_id": 686, + "year_id": 686, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 687, + "make_id": 515, + "model_id": 686, + "year_id": 686, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 688, + "make_id": 515, + "model_id": 686, + "year_id": 688, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 689, + "make_id": 515, + "model_id": 686, + "year_id": 688, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 690, + "make_id": 515, + "model_id": 686, + "year_id": 688, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 691, + "make_id": 515, + "model_id": 686, + "year_id": 691, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 692, + "make_id": 515, + "model_id": 686, + "year_id": 691, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 693, + "make_id": 515, + "model_id": 686, + "year_id": 691, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 694, + "make_id": 515, + "model_id": 686, + "year_id": 691, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 695, + "make_id": 515, + "model_id": 686, + "year_id": 695, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 696, + "make_id": 515, + "model_id": 686, + "year_id": 695, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 697, + "make_id": 515, + "model_id": 686, + "year_id": 695, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 698, + "make_id": 515, + "model_id": 686, + "year_id": 695, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 699, + "make_id": 515, + "model_id": 686, + "year_id": 699, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 700, + "make_id": 515, + "model_id": 686, + "year_id": 699, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 701, + "make_id": 515, + "model_id": 686, + "year_id": 699, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 702, + "make_id": 515, + "model_id": 686, + "year_id": 699, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 703, + "make_id": 515, + "model_id": 686, + "year_id": 703, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 704, + "make_id": 515, + "model_id": 686, + "year_id": 703, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 705, + "make_id": 515, + "model_id": 686, + "year_id": 703, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 706, + "make_id": 515, + "model_id": 686, + "year_id": 706, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 707, + "make_id": 515, + "model_id": 686, + "year_id": 706, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 708, + "make_id": 515, + "model_id": 686, + "year_id": 706, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 709, + "make_id": 515, + "model_id": 686, + "year_id": 709, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 710, + "make_id": 515, + "model_id": 686, + "year_id": 709, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 711, + "make_id": 515, + "model_id": 686, + "year_id": 709, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 712, + "make_id": 515, + "model_id": 686, + "year_id": 712, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 713, + "make_id": 515, + "model_id": 686, + "year_id": 712, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 714, + "make_id": 515, + "model_id": 686, + "year_id": 712, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 715, + "make_id": 515, + "model_id": 686, + "year_id": 715, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 716, + "make_id": 515, + "model_id": 686, + "year_id": 715, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 717, + "make_id": 515, + "model_id": 686, + "year_id": 715, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 718, + "make_id": 515, + "model_id": 686, + "year_id": 715, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 719, + "make_id": 515, + "model_id": 686, + "year_id": 715, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 720, + "make_id": 515, + "model_id": 686, + "year_id": 720, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 721, + "make_id": 515, + "model_id": 686, + "year_id": 720, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 722, + "make_id": 515, + "model_id": 686, + "year_id": 720, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 723, + "make_id": 515, + "model_id": 686, + "year_id": 723, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 724, + "make_id": 515, + "model_id": 686, + "year_id": 723, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 725, + "make_id": 515, + "model_id": 686, + "year_id": 723, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 726, + "make_id": 515, + "model_id": 686, + "year_id": 726, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 727, + "make_id": 515, + "model_id": 686, + "year_id": 726, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 728, + "make_id": 515, + "model_id": 686, + "year_id": 726, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 729, + "make_id": 515, + "model_id": 686, + "year_id": 729, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 730, + "make_id": 515, + "model_id": 686, + "year_id": 730, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 731, + "make_id": 515, + "model_id": 686, + "year_id": 731, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 732, + "make_id": 515, + "model_id": 686, + "year_id": 732, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 733, + "make_id": 515, + "model_id": 686, + "year_id": 733, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 734, + "make_id": 515, + "model_id": 686, + "year_id": 734, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 735, + "make_id": 515, + "model_id": 686, + "year_id": 735, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 736, + "make_id": 515, + "model_id": 686, + "year_id": 736, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 737, + "make_id": 515, + "model_id": 686, + "year_id": 737, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 738, + "make_id": 515, + "model_id": 738, + "year_id": 738, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 739, + "make_id": 515, + "model_id": 738, + "year_id": 739, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 740, + "make_id": 515, + "model_id": 740, + "year_id": 740, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 741, + "make_id": 515, + "model_id": 740, + "year_id": 740, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 742, + "make_id": 515, + "model_id": 740, + "year_id": 742, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 743, + "make_id": 515, + "model_id": 740, + "year_id": 742, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 744, + "make_id": 515, + "model_id": 740, + "year_id": 742, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 745, + "make_id": 515, + "model_id": 740, + "year_id": 742, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 746, + "make_id": 515, + "model_id": 740, + "year_id": 746, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 747, + "make_id": 515, + "model_id": 740, + "year_id": 746, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 748, + "make_id": 515, + "model_id": 740, + "year_id": 746, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 749, + "make_id": 515, + "model_id": 740, + "year_id": 746, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 750, + "make_id": 515, + "model_id": 740, + "year_id": 750, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 751, + "make_id": 515, + "model_id": 740, + "year_id": 750, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 752, + "make_id": 515, + "model_id": 740, + "year_id": 750, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 753, + "make_id": 515, + "model_id": 740, + "year_id": 750, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 754, + "make_id": 515, + "model_id": 740, + "year_id": 754, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 755, + "make_id": 515, + "model_id": 740, + "year_id": 754, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 756, + "make_id": 515, + "model_id": 740, + "year_id": 754, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 757, + "make_id": 515, + "model_id": 740, + "year_id": 754, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 758, + "make_id": 515, + "model_id": 740, + "year_id": 758, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 759, + "make_id": 515, + "model_id": 740, + "year_id": 758, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 760, + "make_id": 515, + "model_id": 740, + "year_id": 758, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 761, + "make_id": 515, + "model_id": 740, + "year_id": 758, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 762, + "make_id": 515, + "model_id": 740, + "year_id": 762, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 763, + "make_id": 515, + "model_id": 740, + "year_id": 762, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 764, + "make_id": 515, + "model_id": 740, + "year_id": 762, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 765, + "make_id": 515, + "model_id": 740, + "year_id": 762, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 766, + "make_id": 515, + "model_id": 740, + "year_id": 766, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 767, + "make_id": 515, + "model_id": 740, + "year_id": 766, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 768, + "make_id": 515, + "model_id": 740, + "year_id": 766, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 769, + "make_id": 515, + "model_id": 740, + "year_id": 766, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 770, + "make_id": 515, + "model_id": 740, + "year_id": 766, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 771, + "make_id": 515, + "model_id": 740, + "year_id": 766, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 772, + "make_id": 515, + "model_id": 740, + "year_id": 766, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 773, + "make_id": 515, + "model_id": 740, + "year_id": 773, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 774, + "make_id": 515, + "model_id": 740, + "year_id": 773, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 775, + "make_id": 515, + "model_id": 740, + "year_id": 773, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 776, + "make_id": 515, + "model_id": 740, + "year_id": 773, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 777, + "make_id": 515, + "model_id": 740, + "year_id": 777, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 778, + "make_id": 515, + "model_id": 740, + "year_id": 777, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 779, + "make_id": 515, + "model_id": 740, + "year_id": 777, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 780, + "make_id": 515, + "model_id": 740, + "year_id": 777, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 781, + "make_id": 515, + "model_id": 740, + "year_id": 781, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 782, + "make_id": 515, + "model_id": 740, + "year_id": 781, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 783, + "make_id": 515, + "model_id": 740, + "year_id": 781, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 784, + "make_id": 515, + "model_id": 740, + "year_id": 781, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 785, + "make_id": 515, + "model_id": 740, + "year_id": 785, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 786, + "make_id": 515, + "model_id": 740, + "year_id": 786, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 787, + "make_id": 515, + "model_id": 740, + "year_id": 787, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 788, + "make_id": 515, + "model_id": 740, + "year_id": 788, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 789, + "make_id": 515, + "model_id": 789, + "year_id": 789, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 790, + "make_id": 515, + "model_id": 789, + "year_id": 789, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 791, + "make_id": 515, + "model_id": 789, + "year_id": 791, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 792, + "make_id": 515, + "model_id": 789, + "year_id": 791, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 793, + "make_id": 515, + "model_id": 789, + "year_id": 793, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 794, + "make_id": 515, + "model_id": 789, + "year_id": 793, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 795, + "make_id": 515, + "model_id": 789, + "year_id": 795, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 796, + "make_id": 515, + "model_id": 789, + "year_id": 796, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 797, + "make_id": 515, + "model_id": 789, + "year_id": 797, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 798, + "make_id": 515, + "model_id": 789, + "year_id": 798, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 799, + "make_id": 515, + "model_id": 799, + "year_id": 799, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 800, + "make_id": 515, + "model_id": 799, + "year_id": 800, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 801, + "make_id": 515, + "model_id": 799, + "year_id": 801, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 802, + "make_id": 515, + "model_id": 799, + "year_id": 802, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 803, + "make_id": 515, + "model_id": 799, + "year_id": 802, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 804, + "make_id": 515, + "model_id": 799, + "year_id": 804, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 805, + "make_id": 515, + "model_id": 799, + "year_id": 804, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 806, + "make_id": 515, + "model_id": 799, + "year_id": 806, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 807, + "make_id": 515, + "model_id": 799, + "year_id": 806, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 808, + "make_id": 515, + "model_id": 808, + "year_id": 808, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 809, + "make_id": 515, + "model_id": 808, + "year_id": 808, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 810, + "make_id": 515, + "model_id": 808, + "year_id": 810, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 811, + "make_id": 515, + "model_id": 808, + "year_id": 810, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 812, + "make_id": 515, + "model_id": 808, + "year_id": 810, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 813, + "make_id": 515, + "model_id": 808, + "year_id": 813, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 814, + "make_id": 515, + "model_id": 808, + "year_id": 813, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 815, + "make_id": 515, + "model_id": 808, + "year_id": 813, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 816, + "make_id": 515, + "model_id": 808, + "year_id": 813, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 817, + "make_id": 515, + "model_id": 808, + "year_id": 817, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 818, + "make_id": 515, + "model_id": 808, + "year_id": 817, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 819, + "make_id": 515, + "model_id": 808, + "year_id": 817, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 820, + "make_id": 515, + "model_id": 808, + "year_id": 817, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 821, + "make_id": 515, + "model_id": 808, + "year_id": 821, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 822, + "make_id": 515, + "model_id": 808, + "year_id": 821, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 823, + "make_id": 515, + "model_id": 808, + "year_id": 821, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 824, + "make_id": 515, + "model_id": 808, + "year_id": 821, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 825, + "make_id": 515, + "model_id": 808, + "year_id": 825, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 826, + "make_id": 515, + "model_id": 808, + "year_id": 825, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 827, + "make_id": 515, + "model_id": 808, + "year_id": 825, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 828, + "make_id": 515, + "model_id": 808, + "year_id": 825, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 829, + "make_id": 515, + "model_id": 808, + "year_id": 829, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 830, + "make_id": 515, + "model_id": 808, + "year_id": 829, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 831, + "make_id": 515, + "model_id": 808, + "year_id": 829, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 832, + "make_id": 515, + "model_id": 808, + "year_id": 829, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 833, + "make_id": 515, + "model_id": 808, + "year_id": 833, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 834, + "make_id": 515, + "model_id": 808, + "year_id": 833, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 835, + "make_id": 515, + "model_id": 808, + "year_id": 833, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 836, + "make_id": 515, + "model_id": 808, + "year_id": 833, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 837, + "make_id": 515, + "model_id": 808, + "year_id": 837, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 838, + "make_id": 515, + "model_id": 808, + "year_id": 837, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 839, + "make_id": 515, + "model_id": 808, + "year_id": 837, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 840, + "make_id": 515, + "model_id": 808, + "year_id": 837, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 841, + "make_id": 515, + "model_id": 808, + "year_id": 841, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 842, + "make_id": 515, + "model_id": 808, + "year_id": 841, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 843, + "make_id": 515, + "model_id": 808, + "year_id": 841, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 844, + "make_id": 515, + "model_id": 808, + "year_id": 841, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 845, + "make_id": 515, + "model_id": 808, + "year_id": 841, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 846, + "make_id": 515, + "model_id": 808, + "year_id": 841, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 847, + "make_id": 515, + "model_id": 808, + "year_id": 841, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 848, + "make_id": 515, + "model_id": 808, + "year_id": 848, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 849, + "make_id": 515, + "model_id": 808, + "year_id": 848, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 850, + "make_id": 515, + "model_id": 808, + "year_id": 848, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 851, + "make_id": 515, + "model_id": 808, + "year_id": 848, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 852, + "make_id": 515, + "model_id": 808, + "year_id": 852, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 853, + "make_id": 515, + "model_id": 808, + "year_id": 852, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 854, + "make_id": 515, + "model_id": 808, + "year_id": 852, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 855, + "make_id": 515, + "model_id": 808, + "year_id": 852, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 856, + "make_id": 515, + "model_id": 808, + "year_id": 856, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 857, + "make_id": 515, + "model_id": 808, + "year_id": 856, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 858, + "make_id": 515, + "model_id": 808, + "year_id": 856, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 859, + "make_id": 515, + "model_id": 808, + "year_id": 856, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 860, + "make_id": 515, + "model_id": 808, + "year_id": 860, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 861, + "make_id": 515, + "model_id": 808, + "year_id": 860, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 862, + "make_id": 515, + "model_id": 808, + "year_id": 860, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 863, + "make_id": 515, + "model_id": 808, + "year_id": 863, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 864, + "make_id": 515, + "model_id": 808, + "year_id": 863, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 865, + "make_id": 515, + "model_id": 808, + "year_id": 865, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 866, + "make_id": 515, + "model_id": 808, + "year_id": 865, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 867, + "make_id": 515, + "model_id": 808, + "year_id": 867, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 868, + "make_id": 515, + "model_id": 808, + "year_id": 867, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 869, + "make_id": 515, + "model_id": 808, + "year_id": 869, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 870, + "make_id": 515, + "model_id": 808, + "year_id": 869, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 871, + "make_id": 515, + "model_id": 808, + "year_id": 869, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 872, + "make_id": 515, + "model_id": 808, + "year_id": 872, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 873, + "make_id": 515, + "model_id": 808, + "year_id": 872, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 874, + "make_id": 515, + "model_id": 808, + "year_id": 874, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 875, + "make_id": 515, + "model_id": 808, + "year_id": 874, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 876, + "make_id": 515, + "model_id": 808, + "year_id": 876, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 877, + "make_id": 515, + "model_id": 808, + "year_id": 876, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 878, + "make_id": 515, + "model_id": 808, + "year_id": 878, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 879, + "make_id": 515, + "model_id": 879, + "year_id": 879, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 880, + "make_id": 515, + "model_id": 879, + "year_id": 880, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 881, + "make_id": 515, + "model_id": 879, + "year_id": 881, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 882, + "make_id": 515, + "model_id": 879, + "year_id": 882, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 883, + "make_id": 515, + "model_id": 879, + "year_id": 883, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 884, + "make_id": 515, + "model_id": 884, + "year_id": 884, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 885, + "make_id": 515, + "model_id": 884, + "year_id": 885, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 886, + "make_id": 515, + "model_id": 884, + "year_id": 886, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 887, + "make_id": 515, + "model_id": 884, + "year_id": 887, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 888, + "make_id": 515, + "model_id": 884, + "year_id": 887, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 889, + "make_id": 515, + "model_id": 884, + "year_id": 889, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 890, + "make_id": 515, + "model_id": 884, + "year_id": 890, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 891, + "make_id": 515, + "model_id": 884, + "year_id": 891, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 892, + "make_id": 515, + "model_id": 892, + "year_id": 892, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 893, + "make_id": 515, + "model_id": 892, + "year_id": 892, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 894, + "make_id": 515, + "model_id": 892, + "year_id": 894, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 895, + "make_id": 515, + "model_id": 892, + "year_id": 894, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 896, + "make_id": 515, + "model_id": 892, + "year_id": 896, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 897, + "make_id": 515, + "model_id": 892, + "year_id": 896, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 898, + "make_id": 515, + "model_id": 892, + "year_id": 896, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 899, + "make_id": 515, + "model_id": 892, + "year_id": 899, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 900, + "make_id": 515, + "model_id": 892, + "year_id": 899, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 901, + "make_id": 515, + "model_id": 892, + "year_id": 901, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 902, + "make_id": 515, + "model_id": 892, + "year_id": 901, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 903, + "make_id": 515, + "model_id": 892, + "year_id": 903, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 904, + "make_id": 515, + "model_id": 892, + "year_id": 903, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 905, + "make_id": 515, + "model_id": 892, + "year_id": 903, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 906, + "make_id": 515, + "model_id": 892, + "year_id": 906, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 907, + "make_id": 515, + "model_id": 892, + "year_id": 906, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 908, + "make_id": 515, + "model_id": 892, + "year_id": 908, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 909, + "make_id": 515, + "model_id": 892, + "year_id": 908, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 910, + "make_id": 515, + "model_id": 892, + "year_id": 910, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 911, + "make_id": 515, + "model_id": 892, + "year_id": 910, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 912, + "make_id": 515, + "model_id": 912, + "year_id": 912, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 913, + "make_id": 515, + "model_id": 912, + "year_id": 912, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 914, + "make_id": 515, + "model_id": 912, + "year_id": 914, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 915, + "make_id": 515, + "model_id": 912, + "year_id": 915, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 916, + "make_id": 515, + "model_id": 912, + "year_id": 916, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 917, + "make_id": 515, + "model_id": 912, + "year_id": 917, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 918, + "make_id": 515, + "model_id": 912, + "year_id": 918, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 919, + "make_id": 515, + "model_id": 912, + "year_id": 919, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 920, + "make_id": 515, + "model_id": 912, + "year_id": 920, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 921, + "make_id": 515, + "model_id": 912, + "year_id": 921, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 922, + "make_id": 515, + "model_id": 912, + "year_id": 922, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 923, + "make_id": 515, + "model_id": 912, + "year_id": 923, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 924, + "make_id": 515, + "model_id": 912, + "year_id": 924, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 925, + "make_id": 515, + "model_id": 912, + "year_id": 925, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 926, + "make_id": 515, + "model_id": 912, + "year_id": 926, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 927, + "make_id": 515, + "model_id": 912, + "year_id": 927, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 928, + "make_id": 515, + "model_id": 912, + "year_id": 928, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 929, + "make_id": 515, + "model_id": 912, + "year_id": 929, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 930, + "make_id": 515, + "model_id": 912, + "year_id": 930, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 931, + "make_id": 515, + "model_id": 912, + "year_id": 931, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 932, + "make_id": 515, + "model_id": 912, + "year_id": 932, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 933, + "make_id": 515, + "model_id": 912, + "year_id": 933, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 934, + "make_id": 515, + "model_id": 934, + "year_id": 934, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 935, + "make_id": 515, + "model_id": 934, + "year_id": 935, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 936, + "make_id": 515, + "model_id": 934, + "year_id": 936, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 937, + "make_id": 515, + "model_id": 934, + "year_id": 937, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 938, + "make_id": 515, + "model_id": 934, + "year_id": 938, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 939, + "make_id": 515, + "model_id": 934, + "year_id": 939, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 940, + "make_id": 515, + "model_id": 934, + "year_id": 940, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 941, + "make_id": 515, + "model_id": 934, + "year_id": 941, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 942, + "make_id": 515, + "model_id": 934, + "year_id": 942, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 943, + "make_id": 515, + "model_id": 934, + "year_id": 943, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 944, + "make_id": 515, + "model_id": 934, + "year_id": 944, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 945, + "make_id": 515, + "model_id": 934, + "year_id": 945, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 946, + "make_id": 515, + "model_id": 946, + "year_id": 946, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 947, + "make_id": 515, + "model_id": 946, + "year_id": 946, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 948, + "make_id": 515, + "model_id": 946, + "year_id": 948, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 949, + "make_id": 515, + "model_id": 946, + "year_id": 949, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 950, + "make_id": 515, + "model_id": 946, + "year_id": 950, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 951, + "make_id": 515, + "model_id": 946, + "year_id": 951, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 952, + "make_id": 515, + "model_id": 946, + "year_id": 952, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 953, + "make_id": 515, + "model_id": 946, + "year_id": 952, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 954, + "make_id": 515, + "model_id": 946, + "year_id": 952, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 955, + "make_id": 515, + "model_id": 946, + "year_id": 952, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 956, + "make_id": 515, + "model_id": 946, + "year_id": 952, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 957, + "make_id": 515, + "model_id": 946, + "year_id": 957, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 958, + "make_id": 515, + "model_id": 946, + "year_id": 957, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 959, + "make_id": 515, + "model_id": 946, + "year_id": 957, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 960, + "make_id": 515, + "model_id": 946, + "year_id": 957, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 961, + "make_id": 515, + "model_id": 946, + "year_id": 961, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 962, + "make_id": 515, + "model_id": 946, + "year_id": 961, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 963, + "make_id": 515, + "model_id": 946, + "year_id": 961, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 964, + "make_id": 515, + "model_id": 946, + "year_id": 961, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 965, + "make_id": 515, + "model_id": 946, + "year_id": 965, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 966, + "make_id": 515, + "model_id": 946, + "year_id": 965, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 967, + "make_id": 515, + "model_id": 946, + "year_id": 965, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 968, + "make_id": 515, + "model_id": 946, + "year_id": 965, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 969, + "make_id": 515, + "model_id": 946, + "year_id": 969, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 970, + "make_id": 515, + "model_id": 946, + "year_id": 969, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 971, + "make_id": 515, + "model_id": 946, + "year_id": 969, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 972, + "make_id": 515, + "model_id": 946, + "year_id": 969, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 973, + "make_id": 515, + "model_id": 946, + "year_id": 973, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 974, + "make_id": 515, + "model_id": 946, + "year_id": 974, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 975, + "make_id": 515, + "model_id": 946, + "year_id": 974, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 976, + "make_id": 515, + "model_id": 946, + "year_id": 976, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 977, + "make_id": 515, + "model_id": 946, + "year_id": 976, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 978, + "make_id": 515, + "model_id": 946, + "year_id": 978, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 979, + "make_id": 515, + "model_id": 946, + "year_id": 978, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 980, + "make_id": 515, + "model_id": 946, + "year_id": 980, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 981, + "make_id": 515, + "model_id": 946, + "year_id": 980, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 982, + "make_id": 515, + "model_id": 946, + "year_id": 982, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 983, + "make_id": 515, + "model_id": 946, + "year_id": 982, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 984, + "make_id": 515, + "model_id": 946, + "year_id": 984, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 985, + "make_id": 515, + "model_id": 946, + "year_id": 984, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 986, + "make_id": 515, + "model_id": 946, + "year_id": 986, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 987, + "make_id": 515, + "model_id": 946, + "year_id": 987, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 988, + "make_id": 515, + "model_id": 946, + "year_id": 987, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 989, + "make_id": 515, + "model_id": 946, + "year_id": 989, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 990, + "make_id": 515, + "model_id": 946, + "year_id": 989, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 991, + "make_id": 515, + "model_id": 946, + "year_id": 989, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 992, + "make_id": 515, + "model_id": 946, + "year_id": 992, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 993, + "make_id": 515, + "model_id": 946, + "year_id": 992, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 994, + "make_id": 515, + "model_id": 946, + "year_id": 992, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 995, + "make_id": 515, + "model_id": 946, + "year_id": 995, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 996, + "make_id": 515, + "model_id": 946, + "year_id": 995, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 997, + "make_id": 515, + "model_id": 946, + "year_id": 995, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 998, + "make_id": 515, + "model_id": 998, + "year_id": 998, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 999, + "make_id": 515, + "model_id": 998, + "year_id": 999, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1000, + "make_id": 515, + "model_id": 998, + "year_id": 1000, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1001, + "make_id": 515, + "model_id": 1001, + "year_id": 1001, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1002, + "make_id": 515, + "model_id": 1001, + "year_id": 1002, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1003, + "make_id": 515, + "model_id": 1001, + "year_id": 1003, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1004, + "make_id": 515, + "model_id": 1004, + "year_id": 1004, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1005, + "make_id": 515, + "model_id": 1005, + "year_id": 1005, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1006, + "make_id": 515, + "model_id": 1005, + "year_id": 1006, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1007, + "make_id": 515, + "model_id": 1005, + "year_id": 1007, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1008, + "make_id": 515, + "model_id": 1005, + "year_id": 1007, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1009, + "make_id": 515, + "model_id": 1005, + "year_id": 1009, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1010, + "make_id": 515, + "model_id": 1005, + "year_id": 1009, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1011, + "make_id": 515, + "model_id": 1005, + "year_id": 1011, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1012, + "make_id": 515, + "model_id": 1005, + "year_id": 1011, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1013, + "make_id": 515, + "model_id": 1013, + "year_id": 1013, + "cylinders": 8, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1014, + "make_id": 515, + "model_id": 1013, + "year_id": 1013, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1015, + "make_id": 515, + "model_id": 1013, + "year_id": 1015, + "cylinders": 8, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1016, + "make_id": 515, + "model_id": 1013, + "year_id": 1015, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1017, + "make_id": 515, + "model_id": 1013, + "year_id": 1017, + "cylinders": 8, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1018, + "make_id": 515, + "model_id": 1013, + "year_id": 1018, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1019, + "make_id": 515, + "model_id": 1013, + "year_id": 1019, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1020, + "make_id": 515, + "model_id": 1013, + "year_id": 1020, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1021, + "make_id": 515, + "model_id": 1013, + "year_id": 1021, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1022, + "make_id": 515, + "model_id": 1013, + "year_id": 1022, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1023, + "make_id": 515, + "model_id": 1013, + "year_id": 1023, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1024, + "make_id": 515, + "model_id": 1013, + "year_id": 1024, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1025, + "make_id": 515, + "model_id": 1013, + "year_id": 1025, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1026, + "make_id": 515, + "model_id": 1013, + "year_id": 1026, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1027, + "make_id": 515, + "model_id": 1013, + "year_id": 1027, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1028, + "make_id": 515, + "model_id": 1013, + "year_id": 1027, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1029, + "make_id": 515, + "model_id": 1013, + "year_id": 1029, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1030, + "make_id": 515, + "model_id": 1013, + "year_id": 1029, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1031, + "make_id": 515, + "model_id": 1013, + "year_id": 1031, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1032, + "make_id": 515, + "model_id": 1013, + "year_id": 1031, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1033, + "make_id": 515, + "model_id": 1033, + "year_id": 1033, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1034, + "make_id": 515, + "model_id": 1033, + "year_id": 1034, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1035, + "make_id": 515, + "model_id": 1033, + "year_id": 1035, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1036, + "make_id": 515, + "model_id": 1033, + "year_id": 1036, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1037, + "make_id": 515, + "model_id": 1033, + "year_id": 1037, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1038, + "make_id": 515, + "model_id": 1033, + "year_id": 1038, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1039, + "make_id": 515, + "model_id": 1033, + "year_id": 1038, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1040, + "make_id": 515, + "model_id": 1033, + "year_id": 1040, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1041, + "make_id": 515, + "model_id": 1033, + "year_id": 1040, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1042, + "make_id": 515, + "model_id": 1033, + "year_id": 1042, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1043, + "make_id": 515, + "model_id": 1033, + "year_id": 1042, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1044, + "make_id": 515, + "model_id": 1033, + "year_id": 1044, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1045, + "make_id": 515, + "model_id": 1033, + "year_id": 1044, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1046, + "make_id": 515, + "model_id": 1033, + "year_id": 1046, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1047, + "make_id": 515, + "model_id": 1033, + "year_id": 1046, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1048, + "make_id": 515, + "model_id": 1033, + "year_id": 1048, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1049, + "make_id": 515, + "model_id": 1033, + "year_id": 1049, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1050, + "make_id": 515, + "model_id": 1033, + "year_id": 1050, + "cylinders": 12, + "displacement": 6.3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1051, + "make_id": 515, + "model_id": 1033, + "year_id": 1050, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1052, + "make_id": 515, + "model_id": 1033, + "year_id": 1052, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1053, + "make_id": 515, + "model_id": 1033, + "year_id": 1052, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1054, + "make_id": 515, + "model_id": 1033, + "year_id": 1052, + "cylinders": 12, + "displacement": 6.3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1055, + "make_id": 515, + "model_id": 1033, + "year_id": 1055, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1056, + "make_id": 515, + "model_id": 1033, + "year_id": 1055, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1057, + "make_id": 515, + "model_id": 1033, + "year_id": 1055, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1058, + "make_id": 515, + "model_id": 1033, + "year_id": 1055, + "cylinders": 12, + "displacement": 6.3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1059, + "make_id": 515, + "model_id": 1033, + "year_id": 1059, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1060, + "make_id": 515, + "model_id": 1033, + "year_id": 1059, + "cylinders": 12, + "displacement": 6.3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1061, + "make_id": 515, + "model_id": 1033, + "year_id": 1059, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1062, + "make_id": 515, + "model_id": 1033, + "year_id": 1059, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1063, + "make_id": 515, + "model_id": 1033, + "year_id": 1063, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1064, + "make_id": 515, + "model_id": 1033, + "year_id": 1063, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1065, + "make_id": 515, + "model_id": 1033, + "year_id": 1063, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1066, + "make_id": 515, + "model_id": 1033, + "year_id": 1063, + "cylinders": 12, + "displacement": 6.3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1067, + "make_id": 515, + "model_id": 1067, + "year_id": 1067, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1068, + "make_id": 515, + "model_id": 1067, + "year_id": 1068, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1069, + "make_id": 515, + "model_id": 1067, + "year_id": 1069, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1070, + "make_id": 515, + "model_id": 1067, + "year_id": 1070, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1071, + "make_id": 515, + "model_id": 1071, + "year_id": 1071, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1072, + "make_id": 515, + "model_id": 1071, + "year_id": 1071, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1073, + "make_id": 515, + "model_id": 1071, + "year_id": 1073, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1074, + "make_id": 515, + "model_id": 1071, + "year_id": 1073, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1075, + "make_id": 515, + "model_id": 1075, + "year_id": 1075, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1076, + "make_id": 515, + "model_id": 1075, + "year_id": 1075, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1077, + "make_id": 515, + "model_id": 1075, + "year_id": 1077, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1078, + "make_id": 515, + "model_id": 1075, + "year_id": 1077, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1079, + "make_id": 515, + "model_id": 1075, + "year_id": 1077, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1080, + "make_id": 515, + "model_id": 1075, + "year_id": 1080, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1081, + "make_id": 515, + "model_id": 1075, + "year_id": 1080, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1082, + "make_id": 515, + "model_id": 1075, + "year_id": 1080, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1083, + "make_id": 515, + "model_id": 1083, + "year_id": 1083, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1084, + "make_id": 515, + "model_id": 1083, + "year_id": 1083, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1085, + "make_id": 515, + "model_id": 1083, + "year_id": 1085, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1086, + "make_id": 515, + "model_id": 1083, + "year_id": 1086, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1087, + "make_id": 515, + "model_id": 1083, + "year_id": 1087, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1088, + "make_id": 515, + "model_id": 1088, + "year_id": 1088, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1089, + "make_id": 515, + "model_id": 1088, + "year_id": 1089, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1090, + "make_id": 515, + "model_id": 1088, + "year_id": 1089, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1091, + "make_id": 515, + "model_id": 1088, + "year_id": 1091, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1092, + "make_id": 515, + "model_id": 1088, + "year_id": 1092, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1093, + "make_id": 515, + "model_id": 1088, + "year_id": 1093, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1094, + "make_id": 515, + "model_id": 1094, + "year_id": 1094, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 1095, + "make_id": 515, + "model_id": 1094, + "year_id": 1094, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1096, + "make_id": 515, + "model_id": 1094, + "year_id": 1094, + "cylinders": 5, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 1097, + "make_id": 515, + "model_id": 1094, + "year_id": 1094, + "cylinders": 5, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1098, + "make_id": 515, + "model_id": 1094, + "year_id": 1094, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 1099, + "make_id": 515, + "model_id": 1094, + "year_id": 1094, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1100, + "make_id": 515, + "model_id": 1094, + "year_id": 1094, + "cylinders": 5, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 1101, + "make_id": 515, + "model_id": 1094, + "year_id": 1094, + "cylinders": 5, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1102, + "make_id": 515, + "model_id": 1094, + "year_id": 1102, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 1103, + "make_id": 515, + "model_id": 1094, + "year_id": 1102, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1104, + "make_id": 515, + "model_id": 1094, + "year_id": 1104, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 1105, + "make_id": 515, + "model_id": 1094, + "year_id": 1104, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1106, + "make_id": 515, + "model_id": 1094, + "year_id": 1106, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 1107, + "make_id": 515, + "model_id": 1094, + "year_id": 1106, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1108, + "make_id": 515, + "model_id": 1094, + "year_id": 1106, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 1109, + "make_id": 515, + "model_id": 1094, + "year_id": 1106, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1110, + "make_id": 515, + "model_id": 1110, + "year_id": 1110, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1111, + "make_id": 515, + "model_id": 1110, + "year_id": 1111, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1112, + "make_id": 515, + "model_id": 1112, + "year_id": 1112, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1113, + "make_id": 515, + "model_id": 1112, + "year_id": 1113, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1114, + "make_id": 515, + "model_id": 1114, + "year_id": 1114, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1115, + "make_id": 515, + "model_id": 1114, + "year_id": 1115, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1116, + "make_id": 515, + "model_id": 1116, + "year_id": 1116, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1117, + "make_id": 515, + "model_id": 1116, + "year_id": 1117, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1118, + "make_id": 515, + "model_id": 1116, + "year_id": 1118, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1119, + "make_id": 515, + "model_id": 1116, + "year_id": 1118, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1120, + "make_id": 515, + "model_id": 1116, + "year_id": 1120, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1121, + "make_id": 515, + "model_id": 1116, + "year_id": 1120, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1122, + "make_id": 515, + "model_id": 1116, + "year_id": 1122, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1123, + "make_id": 515, + "model_id": 1116, + "year_id": 1122, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1124, + "make_id": 515, + "model_id": 1116, + "year_id": 1122, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1125, + "make_id": 515, + "model_id": 1116, + "year_id": 1125, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1126, + "make_id": 515, + "model_id": 1116, + "year_id": 1125, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1127, + "make_id": 515, + "model_id": 1116, + "year_id": 1125, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1128, + "make_id": 515, + "model_id": 1116, + "year_id": 1128, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1129, + "make_id": 515, + "model_id": 1116, + "year_id": 1128, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1130, + "make_id": 515, + "model_id": 1116, + "year_id": 1128, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1131, + "make_id": 515, + "model_id": 1116, + "year_id": 1131, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1132, + "make_id": 515, + "model_id": 1116, + "year_id": 1131, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1133, + "make_id": 515, + "model_id": 1116, + "year_id": 1131, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1134, + "make_id": 515, + "model_id": 1134, + "year_id": 1134, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1135, + "make_id": 515, + "model_id": 1134, + "year_id": 1135, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1136, + "make_id": 515, + "model_id": 1134, + "year_id": 1136, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1137, + "make_id": 515, + "model_id": 1134, + "year_id": 1137, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1138, + "make_id": 515, + "model_id": 1138, + "year_id": 1138, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1139, + "make_id": 515, + "model_id": 1138, + "year_id": 1138, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1140, + "make_id": 515, + "model_id": 1138, + "year_id": 1140, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1141, + "make_id": 515, + "model_id": 1138, + "year_id": 1140, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1142, + "make_id": 515, + "model_id": 1138, + "year_id": 1142, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1143, + "make_id": 515, + "model_id": 1138, + "year_id": 1142, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1144, + "make_id": 515, + "model_id": 1138, + "year_id": 1142, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1145, + "make_id": 515, + "model_id": 1138, + "year_id": 1145, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1146, + "make_id": 515, + "model_id": 1138, + "year_id": 1145, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1147, + "make_id": 515, + "model_id": 1138, + "year_id": 1145, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1148, + "make_id": 515, + "model_id": 1138, + "year_id": 1148, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1149, + "make_id": 515, + "model_id": 1138, + "year_id": 1148, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1150, + "make_id": 515, + "model_id": 1138, + "year_id": 1150, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1151, + "make_id": 515, + "model_id": 1138, + "year_id": 1150, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1152, + "make_id": 515, + "model_id": 1138, + "year_id": 1152, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1153, + "make_id": 515, + "model_id": 1138, + "year_id": 1152, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1154, + "make_id": 515, + "model_id": 1138, + "year_id": 1154, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1155, + "make_id": 515, + "model_id": 1138, + "year_id": 1154, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1156, + "make_id": 515, + "model_id": 1138, + "year_id": 1156, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1157, + "make_id": 515, + "model_id": 1138, + "year_id": 1156, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1158, + "make_id": 515, + "model_id": 1138, + "year_id": 1158, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1159, + "make_id": 515, + "model_id": 1159, + "year_id": 1159, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1160, + "make_id": 515, + "model_id": 1159, + "year_id": 1159, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1161, + "make_id": 515, + "model_id": 1159, + "year_id": 1161, + "cylinders": 5, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1162, + "make_id": 515, + "model_id": 1162, + "year_id": 1162, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1163, + "make_id": 515, + "model_id": 1162, + "year_id": 1162, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1164, + "make_id": 515, + "model_id": 1162, + "year_id": 1164, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1165, + "make_id": 515, + "model_id": 1162, + "year_id": 1164, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1166, + "make_id": 515, + "model_id": 1162, + "year_id": 1166, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1167, + "make_id": 515, + "model_id": 1162, + "year_id": 1166, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1168, + "make_id": 515, + "model_id": 1162, + "year_id": 1166, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1169, + "make_id": 515, + "model_id": 1162, + "year_id": 1166, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1170, + "make_id": 515, + "model_id": 1162, + "year_id": 1170, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1171, + "make_id": 515, + "model_id": 1162, + "year_id": 1170, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1172, + "make_id": 515, + "model_id": 1162, + "year_id": 1170, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1173, + "make_id": 515, + "model_id": 1162, + "year_id": 1170, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1174, + "make_id": 515, + "model_id": 1162, + "year_id": 1174, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1175, + "make_id": 515, + "model_id": 1162, + "year_id": 1174, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1176, + "make_id": 515, + "model_id": 1162, + "year_id": 1174, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1177, + "make_id": 515, + "model_id": 1162, + "year_id": 1174, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1178, + "make_id": 515, + "model_id": 1162, + "year_id": 1178, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1179, + "make_id": 515, + "model_id": 1162, + "year_id": 1178, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1180, + "make_id": 515, + "model_id": 1162, + "year_id": 1178, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1181, + "make_id": 515, + "model_id": 1162, + "year_id": 1178, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1182, + "make_id": 515, + "model_id": 1162, + "year_id": 1182, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1183, + "make_id": 515, + "model_id": 1162, + "year_id": 1182, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1184, + "make_id": 515, + "model_id": 1162, + "year_id": 1182, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1185, + "make_id": 515, + "model_id": 1162, + "year_id": 1182, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1186, + "make_id": 515, + "model_id": 1162, + "year_id": 1186, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1187, + "make_id": 515, + "model_id": 1187, + "year_id": 1187, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1188, + "make_id": 515, + "model_id": 1187, + "year_id": 1187, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1189, + "make_id": 515, + "model_id": 1187, + "year_id": 1187, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1190, + "make_id": 515, + "model_id": 1187, + "year_id": 1187, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1191, + "make_id": 515, + "model_id": 1187, + "year_id": 1191, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1192, + "make_id": 515, + "model_id": 1187, + "year_id": 1191, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1193, + "make_id": 515, + "model_id": 1187, + "year_id": 1191, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1194, + "make_id": 515, + "model_id": 1187, + "year_id": 1191, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1195, + "make_id": 515, + "model_id": 1187, + "year_id": 1195, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1196, + "make_id": 515, + "model_id": 1187, + "year_id": 1195, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1197, + "make_id": 515, + "model_id": 1187, + "year_id": 1195, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1198, + "make_id": 515, + "model_id": 1187, + "year_id": 1195, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1199, + "make_id": 515, + "model_id": 1187, + "year_id": 1199, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1200, + "make_id": 515, + "model_id": 1187, + "year_id": 1199, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1201, + "make_id": 515, + "model_id": 1187, + "year_id": 1199, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1202, + "make_id": 515, + "model_id": 1187, + "year_id": 1199, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1203, + "make_id": 515, + "model_id": 1187, + "year_id": 1203, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1204, + "make_id": 515, + "model_id": 1204, + "year_id": 1204, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1205, + "make_id": 515, + "model_id": 1204, + "year_id": 1205, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1206, + "make_id": 515, + "model_id": 1204, + "year_id": 1206, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1207, + "make_id": 515, + "model_id": 1207, + "year_id": 1207, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1208, + "make_id": 515, + "model_id": 1207, + "year_id": 1208, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1209, + "make_id": 515, + "model_id": 1207, + "year_id": 1209, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1210, + "make_id": 515, + "model_id": 1210, + "year_id": 1210, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1211, + "make_id": 515, + "model_id": 1210, + "year_id": 1211, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1212, + "make_id": 515, + "model_id": 1210, + "year_id": 1212, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1213, + "make_id": 515, + "model_id": 1213, + "year_id": 1213, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1214, + "make_id": 515, + "model_id": 1213, + "year_id": 1214, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1215, + "make_id": 515, + "model_id": 1215, + "year_id": 1215, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1216, + "make_id": 515, + "model_id": 1216, + "year_id": 1216, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1217, + "make_id": 515, + "model_id": 1217, + "year_id": 1217, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1218, + "make_id": 515, + "model_id": 1217, + "year_id": 1218, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1219, + "make_id": 515, + "model_id": 1219, + "year_id": 1219, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1220, + "make_id": 515, + "model_id": 1219, + "year_id": 1220, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1221, + "make_id": 515, + "model_id": 1219, + "year_id": 1221, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1222, + "make_id": 515, + "model_id": 1219, + "year_id": 1222, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1223, + "make_id": 515, + "model_id": 1219, + "year_id": 1222, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1224, + "make_id": 515, + "model_id": 1219, + "year_id": 1224, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1225, + "make_id": 515, + "model_id": 1219, + "year_id": 1224, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1226, + "make_id": 515, + "model_id": 1219, + "year_id": 1226, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1227, + "make_id": 515, + "model_id": 1219, + "year_id": 1226, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1228, + "make_id": 515, + "model_id": 1219, + "year_id": 1228, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1229, + "make_id": 515, + "model_id": 1219, + "year_id": 1228, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1230, + "make_id": 515, + "model_id": 1219, + "year_id": 1230, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1231, + "make_id": 515, + "model_id": 1219, + "year_id": 1230, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1232, + "make_id": 515, + "model_id": 1219, + "year_id": 1232, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1233, + "make_id": 515, + "model_id": 1219, + "year_id": 1232, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1234, + "make_id": 515, + "model_id": 1219, + "year_id": 1234, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1235, + "make_id": 515, + "model_id": 1219, + "year_id": 1234, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1236, + "make_id": 515, + "model_id": 1219, + "year_id": 1236, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1237, + "make_id": 515, + "model_id": 1219, + "year_id": 1236, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1238, + "make_id": 515, + "model_id": 1219, + "year_id": 1238, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 1239, + "make_id": 515, + "model_id": 1219, + "year_id": 1238, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1240, + "make_id": 515, + "model_id": 1219, + "year_id": 1240, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 1241, + "make_id": 515, + "model_id": 1219, + "year_id": 1240, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1242, + "make_id": 515, + "model_id": 1219, + "year_id": 1242, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 1243, + "make_id": 515, + "model_id": 1219, + "year_id": 1242, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1244, + "make_id": 515, + "model_id": 1219, + "year_id": 1244, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1245, + "make_id": 515, + "model_id": 1219, + "year_id": 1244, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1246, + "make_id": 515, + "model_id": 1219, + "year_id": 1246, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1247, + "make_id": 515, + "model_id": 1219, + "year_id": 1246, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1248, + "make_id": 515, + "model_id": 1219, + "year_id": 1248, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1249, + "make_id": 515, + "model_id": 1219, + "year_id": 1248, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1250, + "make_id": 515, + "model_id": 1219, + "year_id": 1250, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1251, + "make_id": 515, + "model_id": 1219, + "year_id": 1250, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1252, + "make_id": 515, + "model_id": 1252, + "year_id": 1252, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1253, + "make_id": 515, + "model_id": 1252, + "year_id": 1252, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1254, + "make_id": 515, + "model_id": 1252, + "year_id": 1254, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1255, + "make_id": 515, + "model_id": 1252, + "year_id": 1254, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1256, + "make_id": 515, + "model_id": 1252, + "year_id": 1256, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1257, + "make_id": 515, + "model_id": 1252, + "year_id": 1256, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1258, + "make_id": 515, + "model_id": 1252, + "year_id": 1258, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1259, + "make_id": 515, + "model_id": 1252, + "year_id": 1258, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1260, + "make_id": 515, + "model_id": 1252, + "year_id": 1260, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1261, + "make_id": 515, + "model_id": 1252, + "year_id": 1260, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1262, + "make_id": 515, + "model_id": 1252, + "year_id": 1262, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1263, + "make_id": 515, + "model_id": 1252, + "year_id": 1262, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1264, + "make_id": 515, + "model_id": 1252, + "year_id": 1264, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1265, + "make_id": 515, + "model_id": 1252, + "year_id": 1264, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1266, + "make_id": 515, + "model_id": 1266, + "year_id": 1266, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1267, + "make_id": 515, + "model_id": 1266, + "year_id": 1266, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1268, + "make_id": 515, + "model_id": 1266, + "year_id": 1268, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1269, + "make_id": 515, + "model_id": 1266, + "year_id": 1268, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1270, + "make_id": 515, + "model_id": 1266, + "year_id": 1270, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1271, + "make_id": 515, + "model_id": 1266, + "year_id": 1270, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1272, + "make_id": 515, + "model_id": 1266, + "year_id": 1272, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1273, + "make_id": 515, + "model_id": 1266, + "year_id": 1272, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1274, + "make_id": 515, + "model_id": 1266, + "year_id": 1274, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1275, + "make_id": 515, + "model_id": 1266, + "year_id": 1274, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1276, + "make_id": 515, + "model_id": 1266, + "year_id": 1276, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1277, + "make_id": 515, + "model_id": 1266, + "year_id": 1276, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1278, + "make_id": 515, + "model_id": 1278, + "year_id": 1278, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1279, + "make_id": 515, + "model_id": 1278, + "year_id": 1278, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1280, + "make_id": 515, + "model_id": 1278, + "year_id": 1280, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1281, + "make_id": 515, + "model_id": 1278, + "year_id": 1280, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1282, + "make_id": 515, + "model_id": 1278, + "year_id": 1282, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1283, + "make_id": 515, + "model_id": 1278, + "year_id": 1282, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1284, + "make_id": 515, + "model_id": 1278, + "year_id": 1284, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1285, + "make_id": 515, + "model_id": 1278, + "year_id": 1284, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1286, + "make_id": 515, + "model_id": 1278, + "year_id": 1286, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1287, + "make_id": 515, + "model_id": 1278, + "year_id": 1286, + "cylinders": 8, + "displacement": 4.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1288, + "make_id": 515, + "model_id": 1278, + "year_id": 1288, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1289, + "make_id": 515, + "model_id": 1278, + "year_id": 1288, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1290, + "make_id": 515, + "model_id": 1278, + "year_id": 1290, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1291, + "make_id": 515, + "model_id": 1278, + "year_id": 1290, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1292, + "make_id": 515, + "model_id": 1278, + "year_id": 1292, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1293, + "make_id": 515, + "model_id": 1278, + "year_id": 1292, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1294, + "make_id": 515, + "model_id": 1278, + "year_id": 1294, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1295, + "make_id": 515, + "model_id": 1278, + "year_id": 1294, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1296, + "make_id": 515, + "model_id": 1296, + "year_id": 1296, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 1297, + "make_id": 515, + "model_id": 1296, + "year_id": 1297, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 1298, + "make_id": 515, + "model_id": 1296, + "year_id": 1298, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 1299, + "make_id": 515, + "model_id": 1296, + "year_id": 1299, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1300, + "make_id": 515, + "model_id": 1296, + "year_id": 1300, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1301, + "make_id": 515, + "model_id": 1296, + "year_id": 1301, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1302, + "make_id": 515, + "model_id": 1296, + "year_id": 1302, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1303, + "make_id": 515, + "model_id": 1303, + "year_id": 1303, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1304, + "make_id": 515, + "model_id": 1303, + "year_id": 1304, + "cylinders": 10, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1305, + "make_id": 515, + "model_id": 1303, + "year_id": 1305, + "cylinders": 10, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1306, + "make_id": 515, + "model_id": 1303, + "year_id": 1306, + "cylinders": 10, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1307, + "make_id": 515, + "model_id": 1303, + "year_id": 1307, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1308, + "make_id": 515, + "model_id": 1303, + "year_id": 1308, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1309, + "make_id": 515, + "model_id": 1303, + "year_id": 1309, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1310, + "make_id": 515, + "model_id": 1303, + "year_id": 1310, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1311, + "make_id": 515, + "model_id": 1303, + "year_id": 1311, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1312, + "make_id": 515, + "model_id": 1303, + "year_id": 1312, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1313, + "make_id": 515, + "model_id": 1313, + "year_id": 1313, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1314, + "make_id": 515, + "model_id": 1313, + "year_id": 1314, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1315, + "make_id": 515, + "model_id": 1315, + "year_id": 1315, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1316, + "make_id": 515, + "model_id": 1316, + "year_id": 1316, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1317, + "make_id": 515, + "model_id": 1316, + "year_id": 1317, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1318, + "make_id": 515, + "model_id": 1316, + "year_id": 1318, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1319, + "make_id": 515, + "model_id": 1316, + "year_id": 1319, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1320, + "make_id": 515, + "model_id": 1320, + "year_id": 1320, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1321, + "make_id": 515, + "model_id": 1320, + "year_id": 1321, + "cylinders": 10, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1322, + "make_id": 515, + "model_id": 1320, + "year_id": 1322, + "cylinders": 10, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1323, + "make_id": 515, + "model_id": 1320, + "year_id": 1323, + "cylinders": 10, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1324, + "make_id": 515, + "model_id": 1320, + "year_id": 1324, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1325, + "make_id": 515, + "model_id": 1320, + "year_id": 1325, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1326, + "make_id": 515, + "model_id": 1320, + "year_id": 1326, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1327, + "make_id": 515, + "model_id": 1320, + "year_id": 1327, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1328, + "make_id": 515, + "model_id": 1328, + "year_id": 1328, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1329, + "make_id": 515, + "model_id": 1328, + "year_id": 1329, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1330, + "make_id": 515, + "model_id": 1330, + "year_id": 1330, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1331, + "make_id": 515, + "model_id": 1330, + "year_id": 1331, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1332, + "make_id": 515, + "model_id": 1330, + "year_id": 1332, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1333, + "make_id": 515, + "model_id": 1333, + "year_id": 1333, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1334, + "make_id": 515, + "model_id": 1333, + "year_id": 1334, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1335, + "make_id": 515, + "model_id": 1333, + "year_id": 1335, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1336, + "make_id": 515, + "model_id": 1333, + "year_id": 1336, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1337, + "make_id": 515, + "model_id": 1333, + "year_id": 1337, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1338, + "make_id": 515, + "model_id": 1333, + "year_id": 1338, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1339, + "make_id": 515, + "model_id": 1333, + "year_id": 1339, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1340, + "make_id": 515, + "model_id": 1333, + "year_id": 1340, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1341, + "make_id": 515, + "model_id": 1333, + "year_id": 1341, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1342, + "make_id": 515, + "model_id": 1342, + "year_id": 1342, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1343, + "make_id": 515, + "model_id": 1342, + "year_id": 1343, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1344, + "make_id": 515, + "model_id": 1342, + "year_id": 1343, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1345, + "make_id": 515, + "model_id": 1342, + "year_id": 1345, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1346, + "make_id": 515, + "model_id": 1342, + "year_id": 1345, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1347, + "make_id": 515, + "model_id": 1342, + "year_id": 1347, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1348, + "make_id": 515, + "model_id": 1342, + "year_id": 1348, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1349, + "make_id": 515, + "model_id": 1342, + "year_id": 1348, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1350, + "make_id": 515, + "model_id": 1342, + "year_id": 1350, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1351, + "make_id": 515, + "model_id": 1342, + "year_id": 1350, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1352, + "make_id": 515, + "model_id": 1342, + "year_id": 1352, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1353, + "make_id": 515, + "model_id": 1342, + "year_id": 1352, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1354, + "make_id": 515, + "model_id": 1342, + "year_id": 1354, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1355, + "make_id": 515, + "model_id": 1342, + "year_id": 1354, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1356, + "make_id": 515, + "model_id": 1342, + "year_id": 1356, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1357, + "make_id": 515, + "model_id": 1342, + "year_id": 1356, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1358, + "make_id": 515, + "model_id": 1342, + "year_id": 1356, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1359, + "make_id": 515, + "model_id": 1342, + "year_id": 1359, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1360, + "make_id": 515, + "model_id": 1342, + "year_id": 1360, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1361, + "make_id": 515, + "model_id": 1342, + "year_id": 1361, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1362, + "make_id": 515, + "model_id": 1342, + "year_id": 1362, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1363, + "make_id": 515, + "model_id": 1342, + "year_id": 1363, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1364, + "make_id": 515, + "model_id": 1342, + "year_id": 1364, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1365, + "make_id": 515, + "model_id": 1342, + "year_id": 1365, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1366, + "make_id": 515, + "model_id": 1366, + "year_id": 1366, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1367, + "make_id": 515, + "model_id": 1366, + "year_id": 1367, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1368, + "make_id": 515, + "model_id": 1366, + "year_id": 1368, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1369, + "make_id": 515, + "model_id": 1366, + "year_id": 1369, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1370, + "make_id": 515, + "model_id": 1366, + "year_id": 1370, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1371, + "make_id": 515, + "model_id": 1366, + "year_id": 1371, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1372, + "make_id": 515, + "model_id": 1366, + "year_id": 1372, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1373, + "make_id": 515, + "model_id": 1366, + "year_id": 1373, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1374, + "make_id": 515, + "model_id": 1374, + "year_id": 1374, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1375, + "make_id": 515, + "model_id": 1374, + "year_id": 1375, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1376, + "make_id": 515, + "model_id": 1374, + "year_id": 1376, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1377, + "make_id": 515, + "model_id": 1374, + "year_id": 1377, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1378, + "make_id": 515, + "model_id": 1374, + "year_id": 1377, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1379, + "make_id": 515, + "model_id": 1374, + "year_id": 1379, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1380, + "make_id": 515, + "model_id": 1374, + "year_id": 1379, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1381, + "make_id": 515, + "model_id": 1374, + "year_id": 1381, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1382, + "make_id": 515, + "model_id": 1374, + "year_id": 1381, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1383, + "make_id": 515, + "model_id": 1374, + "year_id": 1383, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1384, + "make_id": 515, + "model_id": 1374, + "year_id": 1383, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1385, + "make_id": 515, + "model_id": 1374, + "year_id": 1385, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1386, + "make_id": 515, + "model_id": 1374, + "year_id": 1385, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1387, + "make_id": 515, + "model_id": 1374, + "year_id": 1385, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1388, + "make_id": 515, + "model_id": 1374, + "year_id": 1388, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1389, + "make_id": 515, + "model_id": 1374, + "year_id": 1389, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1390, + "make_id": 515, + "model_id": 1374, + "year_id": 1390, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1391, + "make_id": 515, + "model_id": 1374, + "year_id": 1391, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1392, + "make_id": 515, + "model_id": 1374, + "year_id": 1392, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1393, + "make_id": 515, + "model_id": 1374, + "year_id": 1393, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1394, + "make_id": 515, + "model_id": 1374, + "year_id": 1394, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1395, + "make_id": 515, + "model_id": 1395, + "year_id": 1395, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1396, + "make_id": 515, + "model_id": 1395, + "year_id": 1396, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1397, + "make_id": 515, + "model_id": 1397, + "year_id": 1397, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 1398, + "make_id": 515, + "model_id": 1398, + "year_id": 1398, + "cylinders": 8, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1399, + "make_id": 515, + "model_id": 1398, + "year_id": 1398, + "cylinders": 8, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1400, + "make_id": 515, + "model_id": 1398, + "year_id": 1400, + "cylinders": 8, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1401, + "make_id": 515, + "model_id": 1398, + "year_id": 1400, + "cylinders": 8, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1402, + "make_id": 515, + "model_id": 1398, + "year_id": 1402, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1403, + "make_id": 515, + "model_id": 1398, + "year_id": 1403, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1404, + "make_id": 515, + "model_id": 1398, + "year_id": 1404, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1405, + "make_id": 1405, + "model_id": 1405, + "year_id": 1405, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1406, + "make_id": 1406, + "model_id": 1406, + "year_id": 1406, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1407, + "make_id": 1406, + "model_id": 1406, + "year_id": 1407, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1408, + "make_id": 1406, + "model_id": 1408, + "year_id": 1408, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1409, + "make_id": 1406, + "model_id": 1408, + "year_id": 1409, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1410, + "make_id": 1410, + "model_id": 1410, + "year_id": 1410, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 1411, + "make_id": 1410, + "model_id": 1410, + "year_id": 1410, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 1412, + "make_id": 1412, + "model_id": 1412, + "year_id": 1412, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 1413, + "make_id": 1412, + "model_id": 1413, + "year_id": 1413, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 1414, + "make_id": 1414, + "model_id": 1414, + "year_id": 1414, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1415, + "make_id": 1414, + "model_id": 1414, + "year_id": 1415, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1416, + "make_id": 1414, + "model_id": 1414, + "year_id": 1415, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1417, + "make_id": 1414, + "model_id": 1414, + "year_id": 1417, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1418, + "make_id": 1414, + "model_id": 1414, + "year_id": 1418, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1419, + "make_id": 1414, + "model_id": 1414, + "year_id": 1419, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1420, + "make_id": 1414, + "model_id": 1414, + "year_id": 1420, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1421, + "make_id": 1414, + "model_id": 1414, + "year_id": 1421, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1422, + "make_id": 1414, + "model_id": 1414, + "year_id": 1422, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1423, + "make_id": 1414, + "model_id": 1414, + "year_id": 1423, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1424, + "make_id": 1414, + "model_id": 1414, + "year_id": 1424, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1425, + "make_id": 1414, + "model_id": 1414, + "year_id": 1425, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1426, + "make_id": 1414, + "model_id": 1426, + "year_id": 1426, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1427, + "make_id": 1414, + "model_id": 1426, + "year_id": 1427, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1428, + "make_id": 1414, + "model_id": 1426, + "year_id": 1428, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1429, + "make_id": 1414, + "model_id": 1426, + "year_id": 1429, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1430, + "make_id": 1414, + "model_id": 1426, + "year_id": 1430, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1431, + "make_id": 1414, + "model_id": 1431, + "year_id": 1431, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1432, + "make_id": 1414, + "model_id": 1431, + "year_id": 1432, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1433, + "make_id": 1414, + "model_id": 1433, + "year_id": 1433, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1434, + "make_id": 1414, + "model_id": 1433, + "year_id": 1434, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1435, + "make_id": 1414, + "model_id": 1433, + "year_id": 1435, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1436, + "make_id": 1414, + "model_id": 1433, + "year_id": 1436, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1437, + "make_id": 1414, + "model_id": 1433, + "year_id": 1437, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1438, + "make_id": 1414, + "model_id": 1433, + "year_id": 1438, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1439, + "make_id": 1414, + "model_id": 1433, + "year_id": 1439, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1440, + "make_id": 1414, + "model_id": 1433, + "year_id": 1440, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1441, + "make_id": 1414, + "model_id": 1433, + "year_id": 1441, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1442, + "make_id": 1414, + "model_id": 1442, + "year_id": 1442, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1443, + "make_id": 1414, + "model_id": 1442, + "year_id": 1443, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1444, + "make_id": 1414, + "model_id": 1444, + "year_id": 1444, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1445, + "make_id": 1414, + "model_id": 1445, + "year_id": 1445, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1446, + "make_id": 1414, + "model_id": 1445, + "year_id": 1446, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1447, + "make_id": 1414, + "model_id": 1447, + "year_id": 1447, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1448, + "make_id": 1414, + "model_id": 1447, + "year_id": 1448, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1449, + "make_id": 1414, + "model_id": 1447, + "year_id": 1449, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1450, + "make_id": 1414, + "model_id": 1447, + "year_id": 1450, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1451, + "make_id": 1414, + "model_id": 1447, + "year_id": 1451, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1452, + "make_id": 1414, + "model_id": 1447, + "year_id": 1452, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1453, + "make_id": 1414, + "model_id": 1447, + "year_id": 1453, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1454, + "make_id": 1414, + "model_id": 1447, + "year_id": 1454, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1455, + "make_id": 1414, + "model_id": 1455, + "year_id": 1455, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1456, + "make_id": 1414, + "model_id": 1455, + "year_id": 1456, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1457, + "make_id": 1414, + "model_id": 1455, + "year_id": 1457, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1458, + "make_id": 1414, + "model_id": 1455, + "year_id": 1458, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1459, + "make_id": 1414, + "model_id": 1455, + "year_id": 1459, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1460, + "make_id": 1414, + "model_id": 1455, + "year_id": 1460, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1461, + "make_id": 1414, + "model_id": 1455, + "year_id": 1461, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1462, + "make_id": 1414, + "model_id": 1455, + "year_id": 1462, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1463, + "make_id": 1414, + "model_id": 1455, + "year_id": 1463, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1464, + "make_id": 1414, + "model_id": 1455, + "year_id": 1463, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1465, + "make_id": 1414, + "model_id": 1455, + "year_id": 1463, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1466, + "make_id": 1414, + "model_id": 1455, + "year_id": 1466, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1467, + "make_id": 1414, + "model_id": 1455, + "year_id": 1466, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1468, + "make_id": 1414, + "model_id": 1455, + "year_id": 1468, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1469, + "make_id": 1414, + "model_id": 1455, + "year_id": 1468, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1470, + "make_id": 1414, + "model_id": 1455, + "year_id": 1470, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1471, + "make_id": 1414, + "model_id": 1455, + "year_id": 1470, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1472, + "make_id": 1414, + "model_id": 1472, + "year_id": 1472, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1473, + "make_id": 1414, + "model_id": 1472, + "year_id": 1472, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1474, + "make_id": 1414, + "model_id": 1472, + "year_id": 1474, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1475, + "make_id": 1414, + "model_id": 1472, + "year_id": 1474, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1476, + "make_id": 1414, + "model_id": 1476, + "year_id": 1476, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1477, + "make_id": 1414, + "model_id": 1477, + "year_id": 1477, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1478, + "make_id": 1414, + "model_id": 1478, + "year_id": 1478, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1479, + "make_id": 1414, + "model_id": 1478, + "year_id": 1479, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1480, + "make_id": 1414, + "model_id": 1478, + "year_id": 1480, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1481, + "make_id": 1414, + "model_id": 1478, + "year_id": 1481, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1482, + "make_id": 1414, + "model_id": 1478, + "year_id": 1482, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1483, + "make_id": 1414, + "model_id": 1478, + "year_id": 1483, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1484, + "make_id": 1414, + "model_id": 1478, + "year_id": 1484, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1485, + "make_id": 1414, + "model_id": 1478, + "year_id": 1484, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1486, + "make_id": 1414, + "model_id": 1478, + "year_id": 1484, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1487, + "make_id": 1414, + "model_id": 1478, + "year_id": 1487, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1488, + "make_id": 1414, + "model_id": 1478, + "year_id": 1487, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1489, + "make_id": 1414, + "model_id": 1489, + "year_id": 1489, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1490, + "make_id": 1414, + "model_id": 1489, + "year_id": 1490, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1491, + "make_id": 1414, + "model_id": 1489, + "year_id": 1491, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1492, + "make_id": 1414, + "model_id": 1489, + "year_id": 1492, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1493, + "make_id": 1414, + "model_id": 1489, + "year_id": 1493, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1494, + "make_id": 1414, + "model_id": 1494, + "year_id": 1494, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1495, + "make_id": 1414, + "model_id": 1494, + "year_id": 1495, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1496, + "make_id": 1414, + "model_id": 1494, + "year_id": 1496, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1497, + "make_id": 1414, + "model_id": 1494, + "year_id": 1497, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1498, + "make_id": 1414, + "model_id": 1498, + "year_id": 1498, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1499, + "make_id": 1414, + "model_id": 1498, + "year_id": 1499, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1500, + "make_id": 1414, + "model_id": 1498, + "year_id": 1500, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1501, + "make_id": 1414, + "model_id": 1501, + "year_id": 1501, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1502, + "make_id": 1414, + "model_id": 1501, + "year_id": 1502, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1503, + "make_id": 1414, + "model_id": 1501, + "year_id": 1503, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1504, + "make_id": 1414, + "model_id": 1504, + "year_id": 1504, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1505, + "make_id": 1414, + "model_id": 1504, + "year_id": 1505, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1506, + "make_id": 1414, + "model_id": 1504, + "year_id": 1506, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1507, + "make_id": 1414, + "model_id": 1504, + "year_id": 1507, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1508, + "make_id": 1414, + "model_id": 1504, + "year_id": 1508, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1509, + "make_id": 1414, + "model_id": 1509, + "year_id": 1509, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1510, + "make_id": 1414, + "model_id": 1509, + "year_id": 1510, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1511, + "make_id": 1414, + "model_id": 1509, + "year_id": 1510, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1512, + "make_id": 1414, + "model_id": 1509, + "year_id": 1512, + "cylinders": 8, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1513, + "make_id": 1414, + "model_id": 1509, + "year_id": 1512, + "cylinders": 12, + "displacement": 6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1514, + "make_id": 1414, + "model_id": 1514, + "year_id": 1514, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1515, + "make_id": 1414, + "model_id": 1514, + "year_id": 1515, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1516, + "make_id": 1414, + "model_id": 1514, + "year_id": 1516, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1517, + "make_id": 1414, + "model_id": 1514, + "year_id": 1517, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1518, + "make_id": 1414, + "model_id": 1514, + "year_id": 1518, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1519, + "make_id": 1414, + "model_id": 1514, + "year_id": 1519, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1520, + "make_id": 1414, + "model_id": 1520, + "year_id": 1520, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1521, + "make_id": 1414, + "model_id": 1520, + "year_id": 1521, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1522, + "make_id": 1522, + "model_id": 1522, + "year_id": 1522, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1523, + "make_id": 1522, + "model_id": 1522, + "year_id": 1522, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1524, + "make_id": 1522, + "model_id": 1522, + "year_id": 1524, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1525, + "make_id": 1522, + "model_id": 1522, + "year_id": 1525, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1526, + "make_id": 1522, + "model_id": 1522, + "year_id": 1526, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1527, + "make_id": 1522, + "model_id": 1522, + "year_id": 1527, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1528, + "make_id": 1522, + "model_id": 1522, + "year_id": 1528, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1529, + "make_id": 1529, + "model_id": 1529, + "year_id": 1529, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 1530, + "make_id": 1529, + "model_id": 1529, + "year_id": 1530, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1531, + "make_id": 1529, + "model_id": 1531, + "year_id": 1531, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 1532, + "make_id": 1529, + "model_id": 1531, + "year_id": 1532, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1533, + "make_id": 1533, + "model_id": 1533, + "year_id": 1533, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1534, + "make_id": 1533, + "model_id": 1533, + "year_id": 1534, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 1535, + "make_id": 1533, + "model_id": 1533, + "year_id": 1534, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1536, + "make_id": 1533, + "model_id": 1536, + "year_id": 1536, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 1537, + "make_id": 1533, + "model_id": 1536, + "year_id": 1536, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1538, + "make_id": 1538, + "model_id": 1538, + "year_id": 1538, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1539, + "make_id": 1538, + "model_id": 1538, + "year_id": 1538, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1540, + "make_id": 1538, + "model_id": 1538, + "year_id": 1540, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1541, + "make_id": 1538, + "model_id": 1538, + "year_id": 1540, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1542, + "make_id": 1538, + "model_id": 1538, + "year_id": 1542, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1543, + "make_id": 1538, + "model_id": 1538, + "year_id": 1542, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1544, + "make_id": 1538, + "model_id": 1538, + "year_id": 1544, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1545, + "make_id": 1538, + "model_id": 1538, + "year_id": 1544, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1546, + "make_id": 1538, + "model_id": 1546, + "year_id": 1546, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1547, + "make_id": 1538, + "model_id": 1546, + "year_id": 1546, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1548, + "make_id": 1538, + "model_id": 1546, + "year_id": 1548, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1549, + "make_id": 1538, + "model_id": 1546, + "year_id": 1548, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1550, + "make_id": 1538, + "model_id": 1546, + "year_id": 1550, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1551, + "make_id": 1538, + "model_id": 1546, + "year_id": 1550, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1552, + "make_id": 1538, + "model_id": 1546, + "year_id": 1552, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1553, + "make_id": 1538, + "model_id": 1546, + "year_id": 1552, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1554, + "make_id": 1538, + "model_id": 1546, + "year_id": 1554, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1555, + "make_id": 1538, + "model_id": 1546, + "year_id": 1554, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1556, + "make_id": 1538, + "model_id": 1546, + "year_id": 1556, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1557, + "make_id": 1538, + "model_id": 1546, + "year_id": 1556, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1558, + "make_id": 1538, + "model_id": 1558, + "year_id": 1558, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1559, + "make_id": 1538, + "model_id": 1558, + "year_id": 1558, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1560, + "make_id": 1538, + "model_id": 1558, + "year_id": 1560, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1561, + "make_id": 1538, + "model_id": 1558, + "year_id": 1560, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1562, + "make_id": 1538, + "model_id": 1562, + "year_id": 1562, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1563, + "make_id": 1538, + "model_id": 1562, + "year_id": 1562, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1564, + "make_id": 1538, + "model_id": 1562, + "year_id": 1564, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1565, + "make_id": 1538, + "model_id": 1562, + "year_id": 1564, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1566, + "make_id": 1538, + "model_id": 1562, + "year_id": 1566, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1567, + "make_id": 1538, + "model_id": 1562, + "year_id": 1566, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1568, + "make_id": 1538, + "model_id": 1562, + "year_id": 1568, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1569, + "make_id": 1538, + "model_id": 1562, + "year_id": 1568, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 1570, + "make_id": 1538, + "model_id": 1562, + "year_id": 1570, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 1571, + "make_id": 1538, + "model_id": 1562, + "year_id": 1570, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1572, + "make_id": 1538, + "model_id": 1562, + "year_id": 1572, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1573, + "make_id": 1538, + "model_id": 1562, + "year_id": 1572, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1574, + "make_id": 1538, + "model_id": 1574, + "year_id": 1574, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1575, + "make_id": 1538, + "model_id": 1574, + "year_id": 1574, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1576, + "make_id": 1538, + "model_id": 1574, + "year_id": 1576, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1577, + "make_id": 1538, + "model_id": 1574, + "year_id": 1576, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1578, + "make_id": 1538, + "model_id": 1574, + "year_id": 1578, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1579, + "make_id": 1538, + "model_id": 1574, + "year_id": 1578, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1580, + "make_id": 1538, + "model_id": 1574, + "year_id": 1580, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1581, + "make_id": 1538, + "model_id": 1574, + "year_id": 1580, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 1582, + "make_id": 1538, + "model_id": 1574, + "year_id": 1582, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 1583, + "make_id": 1538, + "model_id": 1574, + "year_id": 1582, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1584, + "make_id": 1538, + "model_id": 1574, + "year_id": 1584, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 1585, + "make_id": 1538, + "model_id": 1574, + "year_id": 1584, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1586, + "make_id": 1538, + "model_id": 1586, + "year_id": 1586, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1587, + "make_id": 1538, + "model_id": 1586, + "year_id": 1586, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1588, + "make_id": 1538, + "model_id": 1586, + "year_id": 1588, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1589, + "make_id": 1538, + "model_id": 1586, + "year_id": 1588, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1590, + "make_id": 1538, + "model_id": 1586, + "year_id": 1590, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1591, + "make_id": 1538, + "model_id": 1586, + "year_id": 1590, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1592, + "make_id": 1538, + "model_id": 1592, + "year_id": 1592, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1593, + "make_id": 1538, + "model_id": 1592, + "year_id": 1593, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1594, + "make_id": 1538, + "model_id": 1594, + "year_id": 1594, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1595, + "make_id": 1538, + "model_id": 1594, + "year_id": 1595, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1596, + "make_id": 1538, + "model_id": 1596, + "year_id": 1596, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1597, + "make_id": 1538, + "model_id": 1596, + "year_id": 1597, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1598, + "make_id": 1538, + "model_id": 1598, + "year_id": 1598, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 1599, + "make_id": 1538, + "model_id": 1598, + "year_id": 1598, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1600, + "make_id": 1538, + "model_id": 1598, + "year_id": 1598, + "cylinders": 6, + "displacement": 2.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 1601, + "make_id": 1538, + "model_id": 1598, + "year_id": 1598, + "cylinders": 6, + "displacement": 2.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1602, + "make_id": 1538, + "model_id": 1598, + "year_id": 1598, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 1603, + "make_id": 1538, + "model_id": 1598, + "year_id": 1598, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1604, + "make_id": 1538, + "model_id": 1598, + "year_id": 1598, + "cylinders": 6, + "displacement": 2.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 1605, + "make_id": 1538, + "model_id": 1598, + "year_id": 1598, + "cylinders": 6, + "displacement": 2.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 1606, + "make_id": 1538, + "model_id": 1598, + "year_id": 1606, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1607, + "make_id": 1538, + "model_id": 1598, + "year_id": 1606, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1608, + "make_id": 1538, + "model_id": 1598, + "year_id": 1606, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1609, + "make_id": 1538, + "model_id": 1598, + "year_id": 1606, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1610, + "make_id": 1538, + "model_id": 1598, + "year_id": 1610, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1611, + "make_id": 1538, + "model_id": 1598, + "year_id": 1610, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1612, + "make_id": 1538, + "model_id": 1598, + "year_id": 1612, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1613, + "make_id": 1538, + "model_id": 1598, + "year_id": 1612, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1614, + "make_id": 1538, + "model_id": 1598, + "year_id": 1612, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1615, + "make_id": 1538, + "model_id": 1598, + "year_id": 1612, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1616, + "make_id": 1538, + "model_id": 1598, + "year_id": 1616, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1617, + "make_id": 1538, + "model_id": 1598, + "year_id": 1616, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1618, + "make_id": 1538, + "model_id": 1598, + "year_id": 1616, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1619, + "make_id": 1538, + "model_id": 1598, + "year_id": 1616, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1620, + "make_id": 1538, + "model_id": 1598, + "year_id": 1616, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1621, + "make_id": 1538, + "model_id": 1598, + "year_id": 1616, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1622, + "make_id": 1538, + "model_id": 1598, + "year_id": 1616, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1623, + "make_id": 1538, + "model_id": 1598, + "year_id": 1616, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1624, + "make_id": 1538, + "model_id": 1624, + "year_id": 1624, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1625, + "make_id": 1538, + "model_id": 1625, + "year_id": 1625, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1626, + "make_id": 1538, + "model_id": 1625, + "year_id": 1626, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1627, + "make_id": 1538, + "model_id": 1625, + "year_id": 1626, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1628, + "make_id": 1538, + "model_id": 1625, + "year_id": 1628, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1629, + "make_id": 1538, + "model_id": 1625, + "year_id": 1628, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1630, + "make_id": 1538, + "model_id": 1625, + "year_id": 1630, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1631, + "make_id": 1538, + "model_id": 1625, + "year_id": 1630, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1632, + "make_id": 1538, + "model_id": 1625, + "year_id": 1632, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1633, + "make_id": 1538, + "model_id": 1625, + "year_id": 1632, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1634, + "make_id": 1538, + "model_id": 1625, + "year_id": 1632, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1635, + "make_id": 1538, + "model_id": 1635, + "year_id": 1635, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1636, + "make_id": 1538, + "model_id": 1636, + "year_id": 1636, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1637, + "make_id": 1538, + "model_id": 1636, + "year_id": 1636, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1638, + "make_id": 1538, + "model_id": 1636, + "year_id": 1638, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1639, + "make_id": 1538, + "model_id": 1636, + "year_id": 1638, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1640, + "make_id": 1538, + "model_id": 1636, + "year_id": 1638, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1641, + "make_id": 1538, + "model_id": 1636, + "year_id": 1638, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1642, + "make_id": 1538, + "model_id": 1636, + "year_id": 1642, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1643, + "make_id": 1538, + "model_id": 1636, + "year_id": 1642, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1644, + "make_id": 1538, + "model_id": 1636, + "year_id": 1644, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1645, + "make_id": 1538, + "model_id": 1636, + "year_id": 1644, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1646, + "make_id": 1538, + "model_id": 1636, + "year_id": 1646, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1647, + "make_id": 1538, + "model_id": 1636, + "year_id": 1646, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1648, + "make_id": 1538, + "model_id": 1636, + "year_id": 1646, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1649, + "make_id": 1538, + "model_id": 1636, + "year_id": 1646, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1650, + "make_id": 1538, + "model_id": 1636, + "year_id": 1650, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1651, + "make_id": 1538, + "model_id": 1636, + "year_id": 1650, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1652, + "make_id": 1538, + "model_id": 1652, + "year_id": 1652, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1653, + "make_id": 1538, + "model_id": 1652, + "year_id": 1652, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1654, + "make_id": 1538, + "model_id": 1652, + "year_id": 1652, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1655, + "make_id": 1538, + "model_id": 1655, + "year_id": 1655, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1656, + "make_id": 1538, + "model_id": 1656, + "year_id": 1656, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1657, + "make_id": 1538, + "model_id": 1656, + "year_id": 1656, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1658, + "make_id": 1538, + "model_id": 1656, + "year_id": 1658, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1659, + "make_id": 1538, + "model_id": 1656, + "year_id": 1658, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1660, + "make_id": 1538, + "model_id": 1656, + "year_id": 1660, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1661, + "make_id": 1538, + "model_id": 1656, + "year_id": 1660, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1662, + "make_id": 1538, + "model_id": 1656, + "year_id": 1660, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1663, + "make_id": 1538, + "model_id": 1656, + "year_id": 1660, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1664, + "make_id": 1538, + "model_id": 1656, + "year_id": 1664, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1665, + "make_id": 1538, + "model_id": 1656, + "year_id": 1664, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1666, + "make_id": 1538, + "model_id": 1656, + "year_id": 1666, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1667, + "make_id": 1538, + "model_id": 1656, + "year_id": 1666, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1668, + "make_id": 1538, + "model_id": 1668, + "year_id": 1668, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1669, + "make_id": 1538, + "model_id": 1668, + "year_id": 1668, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1670, + "make_id": 1538, + "model_id": 1668, + "year_id": 1670, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1671, + "make_id": 1538, + "model_id": 1668, + "year_id": 1670, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1672, + "make_id": 1538, + "model_id": 1668, + "year_id": 1672, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1673, + "make_id": 1538, + "model_id": 1668, + "year_id": 1672, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1674, + "make_id": 1538, + "model_id": 1668, + "year_id": 1674, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1675, + "make_id": 1538, + "model_id": 1668, + "year_id": 1674, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1676, + "make_id": 1538, + "model_id": 1676, + "year_id": 1676, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1677, + "make_id": 1538, + "model_id": 1676, + "year_id": 1676, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1678, + "make_id": 1538, + "model_id": 1676, + "year_id": 1678, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1679, + "make_id": 1538, + "model_id": 1676, + "year_id": 1679, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1680, + "make_id": 1538, + "model_id": 1676, + "year_id": 1680, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1681, + "make_id": 1538, + "model_id": 1681, + "year_id": 1681, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1682, + "make_id": 1538, + "model_id": 1681, + "year_id": 1681, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1683, + "make_id": 1538, + "model_id": 1683, + "year_id": 1683, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1684, + "make_id": 1538, + "model_id": 1683, + "year_id": 1683, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1685, + "make_id": 1538, + "model_id": 1683, + "year_id": 1685, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1686, + "make_id": 1538, + "model_id": 1683, + "year_id": 1685, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1687, + "make_id": 1538, + "model_id": 1683, + "year_id": 1685, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1688, + "make_id": 1538, + "model_id": 1688, + "year_id": 1688, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1689, + "make_id": 1538, + "model_id": 1688, + "year_id": 1688, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1690, + "make_id": 1538, + "model_id": 1688, + "year_id": 1690, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1691, + "make_id": 1538, + "model_id": 1688, + "year_id": 1690, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1692, + "make_id": 1538, + "model_id": 1688, + "year_id": 1692, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1693, + "make_id": 1538, + "model_id": 1688, + "year_id": 1692, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1694, + "make_id": 1538, + "model_id": 1694, + "year_id": 1694, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1695, + "make_id": 1538, + "model_id": 1694, + "year_id": 1694, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1696, + "make_id": 1538, + "model_id": 1696, + "year_id": 1696, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1697, + "make_id": 1538, + "model_id": 1696, + "year_id": 1696, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1698, + "make_id": 1538, + "model_id": 1696, + "year_id": 1698, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1699, + "make_id": 1538, + "model_id": 1696, + "year_id": 1698, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1700, + "make_id": 1538, + "model_id": 1700, + "year_id": 1700, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1701, + "make_id": 1538, + "model_id": 1700, + "year_id": 1700, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1702, + "make_id": 1538, + "model_id": 1700, + "year_id": 1702, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1703, + "make_id": 1538, + "model_id": 1700, + "year_id": 1702, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1704, + "make_id": 1538, + "model_id": 1700, + "year_id": 1704, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1705, + "make_id": 1538, + "model_id": 1700, + "year_id": 1704, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1706, + "make_id": 1538, + "model_id": 1700, + "year_id": 1706, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1707, + "make_id": 1538, + "model_id": 1700, + "year_id": 1706, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1708, + "make_id": 1538, + "model_id": 1700, + "year_id": 1706, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1709, + "make_id": 1538, + "model_id": 1700, + "year_id": 1709, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1710, + "make_id": 1538, + "model_id": 1700, + "year_id": 1709, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1711, + "make_id": 1538, + "model_id": 1700, + "year_id": 1711, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1712, + "make_id": 1538, + "model_id": 1700, + "year_id": 1711, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1713, + "make_id": 1538, + "model_id": 1713, + "year_id": 1713, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1714, + "make_id": 1538, + "model_id": 1713, + "year_id": 1713, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1715, + "make_id": 1538, + "model_id": 1713, + "year_id": 1715, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1716, + "make_id": 1538, + "model_id": 1713, + "year_id": 1715, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1717, + "make_id": 1538, + "model_id": 1713, + "year_id": 1717, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1718, + "make_id": 1538, + "model_id": 1713, + "year_id": 1717, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1719, + "make_id": 1538, + "model_id": 1713, + "year_id": 1719, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1720, + "make_id": 1538, + "model_id": 1713, + "year_id": 1719, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1721, + "make_id": 1538, + "model_id": 1713, + "year_id": 1719, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1722, + "make_id": 1538, + "model_id": 1713, + "year_id": 1722, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1723, + "make_id": 1538, + "model_id": 1713, + "year_id": 1722, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1724, + "make_id": 1538, + "model_id": 1713, + "year_id": 1724, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1725, + "make_id": 1538, + "model_id": 1713, + "year_id": 1724, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1726, + "make_id": 1538, + "model_id": 1726, + "year_id": 1726, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1727, + "make_id": 1538, + "model_id": 1726, + "year_id": 1727, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1728, + "make_id": 1538, + "model_id": 1726, + "year_id": 1727, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1729, + "make_id": 1538, + "model_id": 1726, + "year_id": 1729, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1730, + "make_id": 1538, + "model_id": 1726, + "year_id": 1729, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1731, + "make_id": 1538, + "model_id": 1726, + "year_id": 1731, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1732, + "make_id": 1538, + "model_id": 1726, + "year_id": 1731, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1733, + "make_id": 1538, + "model_id": 1726, + "year_id": 1733, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1734, + "make_id": 1538, + "model_id": 1726, + "year_id": 1733, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1735, + "make_id": 1538, + "model_id": 1726, + "year_id": 1733, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1736, + "make_id": 1538, + "model_id": 1726, + "year_id": 1736, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1737, + "make_id": 1538, + "model_id": 1726, + "year_id": 1736, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1738, + "make_id": 1538, + "model_id": 1726, + "year_id": 1736, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1739, + "make_id": 1538, + "model_id": 1726, + "year_id": 1739, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1740, + "make_id": 1538, + "model_id": 1726, + "year_id": 1739, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1741, + "make_id": 1538, + "model_id": 1741, + "year_id": 1741, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1742, + "make_id": 1538, + "model_id": 1741, + "year_id": 1741, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1743, + "make_id": 1538, + "model_id": 1741, + "year_id": 1743, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1744, + "make_id": 1538, + "model_id": 1741, + "year_id": 1743, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1745, + "make_id": 1538, + "model_id": 1741, + "year_id": 1745, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1746, + "make_id": 1538, + "model_id": 1741, + "year_id": 1745, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1747, + "make_id": 1538, + "model_id": 1741, + "year_id": 1747, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1748, + "make_id": 1538, + "model_id": 1741, + "year_id": 1747, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1749, + "make_id": 1538, + "model_id": 1741, + "year_id": 1749, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1750, + "make_id": 1538, + "model_id": 1741, + "year_id": 1750, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1751, + "make_id": 1538, + "model_id": 1741, + "year_id": 1750, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1752, + "make_id": 1538, + "model_id": 1741, + "year_id": 1752, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1753, + "make_id": 1538, + "model_id": 1741, + "year_id": 1752, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1754, + "make_id": 1538, + "model_id": 1754, + "year_id": 1754, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1755, + "make_id": 1538, + "model_id": 1754, + "year_id": 1754, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1756, + "make_id": 1538, + "model_id": 1754, + "year_id": 1756, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1757, + "make_id": 1538, + "model_id": 1754, + "year_id": 1756, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1758, + "make_id": 1538, + "model_id": 1754, + "year_id": 1758, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1759, + "make_id": 1538, + "model_id": 1754, + "year_id": 1758, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1760, + "make_id": 1538, + "model_id": 1754, + "year_id": 1760, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1761, + "make_id": 1538, + "model_id": 1754, + "year_id": 1760, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1762, + "make_id": 1538, + "model_id": 1754, + "year_id": 1760, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1763, + "make_id": 1538, + "model_id": 1754, + "year_id": 1763, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1764, + "make_id": 1538, + "model_id": 1754, + "year_id": 1763, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1765, + "make_id": 1538, + "model_id": 1765, + "year_id": 1765, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1766, + "make_id": 1538, + "model_id": 1765, + "year_id": 1765, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1767, + "make_id": 1538, + "model_id": 1765, + "year_id": 1767, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1768, + "make_id": 1538, + "model_id": 1765, + "year_id": 1767, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1769, + "make_id": 1538, + "model_id": 1765, + "year_id": 1769, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1770, + "make_id": 1538, + "model_id": 1765, + "year_id": 1769, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1771, + "make_id": 1538, + "model_id": 1771, + "year_id": 1771, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1772, + "make_id": 1538, + "model_id": 1771, + "year_id": 1771, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1773, + "make_id": 1538, + "model_id": 1765, + "year_id": 1773, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1774, + "make_id": 1538, + "model_id": 1765, + "year_id": 1773, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1775, + "make_id": 1538, + "model_id": 1765, + "year_id": 1775, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1776, + "make_id": 1538, + "model_id": 1765, + "year_id": 1775, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1777, + "make_id": 1538, + "model_id": 1765, + "year_id": 1777, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1778, + "make_id": 1538, + "model_id": 1765, + "year_id": 1777, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1779, + "make_id": 1538, + "model_id": 1779, + "year_id": 1779, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1780, + "make_id": 1538, + "model_id": 1780, + "year_id": 1780, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1781, + "make_id": 1538, + "model_id": 1781, + "year_id": 1781, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1782, + "make_id": 1538, + "model_id": 1781, + "year_id": 1781, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1783, + "make_id": 1538, + "model_id": 1781, + "year_id": 1783, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1784, + "make_id": 1538, + "model_id": 1781, + "year_id": 1783, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1785, + "make_id": 1538, + "model_id": 1781, + "year_id": 1785, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1786, + "make_id": 1538, + "model_id": 1781, + "year_id": 1785, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1787, + "make_id": 1538, + "model_id": 1787, + "year_id": 1787, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1788, + "make_id": 1538, + "model_id": 1787, + "year_id": 1787, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1789, + "make_id": 1538, + "model_id": 1787, + "year_id": 1789, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1790, + "make_id": 1538, + "model_id": 1787, + "year_id": 1789, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1791, + "make_id": 1538, + "model_id": 1787, + "year_id": 1791, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1792, + "make_id": 1538, + "model_id": 1787, + "year_id": 1791, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1793, + "make_id": 1538, + "model_id": 1787, + "year_id": 1793, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1794, + "make_id": 1538, + "model_id": 1787, + "year_id": 1793, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1795, + "make_id": 1538, + "model_id": 1787, + "year_id": 1795, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1796, + "make_id": 1538, + "model_id": 1787, + "year_id": 1795, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1797, + "make_id": 1538, + "model_id": 1787, + "year_id": 1797, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1798, + "make_id": 1538, + "model_id": 1787, + "year_id": 1797, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1799, + "make_id": 1538, + "model_id": 1799, + "year_id": 1799, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1800, + "make_id": 1538, + "model_id": 1799, + "year_id": 1799, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1801, + "make_id": 1538, + "model_id": 1799, + "year_id": 1801, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1802, + "make_id": 1538, + "model_id": 1799, + "year_id": 1801, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1803, + "make_id": 1538, + "model_id": 1799, + "year_id": 1803, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1804, + "make_id": 1538, + "model_id": 1799, + "year_id": 1803, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1805, + "make_id": 1538, + "model_id": 1799, + "year_id": 1805, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1806, + "make_id": 1538, + "model_id": 1799, + "year_id": 1805, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1807, + "make_id": 1538, + "model_id": 1799, + "year_id": 1807, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1808, + "make_id": 1538, + "model_id": 1799, + "year_id": 1807, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1809, + "make_id": 1538, + "model_id": 1799, + "year_id": 1809, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1810, + "make_id": 1538, + "model_id": 1799, + "year_id": 1809, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1811, + "make_id": 1538, + "model_id": 1811, + "year_id": 1811, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1812, + "make_id": 1538, + "model_id": 1811, + "year_id": 1811, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1813, + "make_id": 1538, + "model_id": 1811, + "year_id": 1813, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1814, + "make_id": 1538, + "model_id": 1811, + "year_id": 1813, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1815, + "make_id": 1538, + "model_id": 1811, + "year_id": 1815, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1816, + "make_id": 1538, + "model_id": 1811, + "year_id": 1815, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1817, + "make_id": 1538, + "model_id": 1811, + "year_id": 1817, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1818, + "make_id": 1538, + "model_id": 1811, + "year_id": 1817, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1819, + "make_id": 1538, + "model_id": 1811, + "year_id": 1819, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1820, + "make_id": 1538, + "model_id": 1811, + "year_id": 1819, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1821, + "make_id": 1538, + "model_id": 1811, + "year_id": 1821, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1822, + "make_id": 1538, + "model_id": 1811, + "year_id": 1821, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1823, + "make_id": 1538, + "model_id": 1823, + "year_id": 1823, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1824, + "make_id": 1538, + "model_id": 1823, + "year_id": 1823, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1825, + "make_id": 1538, + "model_id": 1823, + "year_id": 1825, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1826, + "make_id": 1538, + "model_id": 1823, + "year_id": 1825, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1827, + "make_id": 1538, + "model_id": 1823, + "year_id": 1827, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1828, + "make_id": 1538, + "model_id": 1823, + "year_id": 1827, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1829, + "make_id": 1538, + "model_id": 1823, + "year_id": 1829, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1830, + "make_id": 1538, + "model_id": 1823, + "year_id": 1829, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1831, + "make_id": 1538, + "model_id": 1823, + "year_id": 1831, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1832, + "make_id": 1538, + "model_id": 1823, + "year_id": 1831, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1833, + "make_id": 1538, + "model_id": 1823, + "year_id": 1833, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1834, + "make_id": 1538, + "model_id": 1823, + "year_id": 1833, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1835, + "make_id": 1538, + "model_id": 1835, + "year_id": 1835, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1836, + "make_id": 1538, + "model_id": 1835, + "year_id": 1835, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1837, + "make_id": 1538, + "model_id": 1835, + "year_id": 1837, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1838, + "make_id": 1538, + "model_id": 1835, + "year_id": 1837, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1839, + "make_id": 1538, + "model_id": 1835, + "year_id": 1839, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1840, + "make_id": 1538, + "model_id": 1835, + "year_id": 1839, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1841, + "make_id": 1538, + "model_id": 1841, + "year_id": 1841, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1842, + "make_id": 1538, + "model_id": 1841, + "year_id": 1841, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1843, + "make_id": 1538, + "model_id": 1841, + "year_id": 1843, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1844, + "make_id": 1538, + "model_id": 1841, + "year_id": 1843, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1845, + "make_id": 1538, + "model_id": 1845, + "year_id": 1845, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1846, + "make_id": 1538, + "model_id": 1845, + "year_id": 1846, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1847, + "make_id": 1538, + "model_id": 1845, + "year_id": 1847, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1848, + "make_id": 1538, + "model_id": 1848, + "year_id": 1848, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1849, + "make_id": 1538, + "model_id": 1848, + "year_id": 1849, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1850, + "make_id": 1538, + "model_id": 1848, + "year_id": 1850, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1851, + "make_id": 1538, + "model_id": 1851, + "year_id": 1851, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1852, + "make_id": 1538, + "model_id": 1851, + "year_id": 1852, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1853, + "make_id": 1538, + "model_id": 1851, + "year_id": 1853, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1854, + "make_id": 1538, + "model_id": 1854, + "year_id": 1854, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1855, + "make_id": 1538, + "model_id": 1854, + "year_id": 1854, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1856, + "make_id": 1538, + "model_id": 1854, + "year_id": 1856, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1857, + "make_id": 1538, + "model_id": 1854, + "year_id": 1856, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1858, + "make_id": 1538, + "model_id": 1854, + "year_id": 1856, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1859, + "make_id": 1538, + "model_id": 1854, + "year_id": 1859, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1860, + "make_id": 1538, + "model_id": 1854, + "year_id": 1859, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1861, + "make_id": 1538, + "model_id": 1854, + "year_id": 1861, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1862, + "make_id": 1538, + "model_id": 1854, + "year_id": 1861, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1863, + "make_id": 1538, + "model_id": 1854, + "year_id": 1863, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1864, + "make_id": 1538, + "model_id": 1854, + "year_id": 1863, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1865, + "make_id": 1538, + "model_id": 1854, + "year_id": 1865, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1866, + "make_id": 1538, + "model_id": 1854, + "year_id": 1865, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1867, + "make_id": 1538, + "model_id": 1854, + "year_id": 1867, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1868, + "make_id": 1538, + "model_id": 1854, + "year_id": 1867, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1869, + "make_id": 1538, + "model_id": 1854, + "year_id": 1869, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1870, + "make_id": 1538, + "model_id": 1854, + "year_id": 1869, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1871, + "make_id": 1538, + "model_id": 1854, + "year_id": 1871, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1872, + "make_id": 1538, + "model_id": 1854, + "year_id": 1871, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1873, + "make_id": 1538, + "model_id": 1854, + "year_id": 1873, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1874, + "make_id": 1538, + "model_id": 1854, + "year_id": 1873, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1875, + "make_id": 1538, + "model_id": 1854, + "year_id": 1875, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1876, + "make_id": 1538, + "model_id": 1854, + "year_id": 1875, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1877, + "make_id": 1538, + "model_id": 1854, + "year_id": 1877, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1878, + "make_id": 1538, + "model_id": 1854, + "year_id": 1877, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1879, + "make_id": 1538, + "model_id": 1879, + "year_id": 1879, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1880, + "make_id": 1538, + "model_id": 1879, + "year_id": 1879, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1881, + "make_id": 1538, + "model_id": 1879, + "year_id": 1881, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1882, + "make_id": 1538, + "model_id": 1879, + "year_id": 1881, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1883, + "make_id": 1538, + "model_id": 1879, + "year_id": 1883, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1884, + "make_id": 1538, + "model_id": 1879, + "year_id": 1883, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1885, + "make_id": 1538, + "model_id": 1879, + "year_id": 1885, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1886, + "make_id": 1538, + "model_id": 1879, + "year_id": 1885, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1887, + "make_id": 1538, + "model_id": 1887, + "year_id": 1887, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1888, + "make_id": 1538, + "model_id": 1887, + "year_id": 1887, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1889, + "make_id": 1538, + "model_id": 1887, + "year_id": 1889, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1890, + "make_id": 1538, + "model_id": 1887, + "year_id": 1889, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1891, + "make_id": 1538, + "model_id": 1891, + "year_id": 1891, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1892, + "make_id": 1538, + "model_id": 1891, + "year_id": 1891, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1893, + "make_id": 1538, + "model_id": 1891, + "year_id": 1893, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1894, + "make_id": 1538, + "model_id": 1891, + "year_id": 1893, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1895, + "make_id": 1538, + "model_id": 1895, + "year_id": 1895, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1896, + "make_id": 1538, + "model_id": 1895, + "year_id": 1895, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1897, + "make_id": 1538, + "model_id": 1895, + "year_id": 1897, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1898, + "make_id": 1538, + "model_id": 1895, + "year_id": 1897, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1899, + "make_id": 1538, + "model_id": 1895, + "year_id": 1899, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1900, + "make_id": 1538, + "model_id": 1895, + "year_id": 1899, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1901, + "make_id": 1538, + "model_id": 1895, + "year_id": 1901, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1902, + "make_id": 1538, + "model_id": 1895, + "year_id": 1901, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1903, + "make_id": 1538, + "model_id": 1895, + "year_id": 1903, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1904, + "make_id": 1538, + "model_id": 1895, + "year_id": 1903, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1905, + "make_id": 1538, + "model_id": 1905, + "year_id": 1905, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1906, + "make_id": 1538, + "model_id": 1905, + "year_id": 1905, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1907, + "make_id": 1538, + "model_id": 1905, + "year_id": 1907, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1908, + "make_id": 1538, + "model_id": 1905, + "year_id": 1907, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1909, + "make_id": 1538, + "model_id": 1909, + "year_id": 1909, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1910, + "make_id": 1538, + "model_id": 1909, + "year_id": 1909, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1911, + "make_id": 1538, + "model_id": 1911, + "year_id": 1911, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1912, + "make_id": 1538, + "model_id": 1911, + "year_id": 1911, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1913, + "make_id": 1538, + "model_id": 1911, + "year_id": 1913, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1914, + "make_id": 1538, + "model_id": 1911, + "year_id": 1913, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1915, + "make_id": 1538, + "model_id": 1911, + "year_id": 1915, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1916, + "make_id": 1538, + "model_id": 1911, + "year_id": 1915, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1917, + "make_id": 1538, + "model_id": 1911, + "year_id": 1917, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1918, + "make_id": 1538, + "model_id": 1911, + "year_id": 1918, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1919, + "make_id": 1538, + "model_id": 1911, + "year_id": 1919, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1920, + "make_id": 1538, + "model_id": 1911, + "year_id": 1920, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1921, + "make_id": 1538, + "model_id": 1921, + "year_id": 1921, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1922, + "make_id": 1538, + "model_id": 1921, + "year_id": 1922, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1923, + "make_id": 1538, + "model_id": 1921, + "year_id": 1923, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1924, + "make_id": 1538, + "model_id": 1924, + "year_id": 1924, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1925, + "make_id": 1538, + "model_id": 1924, + "year_id": 1924, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1926, + "make_id": 1538, + "model_id": 1926, + "year_id": 1926, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1927, + "make_id": 1538, + "model_id": 1926, + "year_id": 1926, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1928, + "make_id": 1538, + "model_id": 1926, + "year_id": 1928, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1929, + "make_id": 1538, + "model_id": 1926, + "year_id": 1929, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1930, + "make_id": 1538, + "model_id": 1926, + "year_id": 1930, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1931, + "make_id": 1538, + "model_id": 1931, + "year_id": 1931, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1932, + "make_id": 1538, + "model_id": 1931, + "year_id": 1931, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1933, + "make_id": 1538, + "model_id": 1931, + "year_id": 1933, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1934, + "make_id": 1538, + "model_id": 1931, + "year_id": 1933, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1935, + "make_id": 1538, + "model_id": 1931, + "year_id": 1935, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1936, + "make_id": 1538, + "model_id": 1931, + "year_id": 1935, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1937, + "make_id": 1538, + "model_id": 1937, + "year_id": 1937, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1938, + "make_id": 1538, + "model_id": 1937, + "year_id": 1937, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1939, + "make_id": 1538, + "model_id": 1939, + "year_id": 1939, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 1940, + "make_id": 1538, + "model_id": 1939, + "year_id": 1939, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1941, + "make_id": 1538, + "model_id": 1941, + "year_id": 1941, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1942, + "make_id": 1538, + "model_id": 1941, + "year_id": 1941, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1943, + "make_id": 1538, + "model_id": 1941, + "year_id": 1943, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1944, + "make_id": 1538, + "model_id": 1941, + "year_id": 1943, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1945, + "make_id": 1538, + "model_id": 1945, + "year_id": 1945, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1946, + "make_id": 1538, + "model_id": 1945, + "year_id": 1945, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1947, + "make_id": 1538, + "model_id": 1945, + "year_id": 1947, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1948, + "make_id": 1538, + "model_id": 1945, + "year_id": 1947, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1949, + "make_id": 1538, + "model_id": 1949, + "year_id": 1949, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1950, + "make_id": 1538, + "model_id": 1949, + "year_id": 1949, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1951, + "make_id": 1538, + "model_id": 1949, + "year_id": 1951, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1952, + "make_id": 1538, + "model_id": 1949, + "year_id": 1951, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1953, + "make_id": 1538, + "model_id": 1949, + "year_id": 1953, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1954, + "make_id": 1538, + "model_id": 1949, + "year_id": 1953, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1955, + "make_id": 1538, + "model_id": 1949, + "year_id": 1955, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1956, + "make_id": 1538, + "model_id": 1949, + "year_id": 1955, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1957, + "make_id": 1538, + "model_id": 1949, + "year_id": 1955, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1958, + "make_id": 1538, + "model_id": 1949, + "year_id": 1958, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1959, + "make_id": 1538, + "model_id": 1949, + "year_id": 1958, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1960, + "make_id": 1538, + "model_id": 1949, + "year_id": 1958, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1961, + "make_id": 1538, + "model_id": 1949, + "year_id": 1961, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1962, + "make_id": 1538, + "model_id": 1949, + "year_id": 1961, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1963, + "make_id": 1538, + "model_id": 1963, + "year_id": 1963, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1964, + "make_id": 1538, + "model_id": 1963, + "year_id": 1963, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1965, + "make_id": 1538, + "model_id": 1963, + "year_id": 1965, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1966, + "make_id": 1538, + "model_id": 1963, + "year_id": 1965, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1967, + "make_id": 1538, + "model_id": 1963, + "year_id": 1967, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1968, + "make_id": 1538, + "model_id": 1963, + "year_id": 1967, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1969, + "make_id": 1538, + "model_id": 1963, + "year_id": 1969, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1970, + "make_id": 1538, + "model_id": 1963, + "year_id": 1969, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1971, + "make_id": 1538, + "model_id": 1963, + "year_id": 1969, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1972, + "make_id": 1538, + "model_id": 1963, + "year_id": 1972, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1973, + "make_id": 1538, + "model_id": 1963, + "year_id": 1972, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1974, + "make_id": 1538, + "model_id": 1963, + "year_id": 1972, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1975, + "make_id": 1538, + "model_id": 1963, + "year_id": 1975, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1976, + "make_id": 1538, + "model_id": 1963, + "year_id": 1975, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1977, + "make_id": 1538, + "model_id": 1977, + "year_id": 1977, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 1978, + "make_id": 1538, + "model_id": 1978, + "year_id": 1978, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1979, + "make_id": 1538, + "model_id": 1978, + "year_id": 1978, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1980, + "make_id": 1538, + "model_id": 1978, + "year_id": 1980, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1981, + "make_id": 1538, + "model_id": 1978, + "year_id": 1980, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1982, + "make_id": 1538, + "model_id": 1978, + "year_id": 1982, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1983, + "make_id": 1538, + "model_id": 1978, + "year_id": 1982, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1984, + "make_id": 1538, + "model_id": 1978, + "year_id": 1982, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1985, + "make_id": 1538, + "model_id": 1978, + "year_id": 1985, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1986, + "make_id": 1538, + "model_id": 1978, + "year_id": 1985, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1987, + "make_id": 1538, + "model_id": 1978, + "year_id": 1985, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1988, + "make_id": 1538, + "model_id": 1978, + "year_id": 1988, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1989, + "make_id": 1538, + "model_id": 1978, + "year_id": 1988, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1990, + "make_id": 1538, + "model_id": 1978, + "year_id": 1988, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1991, + "make_id": 1538, + "model_id": 1978, + "year_id": 1991, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 1992, + "make_id": 1538, + "model_id": 1978, + "year_id": 1991, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1993, + "make_id": 1538, + "model_id": 1978, + "year_id": 1991, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 1994, + "make_id": 1538, + "model_id": 1994, + "year_id": 1994, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1995, + "make_id": 1538, + "model_id": 1994, + "year_id": 1994, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1996, + "make_id": 1538, + "model_id": 1994, + "year_id": 1996, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1997, + "make_id": 1538, + "model_id": 1994, + "year_id": 1996, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 1998, + "make_id": 1538, + "model_id": 1994, + "year_id": 1998, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 1999, + "make_id": 1538, + "model_id": 1994, + "year_id": 1998, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2000, + "make_id": 1538, + "model_id": 1994, + "year_id": 1998, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2001, + "make_id": 1538, + "model_id": 1994, + "year_id": 2001, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2002, + "make_id": 1538, + "model_id": 1994, + "year_id": 2001, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2003, + "make_id": 1538, + "model_id": 1994, + "year_id": 2003, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2004, + "make_id": 1538, + "model_id": 1994, + "year_id": 2003, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2005, + "make_id": 1538, + "model_id": 1994, + "year_id": 2005, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2006, + "make_id": 1538, + "model_id": 1994, + "year_id": 2005, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2007, + "make_id": 1538, + "model_id": 2007, + "year_id": 2007, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2008, + "make_id": 1538, + "model_id": 2007, + "year_id": 2007, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2009, + "make_id": 1538, + "model_id": 2007, + "year_id": 2009, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2010, + "make_id": 1538, + "model_id": 2007, + "year_id": 2009, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2011, + "make_id": 1538, + "model_id": 2007, + "year_id": 2011, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2012, + "make_id": 1538, + "model_id": 2007, + "year_id": 2011, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2013, + "make_id": 1538, + "model_id": 2007, + "year_id": 2013, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2014, + "make_id": 1538, + "model_id": 2007, + "year_id": 2013, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2015, + "make_id": 1538, + "model_id": 2007, + "year_id": 2015, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2016, + "make_id": 1538, + "model_id": 2007, + "year_id": 2015, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2017, + "make_id": 1538, + "model_id": 2017, + "year_id": 2017, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2018, + "make_id": 1538, + "model_id": 2017, + "year_id": 2017, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2019, + "make_id": 1538, + "model_id": 2017, + "year_id": 2019, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2020, + "make_id": 1538, + "model_id": 2017, + "year_id": 2019, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2021, + "make_id": 1538, + "model_id": 2017, + "year_id": 2021, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2022, + "make_id": 1538, + "model_id": 2017, + "year_id": 2021, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2023, + "make_id": 1538, + "model_id": 2017, + "year_id": 2023, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2024, + "make_id": 1538, + "model_id": 2017, + "year_id": 2023, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2025, + "make_id": 1538, + "model_id": 2017, + "year_id": 2025, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2026, + "make_id": 1538, + "model_id": 2017, + "year_id": 2025, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2027, + "make_id": 1538, + "model_id": 2017, + "year_id": 2027, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2028, + "make_id": 1538, + "model_id": 2017, + "year_id": 2027, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2029, + "make_id": 1538, + "model_id": 2029, + "year_id": 2029, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2030, + "make_id": 1538, + "model_id": 2029, + "year_id": 2029, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2031, + "make_id": 1538, + "model_id": 2029, + "year_id": 2031, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2032, + "make_id": 1538, + "model_id": 2029, + "year_id": 2031, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2033, + "make_id": 1538, + "model_id": 2029, + "year_id": 2033, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2034, + "make_id": 1538, + "model_id": 2029, + "year_id": 2033, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2035, + "make_id": 1538, + "model_id": 2035, + "year_id": 2035, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2036, + "make_id": 1538, + "model_id": 2035, + "year_id": 2035, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2037, + "make_id": 1538, + "model_id": 2037, + "year_id": 2037, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2038, + "make_id": 1538, + "model_id": 2037, + "year_id": 2038, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2039, + "make_id": 1538, + "model_id": 2037, + "year_id": 2039, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2040, + "make_id": 1538, + "model_id": 2040, + "year_id": 2040, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2041, + "make_id": 1538, + "model_id": 2040, + "year_id": 2040, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2042, + "make_id": 1538, + "model_id": 2040, + "year_id": 2042, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2043, + "make_id": 1538, + "model_id": 2040, + "year_id": 2042, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2044, + "make_id": 1538, + "model_id": 2040, + "year_id": 2044, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2045, + "make_id": 1538, + "model_id": 2040, + "year_id": 2044, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2046, + "make_id": 1538, + "model_id": 2040, + "year_id": 2046, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2047, + "make_id": 1538, + "model_id": 2040, + "year_id": 2046, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2048, + "make_id": 1538, + "model_id": 2040, + "year_id": 2048, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2049, + "make_id": 1538, + "model_id": 2040, + "year_id": 2048, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2050, + "make_id": 1538, + "model_id": 2040, + "year_id": 2050, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2051, + "make_id": 1538, + "model_id": 2040, + "year_id": 2050, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2052, + "make_id": 1538, + "model_id": 2040, + "year_id": 2052, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2053, + "make_id": 1538, + "model_id": 2040, + "year_id": 2052, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2054, + "make_id": 1538, + "model_id": 2040, + "year_id": 2054, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2055, + "make_id": 1538, + "model_id": 2040, + "year_id": 2054, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2056, + "make_id": 1538, + "model_id": 2040, + "year_id": 2056, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2057, + "make_id": 1538, + "model_id": 2040, + "year_id": 2056, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2058, + "make_id": 1538, + "model_id": 2058, + "year_id": 2058, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2059, + "make_id": 1538, + "model_id": 2058, + "year_id": 2058, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2060, + "make_id": 1538, + "model_id": 2060, + "year_id": 2060, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2061, + "make_id": 1538, + "model_id": 2060, + "year_id": 2060, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2062, + "make_id": 1538, + "model_id": 2060, + "year_id": 2062, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2063, + "make_id": 1538, + "model_id": 2060, + "year_id": 2062, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2064, + "make_id": 1538, + "model_id": 2064, + "year_id": 2064, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2065, + "make_id": 1538, + "model_id": 2064, + "year_id": 2064, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2066, + "make_id": 1538, + "model_id": 2064, + "year_id": 2066, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2067, + "make_id": 1538, + "model_id": 2064, + "year_id": 2066, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2068, + "make_id": 1538, + "model_id": 2068, + "year_id": 2068, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2069, + "make_id": 1538, + "model_id": 2068, + "year_id": 2068, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2070, + "make_id": 1538, + "model_id": 2068, + "year_id": 2070, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2071, + "make_id": 1538, + "model_id": 2068, + "year_id": 2070, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2072, + "make_id": 1538, + "model_id": 2068, + "year_id": 2072, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2073, + "make_id": 1538, + "model_id": 2068, + "year_id": 2072, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2074, + "make_id": 1538, + "model_id": 2068, + "year_id": 2074, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2075, + "make_id": 1538, + "model_id": 2068, + "year_id": 2074, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2076, + "make_id": 1538, + "model_id": 2068, + "year_id": 2076, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2077, + "make_id": 1538, + "model_id": 2068, + "year_id": 2076, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2078, + "make_id": 1538, + "model_id": 2068, + "year_id": 2078, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2079, + "make_id": 1538, + "model_id": 2068, + "year_id": 2078, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2080, + "make_id": 1538, + "model_id": 2080, + "year_id": 2080, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2081, + "make_id": 1538, + "model_id": 2080, + "year_id": 2081, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2082, + "make_id": 1538, + "model_id": 2080, + "year_id": 2082, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2083, + "make_id": 1538, + "model_id": 2083, + "year_id": 2083, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2084, + "make_id": 1538, + "model_id": 2083, + "year_id": 2083, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2085, + "make_id": 1538, + "model_id": 2083, + "year_id": 2085, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2086, + "make_id": 1538, + "model_id": 2083, + "year_id": 2085, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2087, + "make_id": 1538, + "model_id": 2083, + "year_id": 2087, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2088, + "make_id": 1538, + "model_id": 2083, + "year_id": 2087, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2089, + "make_id": 1538, + "model_id": 2089, + "year_id": 2089, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2090, + "make_id": 1538, + "model_id": 2089, + "year_id": 2089, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2091, + "make_id": 1538, + "model_id": 2089, + "year_id": 2091, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2092, + "make_id": 1538, + "model_id": 2089, + "year_id": 2091, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2093, + "make_id": 1538, + "model_id": 2089, + "year_id": 2093, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2094, + "make_id": 1538, + "model_id": 2089, + "year_id": 2093, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2095, + "make_id": 1538, + "model_id": 2095, + "year_id": 2095, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2096, + "make_id": 1538, + "model_id": 2095, + "year_id": 2095, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2097, + "make_id": 1538, + "model_id": 2095, + "year_id": 2097, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2098, + "make_id": 1538, + "model_id": 2095, + "year_id": 2097, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2099, + "make_id": 1538, + "model_id": 2099, + "year_id": 2099, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2100, + "make_id": 1538, + "model_id": 2099, + "year_id": 2099, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2101, + "make_id": 1538, + "model_id": 2101, + "year_id": 2101, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2102, + "make_id": 1538, + "model_id": 2101, + "year_id": 2101, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2103, + "make_id": 1538, + "model_id": 2103, + "year_id": 2103, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2104, + "make_id": 1538, + "model_id": 2103, + "year_id": 2104, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2105, + "make_id": 1538, + "model_id": 2103, + "year_id": 2105, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2106, + "make_id": 1538, + "model_id": 2106, + "year_id": 2106, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2107, + "make_id": 1538, + "model_id": 2106, + "year_id": 2106, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2108, + "make_id": 1538, + "model_id": 2106, + "year_id": 2108, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2109, + "make_id": 1538, + "model_id": 2106, + "year_id": 2108, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2110, + "make_id": 1538, + "model_id": 2106, + "year_id": 2110, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2111, + "make_id": 1538, + "model_id": 2106, + "year_id": 2110, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2112, + "make_id": 1538, + "model_id": 2112, + "year_id": 2112, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2113, + "make_id": 1538, + "model_id": 2112, + "year_id": 2113, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2114, + "make_id": 1538, + "model_id": 2114, + "year_id": 2114, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2115, + "make_id": 1538, + "model_id": 2114, + "year_id": 2115, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2116, + "make_id": 1538, + "model_id": 2114, + "year_id": 2116, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2117, + "make_id": 1538, + "model_id": 2117, + "year_id": 2117, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2118, + "make_id": 1538, + "model_id": 2117, + "year_id": 2118, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2119, + "make_id": 1538, + "model_id": 2117, + "year_id": 2119, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2120, + "make_id": 1538, + "model_id": 2120, + "year_id": 2120, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2121, + "make_id": 1538, + "model_id": 2120, + "year_id": 2121, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2122, + "make_id": 1538, + "model_id": 2122, + "year_id": 2122, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2123, + "make_id": 1538, + "model_id": 2122, + "year_id": 2123, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2124, + "make_id": 1538, + "model_id": 2122, + "year_id": 2124, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2125, + "make_id": 1538, + "model_id": 2125, + "year_id": 2125, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2126, + "make_id": 1538, + "model_id": 2125, + "year_id": 2125, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2127, + "make_id": 1538, + "model_id": 2125, + "year_id": 2127, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2128, + "make_id": 1538, + "model_id": 2125, + "year_id": 2127, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2129, + "make_id": 1538, + "model_id": 2125, + "year_id": 2129, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2130, + "make_id": 1538, + "model_id": 2125, + "year_id": 2129, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2131, + "make_id": 1538, + "model_id": 2131, + "year_id": 2131, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2132, + "make_id": 1538, + "model_id": 2131, + "year_id": 2132, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2133, + "make_id": 1538, + "model_id": 2133, + "year_id": 2133, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2134, + "make_id": 1538, + "model_id": 2133, + "year_id": 2134, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2135, + "make_id": 1538, + "model_id": 2135, + "year_id": 2135, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2136, + "make_id": 1538, + "model_id": 2135, + "year_id": 2135, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2137, + "make_id": 1538, + "model_id": 2135, + "year_id": 2137, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2138, + "make_id": 1538, + "model_id": 2135, + "year_id": 2137, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2139, + "make_id": 1538, + "model_id": 2135, + "year_id": 2139, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2140, + "make_id": 1538, + "model_id": 2135, + "year_id": 2139, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2141, + "make_id": 1538, + "model_id": 2141, + "year_id": 2141, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2142, + "make_id": 1538, + "model_id": 2141, + "year_id": 2142, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2143, + "make_id": 1538, + "model_id": 2143, + "year_id": 2143, + "cylinders": 6, + "displacement": 2.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 2144, + "make_id": 1538, + "model_id": 2143, + "year_id": 2143, + "cylinders": 6, + "displacement": 3.2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 2145, + "make_id": 1538, + "model_id": 2143, + "year_id": 2143, + "cylinders": 6, + "displacement": 2.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 2146, + "make_id": 1538, + "model_id": 2143, + "year_id": 2143, + "cylinders": 6, + "displacement": 3.2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 2147, + "make_id": 1538, + "model_id": 2143, + "year_id": 2147, + "cylinders": 6, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2148, + "make_id": 1538, + "model_id": 2143, + "year_id": 2147, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2149, + "make_id": 1538, + "model_id": 2143, + "year_id": 2147, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2150, + "make_id": 1538, + "model_id": 2143, + "year_id": 2147, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2151, + "make_id": 1538, + "model_id": 2143, + "year_id": 2147, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2152, + "make_id": 1538, + "model_id": 2143, + "year_id": 2152, + "cylinders": 6, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2153, + "make_id": 1538, + "model_id": 2143, + "year_id": 2152, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2154, + "make_id": 1538, + "model_id": 2143, + "year_id": 2152, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2155, + "make_id": 1538, + "model_id": 2143, + "year_id": 2152, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2156, + "make_id": 1538, + "model_id": 2143, + "year_id": 2152, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2157, + "make_id": 1538, + "model_id": 2143, + "year_id": 2157, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2158, + "make_id": 1538, + "model_id": 2143, + "year_id": 2157, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2159, + "make_id": 1538, + "model_id": 2143, + "year_id": 2157, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2160, + "make_id": 1538, + "model_id": 2143, + "year_id": 2157, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2161, + "make_id": 1538, + "model_id": 2143, + "year_id": 2161, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2162, + "make_id": 1538, + "model_id": 2143, + "year_id": 2161, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2163, + "make_id": 1538, + "model_id": 2143, + "year_id": 2161, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2164, + "make_id": 1538, + "model_id": 2143, + "year_id": 2161, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2165, + "make_id": 1538, + "model_id": 2143, + "year_id": 2161, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2166, + "make_id": 1538, + "model_id": 2166, + "year_id": 2166, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2167, + "make_id": 1538, + "model_id": 2166, + "year_id": 2166, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2168, + "make_id": 1538, + "model_id": 2166, + "year_id": 2168, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2169, + "make_id": 1538, + "model_id": 2166, + "year_id": 2168, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2170, + "make_id": 1538, + "model_id": 2166, + "year_id": 2170, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2171, + "make_id": 1538, + "model_id": 2166, + "year_id": 2170, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2172, + "make_id": 1538, + "model_id": 2166, + "year_id": 2170, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2173, + "make_id": 1538, + "model_id": 2166, + "year_id": 2173, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2174, + "make_id": 1538, + "model_id": 2166, + "year_id": 2173, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2175, + "make_id": 1538, + "model_id": 2166, + "year_id": 2175, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2176, + "make_id": 1538, + "model_id": 2166, + "year_id": 2175, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2177, + "make_id": 1538, + "model_id": 2166, + "year_id": 2177, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2178, + "make_id": 1538, + "model_id": 2166, + "year_id": 2177, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2179, + "make_id": 1538, + "model_id": 2166, + "year_id": 2179, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2180, + "make_id": 1538, + "model_id": 2166, + "year_id": 2179, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2181, + "make_id": 1538, + "model_id": 2166, + "year_id": 2181, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2182, + "make_id": 1538, + "model_id": 2166, + "year_id": 2181, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2183, + "make_id": 1538, + "model_id": 2166, + "year_id": 2183, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2184, + "make_id": 1538, + "model_id": 2166, + "year_id": 2183, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2185, + "make_id": 1538, + "model_id": 2166, + "year_id": 2185, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2186, + "make_id": 1538, + "model_id": 2166, + "year_id": 2185, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2187, + "make_id": 1538, + "model_id": 2166, + "year_id": 2187, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2188, + "make_id": 1538, + "model_id": 2166, + "year_id": 2187, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2189, + "make_id": 1538, + "model_id": 2166, + "year_id": 2187, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2190, + "make_id": 1538, + "model_id": 2166, + "year_id": 2190, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2191, + "make_id": 1538, + "model_id": 2166, + "year_id": 2190, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2192, + "make_id": 1538, + "model_id": 2166, + "year_id": 2192, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2193, + "make_id": 1538, + "model_id": 2166, + "year_id": 2192, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2194, + "make_id": 1538, + "model_id": 2166, + "year_id": 2194, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2195, + "make_id": 1538, + "model_id": 2166, + "year_id": 2194, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2196, + "make_id": 1538, + "model_id": 2196, + "year_id": 2196, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2197, + "make_id": 1538, + "model_id": 2196, + "year_id": 2196, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2198, + "make_id": 1538, + "model_id": 2196, + "year_id": 2198, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2199, + "make_id": 1538, + "model_id": 2196, + "year_id": 2198, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2200, + "make_id": 1538, + "model_id": 2196, + "year_id": 2200, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2201, + "make_id": 1538, + "model_id": 2196, + "year_id": 2200, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2202, + "make_id": 1538, + "model_id": 2202, + "year_id": 2202, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2203, + "make_id": 1538, + "model_id": 2202, + "year_id": 2203, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2204, + "make_id": 1538, + "model_id": 2202, + "year_id": 2204, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2205, + "make_id": 1538, + "model_id": 2202, + "year_id": 2205, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2206, + "make_id": 1538, + "model_id": 2206, + "year_id": 2206, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2207, + "make_id": 1538, + "model_id": 2206, + "year_id": 2206, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2208, + "make_id": 1538, + "model_id": 2206, + "year_id": 2208, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2209, + "make_id": 1538, + "model_id": 2206, + "year_id": 2208, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2210, + "make_id": 1538, + "model_id": 2210, + "year_id": 2210, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2211, + "make_id": 1538, + "model_id": 2210, + "year_id": 2210, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2212, + "make_id": 1538, + "model_id": 2210, + "year_id": 2212, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2213, + "make_id": 1538, + "model_id": 2210, + "year_id": 2212, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2214, + "make_id": 1538, + "model_id": 2210, + "year_id": 2214, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2215, + "make_id": 1538, + "model_id": 2210, + "year_id": 2214, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2216, + "make_id": 1538, + "model_id": 2210, + "year_id": 2216, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2217, + "make_id": 1538, + "model_id": 2210, + "year_id": 2216, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2218, + "make_id": 1538, + "model_id": 2210, + "year_id": 2216, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2219, + "make_id": 1538, + "model_id": 2210, + "year_id": 2219, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2220, + "make_id": 1538, + "model_id": 2210, + "year_id": 2219, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2221, + "make_id": 1538, + "model_id": 2210, + "year_id": 2221, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2222, + "make_id": 1538, + "model_id": 2210, + "year_id": 2221, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2223, + "make_id": 1538, + "model_id": 2210, + "year_id": 2223, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2224, + "make_id": 1538, + "model_id": 2210, + "year_id": 2223, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2225, + "make_id": 1538, + "model_id": 2210, + "year_id": 2225, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2226, + "make_id": 1538, + "model_id": 2210, + "year_id": 2226, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2227, + "make_id": 1538, + "model_id": 2210, + "year_id": 2227, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2228, + "make_id": 1538, + "model_id": 2210, + "year_id": 2228, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2229, + "make_id": 1538, + "model_id": 2210, + "year_id": 2229, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2230, + "make_id": 1538, + "model_id": 2210, + "year_id": 2230, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2231, + "make_id": 1538, + "model_id": 2231, + "year_id": 2231, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2232, + "make_id": 1538, + "model_id": 2231, + "year_id": 2231, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2233, + "make_id": 1538, + "model_id": 2231, + "year_id": 2231, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2234, + "make_id": 1538, + "model_id": 2234, + "year_id": 2234, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2235, + "make_id": 1538, + "model_id": 2234, + "year_id": 2234, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2236, + "make_id": 1538, + "model_id": 2236, + "year_id": 2236, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2237, + "make_id": 1538, + "model_id": 2236, + "year_id": 2236, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2238, + "make_id": 1538, + "model_id": 2236, + "year_id": 2238, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2239, + "make_id": 1538, + "model_id": 2236, + "year_id": 2238, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2240, + "make_id": 1538, + "model_id": 2236, + "year_id": 2240, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2241, + "make_id": 1538, + "model_id": 2236, + "year_id": 2241, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2242, + "make_id": 1538, + "model_id": 2236, + "year_id": 2242, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2243, + "make_id": 1538, + "model_id": 2236, + "year_id": 2243, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2244, + "make_id": 1538, + "model_id": 2236, + "year_id": 2244, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2245, + "make_id": 1538, + "model_id": 2245, + "year_id": 2245, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2246, + "make_id": 1538, + "model_id": 2245, + "year_id": 2245, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2247, + "make_id": 1538, + "model_id": 2247, + "year_id": 2247, + "cylinders": 8, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2248, + "make_id": 1538, + "model_id": 2247, + "year_id": 2247, + "cylinders": 8, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2249, + "make_id": 1538, + "model_id": 2247, + "year_id": 2247, + "cylinders": 8, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2250, + "make_id": 1538, + "model_id": 2247, + "year_id": 2247, + "cylinders": 8, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2251, + "make_id": 1538, + "model_id": 2247, + "year_id": 2251, + "cylinders": 8, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2252, + "make_id": 1538, + "model_id": 2247, + "year_id": 2251, + "cylinders": 8, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2253, + "make_id": 1538, + "model_id": 2247, + "year_id": 2253, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2254, + "make_id": 1538, + "model_id": 2247, + "year_id": 2253, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2255, + "make_id": 1538, + "model_id": 2247, + "year_id": 2255, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2256, + "make_id": 1538, + "model_id": 2247, + "year_id": 2255, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2257, + "make_id": 1538, + "model_id": 2247, + "year_id": 2257, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2258, + "make_id": 1538, + "model_id": 2247, + "year_id": 2257, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2259, + "make_id": 1538, + "model_id": 2247, + "year_id": 2259, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2260, + "make_id": 1538, + "model_id": 2247, + "year_id": 2259, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2261, + "make_id": 1538, + "model_id": 2247, + "year_id": 2259, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2262, + "make_id": 1538, + "model_id": 2247, + "year_id": 2262, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2263, + "make_id": 1538, + "model_id": 2247, + "year_id": 2262, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2264, + "make_id": 1538, + "model_id": 2247, + "year_id": 2262, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2265, + "make_id": 1538, + "model_id": 2247, + "year_id": 2265, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2266, + "make_id": 1538, + "model_id": 2247, + "year_id": 2265, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2267, + "make_id": 1538, + "model_id": 2247, + "year_id": 2265, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2268, + "make_id": 1538, + "model_id": 2247, + "year_id": 2268, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2269, + "make_id": 1538, + "model_id": 2247, + "year_id": 2268, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2270, + "make_id": 1538, + "model_id": 2247, + "year_id": 2268, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2271, + "make_id": 1538, + "model_id": 2271, + "year_id": 2271, + "cylinders": 8, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2272, + "make_id": 1538, + "model_id": 2271, + "year_id": 2271, + "cylinders": 8, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2273, + "make_id": 1538, + "model_id": 2271, + "year_id": 2273, + "cylinders": 8, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2274, + "make_id": 1538, + "model_id": 2274, + "year_id": 2274, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2275, + "make_id": 1538, + "model_id": 2274, + "year_id": 2274, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2276, + "make_id": 1538, + "model_id": 2274, + "year_id": 2276, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2277, + "make_id": 1538, + "model_id": 2274, + "year_id": 2276, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2278, + "make_id": 1538, + "model_id": 2278, + "year_id": 2278, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2279, + "make_id": 1538, + "model_id": 2278, + "year_id": 2278, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2280, + "make_id": 1538, + "model_id": 2278, + "year_id": 2280, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2281, + "make_id": 1538, + "model_id": 2278, + "year_id": 2280, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2282, + "make_id": 1538, + "model_id": 2282, + "year_id": 2282, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2283, + "make_id": 1538, + "model_id": 2282, + "year_id": 2283, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2284, + "make_id": 1538, + "model_id": 2282, + "year_id": 2284, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2285, + "make_id": 1538, + "model_id": 2285, + "year_id": 2285, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2286, + "make_id": 1538, + "model_id": 2285, + "year_id": 2286, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2287, + "make_id": 1538, + "model_id": 2285, + "year_id": 2287, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2288, + "make_id": 1538, + "model_id": 2288, + "year_id": 2288, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2289, + "make_id": 1538, + "model_id": 2288, + "year_id": 2288, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2290, + "make_id": 1538, + "model_id": 2288, + "year_id": 2288, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2291, + "make_id": 1538, + "model_id": 2288, + "year_id": 2291, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2292, + "make_id": 1538, + "model_id": 2288, + "year_id": 2291, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2293, + "make_id": 1538, + "model_id": 2288, + "year_id": 2293, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2294, + "make_id": 1538, + "model_id": 2288, + "year_id": 2293, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2295, + "make_id": 1538, + "model_id": 2288, + "year_id": 2295, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2296, + "make_id": 1538, + "model_id": 2288, + "year_id": 2295, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2297, + "make_id": 1538, + "model_id": 2288, + "year_id": 2297, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2298, + "make_id": 1538, + "model_id": 2288, + "year_id": 2297, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2299, + "make_id": 1538, + "model_id": 2288, + "year_id": 2299, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2300, + "make_id": 1538, + "model_id": 2288, + "year_id": 2299, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2301, + "make_id": 1538, + "model_id": 2288, + "year_id": 2301, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2302, + "make_id": 1538, + "model_id": 2288, + "year_id": 2301, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2303, + "make_id": 1538, + "model_id": 2288, + "year_id": 2303, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2304, + "make_id": 1538, + "model_id": 2288, + "year_id": 2303, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2305, + "make_id": 1538, + "model_id": 2288, + "year_id": 2305, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2306, + "make_id": 1538, + "model_id": 2288, + "year_id": 2305, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2307, + "make_id": 1538, + "model_id": 2288, + "year_id": 2307, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2308, + "make_id": 1538, + "model_id": 2288, + "year_id": 2307, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2309, + "make_id": 1538, + "model_id": 2288, + "year_id": 2309, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2310, + "make_id": 1538, + "model_id": 2288, + "year_id": 2309, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2311, + "make_id": 1538, + "model_id": 2288, + "year_id": 2311, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2312, + "make_id": 1538, + "model_id": 2288, + "year_id": 2311, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2313, + "make_id": 1538, + "model_id": 2288, + "year_id": 2313, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2314, + "make_id": 1538, + "model_id": 2288, + "year_id": 2314, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2315, + "make_id": 1538, + "model_id": 2315, + "year_id": 2315, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2316, + "make_id": 1538, + "model_id": 2315, + "year_id": 2316, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2317, + "make_id": 1538, + "model_id": 2315, + "year_id": 2317, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2318, + "make_id": 1538, + "model_id": 2315, + "year_id": 2318, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2319, + "make_id": 1538, + "model_id": 2315, + "year_id": 2319, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2320, + "make_id": 1538, + "model_id": 2315, + "year_id": 2320, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2321, + "make_id": 1538, + "model_id": 2315, + "year_id": 2321, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2322, + "make_id": 1538, + "model_id": 2322, + "year_id": 2322, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2323, + "make_id": 1538, + "model_id": 2322, + "year_id": 2322, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2324, + "make_id": 1538, + "model_id": 2322, + "year_id": 2324, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2325, + "make_id": 1538, + "model_id": 2322, + "year_id": 2324, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2326, + "make_id": 1538, + "model_id": 2326, + "year_id": 2326, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2327, + "make_id": 1538, + "model_id": 2326, + "year_id": 2326, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2328, + "make_id": 1538, + "model_id": 2326, + "year_id": 2328, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2329, + "make_id": 1538, + "model_id": 2326, + "year_id": 2328, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2330, + "make_id": 1538, + "model_id": 2326, + "year_id": 2330, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2331, + "make_id": 1538, + "model_id": 2326, + "year_id": 2331, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2332, + "make_id": 1538, + "model_id": 2326, + "year_id": 2332, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2333, + "make_id": 1538, + "model_id": 2326, + "year_id": 2333, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2334, + "make_id": 1538, + "model_id": 2326, + "year_id": 2334, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2335, + "make_id": 1538, + "model_id": 2326, + "year_id": 2335, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2336, + "make_id": 1538, + "model_id": 2336, + "year_id": 2336, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2337, + "make_id": 1538, + "model_id": 2336, + "year_id": 2337, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2338, + "make_id": 1538, + "model_id": 2336, + "year_id": 2338, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2339, + "make_id": 1538, + "model_id": 2336, + "year_id": 2339, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2340, + "make_id": 1538, + "model_id": 2336, + "year_id": 2340, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2341, + "make_id": 1538, + "model_id": 2336, + "year_id": 2341, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2342, + "make_id": 1538, + "model_id": 2342, + "year_id": 2342, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2343, + "make_id": 1538, + "model_id": 2342, + "year_id": 2342, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2344, + "make_id": 1538, + "model_id": 2344, + "year_id": 2344, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2345, + "make_id": 1538, + "model_id": 2344, + "year_id": 2344, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2346, + "make_id": 1538, + "model_id": 2346, + "year_id": 2346, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2347, + "make_id": 1538, + "model_id": 2346, + "year_id": 2347, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2348, + "make_id": 1538, + "model_id": 2346, + "year_id": 2347, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2349, + "make_id": 1538, + "model_id": 2346, + "year_id": 2349, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2350, + "make_id": 1538, + "model_id": 2346, + "year_id": 2349, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2351, + "make_id": 1538, + "model_id": 2346, + "year_id": 2351, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2352, + "make_id": 1538, + "model_id": 2346, + "year_id": 2351, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2353, + "make_id": 1538, + "model_id": 2346, + "year_id": 2353, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2354, + "make_id": 1538, + "model_id": 2346, + "year_id": 2353, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2355, + "make_id": 1538, + "model_id": 2346, + "year_id": 2353, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2356, + "make_id": 1538, + "model_id": 2346, + "year_id": 2356, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2357, + "make_id": 1538, + "model_id": 2346, + "year_id": 2356, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2358, + "make_id": 1538, + "model_id": 2346, + "year_id": 2356, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2359, + "make_id": 1538, + "model_id": 2346, + "year_id": 2359, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2360, + "make_id": 1538, + "model_id": 2346, + "year_id": 2359, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2361, + "make_id": 1538, + "model_id": 2346, + "year_id": 2359, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2362, + "make_id": 1538, + "model_id": 2346, + "year_id": 2362, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2363, + "make_id": 1538, + "model_id": 2346, + "year_id": 2362, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2364, + "make_id": 1538, + "model_id": 2346, + "year_id": 2362, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2365, + "make_id": 1538, + "model_id": 2346, + "year_id": 2365, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2366, + "make_id": 1538, + "model_id": 2346, + "year_id": 2365, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2367, + "make_id": 1538, + "model_id": 2346, + "year_id": 2365, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2368, + "make_id": 1538, + "model_id": 2368, + "year_id": 2368, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2369, + "make_id": 1538, + "model_id": 2368, + "year_id": 2369, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2370, + "make_id": 1538, + "model_id": 2368, + "year_id": 2370, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2371, + "make_id": 1538, + "model_id": 2368, + "year_id": 2371, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2372, + "make_id": 1538, + "model_id": 2372, + "year_id": 2372, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2373, + "make_id": 1538, + "model_id": 2373, + "year_id": 2373, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2374, + "make_id": 1538, + "model_id": 2373, + "year_id": 2373, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2375, + "make_id": 1538, + "model_id": 2373, + "year_id": 2373, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2376, + "make_id": 1538, + "model_id": 2373, + "year_id": 2376, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2377, + "make_id": 1538, + "model_id": 2373, + "year_id": 2376, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2378, + "make_id": 1538, + "model_id": 2373, + "year_id": 2376, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2379, + "make_id": 1538, + "model_id": 2379, + "year_id": 2379, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2380, + "make_id": 1538, + "model_id": 2380, + "year_id": 2380, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2381, + "make_id": 1538, + "model_id": 2380, + "year_id": 2380, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2382, + "make_id": 1538, + "model_id": 2380, + "year_id": 2380, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2383, + "make_id": 1538, + "model_id": 2380, + "year_id": 2383, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2384, + "make_id": 1538, + "model_id": 2380, + "year_id": 2383, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2385, + "make_id": 1538, + "model_id": 2380, + "year_id": 2383, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2386, + "make_id": 1538, + "model_id": 2380, + "year_id": 2386, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2387, + "make_id": 1538, + "model_id": 2380, + "year_id": 2386, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2388, + "make_id": 1538, + "model_id": 2380, + "year_id": 2388, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2389, + "make_id": 1538, + "model_id": 2380, + "year_id": 2388, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2390, + "make_id": 1538, + "model_id": 2380, + "year_id": 2390, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2391, + "make_id": 1538, + "model_id": 2380, + "year_id": 2390, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2392, + "make_id": 1538, + "model_id": 2380, + "year_id": 2392, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2393, + "make_id": 1538, + "model_id": 2380, + "year_id": 2392, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2394, + "make_id": 1538, + "model_id": 2380, + "year_id": 2394, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2395, + "make_id": 1538, + "model_id": 2380, + "year_id": 2394, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2396, + "make_id": 1538, + "model_id": 2380, + "year_id": 2396, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2397, + "make_id": 1538, + "model_id": 2380, + "year_id": 2396, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2398, + "make_id": 1538, + "model_id": 2380, + "year_id": 2398, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2399, + "make_id": 1538, + "model_id": 2380, + "year_id": 2399, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2400, + "make_id": 1538, + "model_id": 2380, + "year_id": 2400, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2401, + "make_id": 1538, + "model_id": 2401, + "year_id": 2401, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2402, + "make_id": 1538, + "model_id": 2401, + "year_id": 2402, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2403, + "make_id": 1538, + "model_id": 2401, + "year_id": 2403, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2404, + "make_id": 1538, + "model_id": 2401, + "year_id": 2404, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2405, + "make_id": 1538, + "model_id": 2401, + "year_id": 2405, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2406, + "make_id": 1538, + "model_id": 2406, + "year_id": 2406, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2407, + "make_id": 1538, + "model_id": 2406, + "year_id": 2407, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2408, + "make_id": 1538, + "model_id": 2406, + "year_id": 2408, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2409, + "make_id": 1538, + "model_id": 2406, + "year_id": 2409, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2410, + "make_id": 1538, + "model_id": 2406, + "year_id": 2410, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2411, + "make_id": 1538, + "model_id": 2406, + "year_id": 2411, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2412, + "make_id": 1538, + "model_id": 2412, + "year_id": 2412, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2413, + "make_id": 1538, + "model_id": 2412, + "year_id": 2413, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2414, + "make_id": 1538, + "model_id": 2412, + "year_id": 2414, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2415, + "make_id": 1538, + "model_id": 2412, + "year_id": 2415, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2416, + "make_id": 1538, + "model_id": 2412, + "year_id": 2416, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2417, + "make_id": 1538, + "model_id": 2412, + "year_id": 2417, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2418, + "make_id": 1538, + "model_id": 2418, + "year_id": 2418, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2419, + "make_id": 1538, + "model_id": 2419, + "year_id": 2419, + "cylinders": 6, + "displacement": 3.2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 2420, + "make_id": 1538, + "model_id": 2419, + "year_id": 2419, + "cylinders": 6, + "displacement": 3.2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 2421, + "make_id": 1538, + "model_id": 2419, + "year_id": 2421, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2422, + "make_id": 1538, + "model_id": 2419, + "year_id": 2421, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2423, + "make_id": 1538, + "model_id": 2419, + "year_id": 2423, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2424, + "make_id": 1538, + "model_id": 2419, + "year_id": 2423, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2425, + "make_id": 1538, + "model_id": 2419, + "year_id": 2425, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2426, + "make_id": 1538, + "model_id": 2419, + "year_id": 2425, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2427, + "make_id": 1538, + "model_id": 2419, + "year_id": 2425, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2428, + "make_id": 1538, + "model_id": 2419, + "year_id": 2428, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2429, + "make_id": 1538, + "model_id": 2419, + "year_id": 2428, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2430, + "make_id": 1538, + "model_id": 2419, + "year_id": 2428, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2431, + "make_id": 1538, + "model_id": 2431, + "year_id": 2431, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2432, + "make_id": 1538, + "model_id": 2431, + "year_id": 2431, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2433, + "make_id": 1538, + "model_id": 2433, + "year_id": 2433, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2434, + "make_id": 1538, + "model_id": 2433, + "year_id": 2434, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2435, + "make_id": 1538, + "model_id": 2433, + "year_id": 2435, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2436, + "make_id": 1538, + "model_id": 2433, + "year_id": 2436, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2437, + "make_id": 1538, + "model_id": 2433, + "year_id": 2437, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2438, + "make_id": 1538, + "model_id": 2433, + "year_id": 2438, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2439, + "make_id": 1538, + "model_id": 2439, + "year_id": 2439, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2440, + "make_id": 1538, + "model_id": 2439, + "year_id": 2440, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2441, + "make_id": 1538, + "model_id": 2439, + "year_id": 2441, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2442, + "make_id": 1538, + "model_id": 2439, + "year_id": 2442, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2443, + "make_id": 1538, + "model_id": 2439, + "year_id": 2443, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2444, + "make_id": 1538, + "model_id": 2439, + "year_id": 2444, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2445, + "make_id": 1538, + "model_id": 2445, + "year_id": 2445, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2446, + "make_id": 1538, + "model_id": 2445, + "year_id": 2446, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2447, + "make_id": 1538, + "model_id": 2445, + "year_id": 2447, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2448, + "make_id": 1538, + "model_id": 2445, + "year_id": 2448, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2449, + "make_id": 1538, + "model_id": 2445, + "year_id": 2449, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2450, + "make_id": 1538, + "model_id": 2450, + "year_id": 2450, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2451, + "make_id": 1538, + "model_id": 2450, + "year_id": 2451, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2452, + "make_id": 1538, + "model_id": 2450, + "year_id": 2452, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2453, + "make_id": 1538, + "model_id": 2450, + "year_id": 2453, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2454, + "make_id": 1538, + "model_id": 2454, + "year_id": 2454, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2455, + "make_id": 1538, + "model_id": 2454, + "year_id": 2455, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2456, + "make_id": 1538, + "model_id": 2454, + "year_id": 2456, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2457, + "make_id": 1538, + "model_id": 2454, + "year_id": 2457, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2458, + "make_id": 1538, + "model_id": 2458, + "year_id": 2458, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2459, + "make_id": 1538, + "model_id": 2458, + "year_id": 2459, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2460, + "make_id": 1538, + "model_id": 2458, + "year_id": 2460, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2461, + "make_id": 1538, + "model_id": 2458, + "year_id": 2461, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2462, + "make_id": 1538, + "model_id": 2462, + "year_id": 2462, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2463, + "make_id": 1538, + "model_id": 2462, + "year_id": 2462, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2464, + "make_id": 1538, + "model_id": 2462, + "year_id": 2462, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2465, + "make_id": 1538, + "model_id": 2462, + "year_id": 2465, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2466, + "make_id": 1538, + "model_id": 2462, + "year_id": 2465, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2467, + "make_id": 1538, + "model_id": 2462, + "year_id": 2465, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2468, + "make_id": 1538, + "model_id": 2468, + "year_id": 2468, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2469, + "make_id": 1538, + "model_id": 2468, + "year_id": 2468, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2470, + "make_id": 1538, + "model_id": 2468, + "year_id": 2468, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2471, + "make_id": 1538, + "model_id": 2468, + "year_id": 2471, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2472, + "make_id": 1538, + "model_id": 2468, + "year_id": 2471, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2473, + "make_id": 1538, + "model_id": 2468, + "year_id": 2471, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2474, + "make_id": 1538, + "model_id": 2474, + "year_id": 2474, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2475, + "make_id": 1538, + "model_id": 2474, + "year_id": 2474, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2476, + "make_id": 1538, + "model_id": 2474, + "year_id": 2474, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2477, + "make_id": 1538, + "model_id": 2474, + "year_id": 2477, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2478, + "make_id": 1538, + "model_id": 2474, + "year_id": 2477, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2479, + "make_id": 1538, + "model_id": 2474, + "year_id": 2477, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2480, + "make_id": 1538, + "model_id": 2474, + "year_id": 2480, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2481, + "make_id": 1538, + "model_id": 2474, + "year_id": 2480, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2482, + "make_id": 1538, + "model_id": 2474, + "year_id": 2482, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2483, + "make_id": 1538, + "model_id": 2474, + "year_id": 2482, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2484, + "make_id": 1538, + "model_id": 2474, + "year_id": 2484, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2485, + "make_id": 1538, + "model_id": 2474, + "year_id": 2484, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2486, + "make_id": 1538, + "model_id": 2486, + "year_id": 2486, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2487, + "make_id": 1538, + "model_id": 2486, + "year_id": 2486, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2488, + "make_id": 1538, + "model_id": 2486, + "year_id": 2486, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2489, + "make_id": 1538, + "model_id": 2486, + "year_id": 2489, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2490, + "make_id": 1538, + "model_id": 2486, + "year_id": 2489, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2491, + "make_id": 1538, + "model_id": 2486, + "year_id": 2489, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2492, + "make_id": 1538, + "model_id": 2486, + "year_id": 2492, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2493, + "make_id": 1538, + "model_id": 2486, + "year_id": 2492, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2494, + "make_id": 1538, + "model_id": 2486, + "year_id": 2494, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2495, + "make_id": 1538, + "model_id": 2486, + "year_id": 2494, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2496, + "make_id": 1538, + "model_id": 2486, + "year_id": 2496, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2497, + "make_id": 1538, + "model_id": 2486, + "year_id": 2496, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2498, + "make_id": 1538, + "model_id": 2498, + "year_id": 2498, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2499, + "make_id": 1538, + "model_id": 2498, + "year_id": 2498, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2500, + "make_id": 1538, + "model_id": 2498, + "year_id": 2500, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2501, + "make_id": 1538, + "model_id": 2498, + "year_id": 2501, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2502, + "make_id": 1538, + "model_id": 2498, + "year_id": 2502, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2503, + "make_id": 1538, + "model_id": 2498, + "year_id": 2503, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2504, + "make_id": 1538, + "model_id": 2504, + "year_id": 2504, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2505, + "make_id": 1538, + "model_id": 2504, + "year_id": 2505, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2506, + "make_id": 1538, + "model_id": 2506, + "year_id": 2506, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2507, + "make_id": 1538, + "model_id": 2506, + "year_id": 2506, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2508, + "make_id": 1538, + "model_id": 2506, + "year_id": 2508, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2509, + "make_id": 1538, + "model_id": 2506, + "year_id": 2509, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2510, + "make_id": 1538, + "model_id": 2506, + "year_id": 2510, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2511, + "make_id": 1538, + "model_id": 2506, + "year_id": 2511, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2512, + "make_id": 1538, + "model_id": 2512, + "year_id": 2512, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2513, + "make_id": 1538, + "model_id": 2512, + "year_id": 2513, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2514, + "make_id": 1538, + "model_id": 2514, + "year_id": 2514, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2515, + "make_id": 1538, + "model_id": 2514, + "year_id": 2515, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2516, + "make_id": 1538, + "model_id": 2514, + "year_id": 2516, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2517, + "make_id": 1538, + "model_id": 2514, + "year_id": 2517, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2518, + "make_id": 1538, + "model_id": 2518, + "year_id": 2518, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2519, + "make_id": 1538, + "model_id": 2518, + "year_id": 2519, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2520, + "make_id": 1538, + "model_id": 2518, + "year_id": 2520, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2521, + "make_id": 1538, + "model_id": 2518, + "year_id": 2521, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2522, + "make_id": 1538, + "model_id": 2522, + "year_id": 2522, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2523, + "make_id": 1538, + "model_id": 2522, + "year_id": 2523, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2524, + "make_id": 1538, + "model_id": 2522, + "year_id": 2524, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2525, + "make_id": 1538, + "model_id": 2522, + "year_id": 2525, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2526, + "make_id": 1538, + "model_id": 2526, + "year_id": 2526, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2527, + "make_id": 1538, + "model_id": 2526, + "year_id": 2527, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2528, + "make_id": 1538, + "model_id": 2526, + "year_id": 2528, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2529, + "make_id": 1538, + "model_id": 2526, + "year_id": 2529, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2530, + "make_id": 1538, + "model_id": 2526, + "year_id": 2530, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2531, + "make_id": 1538, + "model_id": 2531, + "year_id": 2531, + "cylinders": 6, + "displacement": 3.2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 2532, + "make_id": 1538, + "model_id": 2531, + "year_id": 2531, + "cylinders": 6, + "displacement": 3.2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 2533, + "make_id": 1538, + "model_id": 2531, + "year_id": 2533, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2534, + "make_id": 1538, + "model_id": 2531, + "year_id": 2533, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2535, + "make_id": 1538, + "model_id": 2531, + "year_id": 2535, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2536, + "make_id": 1538, + "model_id": 2531, + "year_id": 2535, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2537, + "make_id": 1538, + "model_id": 2531, + "year_id": 2537, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2538, + "make_id": 1538, + "model_id": 2531, + "year_id": 2537, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2539, + "make_id": 1538, + "model_id": 2531, + "year_id": 2539, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2540, + "make_id": 1538, + "model_id": 2531, + "year_id": 2539, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2541, + "make_id": 1538, + "model_id": 2541, + "year_id": 2541, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2542, + "make_id": 1538, + "model_id": 2541, + "year_id": 2541, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2543, + "make_id": 1538, + "model_id": 2541, + "year_id": 2541, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2544, + "make_id": 1538, + "model_id": 2541, + "year_id": 2544, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2545, + "make_id": 1538, + "model_id": 2541, + "year_id": 2544, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2546, + "make_id": 1538, + "model_id": 2541, + "year_id": 2546, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2547, + "make_id": 1538, + "model_id": 2541, + "year_id": 2546, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2548, + "make_id": 1538, + "model_id": 2541, + "year_id": 2548, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2549, + "make_id": 1538, + "model_id": 2549, + "year_id": 2549, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2550, + "make_id": 1538, + "model_id": 2550, + "year_id": 2550, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2551, + "make_id": 1538, + "model_id": 2550, + "year_id": 2550, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2552, + "make_id": 1538, + "model_id": 2550, + "year_id": 2552, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2553, + "make_id": 1538, + "model_id": 2550, + "year_id": 2553, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2554, + "make_id": 1538, + "model_id": 2550, + "year_id": 2553, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2555, + "make_id": 1538, + "model_id": 2550, + "year_id": 2555, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2556, + "make_id": 1538, + "model_id": 2550, + "year_id": 2555, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2557, + "make_id": 1538, + "model_id": 2557, + "year_id": 2557, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2558, + "make_id": 1538, + "model_id": 2557, + "year_id": 2558, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2559, + "make_id": 1538, + "model_id": 2557, + "year_id": 2559, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2560, + "make_id": 1538, + "model_id": 2557, + "year_id": 2560, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2561, + "make_id": 1538, + "model_id": 2557, + "year_id": 2561, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2562, + "make_id": 1538, + "model_id": 2557, + "year_id": 2561, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2563, + "make_id": 1538, + "model_id": 2557, + "year_id": 2563, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2564, + "make_id": 1538, + "model_id": 2557, + "year_id": 2563, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2565, + "make_id": 1538, + "model_id": 2557, + "year_id": 2565, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2566, + "make_id": 1538, + "model_id": 2557, + "year_id": 2566, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2567, + "make_id": 1538, + "model_id": 2557, + "year_id": 2567, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2568, + "make_id": 1538, + "model_id": 2557, + "year_id": 2568, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2569, + "make_id": 1538, + "model_id": 2557, + "year_id": 2569, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2570, + "make_id": 1538, + "model_id": 2557, + "year_id": 2570, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2571, + "make_id": 1538, + "model_id": 2571, + "year_id": 2571, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2572, + "make_id": 1538, + "model_id": 2572, + "year_id": 2572, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2573, + "make_id": 1538, + "model_id": 2572, + "year_id": 2572, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2574, + "make_id": 1538, + "model_id": 2574, + "year_id": 2574, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2575, + "make_id": 1538, + "model_id": 2574, + "year_id": 2575, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2576, + "make_id": 1538, + "model_id": 2574, + "year_id": 2576, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2577, + "make_id": 1538, + "model_id": 2574, + "year_id": 2577, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2578, + "make_id": 1538, + "model_id": 2574, + "year_id": 2578, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2579, + "make_id": 1538, + "model_id": 2574, + "year_id": 2579, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2580, + "make_id": 1538, + "model_id": 2574, + "year_id": 2580, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2581, + "make_id": 1538, + "model_id": 2574, + "year_id": 2581, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2582, + "make_id": 1538, + "model_id": 2582, + "year_id": 2582, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2583, + "make_id": 1538, + "model_id": 2583, + "year_id": 2583, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2584, + "make_id": 1538, + "model_id": 2584, + "year_id": 2584, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2585, + "make_id": 1538, + "model_id": 2584, + "year_id": 2585, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2586, + "make_id": 1538, + "model_id": 2584, + "year_id": 2586, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2587, + "make_id": 1538, + "model_id": 2584, + "year_id": 2587, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2588, + "make_id": 1538, + "model_id": 2584, + "year_id": 2588, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2589, + "make_id": 1538, + "model_id": 2589, + "year_id": 2589, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2590, + "make_id": 1538, + "model_id": 2589, + "year_id": 2590, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2591, + "make_id": 1538, + "model_id": 2589, + "year_id": 2591, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2592, + "make_id": 1538, + "model_id": 2592, + "year_id": 2592, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2593, + "make_id": 1538, + "model_id": 2592, + "year_id": 2593, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2594, + "make_id": 1538, + "model_id": 2592, + "year_id": 2594, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2595, + "make_id": 1538, + "model_id": 2592, + "year_id": 2595, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2596, + "make_id": 1538, + "model_id": 2596, + "year_id": 2596, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2597, + "make_id": 1538, + "model_id": 2596, + "year_id": 2597, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2598, + "make_id": 1538, + "model_id": 2596, + "year_id": 2598, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2599, + "make_id": 1538, + "model_id": 2596, + "year_id": 2599, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2600, + "make_id": 1538, + "model_id": 2600, + "year_id": 2600, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2601, + "make_id": 1538, + "model_id": 2601, + "year_id": 2601, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2602, + "make_id": 1538, + "model_id": 2601, + "year_id": 2602, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2603, + "make_id": 1538, + "model_id": 2601, + "year_id": 2603, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2604, + "make_id": 1538, + "model_id": 2601, + "year_id": 2604, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2605, + "make_id": 1538, + "model_id": 2601, + "year_id": 2605, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2606, + "make_id": 1538, + "model_id": 2601, + "year_id": 2606, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2607, + "make_id": 1538, + "model_id": 2601, + "year_id": 2607, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2608, + "make_id": 1538, + "model_id": 2601, + "year_id": 2608, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2609, + "make_id": 1538, + "model_id": 2601, + "year_id": 2609, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2610, + "make_id": 1538, + "model_id": 2601, + "year_id": 2610, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2611, + "make_id": 1538, + "model_id": 2601, + "year_id": 2611, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2612, + "make_id": 1538, + "model_id": 2601, + "year_id": 2612, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2613, + "make_id": 1538, + "model_id": 2613, + "year_id": 2613, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2614, + "make_id": 1538, + "model_id": 2613, + "year_id": 2614, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2615, + "make_id": 1538, + "model_id": 2613, + "year_id": 2615, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2616, + "make_id": 1538, + "model_id": 2613, + "year_id": 2616, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2617, + "make_id": 1538, + "model_id": 2613, + "year_id": 2617, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2618, + "make_id": 1538, + "model_id": 2613, + "year_id": 2618, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2619, + "make_id": 1538, + "model_id": 2613, + "year_id": 2619, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2620, + "make_id": 1538, + "model_id": 2620, + "year_id": 2620, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2621, + "make_id": 1538, + "model_id": 2620, + "year_id": 2620, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2622, + "make_id": 1538, + "model_id": 2620, + "year_id": 2622, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2623, + "make_id": 1538, + "model_id": 2620, + "year_id": 2623, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2624, + "make_id": 1538, + "model_id": 2620, + "year_id": 2623, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2625, + "make_id": 1538, + "model_id": 2620, + "year_id": 2625, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2626, + "make_id": 1538, + "model_id": 2620, + "year_id": 2626, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2627, + "make_id": 1538, + "model_id": 2620, + "year_id": 2627, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2628, + "make_id": 1538, + "model_id": 2620, + "year_id": 2628, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2629, + "make_id": 1538, + "model_id": 2620, + "year_id": 2629, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2630, + "make_id": 1538, + "model_id": 2620, + "year_id": 2630, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2631, + "make_id": 1538, + "model_id": 2620, + "year_id": 2631, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2632, + "make_id": 1538, + "model_id": 2620, + "year_id": 2632, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2633, + "make_id": 1538, + "model_id": 2620, + "year_id": 2633, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2634, + "make_id": 1538, + "model_id": 2634, + "year_id": 2634, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2635, + "make_id": 1538, + "model_id": 2635, + "year_id": 2635, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2636, + "make_id": 1538, + "model_id": 2635, + "year_id": 2636, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2637, + "make_id": 1538, + "model_id": 2635, + "year_id": 2637, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2638, + "make_id": 1538, + "model_id": 2635, + "year_id": 2638, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2639, + "make_id": 1538, + "model_id": 2639, + "year_id": 2639, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2640, + "make_id": 1538, + "model_id": 2639, + "year_id": 2640, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2641, + "make_id": 1538, + "model_id": 2639, + "year_id": 2641, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2642, + "make_id": 1538, + "model_id": 2639, + "year_id": 2642, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2643, + "make_id": 1538, + "model_id": 2639, + "year_id": 2643, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2644, + "make_id": 1538, + "model_id": 2639, + "year_id": 2644, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2645, + "make_id": 1538, + "model_id": 2645, + "year_id": 2645, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2646, + "make_id": 1538, + "model_id": 2645, + "year_id": 2646, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2647, + "make_id": 1538, + "model_id": 2645, + "year_id": 2647, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2648, + "make_id": 1538, + "model_id": 2645, + "year_id": 2648, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2649, + "make_id": 1538, + "model_id": 2645, + "year_id": 2649, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2650, + "make_id": 1538, + "model_id": 2645, + "year_id": 2650, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2651, + "make_id": 1538, + "model_id": 2651, + "year_id": 2651, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2652, + "make_id": 1538, + "model_id": 2651, + "year_id": 2652, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2653, + "make_id": 1538, + "model_id": 2651, + "year_id": 2653, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2654, + "make_id": 1538, + "model_id": 2654, + "year_id": 2654, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2655, + "make_id": 1538, + "model_id": 2654, + "year_id": 2655, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2656, + "make_id": 1538, + "model_id": 2654, + "year_id": 2656, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2657, + "make_id": 1538, + "model_id": 2654, + "year_id": 2657, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2658, + "make_id": 1538, + "model_id": 2654, + "year_id": 2658, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2659, + "make_id": 1538, + "model_id": 2654, + "year_id": 2659, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2660, + "make_id": 1538, + "model_id": 2660, + "year_id": 2660, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2661, + "make_id": 1538, + "model_id": 2660, + "year_id": 2661, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2662, + "make_id": 1538, + "model_id": 2660, + "year_id": 2662, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2663, + "make_id": 1538, + "model_id": 2660, + "year_id": 2663, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2664, + "make_id": 1538, + "model_id": 2660, + "year_id": 2664, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2665, + "make_id": 1538, + "model_id": 2660, + "year_id": 2665, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2666, + "make_id": 1538, + "model_id": 2666, + "year_id": 2666, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2667, + "make_id": 1538, + "model_id": 2666, + "year_id": 2667, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2668, + "make_id": 1538, + "model_id": 2666, + "year_id": 2668, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2669, + "make_id": 1538, + "model_id": 2666, + "year_id": 2669, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2670, + "make_id": 1538, + "model_id": 2670, + "year_id": 2670, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2671, + "make_id": 1538, + "model_id": 2670, + "year_id": 2670, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2672, + "make_id": 1538, + "model_id": 2670, + "year_id": 2672, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2673, + "make_id": 1538, + "model_id": 2670, + "year_id": 2673, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2674, + "make_id": 1538, + "model_id": 2670, + "year_id": 2674, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2675, + "make_id": 1538, + "model_id": 2670, + "year_id": 2675, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2676, + "make_id": 1538, + "model_id": 2676, + "year_id": 2676, + "cylinders": 12, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2677, + "make_id": 1538, + "model_id": 2676, + "year_id": 2677, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2678, + "make_id": 1538, + "model_id": 2678, + "year_id": 2678, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2679, + "make_id": 1538, + "model_id": 2678, + "year_id": 2678, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2680, + "make_id": 1538, + "model_id": 2678, + "year_id": 2680, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 2681, + "make_id": 1538, + "model_id": 2678, + "year_id": 2680, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2682, + "make_id": 1538, + "model_id": 2682, + "year_id": 2682, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 2683, + "make_id": 1538, + "model_id": 2683, + "year_id": 2683, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2684, + "make_id": 1538, + "model_id": 2683, + "year_id": 2684, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2685, + "make_id": 1538, + "model_id": 2683, + "year_id": 2685, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2686, + "make_id": 1538, + "model_id": 2686, + "year_id": 2686, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2687, + "make_id": 1538, + "model_id": 2686, + "year_id": 2687, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2688, + "make_id": 1538, + "model_id": 2686, + "year_id": 2688, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2689, + "make_id": 1538, + "model_id": 2686, + "year_id": 2689, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2690, + "make_id": 1538, + "model_id": 2686, + "year_id": 2690, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2691, + "make_id": 1538, + "model_id": 2691, + "year_id": 2691, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2692, + "make_id": 1538, + "model_id": 2692, + "year_id": 2692, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2693, + "make_id": 1538, + "model_id": 2693, + "year_id": 2693, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2694, + "make_id": 1538, + "model_id": 2693, + "year_id": 2694, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2695, + "make_id": 1538, + "model_id": 2693, + "year_id": 2695, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2696, + "make_id": 1538, + "model_id": 2693, + "year_id": 2696, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2697, + "make_id": 1538, + "model_id": 2697, + "year_id": 2697, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2698, + "make_id": 1538, + "model_id": 2698, + "year_id": 2698, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2699, + "make_id": 1538, + "model_id": 2698, + "year_id": 2699, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2700, + "make_id": 1538, + "model_id": 2700, + "year_id": 2700, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2701, + "make_id": 1538, + "model_id": 2700, + "year_id": 2701, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2702, + "make_id": 1538, + "model_id": 2702, + "year_id": 2702, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2703, + "make_id": 1538, + "model_id": 2703, + "year_id": 2703, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2704, + "make_id": 1538, + "model_id": 2703, + "year_id": 2704, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2705, + "make_id": 1538, + "model_id": 2703, + "year_id": 2705, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2706, + "make_id": 1538, + "model_id": 2703, + "year_id": 2706, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2707, + "make_id": 1538, + "model_id": 2703, + "year_id": 2707, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2708, + "make_id": 1538, + "model_id": 2708, + "year_id": 2708, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2709, + "make_id": 1538, + "model_id": 2708, + "year_id": 2709, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2710, + "make_id": 1538, + "model_id": 2708, + "year_id": 2710, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2711, + "make_id": 1538, + "model_id": 2708, + "year_id": 2711, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2712, + "make_id": 1538, + "model_id": 2708, + "year_id": 2712, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2713, + "make_id": 1538, + "model_id": 2713, + "year_id": 2713, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2714, + "make_id": 1538, + "model_id": 2713, + "year_id": 2714, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2715, + "make_id": 1538, + "model_id": 2713, + "year_id": 2715, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2716, + "make_id": 1538, + "model_id": 2713, + "year_id": 2716, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2717, + "make_id": 1538, + "model_id": 2713, + "year_id": 2717, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2718, + "make_id": 1538, + "model_id": 2718, + "year_id": 2718, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2719, + "make_id": 1538, + "model_id": 2718, + "year_id": 2719, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2720, + "make_id": 1538, + "model_id": 2718, + "year_id": 2720, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2721, + "make_id": 1538, + "model_id": 2718, + "year_id": 2721, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2722, + "make_id": 1538, + "model_id": 2718, + "year_id": 2722, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2723, + "make_id": 1538, + "model_id": 2723, + "year_id": 2723, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 2724, + "make_id": 1538, + "model_id": 2723, + "year_id": 2724, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 2725, + "make_id": 1538, + "model_id": 2723, + "year_id": 2725, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 2726, + "make_id": 1538, + "model_id": 2726, + "year_id": 2726, + "cylinders": 2, + "displacement": 0.6, + "drive": "Rear-Wheel Drive", + "transmission": "Auto(A1)" + }, + { + "id": 2727, + "make_id": 1538, + "model_id": 2726, + "year_id": 2727, + "cylinders": 2, + "displacement": 0.6, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 2728, + "make_id": 1538, + "model_id": 2726, + "year_id": 2728, + "cylinders": 2, + "displacement": 0.6, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 2729, + "make_id": 1538, + "model_id": 2729, + "year_id": 2729, + "cylinders": 3, + "displacement": 1.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2730, + "make_id": 1538, + "model_id": 2729, + "year_id": 2730, + "cylinders": 3, + "displacement": 1.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2731, + "make_id": 1538, + "model_id": 2729, + "year_id": 2731, + "cylinders": 3, + "displacement": 1.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2732, + "make_id": 1538, + "model_id": 2732, + "year_id": 2732, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2733, + "make_id": 1538, + "model_id": 2732, + "year_id": 2733, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2734, + "make_id": 1538, + "model_id": 2732, + "year_id": 2734, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2735, + "make_id": 1538, + "model_id": 2735, + "year_id": 2735, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2736, + "make_id": 1538, + "model_id": 2735, + "year_id": 2736, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2737, + "make_id": 1538, + "model_id": 2735, + "year_id": 2737, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2738, + "make_id": 1538, + "model_id": 2735, + "year_id": 2738, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2739, + "make_id": 1538, + "model_id": 2739, + "year_id": 2739, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2740, + "make_id": 1538, + "model_id": 2740, + "year_id": 2740, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2741, + "make_id": 1538, + "model_id": 2740, + "year_id": 2740, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2742, + "make_id": 1538, + "model_id": 2742, + "year_id": 2742, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2743, + "make_id": 1538, + "model_id": 2742, + "year_id": 2742, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2744, + "make_id": 1538, + "model_id": 2742, + "year_id": 2744, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2745, + "make_id": 1538, + "model_id": 2742, + "year_id": 2744, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2746, + "make_id": 1538, + "model_id": 2742, + "year_id": 2746, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2747, + "make_id": 1538, + "model_id": 2742, + "year_id": 2746, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2748, + "make_id": 1538, + "model_id": 2748, + "year_id": 2748, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2749, + "make_id": 1538, + "model_id": 2748, + "year_id": 2748, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2750, + "make_id": 1538, + "model_id": 2748, + "year_id": 2750, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2751, + "make_id": 1538, + "model_id": 2748, + "year_id": 2750, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2752, + "make_id": 1538, + "model_id": 2752, + "year_id": 2752, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2753, + "make_id": 1538, + "model_id": 2752, + "year_id": 2753, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2754, + "make_id": 1538, + "model_id": 2754, + "year_id": 2754, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2755, + "make_id": 1538, + "model_id": 2755, + "year_id": 2755, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2756, + "make_id": 1538, + "model_id": 2755, + "year_id": 2756, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2757, + "make_id": 1538, + "model_id": 2755, + "year_id": 2757, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2758, + "make_id": 1538, + "model_id": 2755, + "year_id": 2758, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2759, + "make_id": 1538, + "model_id": 2755, + "year_id": 2758, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2760, + "make_id": 1538, + "model_id": 2755, + "year_id": 2760, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2761, + "make_id": 1538, + "model_id": 2755, + "year_id": 2761, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2762, + "make_id": 1538, + "model_id": 2755, + "year_id": 2761, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2763, + "make_id": 1538, + "model_id": 2755, + "year_id": 2763, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2764, + "make_id": 1538, + "model_id": 2755, + "year_id": 2763, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2765, + "make_id": 1538, + "model_id": 2755, + "year_id": 2765, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2766, + "make_id": 1538, + "model_id": 2755, + "year_id": 2766, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2767, + "make_id": 1538, + "model_id": 2755, + "year_id": 2767, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2768, + "make_id": 1538, + "model_id": 2755, + "year_id": 2768, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2769, + "make_id": 1538, + "model_id": 2755, + "year_id": 2768, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2770, + "make_id": 1538, + "model_id": 2755, + "year_id": 2770, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2771, + "make_id": 1538, + "model_id": 2755, + "year_id": 2770, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2772, + "make_id": 1538, + "model_id": 2755, + "year_id": 2772, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2773, + "make_id": 1538, + "model_id": 2755, + "year_id": 2772, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2774, + "make_id": 1538, + "model_id": 2755, + "year_id": 2774, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2775, + "make_id": 1538, + "model_id": 2755, + "year_id": 2774, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2776, + "make_id": 1538, + "model_id": 2755, + "year_id": 2776, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2777, + "make_id": 1538, + "model_id": 2755, + "year_id": 2776, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2778, + "make_id": 1538, + "model_id": 2755, + "year_id": 2778, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2779, + "make_id": 1538, + "model_id": 2755, + "year_id": 2778, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2780, + "make_id": 1538, + "model_id": 2755, + "year_id": 2780, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2781, + "make_id": 1538, + "model_id": 2755, + "year_id": 2780, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2782, + "make_id": 1538, + "model_id": 2755, + "year_id": 2782, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2783, + "make_id": 1538, + "model_id": 2755, + "year_id": 2782, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2784, + "make_id": 1538, + "model_id": 2755, + "year_id": 2784, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2785, + "make_id": 1538, + "model_id": 2755, + "year_id": 2784, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2786, + "make_id": 1538, + "model_id": 2786, + "year_id": 2786, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2787, + "make_id": 1538, + "model_id": 2786, + "year_id": 2786, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2788, + "make_id": 1538, + "model_id": 2786, + "year_id": 2788, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2789, + "make_id": 1538, + "model_id": 2786, + "year_id": 2788, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2790, + "make_id": 1538, + "model_id": 2786, + "year_id": 2790, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2791, + "make_id": 1538, + "model_id": 2786, + "year_id": 2791, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2792, + "make_id": 1538, + "model_id": 2786, + "year_id": 2792, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2793, + "make_id": 1538, + "model_id": 2786, + "year_id": 2792, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2794, + "make_id": 1538, + "model_id": 2786, + "year_id": 2794, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2795, + "make_id": 1538, + "model_id": 2786, + "year_id": 2794, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2796, + "make_id": 1538, + "model_id": 2786, + "year_id": 2796, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2797, + "make_id": 1538, + "model_id": 2786, + "year_id": 2796, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2798, + "make_id": 1538, + "model_id": 2786, + "year_id": 2798, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2799, + "make_id": 1538, + "model_id": 2786, + "year_id": 2798, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2800, + "make_id": 1538, + "model_id": 2786, + "year_id": 2800, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2801, + "make_id": 1538, + "model_id": 2786, + "year_id": 2800, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2802, + "make_id": 1538, + "model_id": 2786, + "year_id": 2802, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2803, + "make_id": 1538, + "model_id": 2786, + "year_id": 2802, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2804, + "make_id": 1538, + "model_id": 2786, + "year_id": 2804, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2805, + "make_id": 1538, + "model_id": 2786, + "year_id": 2804, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2806, + "make_id": 1538, + "model_id": 2786, + "year_id": 2806, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2807, + "make_id": 1538, + "model_id": 2786, + "year_id": 2806, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2808, + "make_id": 1538, + "model_id": 2786, + "year_id": 2808, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2809, + "make_id": 1538, + "model_id": 2786, + "year_id": 2808, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2810, + "make_id": 1538, + "model_id": 2786, + "year_id": 2810, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2811, + "make_id": 1538, + "model_id": 2786, + "year_id": 2810, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2812, + "make_id": 1538, + "model_id": 2812, + "year_id": 2812, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2813, + "make_id": 1538, + "model_id": 2812, + "year_id": 2812, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2814, + "make_id": 1538, + "model_id": 2812, + "year_id": 2814, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2815, + "make_id": 1538, + "model_id": 2812, + "year_id": 2814, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2816, + "make_id": 1538, + "model_id": 2812, + "year_id": 2816, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2817, + "make_id": 1538, + "model_id": 2812, + "year_id": 2816, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2818, + "make_id": 1538, + "model_id": 2812, + "year_id": 2818, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2819, + "make_id": 1538, + "model_id": 2812, + "year_id": 2818, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2820, + "make_id": 1538, + "model_id": 2812, + "year_id": 2820, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2821, + "make_id": 1538, + "model_id": 2812, + "year_id": 2820, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2822, + "make_id": 1538, + "model_id": 2812, + "year_id": 2822, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2823, + "make_id": 1538, + "model_id": 2812, + "year_id": 2822, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2824, + "make_id": 1538, + "model_id": 2824, + "year_id": 2824, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2825, + "make_id": 1538, + "model_id": 2824, + "year_id": 2824, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2826, + "make_id": 1538, + "model_id": 2826, + "year_id": 2826, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2827, + "make_id": 1538, + "model_id": 2826, + "year_id": 2826, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2828, + "make_id": 1538, + "model_id": 2826, + "year_id": 2828, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2829, + "make_id": 1538, + "model_id": 2826, + "year_id": 2828, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2830, + "make_id": 1538, + "model_id": 2830, + "year_id": 2830, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2831, + "make_id": 1538, + "model_id": 2830, + "year_id": 2830, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2832, + "make_id": 1538, + "model_id": 2830, + "year_id": 2832, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2833, + "make_id": 1538, + "model_id": 2830, + "year_id": 2832, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2834, + "make_id": 1538, + "model_id": 2834, + "year_id": 2834, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2835, + "make_id": 1538, + "model_id": 2835, + "year_id": 2835, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2836, + "make_id": 1538, + "model_id": 2835, + "year_id": 2836, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2837, + "make_id": 1538, + "model_id": 2835, + "year_id": 2837, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2838, + "make_id": 1538, + "model_id": 2835, + "year_id": 2838, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2839, + "make_id": 1538, + "model_id": 2835, + "year_id": 2839, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2840, + "make_id": 1538, + "model_id": 2835, + "year_id": 2840, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2841, + "make_id": 1538, + "model_id": 2835, + "year_id": 2841, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2842, + "make_id": 1538, + "model_id": 2835, + "year_id": 2842, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2843, + "make_id": 1538, + "model_id": 2835, + "year_id": 2843, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2844, + "make_id": 1538, + "model_id": 2835, + "year_id": 2843, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2845, + "make_id": 1538, + "model_id": 2835, + "year_id": 2845, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2846, + "make_id": 1538, + "model_id": 2835, + "year_id": 2845, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2847, + "make_id": 1538, + "model_id": 2835, + "year_id": 2847, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2848, + "make_id": 1538, + "model_id": 2835, + "year_id": 2847, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2849, + "make_id": 1538, + "model_id": 2835, + "year_id": 2849, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2850, + "make_id": 1538, + "model_id": 2835, + "year_id": 2849, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2851, + "make_id": 1538, + "model_id": 2835, + "year_id": 2851, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2852, + "make_id": 1538, + "model_id": 2835, + "year_id": 2851, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2853, + "make_id": 1538, + "model_id": 2835, + "year_id": 2853, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2854, + "make_id": 1538, + "model_id": 2835, + "year_id": 2853, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2855, + "make_id": 1538, + "model_id": 2835, + "year_id": 2855, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2856, + "make_id": 1538, + "model_id": 2835, + "year_id": 2855, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2857, + "make_id": 1538, + "model_id": 2835, + "year_id": 2857, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2858, + "make_id": 1538, + "model_id": 2835, + "year_id": 2857, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2859, + "make_id": 1538, + "model_id": 2859, + "year_id": 2859, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2860, + "make_id": 1538, + "model_id": 2859, + "year_id": 2860, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2861, + "make_id": 1538, + "model_id": 2859, + "year_id": 2861, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2862, + "make_id": 1538, + "model_id": 2859, + "year_id": 2861, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2863, + "make_id": 1538, + "model_id": 2859, + "year_id": 2863, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2864, + "make_id": 1538, + "model_id": 2859, + "year_id": 2863, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2865, + "make_id": 1538, + "model_id": 2859, + "year_id": 2865, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2866, + "make_id": 1538, + "model_id": 2859, + "year_id": 2865, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2867, + "make_id": 1538, + "model_id": 2859, + "year_id": 2867, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2868, + "make_id": 1538, + "model_id": 2859, + "year_id": 2867, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2869, + "make_id": 1538, + "model_id": 2869, + "year_id": 2869, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2870, + "make_id": 1538, + "model_id": 2869, + "year_id": 2869, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2871, + "make_id": 1538, + "model_id": 2869, + "year_id": 2871, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2872, + "make_id": 1538, + "model_id": 2869, + "year_id": 2871, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2873, + "make_id": 1538, + "model_id": 2869, + "year_id": 2873, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2874, + "make_id": 1538, + "model_id": 2869, + "year_id": 2873, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2875, + "make_id": 1538, + "model_id": 2869, + "year_id": 2875, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2876, + "make_id": 1538, + "model_id": 2869, + "year_id": 2875, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2877, + "make_id": 1538, + "model_id": 2869, + "year_id": 2877, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 2878, + "make_id": 1538, + "model_id": 2869, + "year_id": 2878, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2879, + "make_id": 1538, + "model_id": 2869, + "year_id": 2878, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2880, + "make_id": 1538, + "model_id": 2869, + "year_id": 2880, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2881, + "make_id": 1538, + "model_id": 2869, + "year_id": 2880, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2882, + "make_id": 1538, + "model_id": 2869, + "year_id": 2882, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2883, + "make_id": 1538, + "model_id": 2869, + "year_id": 2882, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2884, + "make_id": 1538, + "model_id": 2869, + "year_id": 2884, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2885, + "make_id": 1538, + "model_id": 2869, + "year_id": 2884, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2886, + "make_id": 1538, + "model_id": 2869, + "year_id": 2886, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2887, + "make_id": 1538, + "model_id": 2869, + "year_id": 2886, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2888, + "make_id": 1538, + "model_id": 2888, + "year_id": 2888, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2889, + "make_id": 1538, + "model_id": 2888, + "year_id": 2888, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2890, + "make_id": 1538, + "model_id": 2888, + "year_id": 2890, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2891, + "make_id": 1538, + "model_id": 2888, + "year_id": 2890, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2892, + "make_id": 1538, + "model_id": 2888, + "year_id": 2892, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2893, + "make_id": 1538, + "model_id": 2888, + "year_id": 2892, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2894, + "make_id": 1538, + "model_id": 2888, + "year_id": 2894, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2895, + "make_id": 1538, + "model_id": 2888, + "year_id": 2894, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2896, + "make_id": 1538, + "model_id": 2888, + "year_id": 2896, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2897, + "make_id": 1538, + "model_id": 2888, + "year_id": 2896, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2898, + "make_id": 1538, + "model_id": 2898, + "year_id": 2898, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2899, + "make_id": 1538, + "model_id": 2898, + "year_id": 2898, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2900, + "make_id": 1538, + "model_id": 2898, + "year_id": 2900, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2901, + "make_id": 1538, + "model_id": 2898, + "year_id": 2900, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2902, + "make_id": 1538, + "model_id": 2898, + "year_id": 2902, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2903, + "make_id": 1538, + "model_id": 2898, + "year_id": 2902, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2904, + "make_id": 1538, + "model_id": 2898, + "year_id": 2904, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2905, + "make_id": 1538, + "model_id": 2898, + "year_id": 2904, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2906, + "make_id": 1538, + "model_id": 2898, + "year_id": 2906, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2907, + "make_id": 1538, + "model_id": 2898, + "year_id": 2906, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 2908, + "make_id": 1538, + "model_id": 2908, + "year_id": 2908, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2909, + "make_id": 1538, + "model_id": 2908, + "year_id": 2909, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2910, + "make_id": 1538, + "model_id": 2908, + "year_id": 2910, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2911, + "make_id": 1538, + "model_id": 2911, + "year_id": 2911, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2912, + "make_id": 1538, + "model_id": 2911, + "year_id": 2912, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2913, + "make_id": 1538, + "model_id": 2911, + "year_id": 2913, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2914, + "make_id": 1538, + "model_id": 2911, + "year_id": 2914, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2915, + "make_id": 1538, + "model_id": 2915, + "year_id": 2915, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2916, + "make_id": 1538, + "model_id": 2915, + "year_id": 2916, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2917, + "make_id": 1538, + "model_id": 2915, + "year_id": 2917, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2918, + "make_id": 1538, + "model_id": 2918, + "year_id": 2918, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2919, + "make_id": 1538, + "model_id": 2918, + "year_id": 2918, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2920, + "make_id": 1538, + "model_id": 2918, + "year_id": 2918, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2921, + "make_id": 1538, + "model_id": 2918, + "year_id": 2918, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2922, + "make_id": 1538, + "model_id": 2918, + "year_id": 2922, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2923, + "make_id": 1538, + "model_id": 2918, + "year_id": 2922, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2924, + "make_id": 1538, + "model_id": 2918, + "year_id": 2922, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2925, + "make_id": 1538, + "model_id": 2918, + "year_id": 2922, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2926, + "make_id": 1538, + "model_id": 2918, + "year_id": 2926, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2927, + "make_id": 1538, + "model_id": 2918, + "year_id": 2926, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2928, + "make_id": 1538, + "model_id": 2928, + "year_id": 2928, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2929, + "make_id": 1538, + "model_id": 2928, + "year_id": 2928, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2930, + "make_id": 1538, + "model_id": 2930, + "year_id": 2930, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2931, + "make_id": 1538, + "model_id": 2930, + "year_id": 2930, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2932, + "make_id": 1538, + "model_id": 2930, + "year_id": 2932, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2933, + "make_id": 1538, + "model_id": 2930, + "year_id": 2932, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2934, + "make_id": 1538, + "model_id": 2934, + "year_id": 2934, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2935, + "make_id": 1538, + "model_id": 2934, + "year_id": 2935, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2936, + "make_id": 1538, + "model_id": 2936, + "year_id": 2936, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2937, + "make_id": 1538, + "model_id": 2937, + "year_id": 2937, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2938, + "make_id": 1538, + "model_id": 2937, + "year_id": 2938, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2939, + "make_id": 1538, + "model_id": 2939, + "year_id": 2939, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2940, + "make_id": 1538, + "model_id": 2939, + "year_id": 2940, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2941, + "make_id": 1538, + "model_id": 2939, + "year_id": 2941, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2942, + "make_id": 1538, + "model_id": 2939, + "year_id": 2942, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2943, + "make_id": 1538, + "model_id": 2939, + "year_id": 2943, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2944, + "make_id": 1538, + "model_id": 2939, + "year_id": 2944, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2945, + "make_id": 1538, + "model_id": 2939, + "year_id": 2945, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2946, + "make_id": 1538, + "model_id": 2946, + "year_id": 2946, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2947, + "make_id": 1538, + "model_id": 2946, + "year_id": 2946, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2948, + "make_id": 1538, + "model_id": 2946, + "year_id": 2948, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2949, + "make_id": 1538, + "model_id": 2946, + "year_id": 2948, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2950, + "make_id": 1538, + "model_id": 2950, + "year_id": 2950, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2951, + "make_id": 1538, + "model_id": 2950, + "year_id": 2951, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2952, + "make_id": 1538, + "model_id": 2950, + "year_id": 2952, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2953, + "make_id": 1538, + "model_id": 2950, + "year_id": 2953, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2954, + "make_id": 1538, + "model_id": 2950, + "year_id": 2954, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2955, + "make_id": 1538, + "model_id": 2950, + "year_id": 2955, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2956, + "make_id": 1538, + "model_id": 2950, + "year_id": 2956, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2957, + "make_id": 1538, + "model_id": 2957, + "year_id": 2957, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2958, + "make_id": 1538, + "model_id": 2957, + "year_id": 2958, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2959, + "make_id": 1538, + "model_id": 2959, + "year_id": 2959, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2960, + "make_id": 1538, + "model_id": 2959, + "year_id": 2960, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2961, + "make_id": 1538, + "model_id": 2961, + "year_id": 2961, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2962, + "make_id": 1538, + "model_id": 2961, + "year_id": 2962, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2963, + "make_id": 1538, + "model_id": 2963, + "year_id": 2963, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2964, + "make_id": 1538, + "model_id": 2963, + "year_id": 2964, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2965, + "make_id": 1538, + "model_id": 2963, + "year_id": 2964, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2966, + "make_id": 1538, + "model_id": 2963, + "year_id": 2964, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2967, + "make_id": 1538, + "model_id": 2963, + "year_id": 2964, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2968, + "make_id": 1538, + "model_id": 2963, + "year_id": 2964, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2969, + "make_id": 1538, + "model_id": 2963, + "year_id": 2969, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2970, + "make_id": 1538, + "model_id": 2963, + "year_id": 2969, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2971, + "make_id": 1538, + "model_id": 2963, + "year_id": 2969, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2972, + "make_id": 1538, + "model_id": 2963, + "year_id": 2972, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2973, + "make_id": 1538, + "model_id": 2963, + "year_id": 2972, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 2974, + "make_id": 1538, + "model_id": 2963, + "year_id": 2972, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2975, + "make_id": 1538, + "model_id": 2963, + "year_id": 2975, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2976, + "make_id": 1538, + "model_id": 2963, + "year_id": 2975, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2977, + "make_id": 1538, + "model_id": 2963, + "year_id": 2975, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2978, + "make_id": 1538, + "model_id": 2963, + "year_id": 2978, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2979, + "make_id": 1538, + "model_id": 2963, + "year_id": 2978, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2980, + "make_id": 1538, + "model_id": 2963, + "year_id": 2978, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2981, + "make_id": 1538, + "model_id": 2963, + "year_id": 2981, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 2982, + "make_id": 1538, + "model_id": 2963, + "year_id": 2981, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2983, + "make_id": 1538, + "model_id": 2963, + "year_id": 2981, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2984, + "make_id": 1538, + "model_id": 2984, + "year_id": 2984, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2985, + "make_id": 1538, + "model_id": 2984, + "year_id": 2985, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2986, + "make_id": 1538, + "model_id": 2986, + "year_id": 2986, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2987, + "make_id": 1538, + "model_id": 2986, + "year_id": 2987, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 2988, + "make_id": 1538, + "model_id": 2988, + "year_id": 2988, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2989, + "make_id": 1538, + "model_id": 2988, + "year_id": 2989, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2990, + "make_id": 1538, + "model_id": 2990, + "year_id": 2990, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2991, + "make_id": 1538, + "model_id": 2991, + "year_id": 2991, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2992, + "make_id": 1538, + "model_id": 2991, + "year_id": 2992, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2993, + "make_id": 1538, + "model_id": 2993, + "year_id": 2993, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 2994, + "make_id": 1538, + "model_id": 2993, + "year_id": 2994, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2995, + "make_id": 1538, + "model_id": 2993, + "year_id": 2995, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2996, + "make_id": 1538, + "model_id": 2996, + "year_id": 2996, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2997, + "make_id": 1538, + "model_id": 2996, + "year_id": 2997, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2998, + "make_id": 1538, + "model_id": 2996, + "year_id": 2998, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 2999, + "make_id": 1538, + "model_id": 2999, + "year_id": 2999, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3000, + "make_id": 1538, + "model_id": 2999, + "year_id": 3000, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3001, + "make_id": 1538, + "model_id": 3001, + "year_id": 3001, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3002, + "make_id": 1538, + "model_id": 3001, + "year_id": 3002, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3003, + "make_id": 1538, + "model_id": 3001, + "year_id": 3003, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3004, + "make_id": 1538, + "model_id": 3001, + "year_id": 3004, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3005, + "make_id": 1538, + "model_id": 3001, + "year_id": 3005, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3006, + "make_id": 1538, + "model_id": 3001, + "year_id": 3006, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3007, + "make_id": 1538, + "model_id": 3001, + "year_id": 3007, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3008, + "make_id": 1538, + "model_id": 3001, + "year_id": 3008, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3009, + "make_id": 1538, + "model_id": 3009, + "year_id": 3009, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3010, + "make_id": 1538, + "model_id": 3009, + "year_id": 3010, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3011, + "make_id": 1538, + "model_id": 3009, + "year_id": 3011, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3012, + "make_id": 1538, + "model_id": 3009, + "year_id": 3012, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3013, + "make_id": 1538, + "model_id": 3009, + "year_id": 3013, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3014, + "make_id": 1538, + "model_id": 3009, + "year_id": 3014, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3015, + "make_id": 1538, + "model_id": 3015, + "year_id": 3015, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3016, + "make_id": 1538, + "model_id": 3016, + "year_id": 3016, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3017, + "make_id": 1538, + "model_id": 3016, + "year_id": 3017, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3018, + "make_id": 1538, + "model_id": 3018, + "year_id": 3018, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3019, + "make_id": 1538, + "model_id": 3018, + "year_id": 3019, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3020, + "make_id": 1538, + "model_id": 3018, + "year_id": 3020, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3021, + "make_id": 1538, + "model_id": 3018, + "year_id": 3021, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3022, + "make_id": 1538, + "model_id": 3018, + "year_id": 3022, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3023, + "make_id": 1538, + "model_id": 3018, + "year_id": 3023, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3024, + "make_id": 1538, + "model_id": 3024, + "year_id": 3024, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3025, + "make_id": 1538, + "model_id": 3024, + "year_id": 3025, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3026, + "make_id": 1538, + "model_id": 3024, + "year_id": 3026, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3027, + "make_id": 1538, + "model_id": 3027, + "year_id": 3027, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3028, + "make_id": 1538, + "model_id": 3027, + "year_id": 3028, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3029, + "make_id": 1538, + "model_id": 3027, + "year_id": 3029, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3030, + "make_id": 1538, + "model_id": 3027, + "year_id": 3030, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3031, + "make_id": 1538, + "model_id": 3031, + "year_id": 3031, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3032, + "make_id": 1538, + "model_id": 3031, + "year_id": 3032, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3033, + "make_id": 1538, + "model_id": 3033, + "year_id": 3033, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3034, + "make_id": 1538, + "model_id": 3033, + "year_id": 3034, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3035, + "make_id": 1538, + "model_id": 3033, + "year_id": 3035, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3036, + "make_id": 1538, + "model_id": 3033, + "year_id": 3036, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3037, + "make_id": 1538, + "model_id": 3033, + "year_id": 3037, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3038, + "make_id": 1538, + "model_id": 3033, + "year_id": 3038, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3039, + "make_id": 1538, + "model_id": 3033, + "year_id": 3039, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3040, + "make_id": 1538, + "model_id": 3033, + "year_id": 3040, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3041, + "make_id": 1538, + "model_id": 3033, + "year_id": 3041, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3042, + "make_id": 1538, + "model_id": 3042, + "year_id": 3042, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3043, + "make_id": 1538, + "model_id": 3042, + "year_id": 3043, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3044, + "make_id": 1538, + "model_id": 3042, + "year_id": 3044, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3045, + "make_id": 1538, + "model_id": 3042, + "year_id": 3045, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3046, + "make_id": 1538, + "model_id": 3042, + "year_id": 3046, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3047, + "make_id": 1538, + "model_id": 3042, + "year_id": 3047, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3048, + "make_id": 1538, + "model_id": 3042, + "year_id": 3048, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3049, + "make_id": 1538, + "model_id": 3042, + "year_id": 3049, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3050, + "make_id": 1538, + "model_id": 3042, + "year_id": 3050, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3051, + "make_id": 1538, + "model_id": 3051, + "year_id": 3051, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3052, + "make_id": 1538, + "model_id": 3051, + "year_id": 3052, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3053, + "make_id": 1538, + "model_id": 3051, + "year_id": 3053, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3054, + "make_id": 1538, + "model_id": 3054, + "year_id": 3054, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3055, + "make_id": 1538, + "model_id": 3054, + "year_id": 3054, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3056, + "make_id": 1538, + "model_id": 3054, + "year_id": 3056, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3057, + "make_id": 1538, + "model_id": 3054, + "year_id": 3056, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3058, + "make_id": 1538, + "model_id": 3054, + "year_id": 3058, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3059, + "make_id": 1538, + "model_id": 3054, + "year_id": 3058, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3060, + "make_id": 1538, + "model_id": 3054, + "year_id": 3060, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3061, + "make_id": 1538, + "model_id": 3054, + "year_id": 3060, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3062, + "make_id": 1538, + "model_id": 3062, + "year_id": 3062, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3063, + "make_id": 1538, + "model_id": 3062, + "year_id": 3062, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3064, + "make_id": 1538, + "model_id": 3062, + "year_id": 3064, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3065, + "make_id": 1538, + "model_id": 3062, + "year_id": 3064, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3066, + "make_id": 1538, + "model_id": 3062, + "year_id": 3064, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3067, + "make_id": 1538, + "model_id": 3062, + "year_id": 3064, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3068, + "make_id": 1538, + "model_id": 3062, + "year_id": 3064, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3069, + "make_id": 1538, + "model_id": 3062, + "year_id": 3064, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3070, + "make_id": 1538, + "model_id": 3062, + "year_id": 3070, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3071, + "make_id": 1538, + "model_id": 3062, + "year_id": 3070, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3072, + "make_id": 1538, + "model_id": 3062, + "year_id": 3070, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3073, + "make_id": 1538, + "model_id": 3062, + "year_id": 3070, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3074, + "make_id": 1538, + "model_id": 3062, + "year_id": 3074, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3075, + "make_id": 1538, + "model_id": 3062, + "year_id": 3074, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3076, + "make_id": 1538, + "model_id": 3062, + "year_id": 3074, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3077, + "make_id": 1538, + "model_id": 3062, + "year_id": 3074, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3078, + "make_id": 1538, + "model_id": 3062, + "year_id": 3078, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3079, + "make_id": 1538, + "model_id": 3062, + "year_id": 3078, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3080, + "make_id": 1538, + "model_id": 3062, + "year_id": 3078, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3081, + "make_id": 1538, + "model_id": 3062, + "year_id": 3078, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3082, + "make_id": 1538, + "model_id": 3062, + "year_id": 3082, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3083, + "make_id": 1538, + "model_id": 3062, + "year_id": 3082, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3084, + "make_id": 1538, + "model_id": 3062, + "year_id": 3082, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3085, + "make_id": 1538, + "model_id": 3062, + "year_id": 3082, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3086, + "make_id": 1538, + "model_id": 3062, + "year_id": 3086, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3087, + "make_id": 1538, + "model_id": 3062, + "year_id": 3086, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3088, + "make_id": 1538, + "model_id": 3062, + "year_id": 3086, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3089, + "make_id": 1538, + "model_id": 3062, + "year_id": 3086, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3090, + "make_id": 1538, + "model_id": 3090, + "year_id": 3090, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3091, + "make_id": 1538, + "model_id": 3090, + "year_id": 3090, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3092, + "make_id": 1538, + "model_id": 3090, + "year_id": 3092, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3093, + "make_id": 1538, + "model_id": 3090, + "year_id": 3092, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3094, + "make_id": 1538, + "model_id": 3090, + "year_id": 3094, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3095, + "make_id": 1538, + "model_id": 3090, + "year_id": 3094, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3096, + "make_id": 1538, + "model_id": 3096, + "year_id": 3096, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3097, + "make_id": 1538, + "model_id": 3096, + "year_id": 3096, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3098, + "make_id": 1538, + "model_id": 3096, + "year_id": 3098, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3099, + "make_id": 1538, + "model_id": 3096, + "year_id": 3098, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3100, + "make_id": 1538, + "model_id": 3096, + "year_id": 3100, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3101, + "make_id": 1538, + "model_id": 3096, + "year_id": 3100, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3102, + "make_id": 1538, + "model_id": 3102, + "year_id": 3102, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3103, + "make_id": 1538, + "model_id": 3102, + "year_id": 3102, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3104, + "make_id": 1538, + "model_id": 3104, + "year_id": 3104, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3105, + "make_id": 1538, + "model_id": 3104, + "year_id": 3104, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3106, + "make_id": 1538, + "model_id": 3104, + "year_id": 3106, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3107, + "make_id": 1538, + "model_id": 3104, + "year_id": 3106, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3108, + "make_id": 1538, + "model_id": 3108, + "year_id": 3108, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3109, + "make_id": 1538, + "model_id": 3108, + "year_id": 3109, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3110, + "make_id": 1538, + "model_id": 3108, + "year_id": 3110, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3111, + "make_id": 1538, + "model_id": 3111, + "year_id": 3111, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3112, + "make_id": 1538, + "model_id": 3111, + "year_id": 3112, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3113, + "make_id": 1538, + "model_id": 3111, + "year_id": 3113, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3114, + "make_id": 1538, + "model_id": 3114, + "year_id": 3114, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3115, + "make_id": 1538, + "model_id": 3114, + "year_id": 3114, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3116, + "make_id": 1538, + "model_id": 3114, + "year_id": 3114, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3117, + "make_id": 1538, + "model_id": 3114, + "year_id": 3114, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3118, + "make_id": 1538, + "model_id": 3114, + "year_id": 3114, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3119, + "make_id": 1538, + "model_id": 3114, + "year_id": 3114, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3120, + "make_id": 1538, + "model_id": 3114, + "year_id": 3120, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3121, + "make_id": 1538, + "model_id": 3114, + "year_id": 3120, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3122, + "make_id": 1538, + "model_id": 3114, + "year_id": 3120, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3123, + "make_id": 1538, + "model_id": 3114, + "year_id": 3120, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3124, + "make_id": 1538, + "model_id": 3114, + "year_id": 3120, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3125, + "make_id": 1538, + "model_id": 3114, + "year_id": 3120, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3126, + "make_id": 1538, + "model_id": 3114, + "year_id": 3126, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3127, + "make_id": 1538, + "model_id": 3114, + "year_id": 3126, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3128, + "make_id": 1538, + "model_id": 3114, + "year_id": 3126, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3129, + "make_id": 1538, + "model_id": 3114, + "year_id": 3126, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3130, + "make_id": 1538, + "model_id": 3114, + "year_id": 3126, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3131, + "make_id": 1538, + "model_id": 3131, + "year_id": 3131, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3132, + "make_id": 1538, + "model_id": 3131, + "year_id": 3131, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3133, + "make_id": 1538, + "model_id": 3131, + "year_id": 3133, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3134, + "make_id": 1538, + "model_id": 3131, + "year_id": 3133, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3135, + "make_id": 1538, + "model_id": 3131, + "year_id": 3135, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3136, + "make_id": 1538, + "model_id": 3131, + "year_id": 3135, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3137, + "make_id": 1538, + "model_id": 3131, + "year_id": 3137, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3138, + "make_id": 1538, + "model_id": 3131, + "year_id": 3137, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3139, + "make_id": 1538, + "model_id": 3131, + "year_id": 3139, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3140, + "make_id": 1538, + "model_id": 3131, + "year_id": 3139, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3141, + "make_id": 1538, + "model_id": 3141, + "year_id": 3141, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3142, + "make_id": 1538, + "model_id": 3141, + "year_id": 3141, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3143, + "make_id": 1538, + "model_id": 3141, + "year_id": 3143, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3144, + "make_id": 1538, + "model_id": 3141, + "year_id": 3143, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3145, + "make_id": 1538, + "model_id": 3141, + "year_id": 3145, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3146, + "make_id": 1538, + "model_id": 3141, + "year_id": 3145, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3147, + "make_id": 1538, + "model_id": 3147, + "year_id": 3147, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3148, + "make_id": 1538, + "model_id": 3147, + "year_id": 3147, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 3149, + "make_id": 1538, + "model_id": 3147, + "year_id": 3149, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 3150, + "make_id": 1538, + "model_id": 3147, + "year_id": 3149, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3151, + "make_id": 1538, + "model_id": 3147, + "year_id": 3151, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3152, + "make_id": 1538, + "model_id": 3147, + "year_id": 3151, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 3153, + "make_id": 1538, + "model_id": 3147, + "year_id": 3153, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3154, + "make_id": 1538, + "model_id": 3147, + "year_id": 3153, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 3155, + "make_id": 1538, + "model_id": 3147, + "year_id": 3155, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3156, + "make_id": 1538, + "model_id": 3147, + "year_id": 3155, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3157, + "make_id": 1538, + "model_id": 3147, + "year_id": 3157, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3158, + "make_id": 1538, + "model_id": 3147, + "year_id": 3157, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3159, + "make_id": 1538, + "model_id": 3147, + "year_id": 3159, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3160, + "make_id": 1538, + "model_id": 3147, + "year_id": 3160, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3161, + "make_id": 1538, + "model_id": 3161, + "year_id": 3161, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 3162, + "make_id": 1538, + "model_id": 3161, + "year_id": 3162, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 3163, + "make_id": 1538, + "model_id": 3161, + "year_id": 3163, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3164, + "make_id": 1538, + "model_id": 3161, + "year_id": 3164, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3165, + "make_id": 1538, + "model_id": 3161, + "year_id": 3165, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3166, + "make_id": 1538, + "model_id": 3161, + "year_id": 3166, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3167, + "make_id": 1538, + "model_id": 3167, + "year_id": 3167, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3168, + "make_id": 1538, + "model_id": 3167, + "year_id": 3168, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3169, + "make_id": 1538, + "model_id": 3167, + "year_id": 3169, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3170, + "make_id": 1538, + "model_id": 3167, + "year_id": 3170, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3171, + "make_id": 3171, + "model_id": 3171, + "year_id": 3171, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3172, + "make_id": 3171, + "model_id": 3171, + "year_id": 3172, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3173, + "make_id": 3171, + "model_id": 3173, + "year_id": 3173, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3174, + "make_id": 3174, + "model_id": 3174, + "year_id": 3174, + "cylinders": 16, + "displacement": 8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3175, + "make_id": 3174, + "model_id": 3174, + "year_id": 3175, + "cylinders": 16, + "displacement": 8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3176, + "make_id": 3174, + "model_id": 3174, + "year_id": 3176, + "cylinders": 16, + "displacement": 8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 3177, + "make_id": 3174, + "model_id": 3174, + "year_id": 3177, + "cylinders": 16, + "displacement": 8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 3178, + "make_id": 3174, + "model_id": 3174, + "year_id": 3178, + "cylinders": 16, + "displacement": 8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 3179, + "make_id": 3174, + "model_id": 3174, + "year_id": 3179, + "cylinders": 16, + "displacement": 8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3180, + "make_id": 3174, + "model_id": 3174, + "year_id": 3180, + "cylinders": 16, + "displacement": 8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3181, + "make_id": 3174, + "model_id": 3174, + "year_id": 3181, + "cylinders": 16, + "displacement": 8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 3182, + "make_id": 3182, + "model_id": 3182, + "year_id": 3182, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3183, + "make_id": 3182, + "model_id": 3183, + "year_id": 3183, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3184, + "make_id": 3182, + "model_id": 3183, + "year_id": 3183, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3185, + "make_id": 3182, + "model_id": 3183, + "year_id": 3183, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3186, + "make_id": 3182, + "model_id": 3183, + "year_id": 3183, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3187, + "make_id": 3182, + "model_id": 3183, + "year_id": 3183, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3188, + "make_id": 3182, + "model_id": 3183, + "year_id": 3183, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3189, + "make_id": 3182, + "model_id": 3183, + "year_id": 3183, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3190, + "make_id": 3182, + "model_id": 3183, + "year_id": 3183, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3191, + "make_id": 3182, + "model_id": 3183, + "year_id": 3183, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3192, + "make_id": 3182, + "model_id": 3183, + "year_id": 3192, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3193, + "make_id": 3182, + "model_id": 3183, + "year_id": 3192, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3194, + "make_id": 3182, + "model_id": 3183, + "year_id": 3192, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3195, + "make_id": 3182, + "model_id": 3183, + "year_id": 3192, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3196, + "make_id": 3182, + "model_id": 3183, + "year_id": 3192, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3197, + "make_id": 3182, + "model_id": 3183, + "year_id": 3192, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3198, + "make_id": 3182, + "model_id": 3183, + "year_id": 3192, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3199, + "make_id": 3182, + "model_id": 3183, + "year_id": 3192, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3200, + "make_id": 3182, + "model_id": 3183, + "year_id": 3200, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3201, + "make_id": 3182, + "model_id": 3183, + "year_id": 3200, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3202, + "make_id": 3182, + "model_id": 3183, + "year_id": 3200, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3203, + "make_id": 3182, + "model_id": 3183, + "year_id": 3200, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3204, + "make_id": 3182, + "model_id": 3183, + "year_id": 3204, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3205, + "make_id": 3182, + "model_id": 3183, + "year_id": 3204, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3206, + "make_id": 3182, + "model_id": 3183, + "year_id": 3204, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3207, + "make_id": 3182, + "model_id": 3183, + "year_id": 3204, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3208, + "make_id": 3182, + "model_id": 3183, + "year_id": 3208, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3209, + "make_id": 3182, + "model_id": 3183, + "year_id": 3208, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3210, + "make_id": 3182, + "model_id": 3183, + "year_id": 3208, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3211, + "make_id": 3182, + "model_id": 3183, + "year_id": 3208, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3212, + "make_id": 3182, + "model_id": 3183, + "year_id": 3212, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3213, + "make_id": 3182, + "model_id": 3183, + "year_id": 3212, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3214, + "make_id": 3182, + "model_id": 3183, + "year_id": 3212, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3215, + "make_id": 3182, + "model_id": 3183, + "year_id": 3212, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3216, + "make_id": 3182, + "model_id": 3183, + "year_id": 3212, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3217, + "make_id": 3182, + "model_id": 3183, + "year_id": 3217, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3218, + "make_id": 3182, + "model_id": 3183, + "year_id": 3217, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3219, + "make_id": 3182, + "model_id": 3183, + "year_id": 3217, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3220, + "make_id": 3182, + "model_id": 3183, + "year_id": 3220, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3221, + "make_id": 3182, + "model_id": 3183, + "year_id": 3220, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3222, + "make_id": 3182, + "model_id": 3183, + "year_id": 3220, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3223, + "make_id": 3182, + "model_id": 3183, + "year_id": 3223, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3224, + "make_id": 3182, + "model_id": 3183, + "year_id": 3223, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3225, + "make_id": 3182, + "model_id": 3183, + "year_id": 3223, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3226, + "make_id": 3182, + "model_id": 3183, + "year_id": 3226, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3227, + "make_id": 3182, + "model_id": 3183, + "year_id": 3226, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3228, + "make_id": 3182, + "model_id": 3183, + "year_id": 3226, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3229, + "make_id": 3182, + "model_id": 3183, + "year_id": 3229, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3230, + "make_id": 3182, + "model_id": 3183, + "year_id": 3229, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3231, + "make_id": 3182, + "model_id": 3183, + "year_id": 3231, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3232, + "make_id": 3182, + "model_id": 3183, + "year_id": 3231, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3233, + "make_id": 3182, + "model_id": 3183, + "year_id": 3233, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3234, + "make_id": 3182, + "model_id": 3183, + "year_id": 3233, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3235, + "make_id": 3182, + "model_id": 3183, + "year_id": 3235, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3236, + "make_id": 3182, + "model_id": 3183, + "year_id": 3236, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3237, + "make_id": 3182, + "model_id": 3183, + "year_id": 3237, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3238, + "make_id": 3182, + "model_id": 3183, + "year_id": 3238, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3239, + "make_id": 3182, + "model_id": 3183, + "year_id": 3239, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3240, + "make_id": 3182, + "model_id": 3183, + "year_id": 3240, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3241, + "make_id": 3182, + "model_id": 3183, + "year_id": 3241, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3242, + "make_id": 3182, + "model_id": 3183, + "year_id": 3242, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3243, + "make_id": 3182, + "model_id": 3243, + "year_id": 3243, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3244, + "make_id": 3182, + "model_id": 3243, + "year_id": 3243, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3245, + "make_id": 3182, + "model_id": 3243, + "year_id": 3243, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3246, + "make_id": 3182, + "model_id": 3243, + "year_id": 3243, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3247, + "make_id": 3182, + "model_id": 3243, + "year_id": 3243, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3248, + "make_id": 3182, + "model_id": 3243, + "year_id": 3243, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3249, + "make_id": 3182, + "model_id": 3243, + "year_id": 3243, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3250, + "make_id": 3182, + "model_id": 3243, + "year_id": 3243, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3251, + "make_id": 3182, + "model_id": 3243, + "year_id": 3243, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3252, + "make_id": 3182, + "model_id": 3252, + "year_id": 3252, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3253, + "make_id": 3182, + "model_id": 3252, + "year_id": 3252, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3254, + "make_id": 3182, + "model_id": 3252, + "year_id": 3252, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3255, + "make_id": 3182, + "model_id": 3252, + "year_id": 3252, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3256, + "make_id": 3182, + "model_id": 3252, + "year_id": 3252, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3257, + "make_id": 3182, + "model_id": 3252, + "year_id": 3252, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3258, + "make_id": 3182, + "model_id": 3252, + "year_id": 3252, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3259, + "make_id": 3182, + "model_id": 3252, + "year_id": 3252, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3260, + "make_id": 3182, + "model_id": 3252, + "year_id": 3252, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3261, + "make_id": 3182, + "model_id": 3252, + "year_id": 3261, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3262, + "make_id": 3182, + "model_id": 3252, + "year_id": 3261, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3263, + "make_id": 3182, + "model_id": 3252, + "year_id": 3261, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3264, + "make_id": 3182, + "model_id": 3252, + "year_id": 3261, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3265, + "make_id": 3182, + "model_id": 3252, + "year_id": 3265, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3266, + "make_id": 3182, + "model_id": 3252, + "year_id": 3265, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3267, + "make_id": 3182, + "model_id": 3252, + "year_id": 3265, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3268, + "make_id": 3182, + "model_id": 3252, + "year_id": 3265, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3269, + "make_id": 3182, + "model_id": 3252, + "year_id": 3269, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3270, + "make_id": 3182, + "model_id": 3252, + "year_id": 3269, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3271, + "make_id": 3182, + "model_id": 3252, + "year_id": 3269, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3272, + "make_id": 3182, + "model_id": 3252, + "year_id": 3272, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3273, + "make_id": 3182, + "model_id": 3252, + "year_id": 3272, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3274, + "make_id": 3182, + "model_id": 3252, + "year_id": 3272, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3275, + "make_id": 3182, + "model_id": 3252, + "year_id": 3272, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3276, + "make_id": 3182, + "model_id": 3252, + "year_id": 3276, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3277, + "make_id": 3182, + "model_id": 3252, + "year_id": 3276, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3278, + "make_id": 3182, + "model_id": 3252, + "year_id": 3276, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3279, + "make_id": 3182, + "model_id": 3252, + "year_id": 3279, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3280, + "make_id": 3182, + "model_id": 3252, + "year_id": 3279, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3281, + "make_id": 3182, + "model_id": 3252, + "year_id": 3279, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3282, + "make_id": 3182, + "model_id": 3252, + "year_id": 3282, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3283, + "make_id": 3182, + "model_id": 3252, + "year_id": 3282, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3284, + "make_id": 3182, + "model_id": 3252, + "year_id": 3282, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3285, + "make_id": 3182, + "model_id": 3252, + "year_id": 3285, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3286, + "make_id": 3182, + "model_id": 3252, + "year_id": 3285, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3287, + "make_id": 3182, + "model_id": 3252, + "year_id": 3285, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3288, + "make_id": 3182, + "model_id": 3252, + "year_id": 3288, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3289, + "make_id": 3182, + "model_id": 3252, + "year_id": 3288, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3290, + "make_id": 3182, + "model_id": 3252, + "year_id": 3290, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3291, + "make_id": 3182, + "model_id": 3252, + "year_id": 3290, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3292, + "make_id": 3182, + "model_id": 3252, + "year_id": 3292, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3293, + "make_id": 3182, + "model_id": 3293, + "year_id": 3293, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3294, + "make_id": 3182, + "model_id": 3293, + "year_id": 3294, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3295, + "make_id": 3182, + "model_id": 3293, + "year_id": 3295, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3296, + "make_id": 3182, + "model_id": 3293, + "year_id": 3295, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3297, + "make_id": 3182, + "model_id": 3293, + "year_id": 3297, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3298, + "make_id": 3182, + "model_id": 3293, + "year_id": 3298, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3299, + "make_id": 3182, + "model_id": 3293, + "year_id": 3299, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3300, + "make_id": 3182, + "model_id": 3300, + "year_id": 3300, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3301, + "make_id": 3182, + "model_id": 3300, + "year_id": 3300, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3302, + "make_id": 3182, + "model_id": 3300, + "year_id": 3300, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3303, + "make_id": 3182, + "model_id": 3303, + "year_id": 3303, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3304, + "make_id": 3182, + "model_id": 3303, + "year_id": 3303, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3305, + "make_id": 3182, + "model_id": 3303, + "year_id": 3303, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3306, + "make_id": 3182, + "model_id": 3303, + "year_id": 3303, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3307, + "make_id": 3182, + "model_id": 3303, + "year_id": 3303, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3308, + "make_id": 3182, + "model_id": 3303, + "year_id": 3303, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3309, + "make_id": 3182, + "model_id": 3303, + "year_id": 3309, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3310, + "make_id": 3182, + "model_id": 3303, + "year_id": 3309, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3311, + "make_id": 3182, + "model_id": 3303, + "year_id": 3309, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3312, + "make_id": 3182, + "model_id": 3303, + "year_id": 3309, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3313, + "make_id": 3182, + "model_id": 3303, + "year_id": 3309, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3314, + "make_id": 3182, + "model_id": 3303, + "year_id": 3314, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3315, + "make_id": 3182, + "model_id": 3303, + "year_id": 3315, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3316, + "make_id": 3182, + "model_id": 3303, + "year_id": 3316, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3317, + "make_id": 3182, + "model_id": 3303, + "year_id": 3317, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3318, + "make_id": 3182, + "model_id": 3303, + "year_id": 3318, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3319, + "make_id": 3182, + "model_id": 3319, + "year_id": 3319, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3320, + "make_id": 3182, + "model_id": 3319, + "year_id": 3319, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3321, + "make_id": 3182, + "model_id": 3319, + "year_id": 3321, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3322, + "make_id": 3182, + "model_id": 3319, + "year_id": 3321, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3323, + "make_id": 3182, + "model_id": 3319, + "year_id": 3323, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3324, + "make_id": 3182, + "model_id": 3319, + "year_id": 3323, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3325, + "make_id": 3182, + "model_id": 3319, + "year_id": 3325, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3326, + "make_id": 3182, + "model_id": 3319, + "year_id": 3325, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3327, + "make_id": 3182, + "model_id": 3319, + "year_id": 3327, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3328, + "make_id": 3182, + "model_id": 3319, + "year_id": 3327, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3329, + "make_id": 3182, + "model_id": 3319, + "year_id": 3329, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3330, + "make_id": 3182, + "model_id": 3319, + "year_id": 3329, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3331, + "make_id": 3182, + "model_id": 3319, + "year_id": 3331, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3332, + "make_id": 3182, + "model_id": 3319, + "year_id": 3331, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3333, + "make_id": 3182, + "model_id": 3319, + "year_id": 3333, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3334, + "make_id": 3182, + "model_id": 3319, + "year_id": 3333, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3335, + "make_id": 3182, + "model_id": 3319, + "year_id": 3335, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3336, + "make_id": 3182, + "model_id": 3319, + "year_id": 3335, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3337, + "make_id": 3182, + "model_id": 3319, + "year_id": 3337, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3338, + "make_id": 3182, + "model_id": 3319, + "year_id": 3337, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3339, + "make_id": 3182, + "model_id": 3339, + "year_id": 3339, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3340, + "make_id": 3182, + "model_id": 3339, + "year_id": 3339, + "cylinders": 4, + "displacement": 1.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3341, + "make_id": 3182, + "model_id": 3339, + "year_id": 3341, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3342, + "make_id": 3182, + "model_id": 3339, + "year_id": 3341, + "cylinders": 4, + "displacement": 1.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3343, + "make_id": 3182, + "model_id": 3339, + "year_id": 3343, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3344, + "make_id": 3182, + "model_id": 3339, + "year_id": 3343, + "cylinders": 4, + "displacement": 1.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3345, + "make_id": 3182, + "model_id": 3339, + "year_id": 3345, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3346, + "make_id": 3182, + "model_id": 3339, + "year_id": 3345, + "cylinders": 4, + "displacement": 1.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3347, + "make_id": 3182, + "model_id": 3339, + "year_id": 3345, + "cylinders": 4, + "displacement": 1.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3348, + "make_id": 3182, + "model_id": 3339, + "year_id": 3345, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3349, + "make_id": 3182, + "model_id": 3349, + "year_id": 3349, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3350, + "make_id": 3182, + "model_id": 3350, + "year_id": 3350, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3351, + "make_id": 3182, + "model_id": 3351, + "year_id": 3351, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3352, + "make_id": 3182, + "model_id": 3352, + "year_id": 3352, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3353, + "make_id": 3182, + "model_id": 3352, + "year_id": 3352, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3354, + "make_id": 3182, + "model_id": 3352, + "year_id": 3352, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3355, + "make_id": 3182, + "model_id": 3352, + "year_id": 3355, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3356, + "make_id": 3182, + "model_id": 3352, + "year_id": 3355, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3357, + "make_id": 3182, + "model_id": 3352, + "year_id": 3355, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3358, + "make_id": 3182, + "model_id": 3352, + "year_id": 3358, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3359, + "make_id": 3182, + "model_id": 3352, + "year_id": 3358, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3360, + "make_id": 3182, + "model_id": 3352, + "year_id": 3358, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3361, + "make_id": 3182, + "model_id": 3352, + "year_id": 3361, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3362, + "make_id": 3182, + "model_id": 3352, + "year_id": 3361, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3363, + "make_id": 3182, + "model_id": 3352, + "year_id": 3361, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3364, + "make_id": 3182, + "model_id": 3352, + "year_id": 3364, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3365, + "make_id": 3182, + "model_id": 3352, + "year_id": 3364, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3366, + "make_id": 3182, + "model_id": 3352, + "year_id": 3364, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3367, + "make_id": 3182, + "model_id": 3352, + "year_id": 3367, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3368, + "make_id": 3182, + "model_id": 3352, + "year_id": 3367, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3369, + "make_id": 3182, + "model_id": 3352, + "year_id": 3367, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3370, + "make_id": 3182, + "model_id": 3370, + "year_id": 3370, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 3371, + "make_id": 3182, + "model_id": 3370, + "year_id": 3371, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3372, + "make_id": 3182, + "model_id": 3370, + "year_id": 3372, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3373, + "make_id": 3182, + "model_id": 3370, + "year_id": 3373, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3374, + "make_id": 3182, + "model_id": 3370, + "year_id": 3374, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3375, + "make_id": 3182, + "model_id": 3375, + "year_id": 3375, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3376, + "make_id": 3182, + "model_id": 3375, + "year_id": 3375, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3377, + "make_id": 3182, + "model_id": 3375, + "year_id": 3377, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3378, + "make_id": 3182, + "model_id": 3375, + "year_id": 3377, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3379, + "make_id": 3182, + "model_id": 3375, + "year_id": 3379, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3380, + "make_id": 3182, + "model_id": 3375, + "year_id": 3379, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3381, + "make_id": 3182, + "model_id": 3375, + "year_id": 3381, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3382, + "make_id": 3182, + "model_id": 3375, + "year_id": 3381, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3383, + "make_id": 3182, + "model_id": 3375, + "year_id": 3381, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3384, + "make_id": 3182, + "model_id": 3375, + "year_id": 3384, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3385, + "make_id": 3182, + "model_id": 3375, + "year_id": 3384, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3386, + "make_id": 3182, + "model_id": 3375, + "year_id": 3386, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3387, + "make_id": 3182, + "model_id": 3375, + "year_id": 3386, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3388, + "make_id": 3182, + "model_id": 3375, + "year_id": 3386, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3389, + "make_id": 3182, + "model_id": 3375, + "year_id": 3386, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3390, + "make_id": 3182, + "model_id": 3390, + "year_id": 3390, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3391, + "make_id": 3182, + "model_id": 3390, + "year_id": 3390, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3392, + "make_id": 3182, + "model_id": 3390, + "year_id": 3390, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3393, + "make_id": 3182, + "model_id": 3390, + "year_id": 3390, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3394, + "make_id": 3182, + "model_id": 3390, + "year_id": 3390, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3395, + "make_id": 3182, + "model_id": 3390, + "year_id": 3390, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3396, + "make_id": 3182, + "model_id": 3390, + "year_id": 3390, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3397, + "make_id": 3182, + "model_id": 3390, + "year_id": 3390, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3398, + "make_id": 3182, + "model_id": 3390, + "year_id": 3390, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3399, + "make_id": 3182, + "model_id": 3390, + "year_id": 3399, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3400, + "make_id": 3182, + "model_id": 3390, + "year_id": 3399, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3401, + "make_id": 3182, + "model_id": 3390, + "year_id": 3399, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3402, + "make_id": 3182, + "model_id": 3390, + "year_id": 3399, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3403, + "make_id": 3182, + "model_id": 3390, + "year_id": 3399, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3404, + "make_id": 3182, + "model_id": 3390, + "year_id": 3404, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3405, + "make_id": 3182, + "model_id": 3390, + "year_id": 3404, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3406, + "make_id": 3182, + "model_id": 3390, + "year_id": 3406, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3407, + "make_id": 3182, + "model_id": 3390, + "year_id": 3407, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3408, + "make_id": 3182, + "model_id": 3390, + "year_id": 3408, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3409, + "make_id": 3182, + "model_id": 3390, + "year_id": 3409, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3410, + "make_id": 3182, + "model_id": 3390, + "year_id": 3410, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3411, + "make_id": 3182, + "model_id": 3390, + "year_id": 3411, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3412, + "make_id": 3182, + "model_id": 3390, + "year_id": 3412, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3413, + "make_id": 3182, + "model_id": 3390, + "year_id": 3413, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3414, + "make_id": 3182, + "model_id": 3390, + "year_id": 3414, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3415, + "make_id": 3182, + "model_id": 3390, + "year_id": 3415, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3416, + "make_id": 3182, + "model_id": 3390, + "year_id": 3416, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3417, + "make_id": 3182, + "model_id": 3390, + "year_id": 3417, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3418, + "make_id": 3182, + "model_id": 3390, + "year_id": 3418, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3419, + "make_id": 3182, + "model_id": 3390, + "year_id": 3419, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3420, + "make_id": 3182, + "model_id": 3390, + "year_id": 3420, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3421, + "make_id": 3182, + "model_id": 3390, + "year_id": 3421, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3422, + "make_id": 3182, + "model_id": 3390, + "year_id": 3422, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3423, + "make_id": 3182, + "model_id": 3390, + "year_id": 3423, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3424, + "make_id": 3182, + "model_id": 3390, + "year_id": 3424, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3425, + "make_id": 3182, + "model_id": 3425, + "year_id": 3425, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3426, + "make_id": 3182, + "model_id": 3425, + "year_id": 3425, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3427, + "make_id": 3182, + "model_id": 3425, + "year_id": 3425, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3428, + "make_id": 3182, + "model_id": 3425, + "year_id": 3428, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3429, + "make_id": 3182, + "model_id": 3425, + "year_id": 3429, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3430, + "make_id": 3182, + "model_id": 3425, + "year_id": 3430, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3431, + "make_id": 3182, + "model_id": 3425, + "year_id": 3431, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3432, + "make_id": 3182, + "model_id": 3432, + "year_id": 3432, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3433, + "make_id": 3182, + "model_id": 3432, + "year_id": 3432, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3434, + "make_id": 3182, + "model_id": 3432, + "year_id": 3434, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3435, + "make_id": 3182, + "model_id": 3432, + "year_id": 3434, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3436, + "make_id": 3182, + "model_id": 3432, + "year_id": 3436, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3437, + "make_id": 3182, + "model_id": 3432, + "year_id": 3436, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3438, + "make_id": 3182, + "model_id": 3432, + "year_id": 3436, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3439, + "make_id": 3182, + "model_id": 3432, + "year_id": 3439, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3440, + "make_id": 3182, + "model_id": 3432, + "year_id": 3439, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3441, + "make_id": 3182, + "model_id": 3432, + "year_id": 3439, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3442, + "make_id": 3182, + "model_id": 3432, + "year_id": 3442, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3443, + "make_id": 3182, + "model_id": 3432, + "year_id": 3442, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3444, + "make_id": 3182, + "model_id": 3432, + "year_id": 3442, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3445, + "make_id": 3182, + "model_id": 3432, + "year_id": 3445, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3446, + "make_id": 3182, + "model_id": 3432, + "year_id": 3445, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3447, + "make_id": 3182, + "model_id": 3447, + "year_id": 3447, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3448, + "make_id": 3182, + "model_id": 3447, + "year_id": 3448, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3449, + "make_id": 3182, + "model_id": 3447, + "year_id": 3448, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3450, + "make_id": 3182, + "model_id": 3447, + "year_id": 3450, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3451, + "make_id": 3182, + "model_id": 3447, + "year_id": 3450, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3452, + "make_id": 3182, + "model_id": 3447, + "year_id": 3452, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3453, + "make_id": 3182, + "model_id": 3447, + "year_id": 3452, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3454, + "make_id": 3182, + "model_id": 3447, + "year_id": 3454, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3455, + "make_id": 3182, + "model_id": 3447, + "year_id": 3455, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3456, + "make_id": 3182, + "model_id": 3447, + "year_id": 3455, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3457, + "make_id": 3182, + "model_id": 3447, + "year_id": 3457, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3458, + "make_id": 3182, + "model_id": 3447, + "year_id": 3457, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3459, + "make_id": 3182, + "model_id": 3447, + "year_id": 3459, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3460, + "make_id": 3182, + "model_id": 3447, + "year_id": 3459, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3461, + "make_id": 3182, + "model_id": 3447, + "year_id": 3461, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3462, + "make_id": 3182, + "model_id": 3447, + "year_id": 3461, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3463, + "make_id": 3182, + "model_id": 3447, + "year_id": 3463, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3464, + "make_id": 3182, + "model_id": 3447, + "year_id": 3463, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3465, + "make_id": 3182, + "model_id": 3447, + "year_id": 3465, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3466, + "make_id": 3182, + "model_id": 3447, + "year_id": 3465, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3467, + "make_id": 3182, + "model_id": 3447, + "year_id": 3467, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3468, + "make_id": 3182, + "model_id": 3447, + "year_id": 3467, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3469, + "make_id": 3182, + "model_id": 3447, + "year_id": 3469, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3470, + "make_id": 3182, + "model_id": 3447, + "year_id": 3469, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3471, + "make_id": 3182, + "model_id": 3447, + "year_id": 3471, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3472, + "make_id": 3182, + "model_id": 3447, + "year_id": 3471, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3473, + "make_id": 3182, + "model_id": 3447, + "year_id": 3473, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3474, + "make_id": 3182, + "model_id": 3447, + "year_id": 3473, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3475, + "make_id": 3182, + "model_id": 3475, + "year_id": 3475, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3476, + "make_id": 3182, + "model_id": 3475, + "year_id": 3475, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3477, + "make_id": 3182, + "model_id": 3475, + "year_id": 3475, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3478, + "make_id": 3182, + "model_id": 3475, + "year_id": 3475, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3479, + "make_id": 3182, + "model_id": 3475, + "year_id": 3479, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3480, + "make_id": 3182, + "model_id": 3475, + "year_id": 3479, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3481, + "make_id": 3182, + "model_id": 3475, + "year_id": 3479, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3482, + "make_id": 3182, + "model_id": 3475, + "year_id": 3479, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3483, + "make_id": 3182, + "model_id": 3475, + "year_id": 3483, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3484, + "make_id": 3182, + "model_id": 3475, + "year_id": 3483, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3485, + "make_id": 3182, + "model_id": 3475, + "year_id": 3483, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3486, + "make_id": 3182, + "model_id": 3475, + "year_id": 3483, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3487, + "make_id": 3182, + "model_id": 3475, + "year_id": 3487, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3488, + "make_id": 3182, + "model_id": 3475, + "year_id": 3487, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3489, + "make_id": 3182, + "model_id": 3475, + "year_id": 3487, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3490, + "make_id": 3182, + "model_id": 3475, + "year_id": 3487, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3491, + "make_id": 3182, + "model_id": 3491, + "year_id": 3491, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3492, + "make_id": 3182, + "model_id": 3491, + "year_id": 3492, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3493, + "make_id": 3182, + "model_id": 3491, + "year_id": 3493, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3494, + "make_id": 3182, + "model_id": 3491, + "year_id": 3494, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3495, + "make_id": 3182, + "model_id": 3495, + "year_id": 3495, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3496, + "make_id": 3182, + "model_id": 3495, + "year_id": 3495, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3497, + "make_id": 3182, + "model_id": 3495, + "year_id": 3495, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3498, + "make_id": 3182, + "model_id": 3495, + "year_id": 3495, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3499, + "make_id": 3182, + "model_id": 3495, + "year_id": 3495, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3500, + "make_id": 3182, + "model_id": 3495, + "year_id": 3495, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3501, + "make_id": 3182, + "model_id": 3495, + "year_id": 3495, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3502, + "make_id": 3182, + "model_id": 3495, + "year_id": 3495, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3503, + "make_id": 3182, + "model_id": 3495, + "year_id": 3495, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3504, + "make_id": 3182, + "model_id": 3495, + "year_id": 3504, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3505, + "make_id": 3182, + "model_id": 3495, + "year_id": 3504, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3506, + "make_id": 3182, + "model_id": 3495, + "year_id": 3504, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3507, + "make_id": 3182, + "model_id": 3495, + "year_id": 3504, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3508, + "make_id": 3182, + "model_id": 3495, + "year_id": 3504, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3509, + "make_id": 3182, + "model_id": 3495, + "year_id": 3504, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3510, + "make_id": 3182, + "model_id": 3495, + "year_id": 3504, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3511, + "make_id": 3182, + "model_id": 3495, + "year_id": 3504, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3512, + "make_id": 3182, + "model_id": 3495, + "year_id": 3512, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3513, + "make_id": 3182, + "model_id": 3495, + "year_id": 3512, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3514, + "make_id": 3182, + "model_id": 3495, + "year_id": 3512, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3515, + "make_id": 3182, + "model_id": 3495, + "year_id": 3512, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3516, + "make_id": 3182, + "model_id": 3495, + "year_id": 3516, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3517, + "make_id": 3182, + "model_id": 3495, + "year_id": 3516, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3518, + "make_id": 3182, + "model_id": 3495, + "year_id": 3516, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3519, + "make_id": 3182, + "model_id": 3495, + "year_id": 3516, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3520, + "make_id": 3182, + "model_id": 3495, + "year_id": 3520, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3521, + "make_id": 3182, + "model_id": 3495, + "year_id": 3521, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3522, + "make_id": 3182, + "model_id": 3495, + "year_id": 3521, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3523, + "make_id": 3182, + "model_id": 3495, + "year_id": 3523, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3524, + "make_id": 3182, + "model_id": 3495, + "year_id": 3523, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3525, + "make_id": 3182, + "model_id": 3495, + "year_id": 3525, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3526, + "make_id": 3182, + "model_id": 3495, + "year_id": 3525, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3527, + "make_id": 3182, + "model_id": 3495, + "year_id": 3527, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3528, + "make_id": 3182, + "model_id": 3495, + "year_id": 3527, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3529, + "make_id": 3182, + "model_id": 3495, + "year_id": 3527, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3530, + "make_id": 3182, + "model_id": 3495, + "year_id": 3530, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3531, + "make_id": 3182, + "model_id": 3495, + "year_id": 3530, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3532, + "make_id": 3182, + "model_id": 3495, + "year_id": 3530, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3533, + "make_id": 3182, + "model_id": 3495, + "year_id": 3533, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3534, + "make_id": 3182, + "model_id": 3495, + "year_id": 3533, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3535, + "make_id": 3182, + "model_id": 3495, + "year_id": 3535, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3536, + "make_id": 3182, + "model_id": 3495, + "year_id": 3535, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3537, + "make_id": 3182, + "model_id": 3495, + "year_id": 3535, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3538, + "make_id": 3182, + "model_id": 3495, + "year_id": 3538, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3539, + "make_id": 3182, + "model_id": 3495, + "year_id": 3538, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3540, + "make_id": 3182, + "model_id": 3495, + "year_id": 3540, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3541, + "make_id": 3182, + "model_id": 3495, + "year_id": 3540, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3542, + "make_id": 3182, + "model_id": 3495, + "year_id": 3542, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3543, + "make_id": 3182, + "model_id": 3495, + "year_id": 3542, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3544, + "make_id": 3182, + "model_id": 3495, + "year_id": 3544, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3545, + "make_id": 3182, + "model_id": 3495, + "year_id": 3544, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3546, + "make_id": 3182, + "model_id": 3495, + "year_id": 3546, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3547, + "make_id": 3182, + "model_id": 3495, + "year_id": 3546, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3548, + "make_id": 3182, + "model_id": 3495, + "year_id": 3548, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3549, + "make_id": 3182, + "model_id": 3495, + "year_id": 3548, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3550, + "make_id": 3182, + "model_id": 3495, + "year_id": 3550, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3551, + "make_id": 3182, + "model_id": 3495, + "year_id": 3550, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3552, + "make_id": 3182, + "model_id": 3495, + "year_id": 3552, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3553, + "make_id": 3182, + "model_id": 3495, + "year_id": 3552, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3554, + "make_id": 3182, + "model_id": 3495, + "year_id": 3554, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3555, + "make_id": 3182, + "model_id": 3495, + "year_id": 3554, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3556, + "make_id": 3182, + "model_id": 3495, + "year_id": 3554, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3557, + "make_id": 3182, + "model_id": 3495, + "year_id": 3557, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3558, + "make_id": 3182, + "model_id": 3495, + "year_id": 3557, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3559, + "make_id": 3182, + "model_id": 3495, + "year_id": 3557, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3560, + "make_id": 3182, + "model_id": 3495, + "year_id": 3557, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3561, + "make_id": 3182, + "model_id": 3495, + "year_id": 3557, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3562, + "make_id": 3182, + "model_id": 3495, + "year_id": 3557, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3563, + "make_id": 3182, + "model_id": 3495, + "year_id": 3557, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3564, + "make_id": 3182, + "model_id": 3495, + "year_id": 3564, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3565, + "make_id": 3182, + "model_id": 3495, + "year_id": 3564, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3566, + "make_id": 3182, + "model_id": 3495, + "year_id": 3564, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3567, + "make_id": 3182, + "model_id": 3495, + "year_id": 3564, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3568, + "make_id": 3182, + "model_id": 3495, + "year_id": 3564, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3569, + "make_id": 3182, + "model_id": 3495, + "year_id": 3564, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3570, + "make_id": 3182, + "model_id": 3495, + "year_id": 3564, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3571, + "make_id": 3182, + "model_id": 3495, + "year_id": 3571, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3572, + "make_id": 3182, + "model_id": 3495, + "year_id": 3571, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3573, + "make_id": 3182, + "model_id": 3495, + "year_id": 3571, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3574, + "make_id": 3182, + "model_id": 3495, + "year_id": 3571, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3575, + "make_id": 3182, + "model_id": 3495, + "year_id": 3575, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3576, + "make_id": 3182, + "model_id": 3495, + "year_id": 3575, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3577, + "make_id": 3182, + "model_id": 3495, + "year_id": 3575, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3578, + "make_id": 3182, + "model_id": 3495, + "year_id": 3575, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3579, + "make_id": 3182, + "model_id": 3495, + "year_id": 3579, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3580, + "make_id": 3182, + "model_id": 3495, + "year_id": 3579, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3581, + "make_id": 3182, + "model_id": 3495, + "year_id": 3579, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3582, + "make_id": 3182, + "model_id": 3495, + "year_id": 3579, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3583, + "make_id": 3182, + "model_id": 3495, + "year_id": 3583, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3584, + "make_id": 3182, + "model_id": 3495, + "year_id": 3583, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3585, + "make_id": 3182, + "model_id": 3585, + "year_id": 3585, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 3586, + "make_id": 3182, + "model_id": 3585, + "year_id": 3586, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3587, + "make_id": 3182, + "model_id": 3585, + "year_id": 3587, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3588, + "make_id": 3182, + "model_id": 3585, + "year_id": 3588, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3589, + "make_id": 3182, + "model_id": 3585, + "year_id": 3589, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3590, + "make_id": 3182, + "model_id": 3590, + "year_id": 3590, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3591, + "make_id": 3182, + "model_id": 3590, + "year_id": 3590, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3592, + "make_id": 3182, + "model_id": 3590, + "year_id": 3590, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3593, + "make_id": 3182, + "model_id": 3593, + "year_id": 3593, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3594, + "make_id": 3182, + "model_id": 3593, + "year_id": 3593, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3595, + "make_id": 3182, + "model_id": 3593, + "year_id": 3595, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3596, + "make_id": 3182, + "model_id": 3593, + "year_id": 3595, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3597, + "make_id": 3182, + "model_id": 3593, + "year_id": 3597, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3598, + "make_id": 3182, + "model_id": 3593, + "year_id": 3597, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3599, + "make_id": 3182, + "model_id": 3593, + "year_id": 3597, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3600, + "make_id": 3182, + "model_id": 3593, + "year_id": 3600, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3601, + "make_id": 3182, + "model_id": 3593, + "year_id": 3600, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3602, + "make_id": 3182, + "model_id": 3593, + "year_id": 3600, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3603, + "make_id": 3182, + "model_id": 3593, + "year_id": 3600, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3604, + "make_id": 3182, + "model_id": 3593, + "year_id": 3604, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3605, + "make_id": 3182, + "model_id": 3593, + "year_id": 3604, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3606, + "make_id": 3182, + "model_id": 3593, + "year_id": 3604, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3607, + "make_id": 3182, + "model_id": 3593, + "year_id": 3604, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3608, + "make_id": 3182, + "model_id": 3593, + "year_id": 3608, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3609, + "make_id": 3182, + "model_id": 3593, + "year_id": 3608, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3610, + "make_id": 3182, + "model_id": 3610, + "year_id": 3610, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3611, + "make_id": 3182, + "model_id": 3610, + "year_id": 3610, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3612, + "make_id": 3182, + "model_id": 3610, + "year_id": 3610, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3613, + "make_id": 3182, + "model_id": 3610, + "year_id": 3610, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3614, + "make_id": 3182, + "model_id": 3610, + "year_id": 3610, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3615, + "make_id": 3182, + "model_id": 3610, + "year_id": 3610, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3616, + "make_id": 3182, + "model_id": 3610, + "year_id": 3616, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3617, + "make_id": 3182, + "model_id": 3610, + "year_id": 3616, + "cylinders": 8, + "displacement": 5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3618, + "make_id": 3182, + "model_id": 3610, + "year_id": 3616, + "cylinders": 8, + "displacement": 5.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3619, + "make_id": 3182, + "model_id": 3610, + "year_id": 3616, + "cylinders": 8, + "displacement": 5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3620, + "make_id": 3182, + "model_id": 3610, + "year_id": 3620, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3621, + "make_id": 3182, + "model_id": 3610, + "year_id": 3621, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3622, + "make_id": 3182, + "model_id": 3610, + "year_id": 3622, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3623, + "make_id": 3182, + "model_id": 3610, + "year_id": 3623, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3624, + "make_id": 3182, + "model_id": 3610, + "year_id": 3624, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3625, + "make_id": 3182, + "model_id": 3610, + "year_id": 3625, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3626, + "make_id": 3182, + "model_id": 3610, + "year_id": 3626, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3627, + "make_id": 3182, + "model_id": 3610, + "year_id": 3627, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3628, + "make_id": 3182, + "model_id": 3610, + "year_id": 3628, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3629, + "make_id": 3182, + "model_id": 3610, + "year_id": 3629, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3630, + "make_id": 3182, + "model_id": 3610, + "year_id": 3629, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3631, + "make_id": 3182, + "model_id": 3610, + "year_id": 3631, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3632, + "make_id": 3182, + "model_id": 3610, + "year_id": 3631, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3633, + "make_id": 3182, + "model_id": 3610, + "year_id": 3633, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3634, + "make_id": 3182, + "model_id": 3610, + "year_id": 3634, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3635, + "make_id": 3182, + "model_id": 3635, + "year_id": 3635, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3636, + "make_id": 3182, + "model_id": 3635, + "year_id": 3635, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3637, + "make_id": 3182, + "model_id": 3635, + "year_id": 3635, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3638, + "make_id": 3182, + "model_id": 3635, + "year_id": 3635, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3639, + "make_id": 3182, + "model_id": 3635, + "year_id": 3635, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 3640, + "make_id": 3182, + "model_id": 3635, + "year_id": 3640, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3641, + "make_id": 3182, + "model_id": 3635, + "year_id": 3640, + "cylinders": 8, + "displacement": 5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3642, + "make_id": 3182, + "model_id": 3635, + "year_id": 3640, + "cylinders": 8, + "displacement": 5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3643, + "make_id": 3182, + "model_id": 3643, + "year_id": 3643, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3644, + "make_id": 3182, + "model_id": 3643, + "year_id": 3644, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3645, + "make_id": 3182, + "model_id": 3643, + "year_id": 3645, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3646, + "make_id": 3182, + "model_id": 3643, + "year_id": 3646, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3647, + "make_id": 3182, + "model_id": 3643, + "year_id": 3647, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3648, + "make_id": 3182, + "model_id": 3648, + "year_id": 3648, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3649, + "make_id": 3182, + "model_id": 3648, + "year_id": 3649, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3650, + "make_id": 3182, + "model_id": 3648, + "year_id": 3649, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3651, + "make_id": 3182, + "model_id": 3648, + "year_id": 3651, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3652, + "make_id": 3182, + "model_id": 3648, + "year_id": 3652, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3653, + "make_id": 3182, + "model_id": 3648, + "year_id": 3653, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3654, + "make_id": 3182, + "model_id": 3648, + "year_id": 3654, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3655, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3656, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3657, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 3658, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 3659, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3660, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 3661, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3662, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3663, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 3664, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 3665, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3666, + "make_id": 3182, + "model_id": 3655, + "year_id": 3655, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 3667, + "make_id": 3182, + "model_id": 3655, + "year_id": 3667, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3668, + "make_id": 3182, + "model_id": 3655, + "year_id": 3667, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3669, + "make_id": 3182, + "model_id": 3655, + "year_id": 3667, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3670, + "make_id": 3182, + "model_id": 3655, + "year_id": 3667, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3671, + "make_id": 3182, + "model_id": 3655, + "year_id": 3667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3672, + "make_id": 3182, + "model_id": 3655, + "year_id": 3667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3673, + "make_id": 3182, + "model_id": 3655, + "year_id": 3667, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3674, + "make_id": 3182, + "model_id": 3655, + "year_id": 3667, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3675, + "make_id": 3182, + "model_id": 3655, + "year_id": 3667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3676, + "make_id": 3182, + "model_id": 3655, + "year_id": 3667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3677, + "make_id": 3182, + "model_id": 3655, + "year_id": 3677, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3678, + "make_id": 3182, + "model_id": 3655, + "year_id": 3677, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3679, + "make_id": 3182, + "model_id": 3655, + "year_id": 3677, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3680, + "make_id": 3182, + "model_id": 3655, + "year_id": 3677, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3681, + "make_id": 3182, + "model_id": 3655, + "year_id": 3677, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3682, + "make_id": 3182, + "model_id": 3655, + "year_id": 3677, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3683, + "make_id": 3182, + "model_id": 3655, + "year_id": 3683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3684, + "make_id": 3182, + "model_id": 3655, + "year_id": 3683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3685, + "make_id": 3182, + "model_id": 3655, + "year_id": 3683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3686, + "make_id": 3182, + "model_id": 3655, + "year_id": 3683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3687, + "make_id": 3182, + "model_id": 3655, + "year_id": 3683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3688, + "make_id": 3182, + "model_id": 3655, + "year_id": 3683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3689, + "make_id": 3182, + "model_id": 3655, + "year_id": 3689, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3690, + "make_id": 3182, + "model_id": 3655, + "year_id": 3689, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3691, + "make_id": 3182, + "model_id": 3655, + "year_id": 3689, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3692, + "make_id": 3182, + "model_id": 3655, + "year_id": 3689, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3693, + "make_id": 3182, + "model_id": 3655, + "year_id": 3693, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3694, + "make_id": 3182, + "model_id": 3655, + "year_id": 3693, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3695, + "make_id": 3182, + "model_id": 3695, + "year_id": 3695, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3696, + "make_id": 3182, + "model_id": 3695, + "year_id": 3695, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 3697, + "make_id": 3182, + "model_id": 3695, + "year_id": 3695, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3698, + "make_id": 3182, + "model_id": 3695, + "year_id": 3695, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 3699, + "make_id": 3182, + "model_id": 3695, + "year_id": 3695, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3700, + "make_id": 3182, + "model_id": 3695, + "year_id": 3695, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 3701, + "make_id": 3182, + "model_id": 3695, + "year_id": 3695, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3702, + "make_id": 3182, + "model_id": 3695, + "year_id": 3695, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 3703, + "make_id": 3182, + "model_id": 3695, + "year_id": 3703, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3704, + "make_id": 3182, + "model_id": 3695, + "year_id": 3703, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3705, + "make_id": 3182, + "model_id": 3695, + "year_id": 3703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3706, + "make_id": 3182, + "model_id": 3695, + "year_id": 3703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3707, + "make_id": 3182, + "model_id": 3695, + "year_id": 3703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3708, + "make_id": 3182, + "model_id": 3695, + "year_id": 3703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3709, + "make_id": 3182, + "model_id": 3695, + "year_id": 3709, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3710, + "make_id": 3182, + "model_id": 3695, + "year_id": 3709, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3711, + "make_id": 3182, + "model_id": 3695, + "year_id": 3709, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3712, + "make_id": 3182, + "model_id": 3695, + "year_id": 3709, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3713, + "make_id": 3182, + "model_id": 3695, + "year_id": 3713, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3714, + "make_id": 3182, + "model_id": 3695, + "year_id": 3713, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3715, + "make_id": 3182, + "model_id": 3695, + "year_id": 3713, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3716, + "make_id": 3182, + "model_id": 3695, + "year_id": 3713, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3717, + "make_id": 3182, + "model_id": 3695, + "year_id": 3717, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3718, + "make_id": 3182, + "model_id": 3695, + "year_id": 3717, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3719, + "make_id": 3182, + "model_id": 3695, + "year_id": 3717, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3720, + "make_id": 3182, + "model_id": 3695, + "year_id": 3717, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3721, + "make_id": 3182, + "model_id": 3695, + "year_id": 3721, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3722, + "make_id": 3182, + "model_id": 3695, + "year_id": 3721, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3723, + "make_id": 3182, + "model_id": 3723, + "year_id": 3723, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3724, + "make_id": 3182, + "model_id": 3723, + "year_id": 3723, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 3725, + "make_id": 3182, + "model_id": 3723, + "year_id": 3723, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3726, + "make_id": 3182, + "model_id": 3723, + "year_id": 3723, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 3727, + "make_id": 3182, + "model_id": 3723, + "year_id": 3723, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3728, + "make_id": 3182, + "model_id": 3723, + "year_id": 3723, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 3729, + "make_id": 3182, + "model_id": 3723, + "year_id": 3723, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3730, + "make_id": 3182, + "model_id": 3723, + "year_id": 3723, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 3731, + "make_id": 3182, + "model_id": 3723, + "year_id": 3731, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3732, + "make_id": 3182, + "model_id": 3723, + "year_id": 3731, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3733, + "make_id": 3182, + "model_id": 3723, + "year_id": 3731, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3734, + "make_id": 3182, + "model_id": 3723, + "year_id": 3731, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3735, + "make_id": 3182, + "model_id": 3723, + "year_id": 3731, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3736, + "make_id": 3182, + "model_id": 3723, + "year_id": 3731, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3737, + "make_id": 3182, + "model_id": 3723, + "year_id": 3731, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3738, + "make_id": 3182, + "model_id": 3723, + "year_id": 3731, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3739, + "make_id": 3182, + "model_id": 3723, + "year_id": 3739, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3740, + "make_id": 3182, + "model_id": 3723, + "year_id": 3739, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3741, + "make_id": 3182, + "model_id": 3723, + "year_id": 3739, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3742, + "make_id": 3182, + "model_id": 3723, + "year_id": 3739, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3743, + "make_id": 3182, + "model_id": 3723, + "year_id": 3743, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3744, + "make_id": 3182, + "model_id": 3723, + "year_id": 3743, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3745, + "make_id": 3182, + "model_id": 3723, + "year_id": 3743, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3746, + "make_id": 3182, + "model_id": 3723, + "year_id": 3746, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3747, + "make_id": 3182, + "model_id": 3723, + "year_id": 3746, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3748, + "make_id": 3182, + "model_id": 3723, + "year_id": 3746, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3749, + "make_id": 3182, + "model_id": 3723, + "year_id": 3749, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3750, + "make_id": 3182, + "model_id": 3723, + "year_id": 3749, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3751, + "make_id": 3182, + "model_id": 3723, + "year_id": 3749, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3752, + "make_id": 3182, + "model_id": 3723, + "year_id": 3752, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3753, + "make_id": 3182, + "model_id": 3723, + "year_id": 3752, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3754, + "make_id": 3182, + "model_id": 3723, + "year_id": 3754, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3755, + "make_id": 3182, + "model_id": 3723, + "year_id": 3754, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3756, + "make_id": 3182, + "model_id": 3723, + "year_id": 3756, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3757, + "make_id": 3182, + "model_id": 3723, + "year_id": 3756, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3758, + "make_id": 3182, + "model_id": 3723, + "year_id": 3756, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3759, + "make_id": 3182, + "model_id": 3723, + "year_id": 3759, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3760, + "make_id": 3182, + "model_id": 3723, + "year_id": 3759, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3761, + "make_id": 3182, + "model_id": 3723, + "year_id": 3759, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3762, + "make_id": 3182, + "model_id": 3723, + "year_id": 3759, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3763, + "make_id": 3182, + "model_id": 3723, + "year_id": 3763, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3764, + "make_id": 3182, + "model_id": 3723, + "year_id": 3763, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3765, + "make_id": 3182, + "model_id": 3723, + "year_id": 3765, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3766, + "make_id": 3182, + "model_id": 3723, + "year_id": 3765, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3767, + "make_id": 3182, + "model_id": 3723, + "year_id": 3767, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3768, + "make_id": 3182, + "model_id": 3723, + "year_id": 3767, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3769, + "make_id": 3182, + "model_id": 3769, + "year_id": 3769, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3770, + "make_id": 3182, + "model_id": 3769, + "year_id": 3769, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3771, + "make_id": 3182, + "model_id": 3769, + "year_id": 3769, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3772, + "make_id": 3182, + "model_id": 3769, + "year_id": 3769, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3773, + "make_id": 3182, + "model_id": 3773, + "year_id": 3773, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3774, + "make_id": 3182, + "model_id": 3773, + "year_id": 3773, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3775, + "make_id": 3182, + "model_id": 3773, + "year_id": 3773, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3776, + "make_id": 3182, + "model_id": 3773, + "year_id": 3776, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3777, + "make_id": 3182, + "model_id": 3773, + "year_id": 3776, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3778, + "make_id": 3182, + "model_id": 3773, + "year_id": 3776, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3779, + "make_id": 3182, + "model_id": 3779, + "year_id": 3779, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3780, + "make_id": 3182, + "model_id": 3779, + "year_id": 3779, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3781, + "make_id": 3182, + "model_id": 3779, + "year_id": 3781, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3782, + "make_id": 3182, + "model_id": 3779, + "year_id": 3781, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3783, + "make_id": 3182, + "model_id": 3779, + "year_id": 3781, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3784, + "make_id": 3182, + "model_id": 3779, + "year_id": 3784, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3785, + "make_id": 3182, + "model_id": 3779, + "year_id": 3784, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3786, + "make_id": 3182, + "model_id": 3779, + "year_id": 3786, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3787, + "make_id": 3182, + "model_id": 3787, + "year_id": 3787, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3788, + "make_id": 3182, + "model_id": 3787, + "year_id": 3788, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3789, + "make_id": 3182, + "model_id": 3787, + "year_id": 3788, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3790, + "make_id": 3182, + "model_id": 3787, + "year_id": 3788, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3791, + "make_id": 3182, + "model_id": 3787, + "year_id": 3791, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3792, + "make_id": 3182, + "model_id": 3787, + "year_id": 3791, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3793, + "make_id": 3182, + "model_id": 3787, + "year_id": 3791, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3794, + "make_id": 3182, + "model_id": 3787, + "year_id": 3794, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3795, + "make_id": 3182, + "model_id": 3787, + "year_id": 3794, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3796, + "make_id": 3182, + "model_id": 3787, + "year_id": 3794, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3797, + "make_id": 3182, + "model_id": 3787, + "year_id": 3797, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3798, + "make_id": 3182, + "model_id": 3787, + "year_id": 3797, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3799, + "make_id": 3182, + "model_id": 3787, + "year_id": 3797, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3800, + "make_id": 3800, + "model_id": 3800, + "year_id": 3800, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 3801, + "make_id": 3800, + "model_id": 3800, + "year_id": 3801, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 3802, + "make_id": 3800, + "model_id": 3800, + "year_id": 3802, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 3803, + "make_id": 3800, + "model_id": 3800, + "year_id": 3803, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 3804, + "make_id": 3804, + "model_id": 3804, + "year_id": 3804, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3805, + "make_id": 3804, + "model_id": 3804, + "year_id": 3805, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3806, + "make_id": 3804, + "model_id": 3804, + "year_id": 3806, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3807, + "make_id": 3804, + "model_id": 3804, + "year_id": 3807, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3808, + "make_id": 3804, + "model_id": 3804, + "year_id": 3808, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3809, + "make_id": 3804, + "model_id": 3804, + "year_id": 3809, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3810, + "make_id": 3804, + "model_id": 3804, + "year_id": 3810, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3811, + "make_id": 3804, + "model_id": 3811, + "year_id": 3811, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3812, + "make_id": 3804, + "model_id": 3811, + "year_id": 3812, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3813, + "make_id": 3804, + "model_id": 3813, + "year_id": 3813, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3814, + "make_id": 3804, + "model_id": 3814, + "year_id": 3814, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3815, + "make_id": 3804, + "model_id": 3814, + "year_id": 3814, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3816, + "make_id": 3804, + "model_id": 3814, + "year_id": 3814, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3817, + "make_id": 3804, + "model_id": 3814, + "year_id": 3814, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3818, + "make_id": 3804, + "model_id": 3814, + "year_id": 3814, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3819, + "make_id": 3804, + "model_id": 3814, + "year_id": 3814, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3820, + "make_id": 3804, + "model_id": 3814, + "year_id": 3814, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3821, + "make_id": 3804, + "model_id": 3814, + "year_id": 3814, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3822, + "make_id": 3804, + "model_id": 3814, + "year_id": 3822, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3823, + "make_id": 3804, + "model_id": 3814, + "year_id": 3822, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3824, + "make_id": 3804, + "model_id": 3814, + "year_id": 3822, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3825, + "make_id": 3804, + "model_id": 3814, + "year_id": 3822, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3826, + "make_id": 3804, + "model_id": 3814, + "year_id": 3822, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3827, + "make_id": 3804, + "model_id": 3814, + "year_id": 3822, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3828, + "make_id": 3804, + "model_id": 3814, + "year_id": 3828, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3829, + "make_id": 3804, + "model_id": 3814, + "year_id": 3828, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3830, + "make_id": 3804, + "model_id": 3814, + "year_id": 3828, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3831, + "make_id": 3804, + "model_id": 3814, + "year_id": 3828, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3832, + "make_id": 3804, + "model_id": 3814, + "year_id": 3828, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3833, + "make_id": 3804, + "model_id": 3814, + "year_id": 3828, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3834, + "make_id": 3804, + "model_id": 3814, + "year_id": 3834, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3835, + "make_id": 3804, + "model_id": 3814, + "year_id": 3834, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3836, + "make_id": 3804, + "model_id": 3814, + "year_id": 3834, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3837, + "make_id": 3804, + "model_id": 3814, + "year_id": 3834, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3838, + "make_id": 3804, + "model_id": 3814, + "year_id": 3834, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3839, + "make_id": 3804, + "model_id": 3814, + "year_id": 3834, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3840, + "make_id": 3804, + "model_id": 3840, + "year_id": 3840, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3841, + "make_id": 3804, + "model_id": 3840, + "year_id": 3840, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3842, + "make_id": 3804, + "model_id": 3842, + "year_id": 3842, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3843, + "make_id": 3804, + "model_id": 3842, + "year_id": 3843, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3844, + "make_id": 3804, + "model_id": 3842, + "year_id": 3844, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3845, + "make_id": 3804, + "model_id": 3842, + "year_id": 3845, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3846, + "make_id": 3804, + "model_id": 3842, + "year_id": 3845, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3847, + "make_id": 3804, + "model_id": 3842, + "year_id": 3847, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3848, + "make_id": 3804, + "model_id": 3842, + "year_id": 3847, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3849, + "make_id": 3804, + "model_id": 3842, + "year_id": 3849, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3850, + "make_id": 3804, + "model_id": 3842, + "year_id": 3849, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3851, + "make_id": 3804, + "model_id": 3851, + "year_id": 3851, + "cylinders": 8, + "displacement": 4.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3852, + "make_id": 3804, + "model_id": 3851, + "year_id": 3851, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3853, + "make_id": 3804, + "model_id": 3851, + "year_id": 3851, + "cylinders": 8, + "displacement": 4.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3854, + "make_id": 3804, + "model_id": 3854, + "year_id": 3854, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3855, + "make_id": 3804, + "model_id": 3854, + "year_id": 3855, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3856, + "make_id": 3804, + "model_id": 3854, + "year_id": 3856, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3857, + "make_id": 3804, + "model_id": 3854, + "year_id": 3857, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3858, + "make_id": 3804, + "model_id": 3854, + "year_id": 3858, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3859, + "make_id": 3804, + "model_id": 3859, + "year_id": 3859, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3860, + "make_id": 3804, + "model_id": 3859, + "year_id": 3859, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 3861, + "make_id": 3804, + "model_id": 3859, + "year_id": 3859, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 3862, + "make_id": 3804, + "model_id": 3859, + "year_id": 3859, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 3863, + "make_id": 3804, + "model_id": 3859, + "year_id": 3863, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3864, + "make_id": 3804, + "model_id": 3859, + "year_id": 3863, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3865, + "make_id": 3804, + "model_id": 3859, + "year_id": 3863, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3866, + "make_id": 3804, + "model_id": 3859, + "year_id": 3863, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3867, + "make_id": 3804, + "model_id": 3859, + "year_id": 3863, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3868, + "make_id": 3804, + "model_id": 3859, + "year_id": 3863, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3869, + "make_id": 3804, + "model_id": 3859, + "year_id": 3863, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3870, + "make_id": 3804, + "model_id": 3859, + "year_id": 3863, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3871, + "make_id": 3804, + "model_id": 3859, + "year_id": 3871, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3872, + "make_id": 3804, + "model_id": 3859, + "year_id": 3871, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3873, + "make_id": 3804, + "model_id": 3859, + "year_id": 3871, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3874, + "make_id": 3804, + "model_id": 3859, + "year_id": 3871, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 3875, + "make_id": 3804, + "model_id": 3859, + "year_id": 3875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3876, + "make_id": 3804, + "model_id": 3859, + "year_id": 3875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3877, + "make_id": 3804, + "model_id": 3859, + "year_id": 3875, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3878, + "make_id": 3804, + "model_id": 3859, + "year_id": 3875, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3879, + "make_id": 3804, + "model_id": 3859, + "year_id": 3879, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 3880, + "make_id": 3804, + "model_id": 3859, + "year_id": 3879, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3881, + "make_id": 3804, + "model_id": 3881, + "year_id": 3881, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3882, + "make_id": 3804, + "model_id": 3881, + "year_id": 3882, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3883, + "make_id": 3804, + "model_id": 3881, + "year_id": 3883, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3884, + "make_id": 3804, + "model_id": 3881, + "year_id": 3884, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3885, + "make_id": 3804, + "model_id": 3881, + "year_id": 3885, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3886, + "make_id": 3804, + "model_id": 3881, + "year_id": 3886, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 3887, + "make_id": 3804, + "model_id": 3887, + "year_id": 3887, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3888, + "make_id": 3804, + "model_id": 3887, + "year_id": 3887, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3889, + "make_id": 3804, + "model_id": 3887, + "year_id": 3887, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3890, + "make_id": 3804, + "model_id": 3890, + "year_id": 3890, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3891, + "make_id": 3804, + "model_id": 3890, + "year_id": 3890, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3892, + "make_id": 3804, + "model_id": 3890, + "year_id": 3892, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3893, + "make_id": 3804, + "model_id": 3890, + "year_id": 3892, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 3894, + "make_id": 3804, + "model_id": 3890, + "year_id": 3892, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3895, + "make_id": 3804, + "model_id": 3890, + "year_id": 3895, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3896, + "make_id": 3804, + "model_id": 3890, + "year_id": 3895, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3897, + "make_id": 3804, + "model_id": 3890, + "year_id": 3895, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3898, + "make_id": 3804, + "model_id": 3890, + "year_id": 3895, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3899, + "make_id": 3804, + "model_id": 3890, + "year_id": 3899, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3900, + "make_id": 3804, + "model_id": 3890, + "year_id": 3899, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3901, + "make_id": 3804, + "model_id": 3890, + "year_id": 3899, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3902, + "make_id": 3804, + "model_id": 3890, + "year_id": 3899, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3903, + "make_id": 3804, + "model_id": 3890, + "year_id": 3903, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3904, + "make_id": 3804, + "model_id": 3890, + "year_id": 3903, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3905, + "make_id": 3804, + "model_id": 3890, + "year_id": 3903, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3906, + "make_id": 3804, + "model_id": 3890, + "year_id": 3903, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 3907, + "make_id": 3804, + "model_id": 3890, + "year_id": 3907, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3908, + "make_id": 3804, + "model_id": 3890, + "year_id": 3907, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3909, + "make_id": 3804, + "model_id": 3890, + "year_id": 3907, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3910, + "make_id": 3804, + "model_id": 3890, + "year_id": 3907, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3911, + "make_id": 3804, + "model_id": 3890, + "year_id": 3907, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3912, + "make_id": 3804, + "model_id": 3890, + "year_id": 3907, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3913, + "make_id": 3804, + "model_id": 3890, + "year_id": 3913, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3914, + "make_id": 3804, + "model_id": 3890, + "year_id": 3913, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3915, + "make_id": 3804, + "model_id": 3890, + "year_id": 3913, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3916, + "make_id": 3804, + "model_id": 3890, + "year_id": 3913, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3917, + "make_id": 3804, + "model_id": 3890, + "year_id": 3913, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3918, + "make_id": 3804, + "model_id": 3890, + "year_id": 3913, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3919, + "make_id": 3804, + "model_id": 3890, + "year_id": 3919, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3920, + "make_id": 3804, + "model_id": 3890, + "year_id": 3919, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3921, + "make_id": 3804, + "model_id": 3890, + "year_id": 3919, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3922, + "make_id": 3804, + "model_id": 3890, + "year_id": 3919, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3923, + "make_id": 3804, + "model_id": 3890, + "year_id": 3919, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3924, + "make_id": 3804, + "model_id": 3890, + "year_id": 3919, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3925, + "make_id": 3804, + "model_id": 3890, + "year_id": 3925, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3926, + "make_id": 3804, + "model_id": 3890, + "year_id": 3925, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3927, + "make_id": 3804, + "model_id": 3890, + "year_id": 3925, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3928, + "make_id": 3804, + "model_id": 3890, + "year_id": 3925, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3929, + "make_id": 3804, + "model_id": 3890, + "year_id": 3925, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3930, + "make_id": 3804, + "model_id": 3890, + "year_id": 3925, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3931, + "make_id": 3804, + "model_id": 3890, + "year_id": 3925, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3932, + "make_id": 3804, + "model_id": 3890, + "year_id": 3925, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3933, + "make_id": 3804, + "model_id": 3890, + "year_id": 3933, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3934, + "make_id": 3804, + "model_id": 3890, + "year_id": 3933, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3935, + "make_id": 3804, + "model_id": 3890, + "year_id": 3933, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3936, + "make_id": 3804, + "model_id": 3890, + "year_id": 3933, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3937, + "make_id": 3804, + "model_id": 3890, + "year_id": 3933, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3938, + "make_id": 3804, + "model_id": 3890, + "year_id": 3933, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3939, + "make_id": 3804, + "model_id": 3890, + "year_id": 3933, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3940, + "make_id": 3804, + "model_id": 3890, + "year_id": 3940, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3941, + "make_id": 3804, + "model_id": 3890, + "year_id": 3940, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3942, + "make_id": 3804, + "model_id": 3890, + "year_id": 3940, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3943, + "make_id": 3804, + "model_id": 3890, + "year_id": 3940, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3944, + "make_id": 3804, + "model_id": 3890, + "year_id": 3940, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3945, + "make_id": 3804, + "model_id": 3890, + "year_id": 3940, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3946, + "make_id": 3804, + "model_id": 3890, + "year_id": 3940, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3947, + "make_id": 3804, + "model_id": 3890, + "year_id": 3947, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3948, + "make_id": 3804, + "model_id": 3890, + "year_id": 3947, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3949, + "make_id": 3804, + "model_id": 3890, + "year_id": 3947, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3950, + "make_id": 3804, + "model_id": 3890, + "year_id": 3947, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3951, + "make_id": 3804, + "model_id": 3890, + "year_id": 3951, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3952, + "make_id": 3804, + "model_id": 3890, + "year_id": 3951, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3953, + "make_id": 3804, + "model_id": 3953, + "year_id": 3953, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3954, + "make_id": 3804, + "model_id": 3953, + "year_id": 3953, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3955, + "make_id": 3804, + "model_id": 3953, + "year_id": 3953, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3956, + "make_id": 3804, + "model_id": 3953, + "year_id": 3953, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3957, + "make_id": 3804, + "model_id": 3953, + "year_id": 3953, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3958, + "make_id": 3804, + "model_id": 3953, + "year_id": 3958, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3959, + "make_id": 3804, + "model_id": 3953, + "year_id": 3958, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3960, + "make_id": 3804, + "model_id": 3953, + "year_id": 3958, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3961, + "make_id": 3804, + "model_id": 3953, + "year_id": 3958, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3962, + "make_id": 3804, + "model_id": 3953, + "year_id": 3958, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3963, + "make_id": 3804, + "model_id": 3953, + "year_id": 3963, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3964, + "make_id": 3804, + "model_id": 3953, + "year_id": 3963, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3965, + "make_id": 3804, + "model_id": 3953, + "year_id": 3963, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3966, + "make_id": 3804, + "model_id": 3953, + "year_id": 3963, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3967, + "make_id": 3804, + "model_id": 3953, + "year_id": 3963, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 3968, + "make_id": 3804, + "model_id": 3968, + "year_id": 3968, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3969, + "make_id": 3804, + "model_id": 3968, + "year_id": 3968, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3970, + "make_id": 3804, + "model_id": 3970, + "year_id": 3970, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3971, + "make_id": 3804, + "model_id": 3970, + "year_id": 3970, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3972, + "make_id": 3804, + "model_id": 3970, + "year_id": 3970, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3973, + "make_id": 3804, + "model_id": 3970, + "year_id": 3970, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3974, + "make_id": 3804, + "model_id": 3970, + "year_id": 3974, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3975, + "make_id": 3804, + "model_id": 3970, + "year_id": 3974, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3976, + "make_id": 3804, + "model_id": 3970, + "year_id": 3974, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3977, + "make_id": 3804, + "model_id": 3970, + "year_id": 3974, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3978, + "make_id": 3804, + "model_id": 3970, + "year_id": 3974, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3979, + "make_id": 3804, + "model_id": 3970, + "year_id": 3974, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3980, + "make_id": 3804, + "model_id": 3970, + "year_id": 3980, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3981, + "make_id": 3804, + "model_id": 3970, + "year_id": 3980, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3982, + "make_id": 3804, + "model_id": 3970, + "year_id": 3980, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3983, + "make_id": 3804, + "model_id": 3970, + "year_id": 3980, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3984, + "make_id": 3804, + "model_id": 3970, + "year_id": 3980, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3985, + "make_id": 3804, + "model_id": 3970, + "year_id": 3980, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3986, + "make_id": 3804, + "model_id": 3970, + "year_id": 3986, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3987, + "make_id": 3804, + "model_id": 3970, + "year_id": 3986, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3988, + "make_id": 3804, + "model_id": 3970, + "year_id": 3986, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3989, + "make_id": 3804, + "model_id": 3970, + "year_id": 3986, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3990, + "make_id": 3804, + "model_id": 3970, + "year_id": 3986, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3991, + "make_id": 3804, + "model_id": 3970, + "year_id": 3986, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3992, + "make_id": 3804, + "model_id": 3970, + "year_id": 3992, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3993, + "make_id": 3804, + "model_id": 3970, + "year_id": 3992, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3994, + "make_id": 3804, + "model_id": 3970, + "year_id": 3992, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3995, + "make_id": 3804, + "model_id": 3970, + "year_id": 3992, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3996, + "make_id": 3804, + "model_id": 3970, + "year_id": 3992, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3997, + "make_id": 3804, + "model_id": 3970, + "year_id": 3992, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 3998, + "make_id": 3804, + "model_id": 3998, + "year_id": 3998, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 3999, + "make_id": 3804, + "model_id": 3998, + "year_id": 3999, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4000, + "make_id": 3804, + "model_id": 3998, + "year_id": 4000, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4001, + "make_id": 3804, + "model_id": 3998, + "year_id": 4001, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4002, + "make_id": 3804, + "model_id": 3998, + "year_id": 4002, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4003, + "make_id": 3804, + "model_id": 3998, + "year_id": 4002, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4004, + "make_id": 3804, + "model_id": 3998, + "year_id": 4004, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 4005, + "make_id": 3804, + "model_id": 4005, + "year_id": 4005, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4006, + "make_id": 3804, + "model_id": 4005, + "year_id": 4006, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4007, + "make_id": 3804, + "model_id": 4005, + "year_id": 4007, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4008, + "make_id": 3804, + "model_id": 4005, + "year_id": 4008, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4009, + "make_id": 3804, + "model_id": 4005, + "year_id": 4009, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4010, + "make_id": 3804, + "model_id": 4005, + "year_id": 4010, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4011, + "make_id": 3804, + "model_id": 4005, + "year_id": 4011, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4012, + "make_id": 3804, + "model_id": 4005, + "year_id": 4012, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4013, + "make_id": 3804, + "model_id": 4005, + "year_id": 4013, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4014, + "make_id": 3804, + "model_id": 4005, + "year_id": 4014, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4015, + "make_id": 3804, + "model_id": 4005, + "year_id": 4014, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4016, + "make_id": 3804, + "model_id": 4005, + "year_id": 4016, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4017, + "make_id": 3804, + "model_id": 4005, + "year_id": 4016, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4018, + "make_id": 3804, + "model_id": 4018, + "year_id": 4018, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4019, + "make_id": 3804, + "model_id": 4019, + "year_id": 4019, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4020, + "make_id": 3804, + "model_id": 4019, + "year_id": 4019, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4021, + "make_id": 3804, + "model_id": 4019, + "year_id": 4021, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4022, + "make_id": 3804, + "model_id": 4019, + "year_id": 4021, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4023, + "make_id": 3804, + "model_id": 4023, + "year_id": 4023, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4024, + "make_id": 3804, + "model_id": 4023, + "year_id": 4023, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4025, + "make_id": 3804, + "model_id": 4023, + "year_id": 4025, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4026, + "make_id": 3804, + "model_id": 4023, + "year_id": 4025, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4027, + "make_id": 3804, + "model_id": 4023, + "year_id": 4027, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4028, + "make_id": 3804, + "model_id": 4023, + "year_id": 4027, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4029, + "make_id": 3804, + "model_id": 4023, + "year_id": 4029, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4030, + "make_id": 3804, + "model_id": 4023, + "year_id": 4029, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4031, + "make_id": 3804, + "model_id": 4023, + "year_id": 4031, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4032, + "make_id": 3804, + "model_id": 4023, + "year_id": 4031, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4033, + "make_id": 3804, + "model_id": 4023, + "year_id": 4033, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4034, + "make_id": 3804, + "model_id": 4034, + "year_id": 4034, + "cylinders": 8, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4035, + "make_id": 3804, + "model_id": 4034, + "year_id": 4034, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4036, + "make_id": 3804, + "model_id": 4034, + "year_id": 4034, + "cylinders": 8, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4037, + "make_id": 3804, + "model_id": 4034, + "year_id": 4037, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4038, + "make_id": 3804, + "model_id": 4034, + "year_id": 4037, + "cylinders": 8, + "displacement": 5.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4039, + "make_id": 3804, + "model_id": 4034, + "year_id": 4037, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4040, + "make_id": 3804, + "model_id": 4034, + "year_id": 4040, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4041, + "make_id": 3804, + "model_id": 4034, + "year_id": 4041, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4042, + "make_id": 3804, + "model_id": 4034, + "year_id": 4042, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4043, + "make_id": 3804, + "model_id": 4034, + "year_id": 4043, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4044, + "make_id": 3804, + "model_id": 4034, + "year_id": 4044, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4045, + "make_id": 3804, + "model_id": 4034, + "year_id": 4045, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4046, + "make_id": 3804, + "model_id": 4034, + "year_id": 4046, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4047, + "make_id": 3804, + "model_id": 4034, + "year_id": 4047, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4048, + "make_id": 3804, + "model_id": 4034, + "year_id": 4047, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4049, + "make_id": 3804, + "model_id": 4034, + "year_id": 4049, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4050, + "make_id": 3804, + "model_id": 4034, + "year_id": 4050, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4051, + "make_id": 3804, + "model_id": 4034, + "year_id": 4051, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4052, + "make_id": 3804, + "model_id": 4034, + "year_id": 4052, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4053, + "make_id": 3804, + "model_id": 4034, + "year_id": 4053, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4054, + "make_id": 3804, + "model_id": 4034, + "year_id": 4054, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4055, + "make_id": 3804, + "model_id": 4034, + "year_id": 4055, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4056, + "make_id": 3804, + "model_id": 4034, + "year_id": 4056, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4057, + "make_id": 3804, + "model_id": 4034, + "year_id": 4057, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4058, + "make_id": 3804, + "model_id": 4058, + "year_id": 4058, + "cylinders": 8, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4059, + "make_id": 3804, + "model_id": 4058, + "year_id": 4058, + "cylinders": 8, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4060, + "make_id": 3804, + "model_id": 4058, + "year_id": 4060, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4061, + "make_id": 3804, + "model_id": 4061, + "year_id": 4061, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4062, + "make_id": 3804, + "model_id": 4061, + "year_id": 4062, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4063, + "make_id": 3804, + "model_id": 4061, + "year_id": 4063, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4064, + "make_id": 3804, + "model_id": 4064, + "year_id": 4064, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4065, + "make_id": 3804, + "model_id": 4065, + "year_id": 4065, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4066, + "make_id": 3804, + "model_id": 4065, + "year_id": 4066, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4067, + "make_id": 3804, + "model_id": 4065, + "year_id": 4067, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4068, + "make_id": 3804, + "model_id": 4065, + "year_id": 4067, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4069, + "make_id": 3804, + "model_id": 4065, + "year_id": 4069, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4070, + "make_id": 3804, + "model_id": 4065, + "year_id": 4069, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4071, + "make_id": 3804, + "model_id": 4065, + "year_id": 4071, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4072, + "make_id": 3804, + "model_id": 4065, + "year_id": 4071, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4073, + "make_id": 3804, + "model_id": 4065, + "year_id": 4073, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4074, + "make_id": 3804, + "model_id": 4065, + "year_id": 4073, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4075, + "make_id": 3804, + "model_id": 4065, + "year_id": 4073, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4076, + "make_id": 3804, + "model_id": 4065, + "year_id": 4076, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4077, + "make_id": 3804, + "model_id": 4065, + "year_id": 4076, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4078, + "make_id": 3804, + "model_id": 4065, + "year_id": 4078, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4079, + "make_id": 3804, + "model_id": 4065, + "year_id": 4078, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4080, + "make_id": 3804, + "model_id": 4065, + "year_id": 4080, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4081, + "make_id": 3804, + "model_id": 4065, + "year_id": 4080, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4082, + "make_id": 3804, + "model_id": 4065, + "year_id": 4082, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4083, + "make_id": 3804, + "model_id": 4065, + "year_id": 4082, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4084, + "make_id": 3804, + "model_id": 4065, + "year_id": 4084, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4085, + "make_id": 3804, + "model_id": 4065, + "year_id": 4084, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4086, + "make_id": 3804, + "model_id": 4065, + "year_id": 4086, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4087, + "make_id": 3804, + "model_id": 4065, + "year_id": 4086, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4088, + "make_id": 3804, + "model_id": 4065, + "year_id": 4088, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4089, + "make_id": 3804, + "model_id": 4065, + "year_id": 4088, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4090, + "make_id": 3804, + "model_id": 4065, + "year_id": 4090, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4091, + "make_id": 3804, + "model_id": 4065, + "year_id": 4090, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4092, + "make_id": 3804, + "model_id": 4065, + "year_id": 4092, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4093, + "make_id": 3804, + "model_id": 4065, + "year_id": 4092, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4094, + "make_id": 3804, + "model_id": 4065, + "year_id": 4094, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4095, + "make_id": 3804, + "model_id": 4065, + "year_id": 4094, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4096, + "make_id": 3804, + "model_id": 4065, + "year_id": 4094, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 4097, + "make_id": 3804, + "model_id": 4065, + "year_id": 4094, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 4098, + "make_id": 3804, + "model_id": 4065, + "year_id": 4098, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 4099, + "make_id": 3804, + "model_id": 4065, + "year_id": 4098, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 4100, + "make_id": 3804, + "model_id": 4100, + "year_id": 4100, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4101, + "make_id": 3804, + "model_id": 4100, + "year_id": 4101, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4102, + "make_id": 3804, + "model_id": 4100, + "year_id": 4102, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4103, + "make_id": 3804, + "model_id": 4100, + "year_id": 4103, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4104, + "make_id": 3804, + "model_id": 4100, + "year_id": 4104, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4105, + "make_id": 3804, + "model_id": 4100, + "year_id": 4105, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4106, + "make_id": 3804, + "model_id": 4100, + "year_id": 4106, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4107, + "make_id": 3804, + "model_id": 4100, + "year_id": 4107, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4108, + "make_id": 3804, + "model_id": 4100, + "year_id": 4107, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4109, + "make_id": 3804, + "model_id": 4100, + "year_id": 4109, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4110, + "make_id": 3804, + "model_id": 4100, + "year_id": 4109, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4111, + "make_id": 3804, + "model_id": 4100, + "year_id": 4111, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4112, + "make_id": 3804, + "model_id": 4100, + "year_id": 4111, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4113, + "make_id": 3804, + "model_id": 4100, + "year_id": 4113, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4114, + "make_id": 3804, + "model_id": 4100, + "year_id": 4113, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4115, + "make_id": 3804, + "model_id": 4100, + "year_id": 4115, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4116, + "make_id": 3804, + "model_id": 4100, + "year_id": 4115, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4117, + "make_id": 3804, + "model_id": 4100, + "year_id": 4115, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 4118, + "make_id": 3804, + "model_id": 4100, + "year_id": 4115, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 4119, + "make_id": 3804, + "model_id": 4119, + "year_id": 4119, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4120, + "make_id": 3804, + "model_id": 4119, + "year_id": 4120, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4121, + "make_id": 3804, + "model_id": 4119, + "year_id": 4121, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4122, + "make_id": 3804, + "model_id": 4119, + "year_id": 4122, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4123, + "make_id": 3804, + "model_id": 4119, + "year_id": 4123, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4124, + "make_id": 3804, + "model_id": 4119, + "year_id": 4124, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4125, + "make_id": 3804, + "model_id": 4119, + "year_id": 4125, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4126, + "make_id": 3804, + "model_id": 4119, + "year_id": 4126, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4127, + "make_id": 3804, + "model_id": 4127, + "year_id": 4127, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4128, + "make_id": 3804, + "model_id": 4127, + "year_id": 4128, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4129, + "make_id": 3804, + "model_id": 4127, + "year_id": 4129, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4130, + "make_id": 3804, + "model_id": 4127, + "year_id": 4129, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4131, + "make_id": 3804, + "model_id": 4127, + "year_id": 4131, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4132, + "make_id": 3804, + "model_id": 4127, + "year_id": 4131, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4133, + "make_id": 3804, + "model_id": 4127, + "year_id": 4133, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4134, + "make_id": 3804, + "model_id": 4127, + "year_id": 4133, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 4135, + "make_id": 3804, + "model_id": 4135, + "year_id": 4135, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4136, + "make_id": 3804, + "model_id": 4135, + "year_id": 4136, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4137, + "make_id": 3804, + "model_id": 4135, + "year_id": 4137, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4138, + "make_id": 3804, + "model_id": 4135, + "year_id": 4138, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4139, + "make_id": 3804, + "model_id": 4135, + "year_id": 4139, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4140, + "make_id": 3804, + "model_id": 4140, + "year_id": 4140, + "cylinders": 8, + "displacement": 4.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4141, + "make_id": 3804, + "model_id": 4140, + "year_id": 4140, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4142, + "make_id": 3804, + "model_id": 4140, + "year_id": 4142, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4143, + "make_id": 3804, + "model_id": 4143, + "year_id": 4143, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4144, + "make_id": 3804, + "model_id": 4143, + "year_id": 4144, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4145, + "make_id": 3804, + "model_id": 4143, + "year_id": 4144, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4146, + "make_id": 3804, + "model_id": 4143, + "year_id": 4144, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4147, + "make_id": 3804, + "model_id": 4143, + "year_id": 4144, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4148, + "make_id": 3804, + "model_id": 4143, + "year_id": 4148, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4149, + "make_id": 3804, + "model_id": 4143, + "year_id": 4149, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4150, + "make_id": 3804, + "model_id": 4143, + "year_id": 4150, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4151, + "make_id": 3804, + "model_id": 4143, + "year_id": 4151, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4152, + "make_id": 3804, + "model_id": 4143, + "year_id": 4152, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4153, + "make_id": 3804, + "model_id": 4143, + "year_id": 4153, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4154, + "make_id": 3804, + "model_id": 4154, + "year_id": 4154, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4155, + "make_id": 3804, + "model_id": 4154, + "year_id": 4155, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4156, + "make_id": 3804, + "model_id": 4154, + "year_id": 4156, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4157, + "make_id": 3804, + "model_id": 4154, + "year_id": 4157, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4158, + "make_id": 3804, + "model_id": 4154, + "year_id": 4158, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4159, + "make_id": 3804, + "model_id": 4154, + "year_id": 4159, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4160, + "make_id": 3804, + "model_id": 4154, + "year_id": 4160, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4161, + "make_id": 3804, + "model_id": 4154, + "year_id": 4161, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4162, + "make_id": 3804, + "model_id": 4154, + "year_id": 4162, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4163, + "make_id": 3804, + "model_id": 4163, + "year_id": 4163, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4164, + "make_id": 3804, + "model_id": 4163, + "year_id": 4164, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4165, + "make_id": 3804, + "model_id": 4165, + "year_id": 4165, + "cylinders": 8, + "displacement": 6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 4166, + "make_id": 3804, + "model_id": 4165, + "year_id": 4166, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4167, + "make_id": 3804, + "model_id": 4165, + "year_id": 4167, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4168, + "make_id": 3804, + "model_id": 4165, + "year_id": 4168, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4169, + "make_id": 3804, + "model_id": 4165, + "year_id": 4169, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4170, + "make_id": 3804, + "model_id": 4165, + "year_id": 4170, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4171, + "make_id": 3804, + "model_id": 4165, + "year_id": 4171, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4172, + "make_id": 3804, + "model_id": 4165, + "year_id": 4172, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4173, + "make_id": 3804, + "model_id": 4165, + "year_id": 4173, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4174, + "make_id": 3804, + "model_id": 4165, + "year_id": 4174, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4175, + "make_id": 3804, + "model_id": 4165, + "year_id": 4175, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4176, + "make_id": 3804, + "model_id": 4165, + "year_id": 4176, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4177, + "make_id": 3804, + "model_id": 4165, + "year_id": 4177, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4178, + "make_id": 3804, + "model_id": 4165, + "year_id": 4178, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4179, + "make_id": 3804, + "model_id": 4165, + "year_id": 4179, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4180, + "make_id": 3804, + "model_id": 4165, + "year_id": 4180, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4181, + "make_id": 3804, + "model_id": 4181, + "year_id": 4181, + "cylinders": 8, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4182, + "make_id": 3804, + "model_id": 4181, + "year_id": 4181, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4183, + "make_id": 3804, + "model_id": 4181, + "year_id": 4181, + "cylinders": 8, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4184, + "make_id": 3804, + "model_id": 4181, + "year_id": 4184, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4185, + "make_id": 3804, + "model_id": 4181, + "year_id": 4184, + "cylinders": 8, + "displacement": 5.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4186, + "make_id": 3804, + "model_id": 4181, + "year_id": 4184, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4187, + "make_id": 3804, + "model_id": 4181, + "year_id": 4187, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4188, + "make_id": 3804, + "model_id": 4181, + "year_id": 4188, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4189, + "make_id": 3804, + "model_id": 4181, + "year_id": 4189, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4190, + "make_id": 3804, + "model_id": 4181, + "year_id": 4190, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4191, + "make_id": 3804, + "model_id": 4181, + "year_id": 4191, + "cylinders": 8, + "displacement": 4.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4192, + "make_id": 3804, + "model_id": 4181, + "year_id": 4192, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4193, + "make_id": 3804, + "model_id": 4181, + "year_id": 4193, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4194, + "make_id": 3804, + "model_id": 4181, + "year_id": 4194, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4195, + "make_id": 3804, + "model_id": 4181, + "year_id": 4194, + "cylinders": 8, + "displacement": 4.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4196, + "make_id": 3804, + "model_id": 4181, + "year_id": 4196, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4197, + "make_id": 3804, + "model_id": 4181, + "year_id": 4197, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4198, + "make_id": 3804, + "model_id": 4181, + "year_id": 4198, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4199, + "make_id": 3804, + "model_id": 4181, + "year_id": 4199, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4200, + "make_id": 3804, + "model_id": 4181, + "year_id": 4200, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4201, + "make_id": 3804, + "model_id": 4181, + "year_id": 4201, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4202, + "make_id": 3804, + "model_id": 4181, + "year_id": 4202, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4203, + "make_id": 3804, + "model_id": 4181, + "year_id": 4203, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4204, + "make_id": 3804, + "model_id": 4181, + "year_id": 4204, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4205, + "make_id": 3804, + "model_id": 4181, + "year_id": 4205, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4206, + "make_id": 3804, + "model_id": 4181, + "year_id": 4206, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4207, + "make_id": 3804, + "model_id": 4181, + "year_id": 4206, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4208, + "make_id": 3804, + "model_id": 4208, + "year_id": 4208, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4209, + "make_id": 3804, + "model_id": 4208, + "year_id": 4208, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4210, + "make_id": 3804, + "model_id": 4208, + "year_id": 4208, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4211, + "make_id": 3804, + "model_id": 4208, + "year_id": 4208, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4212, + "make_id": 3804, + "model_id": 4208, + "year_id": 4212, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4213, + "make_id": 3804, + "model_id": 4208, + "year_id": 4212, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4214, + "make_id": 3804, + "model_id": 4208, + "year_id": 4212, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4215, + "make_id": 3804, + "model_id": 4208, + "year_id": 4212, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4216, + "make_id": 3804, + "model_id": 4208, + "year_id": 4216, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4217, + "make_id": 3804, + "model_id": 4208, + "year_id": 4216, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4218, + "make_id": 3804, + "model_id": 4208, + "year_id": 4216, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4219, + "make_id": 3804, + "model_id": 4208, + "year_id": 4216, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4220, + "make_id": 3804, + "model_id": 4208, + "year_id": 4220, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4221, + "make_id": 3804, + "model_id": 4208, + "year_id": 4220, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4222, + "make_id": 3804, + "model_id": 4208, + "year_id": 4220, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4223, + "make_id": 3804, + "model_id": 4208, + "year_id": 4220, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4224, + "make_id": 3804, + "model_id": 4208, + "year_id": 4224, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4225, + "make_id": 3804, + "model_id": 4208, + "year_id": 4224, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4226, + "make_id": 3804, + "model_id": 4208, + "year_id": 4224, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4227, + "make_id": 3804, + "model_id": 4208, + "year_id": 4224, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4228, + "make_id": 3804, + "model_id": 4208, + "year_id": 4228, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4229, + "make_id": 3804, + "model_id": 4208, + "year_id": 4228, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4230, + "make_id": 3804, + "model_id": 4208, + "year_id": 4228, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4231, + "make_id": 3804, + "model_id": 4208, + "year_id": 4228, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4232, + "make_id": 3804, + "model_id": 4208, + "year_id": 4232, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4233, + "make_id": 3804, + "model_id": 4208, + "year_id": 4232, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4234, + "make_id": 3804, + "model_id": 4208, + "year_id": 4232, + "cylinders": 6, + "displacement": 2.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4235, + "make_id": 3804, + "model_id": 4208, + "year_id": 4235, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4236, + "make_id": 3804, + "model_id": 4208, + "year_id": 4235, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4237, + "make_id": 3804, + "model_id": 4208, + "year_id": 4235, + "cylinders": 6, + "displacement": 2.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4238, + "make_id": 3804, + "model_id": 4208, + "year_id": 4238, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4239, + "make_id": 3804, + "model_id": 4208, + "year_id": 4238, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4240, + "make_id": 3804, + "model_id": 4208, + "year_id": 4240, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4241, + "make_id": 3804, + "model_id": 4208, + "year_id": 4240, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4242, + "make_id": 3804, + "model_id": 4208, + "year_id": 4242, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4243, + "make_id": 3804, + "model_id": 4208, + "year_id": 4242, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4244, + "make_id": 3804, + "model_id": 4208, + "year_id": 4244, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4245, + "make_id": 3804, + "model_id": 4208, + "year_id": 4244, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4246, + "make_id": 3804, + "model_id": 4208, + "year_id": 4246, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4247, + "make_id": 3804, + "model_id": 4208, + "year_id": 4246, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4248, + "make_id": 3804, + "model_id": 4248, + "year_id": 4248, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4249, + "make_id": 3804, + "model_id": 4248, + "year_id": 4248, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4250, + "make_id": 3804, + "model_id": 4248, + "year_id": 4248, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4251, + "make_id": 3804, + "model_id": 4248, + "year_id": 4251, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4252, + "make_id": 3804, + "model_id": 4248, + "year_id": 4251, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4253, + "make_id": 3804, + "model_id": 4248, + "year_id": 4251, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4254, + "make_id": 3804, + "model_id": 4248, + "year_id": 4251, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4255, + "make_id": 3804, + "model_id": 4248, + "year_id": 4255, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4256, + "make_id": 3804, + "model_id": 4248, + "year_id": 4255, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4257, + "make_id": 3804, + "model_id": 4248, + "year_id": 4255, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4258, + "make_id": 3804, + "model_id": 4248, + "year_id": 4255, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4259, + "make_id": 3804, + "model_id": 4248, + "year_id": 4259, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4260, + "make_id": 3804, + "model_id": 4248, + "year_id": 4259, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4261, + "make_id": 3804, + "model_id": 4248, + "year_id": 4259, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4262, + "make_id": 3804, + "model_id": 4248, + "year_id": 4259, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4263, + "make_id": 3804, + "model_id": 4248, + "year_id": 4263, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4264, + "make_id": 3804, + "model_id": 4248, + "year_id": 4263, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4265, + "make_id": 3804, + "model_id": 4248, + "year_id": 4263, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4266, + "make_id": 3804, + "model_id": 4248, + "year_id": 4263, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4267, + "make_id": 3804, + "model_id": 4248, + "year_id": 4267, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4268, + "make_id": 3804, + "model_id": 4248, + "year_id": 4267, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4269, + "make_id": 3804, + "model_id": 4248, + "year_id": 4267, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4270, + "make_id": 3804, + "model_id": 4248, + "year_id": 4267, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4271, + "make_id": 3804, + "model_id": 4248, + "year_id": 4271, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4272, + "make_id": 3804, + "model_id": 4248, + "year_id": 4271, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4273, + "make_id": 3804, + "model_id": 4273, + "year_id": 4273, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4274, + "make_id": 3804, + "model_id": 4273, + "year_id": 4274, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4275, + "make_id": 3804, + "model_id": 4273, + "year_id": 4275, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4276, + "make_id": 3804, + "model_id": 4273, + "year_id": 4276, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4277, + "make_id": 3804, + "model_id": 4277, + "year_id": 4277, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4278, + "make_id": 3804, + "model_id": 4277, + "year_id": 4278, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4279, + "make_id": 3804, + "model_id": 4277, + "year_id": 4279, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 4280, + "make_id": 3804, + "model_id": 4277, + "year_id": 4280, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4281, + "make_id": 3804, + "model_id": 4277, + "year_id": 4281, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4282, + "make_id": 3804, + "model_id": 4277, + "year_id": 4282, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4283, + "make_id": 3804, + "model_id": 4283, + "year_id": 4283, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4284, + "make_id": 3804, + "model_id": 4283, + "year_id": 4284, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4285, + "make_id": 3804, + "model_id": 4283, + "year_id": 4285, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4286, + "make_id": 3804, + "model_id": 4283, + "year_id": 4286, + "cylinders": 8, + "displacement": 4.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4287, + "make_id": 3804, + "model_id": 4287, + "year_id": 4287, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 4288, + "make_id": 3804, + "model_id": 4287, + "year_id": 4287, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 4289, + "make_id": 3804, + "model_id": 4289, + "year_id": 4289, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4290, + "make_id": 3804, + "model_id": 4289, + "year_id": 4289, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4291, + "make_id": 3804, + "model_id": 4289, + "year_id": 4291, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4292, + "make_id": 3804, + "model_id": 4289, + "year_id": 4291, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4293, + "make_id": 3804, + "model_id": 4289, + "year_id": 4291, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4294, + "make_id": 3804, + "model_id": 4289, + "year_id": 4294, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4295, + "make_id": 3804, + "model_id": 4289, + "year_id": 4294, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4296, + "make_id": 3804, + "model_id": 4289, + "year_id": 4294, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4297, + "make_id": 3804, + "model_id": 4289, + "year_id": 4297, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4298, + "make_id": 3804, + "model_id": 4289, + "year_id": 4297, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4299, + "make_id": 3804, + "model_id": 4289, + "year_id": 4297, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4300, + "make_id": 3804, + "model_id": 4289, + "year_id": 4300, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4301, + "make_id": 3804, + "model_id": 4289, + "year_id": 4300, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4302, + "make_id": 3804, + "model_id": 4302, + "year_id": 4302, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4303, + "make_id": 3804, + "model_id": 4302, + "year_id": 4303, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4304, + "make_id": 3804, + "model_id": 4302, + "year_id": 4304, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4305, + "make_id": 3804, + "model_id": 4302, + "year_id": 4305, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4306, + "make_id": 3804, + "model_id": 4306, + "year_id": 4306, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4307, + "make_id": 3804, + "model_id": 4306, + "year_id": 4307, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4308, + "make_id": 3804, + "model_id": 4306, + "year_id": 4308, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4309, + "make_id": 3804, + "model_id": 4306, + "year_id": 4309, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4310, + "make_id": 3804, + "model_id": 4306, + "year_id": 4310, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4311, + "make_id": 4311, + "model_id": 4311, + "year_id": 4311, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4312, + "make_id": 4311, + "model_id": 4311, + "year_id": 4312, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4313, + "make_id": 4313, + "model_id": 4313, + "year_id": 4313, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4314, + "make_id": 4313, + "model_id": 4313, + "year_id": 4313, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4315, + "make_id": 4313, + "model_id": 4313, + "year_id": 4313, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4316, + "make_id": 4313, + "model_id": 4313, + "year_id": 4313, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4317, + "make_id": 4313, + "model_id": 4313, + "year_id": 4313, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4318, + "make_id": 4313, + "model_id": 4313, + "year_id": 4313, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4319, + "make_id": 4313, + "model_id": 4313, + "year_id": 4313, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4320, + "make_id": 4313, + "model_id": 4313, + "year_id": 4313, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4321, + "make_id": 4313, + "model_id": 4313, + "year_id": 4313, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4322, + "make_id": 4313, + "model_id": 4313, + "year_id": 4313, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4323, + "make_id": 4313, + "model_id": 4313, + "year_id": 4323, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4324, + "make_id": 4313, + "model_id": 4313, + "year_id": 4323, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4325, + "make_id": 4313, + "model_id": 4313, + "year_id": 4323, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4326, + "make_id": 4313, + "model_id": 4313, + "year_id": 4323, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4327, + "make_id": 4313, + "model_id": 4313, + "year_id": 4323, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4328, + "make_id": 4313, + "model_id": 4313, + "year_id": 4323, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4329, + "make_id": 4313, + "model_id": 4313, + "year_id": 4329, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4330, + "make_id": 4313, + "model_id": 4313, + "year_id": 4329, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4331, + "make_id": 4313, + "model_id": 4313, + "year_id": 4329, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4332, + "make_id": 4313, + "model_id": 4313, + "year_id": 4329, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4333, + "make_id": 4313, + "model_id": 4313, + "year_id": 4329, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4334, + "make_id": 4313, + "model_id": 4313, + "year_id": 4334, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4335, + "make_id": 4313, + "model_id": 4313, + "year_id": 4334, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4336, + "make_id": 4313, + "model_id": 4313, + "year_id": 4334, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4337, + "make_id": 4313, + "model_id": 4313, + "year_id": 4334, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4338, + "make_id": 4313, + "model_id": 4313, + "year_id": 4338, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4339, + "make_id": 4313, + "model_id": 4313, + "year_id": 4338, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4340, + "make_id": 4313, + "model_id": 4313, + "year_id": 4338, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4341, + "make_id": 4313, + "model_id": 4313, + "year_id": 4338, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4342, + "make_id": 4313, + "model_id": 4313, + "year_id": 4342, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4343, + "make_id": 4313, + "model_id": 4313, + "year_id": 4342, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4344, + "make_id": 4313, + "model_id": 4313, + "year_id": 4342, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4345, + "make_id": 4313, + "model_id": 4313, + "year_id": 4342, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4346, + "make_id": 4313, + "model_id": 4313, + "year_id": 4346, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4347, + "make_id": 4313, + "model_id": 4313, + "year_id": 4346, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4348, + "make_id": 4313, + "model_id": 4313, + "year_id": 4348, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4349, + "make_id": 4313, + "model_id": 4313, + "year_id": 4348, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4350, + "make_id": 4313, + "model_id": 4313, + "year_id": 4348, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4351, + "make_id": 4313, + "model_id": 4313, + "year_id": 4348, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4352, + "make_id": 4313, + "model_id": 4313, + "year_id": 4352, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4353, + "make_id": 4313, + "model_id": 4313, + "year_id": 4352, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4354, + "make_id": 4313, + "model_id": 4313, + "year_id": 4352, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4355, + "make_id": 4313, + "model_id": 4313, + "year_id": 4355, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4356, + "make_id": 4313, + "model_id": 4313, + "year_id": 4355, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4357, + "make_id": 4313, + "model_id": 4313, + "year_id": 4355, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4358, + "make_id": 4313, + "model_id": 4313, + "year_id": 4358, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4359, + "make_id": 4313, + "model_id": 4313, + "year_id": 4358, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4360, + "make_id": 4313, + "model_id": 4313, + "year_id": 4360, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4361, + "make_id": 4313, + "model_id": 4313, + "year_id": 4360, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4362, + "make_id": 4313, + "model_id": 4313, + "year_id": 4362, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4363, + "make_id": 4313, + "model_id": 4313, + "year_id": 4362, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4364, + "make_id": 4313, + "model_id": 4313, + "year_id": 4364, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4365, + "make_id": 4313, + "model_id": 4313, + "year_id": 4364, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4366, + "make_id": 4313, + "model_id": 4313, + "year_id": 4366, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4367, + "make_id": 4313, + "model_id": 4313, + "year_id": 4366, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4368, + "make_id": 4313, + "model_id": 4313, + "year_id": 4368, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4369, + "make_id": 4313, + "model_id": 4313, + "year_id": 4368, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4370, + "make_id": 4313, + "model_id": 4313, + "year_id": 4370, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4371, + "make_id": 4313, + "model_id": 4313, + "year_id": 4370, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4372, + "make_id": 4313, + "model_id": 4313, + "year_id": 4372, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4373, + "make_id": 4313, + "model_id": 4313, + "year_id": 4372, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4374, + "make_id": 4313, + "model_id": 4313, + "year_id": 4374, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4375, + "make_id": 4313, + "model_id": 4313, + "year_id": 4374, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4376, + "make_id": 4313, + "model_id": 4313, + "year_id": 4376, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4377, + "make_id": 4313, + "model_id": 4313, + "year_id": 4376, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4378, + "make_id": 4313, + "model_id": 4313, + "year_id": 4378, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4379, + "make_id": 4313, + "model_id": 4313, + "year_id": 4378, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4380, + "make_id": 4313, + "model_id": 4380, + "year_id": 4380, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4381, + "make_id": 4313, + "model_id": 4380, + "year_id": 4380, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4382, + "make_id": 4313, + "model_id": 4380, + "year_id": 4382, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4383, + "make_id": 4313, + "model_id": 4380, + "year_id": 4382, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4384, + "make_id": 4313, + "model_id": 4380, + "year_id": 4384, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4385, + "make_id": 4313, + "model_id": 4380, + "year_id": 4384, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4386, + "make_id": 4313, + "model_id": 4386, + "year_id": 4386, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4387, + "make_id": 4313, + "model_id": 4386, + "year_id": 4386, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4388, + "make_id": 4313, + "model_id": 4386, + "year_id": 4386, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4389, + "make_id": 4313, + "model_id": 4386, + "year_id": 4386, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4390, + "make_id": 4313, + "model_id": 4386, + "year_id": 4386, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4391, + "make_id": 4313, + "model_id": 4386, + "year_id": 4386, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4392, + "make_id": 4313, + "model_id": 4386, + "year_id": 4386, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4393, + "make_id": 4313, + "model_id": 4386, + "year_id": 4386, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4394, + "make_id": 4313, + "model_id": 4386, + "year_id": 4386, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4395, + "make_id": 4313, + "model_id": 4386, + "year_id": 4386, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4396, + "make_id": 4313, + "model_id": 4386, + "year_id": 4396, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4397, + "make_id": 4313, + "model_id": 4386, + "year_id": 4396, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4398, + "make_id": 4313, + "model_id": 4386, + "year_id": 4396, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4399, + "make_id": 4313, + "model_id": 4386, + "year_id": 4396, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4400, + "make_id": 4313, + "model_id": 4386, + "year_id": 4396, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4401, + "make_id": 4313, + "model_id": 4386, + "year_id": 4396, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4402, + "make_id": 4313, + "model_id": 4386, + "year_id": 4402, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4403, + "make_id": 4313, + "model_id": 4386, + "year_id": 4402, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4404, + "make_id": 4313, + "model_id": 4386, + "year_id": 4404, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4405, + "make_id": 4313, + "model_id": 4386, + "year_id": 4404, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4406, + "make_id": 4313, + "model_id": 4386, + "year_id": 4406, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4407, + "make_id": 4313, + "model_id": 4386, + "year_id": 4406, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4408, + "make_id": 4313, + "model_id": 4386, + "year_id": 4408, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4409, + "make_id": 4313, + "model_id": 4386, + "year_id": 4408, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4410, + "make_id": 4313, + "model_id": 4386, + "year_id": 4410, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4411, + "make_id": 4313, + "model_id": 4386, + "year_id": 4410, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4412, + "make_id": 4313, + "model_id": 4386, + "year_id": 4412, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4413, + "make_id": 4313, + "model_id": 4386, + "year_id": 4412, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4414, + "make_id": 4313, + "model_id": 4386, + "year_id": 4412, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4415, + "make_id": 4313, + "model_id": 4386, + "year_id": 4412, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4416, + "make_id": 4313, + "model_id": 4386, + "year_id": 4416, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4417, + "make_id": 4313, + "model_id": 4386, + "year_id": 4416, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4418, + "make_id": 4313, + "model_id": 4386, + "year_id": 4416, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4419, + "make_id": 4313, + "model_id": 4386, + "year_id": 4419, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4420, + "make_id": 4313, + "model_id": 4386, + "year_id": 4419, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4421, + "make_id": 4313, + "model_id": 4386, + "year_id": 4419, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4422, + "make_id": 4313, + "model_id": 4386, + "year_id": 4422, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4423, + "make_id": 4313, + "model_id": 4386, + "year_id": 4422, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4424, + "make_id": 4313, + "model_id": 4386, + "year_id": 4424, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4425, + "make_id": 4313, + "model_id": 4386, + "year_id": 4424, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4426, + "make_id": 4313, + "model_id": 4386, + "year_id": 4426, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4427, + "make_id": 4313, + "model_id": 4386, + "year_id": 4426, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4428, + "make_id": 4313, + "model_id": 4386, + "year_id": 4428, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4429, + "make_id": 4313, + "model_id": 4386, + "year_id": 4428, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4430, + "make_id": 4313, + "model_id": 4386, + "year_id": 4430, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4431, + "make_id": 4313, + "model_id": 4386, + "year_id": 4430, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4432, + "make_id": 4313, + "model_id": 4386, + "year_id": 4432, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4433, + "make_id": 4313, + "model_id": 4386, + "year_id": 4432, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4434, + "make_id": 4313, + "model_id": 4386, + "year_id": 4434, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4435, + "make_id": 4313, + "model_id": 4386, + "year_id": 4434, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4436, + "make_id": 4313, + "model_id": 4386, + "year_id": 4436, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4437, + "make_id": 4313, + "model_id": 4386, + "year_id": 4436, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4438, + "make_id": 4313, + "model_id": 4386, + "year_id": 4438, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4439, + "make_id": 4313, + "model_id": 4386, + "year_id": 4438, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4440, + "make_id": 4313, + "model_id": 4386, + "year_id": 4440, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4441, + "make_id": 4313, + "model_id": 4386, + "year_id": 4440, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4442, + "make_id": 4313, + "model_id": 4386, + "year_id": 4442, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4443, + "make_id": 4313, + "model_id": 4386, + "year_id": 4442, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4444, + "make_id": 4313, + "model_id": 4444, + "year_id": 4444, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4445, + "make_id": 4313, + "model_id": 4444, + "year_id": 4444, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4446, + "make_id": 4313, + "model_id": 4444, + "year_id": 4446, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4447, + "make_id": 4313, + "model_id": 4444, + "year_id": 4446, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4448, + "make_id": 4313, + "model_id": 4444, + "year_id": 4446, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4449, + "make_id": 4313, + "model_id": 4444, + "year_id": 4446, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4450, + "make_id": 4313, + "model_id": 4444, + "year_id": 4446, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4451, + "make_id": 4313, + "model_id": 4444, + "year_id": 4446, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4452, + "make_id": 4313, + "model_id": 4444, + "year_id": 4452, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4453, + "make_id": 4313, + "model_id": 4444, + "year_id": 4452, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4454, + "make_id": 4313, + "model_id": 4444, + "year_id": 4452, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4455, + "make_id": 4313, + "model_id": 4444, + "year_id": 4452, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4456, + "make_id": 4313, + "model_id": 4444, + "year_id": 4452, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4457, + "make_id": 4313, + "model_id": 4444, + "year_id": 4457, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4458, + "make_id": 4313, + "model_id": 4444, + "year_id": 4457, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4459, + "make_id": 4313, + "model_id": 4444, + "year_id": 4459, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4460, + "make_id": 4313, + "model_id": 4444, + "year_id": 4459, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4461, + "make_id": 4313, + "model_id": 4444, + "year_id": 4461, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4462, + "make_id": 4313, + "model_id": 4444, + "year_id": 4461, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4463, + "make_id": 4313, + "model_id": 4444, + "year_id": 4461, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4464, + "make_id": 4313, + "model_id": 4444, + "year_id": 4461, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4465, + "make_id": 4313, + "model_id": 4444, + "year_id": 4461, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4466, + "make_id": 4313, + "model_id": 4444, + "year_id": 4466, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4467, + "make_id": 4313, + "model_id": 4444, + "year_id": 4466, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4468, + "make_id": 4313, + "model_id": 4444, + "year_id": 4466, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4469, + "make_id": 4313, + "model_id": 4444, + "year_id": 4466, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4470, + "make_id": 4313, + "model_id": 4444, + "year_id": 4466, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4471, + "make_id": 4313, + "model_id": 4444, + "year_id": 4471, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4472, + "make_id": 4313, + "model_id": 4444, + "year_id": 4471, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4473, + "make_id": 4313, + "model_id": 4444, + "year_id": 4471, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4474, + "make_id": 4313, + "model_id": 4444, + "year_id": 4474, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4475, + "make_id": 4313, + "model_id": 4444, + "year_id": 4474, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4476, + "make_id": 4313, + "model_id": 4444, + "year_id": 4476, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4477, + "make_id": 4313, + "model_id": 4444, + "year_id": 4476, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4478, + "make_id": 4313, + "model_id": 4444, + "year_id": 4478, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4479, + "make_id": 4313, + "model_id": 4444, + "year_id": 4478, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4480, + "make_id": 4313, + "model_id": 4444, + "year_id": 4480, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4481, + "make_id": 4313, + "model_id": 4444, + "year_id": 4480, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4482, + "make_id": 4313, + "model_id": 4482, + "year_id": 4482, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4483, + "make_id": 4313, + "model_id": 4482, + "year_id": 4482, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4484, + "make_id": 4313, + "model_id": 4482, + "year_id": 4484, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4485, + "make_id": 4313, + "model_id": 4482, + "year_id": 4484, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4486, + "make_id": 4313, + "model_id": 4482, + "year_id": 4486, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4487, + "make_id": 4313, + "model_id": 4482, + "year_id": 4486, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4488, + "make_id": 4313, + "model_id": 4482, + "year_id": 4488, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4489, + "make_id": 4313, + "model_id": 4482, + "year_id": 4488, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4490, + "make_id": 4313, + "model_id": 4482, + "year_id": 4490, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4491, + "make_id": 4313, + "model_id": 4482, + "year_id": 4490, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4492, + "make_id": 4313, + "model_id": 4482, + "year_id": 4492, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4493, + "make_id": 4313, + "model_id": 4482, + "year_id": 4492, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4494, + "make_id": 4313, + "model_id": 4482, + "year_id": 4494, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4495, + "make_id": 4313, + "model_id": 4482, + "year_id": 4494, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4496, + "make_id": 4313, + "model_id": 4496, + "year_id": 4496, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4497, + "make_id": 4313, + "model_id": 4496, + "year_id": 4496, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4498, + "make_id": 4313, + "model_id": 4496, + "year_id": 4498, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4499, + "make_id": 4313, + "model_id": 4496, + "year_id": 4498, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4500, + "make_id": 4313, + "model_id": 4496, + "year_id": 4500, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4501, + "make_id": 4313, + "model_id": 4496, + "year_id": 4500, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4502, + "make_id": 4313, + "model_id": 4496, + "year_id": 4502, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4503, + "make_id": 4313, + "model_id": 4496, + "year_id": 4502, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4504, + "make_id": 4313, + "model_id": 4496, + "year_id": 4504, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4505, + "make_id": 4313, + "model_id": 4496, + "year_id": 4504, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4506, + "make_id": 4313, + "model_id": 4496, + "year_id": 4506, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4507, + "make_id": 4313, + "model_id": 4496, + "year_id": 4506, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4508, + "make_id": 4313, + "model_id": 4496, + "year_id": 4508, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4509, + "make_id": 4313, + "model_id": 4496, + "year_id": 4508, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4510, + "make_id": 4313, + "model_id": 4510, + "year_id": 4510, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4511, + "make_id": 4313, + "model_id": 4510, + "year_id": 4510, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4512, + "make_id": 4313, + "model_id": 4510, + "year_id": 4510, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4513, + "make_id": 4313, + "model_id": 4510, + "year_id": 4510, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4514, + "make_id": 4313, + "model_id": 4510, + "year_id": 4514, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4515, + "make_id": 4313, + "model_id": 4510, + "year_id": 4514, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4516, + "make_id": 4313, + "model_id": 4510, + "year_id": 4514, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4517, + "make_id": 4313, + "model_id": 4510, + "year_id": 4514, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4518, + "make_id": 4313, + "model_id": 4510, + "year_id": 4514, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4519, + "make_id": 4313, + "model_id": 4510, + "year_id": 4519, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4520, + "make_id": 4313, + "model_id": 4510, + "year_id": 4519, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4521, + "make_id": 4313, + "model_id": 4510, + "year_id": 4519, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4522, + "make_id": 4313, + "model_id": 4510, + "year_id": 4519, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4523, + "make_id": 4313, + "model_id": 4510, + "year_id": 4523, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4524, + "make_id": 4313, + "model_id": 4510, + "year_id": 4523, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4525, + "make_id": 4313, + "model_id": 4510, + "year_id": 4523, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4526, + "make_id": 4313, + "model_id": 4510, + "year_id": 4523, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4527, + "make_id": 4313, + "model_id": 4510, + "year_id": 4523, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4528, + "make_id": 4313, + "model_id": 4510, + "year_id": 4528, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4529, + "make_id": 4313, + "model_id": 4510, + "year_id": 4528, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4530, + "make_id": 4313, + "model_id": 4510, + "year_id": 4528, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4531, + "make_id": 4313, + "model_id": 4510, + "year_id": 4528, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4532, + "make_id": 4313, + "model_id": 4510, + "year_id": 4528, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4533, + "make_id": 4313, + "model_id": 4510, + "year_id": 4533, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4534, + "make_id": 4313, + "model_id": 4510, + "year_id": 4533, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4535, + "make_id": 4313, + "model_id": 4510, + "year_id": 4533, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4536, + "make_id": 4313, + "model_id": 4510, + "year_id": 4533, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4537, + "make_id": 4313, + "model_id": 4510, + "year_id": 4533, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4538, + "make_id": 4313, + "model_id": 4510, + "year_id": 4538, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4539, + "make_id": 4313, + "model_id": 4510, + "year_id": 4538, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4540, + "make_id": 4313, + "model_id": 4510, + "year_id": 4538, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4541, + "make_id": 4313, + "model_id": 4510, + "year_id": 4538, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4542, + "make_id": 4313, + "model_id": 4510, + "year_id": 4538, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4543, + "make_id": 4313, + "model_id": 4510, + "year_id": 4543, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4544, + "make_id": 4313, + "model_id": 4510, + "year_id": 4543, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4545, + "make_id": 4313, + "model_id": 4510, + "year_id": 4543, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4546, + "make_id": 4313, + "model_id": 4510, + "year_id": 4543, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4547, + "make_id": 4313, + "model_id": 4510, + "year_id": 4543, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4548, + "make_id": 4313, + "model_id": 4510, + "year_id": 4543, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4549, + "make_id": 4313, + "model_id": 4510, + "year_id": 4549, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4550, + "make_id": 4313, + "model_id": 4510, + "year_id": 4549, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4551, + "make_id": 4313, + "model_id": 4510, + "year_id": 4549, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4552, + "make_id": 4313, + "model_id": 4510, + "year_id": 4552, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4553, + "make_id": 4313, + "model_id": 4510, + "year_id": 4552, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4554, + "make_id": 4313, + "model_id": 4510, + "year_id": 4552, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4555, + "make_id": 4313, + "model_id": 4555, + "year_id": 4555, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4556, + "make_id": 4313, + "model_id": 4555, + "year_id": 4555, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4557, + "make_id": 4313, + "model_id": 4555, + "year_id": 4555, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4558, + "make_id": 4313, + "model_id": 4555, + "year_id": 4555, + "cylinders": 6, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4559, + "make_id": 4313, + "model_id": 4555, + "year_id": 4559, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4560, + "make_id": 4313, + "model_id": 4555, + "year_id": 4559, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4561, + "make_id": 4313, + "model_id": 4555, + "year_id": 4559, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4562, + "make_id": 4313, + "model_id": 4555, + "year_id": 4559, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4563, + "make_id": 4313, + "model_id": 4555, + "year_id": 4559, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4564, + "make_id": 4313, + "model_id": 4555, + "year_id": 4564, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4565, + "make_id": 4313, + "model_id": 4555, + "year_id": 4564, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4566, + "make_id": 4313, + "model_id": 4555, + "year_id": 4564, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4567, + "make_id": 4313, + "model_id": 4555, + "year_id": 4564, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4568, + "make_id": 4313, + "model_id": 4555, + "year_id": 4564, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4569, + "make_id": 4313, + "model_id": 4555, + "year_id": 4569, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4570, + "make_id": 4313, + "model_id": 4555, + "year_id": 4569, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4571, + "make_id": 4313, + "model_id": 4555, + "year_id": 4569, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4572, + "make_id": 4313, + "model_id": 4555, + "year_id": 4569, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4573, + "make_id": 4313, + "model_id": 4555, + "year_id": 4569, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4574, + "make_id": 4313, + "model_id": 4555, + "year_id": 4574, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4575, + "make_id": 4313, + "model_id": 4555, + "year_id": 4574, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4576, + "make_id": 4313, + "model_id": 4555, + "year_id": 4574, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4577, + "make_id": 4313, + "model_id": 4555, + "year_id": 4574, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4578, + "make_id": 4313, + "model_id": 4555, + "year_id": 4578, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4579, + "make_id": 4313, + "model_id": 4555, + "year_id": 4578, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4580, + "make_id": 4313, + "model_id": 4555, + "year_id": 4578, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4581, + "make_id": 4313, + "model_id": 4555, + "year_id": 4578, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4582, + "make_id": 4313, + "model_id": 4555, + "year_id": 4582, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4583, + "make_id": 4313, + "model_id": 4555, + "year_id": 4582, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4584, + "make_id": 4313, + "model_id": 4555, + "year_id": 4582, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4585, + "make_id": 4313, + "model_id": 4555, + "year_id": 4582, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4586, + "make_id": 4313, + "model_id": 4555, + "year_id": 4586, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4587, + "make_id": 4313, + "model_id": 4555, + "year_id": 4586, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4588, + "make_id": 4313, + "model_id": 4555, + "year_id": 4586, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4589, + "make_id": 4313, + "model_id": 4555, + "year_id": 4586, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4590, + "make_id": 4313, + "model_id": 4555, + "year_id": 4590, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4591, + "make_id": 4313, + "model_id": 4555, + "year_id": 4590, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4592, + "make_id": 4313, + "model_id": 4555, + "year_id": 4590, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4593, + "make_id": 4313, + "model_id": 4555, + "year_id": 4590, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4594, + "make_id": 4313, + "model_id": 4555, + "year_id": 4594, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4595, + "make_id": 4313, + "model_id": 4555, + "year_id": 4594, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4596, + "make_id": 4313, + "model_id": 4555, + "year_id": 4594, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4597, + "make_id": 4313, + "model_id": 4555, + "year_id": 4594, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4598, + "make_id": 4313, + "model_id": 4555, + "year_id": 4598, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4599, + "make_id": 4313, + "model_id": 4555, + "year_id": 4598, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4600, + "make_id": 4313, + "model_id": 4555, + "year_id": 4598, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4601, + "make_id": 4313, + "model_id": 4555, + "year_id": 4598, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4602, + "make_id": 4313, + "model_id": 4602, + "year_id": 4602, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4603, + "make_id": 4313, + "model_id": 4602, + "year_id": 4602, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4604, + "make_id": 4313, + "model_id": 4602, + "year_id": 4604, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4605, + "make_id": 4313, + "model_id": 4602, + "year_id": 4604, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4606, + "make_id": 4313, + "model_id": 4602, + "year_id": 4606, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4607, + "make_id": 4313, + "model_id": 4602, + "year_id": 4606, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4608, + "make_id": 4313, + "model_id": 4602, + "year_id": 4606, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4609, + "make_id": 4313, + "model_id": 4609, + "year_id": 4609, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4610, + "make_id": 4313, + "model_id": 4609, + "year_id": 4609, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4611, + "make_id": 4313, + "model_id": 4609, + "year_id": 4609, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4612, + "make_id": 4313, + "model_id": 4609, + "year_id": 4609, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4613, + "make_id": 4313, + "model_id": 4609, + "year_id": 4613, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4614, + "make_id": 4313, + "model_id": 4609, + "year_id": 4613, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4615, + "make_id": 4313, + "model_id": 4609, + "year_id": 4613, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4616, + "make_id": 4313, + "model_id": 4609, + "year_id": 4616, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4617, + "make_id": 4313, + "model_id": 4609, + "year_id": 4616, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4618, + "make_id": 4313, + "model_id": 4609, + "year_id": 4616, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4619, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4620, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4621, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 4622, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4623, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4624, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4625, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 4626, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4627, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4628, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4629, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4630, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4631, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 4632, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4633, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4634, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4635, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4636, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4637, + "make_id": 4313, + "model_id": 4619, + "year_id": 4619, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4638, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4639, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4640, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 4641, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4642, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4643, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4644, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 4645, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4646, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4647, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4648, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4649, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4650, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 4651, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4652, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4653, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4654, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4655, + "make_id": 4313, + "model_id": 4619, + "year_id": 4638, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4656, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4657, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4658, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4659, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 4660, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 4661, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4662, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4663, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4664, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4665, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4666, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 4667, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4668, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4669, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4670, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4671, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4672, + "make_id": 4313, + "model_id": 4619, + "year_id": 4656, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4673, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4674, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4675, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4676, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4677, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4678, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4679, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4680, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4681, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4682, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4683, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4684, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4685, + "make_id": 4313, + "model_id": 4619, + "year_id": 4673, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4686, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4687, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4688, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4689, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4690, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4691, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4692, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4693, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4694, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4695, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4696, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4697, + "make_id": 4313, + "model_id": 4686, + "year_id": 4686, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4698, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4699, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4700, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4701, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4702, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4703, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4704, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4705, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4706, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4707, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4708, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4709, + "make_id": 4313, + "model_id": 4686, + "year_id": 4698, + "cylinders": 8, + "displacement": 7.4, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4710, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4711, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4712, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4713, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4714, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4715, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4716, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4717, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4718, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4719, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4720, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4721, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4722, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4723, + "make_id": 4313, + "model_id": 4686, + "year_id": 4710, + "cylinders": 8, + "displacement": 7.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4724, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4725, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4726, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4727, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4728, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4729, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4730, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4731, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4732, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4733, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4734, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 8, + "displacement": 7.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4735, + "make_id": 4313, + "model_id": 4686, + "year_id": 4724, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4736, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4737, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4738, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4739, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4740, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4741, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4742, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4743, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4744, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4745, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 8, + "displacement": 7.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4746, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4747, + "make_id": 4313, + "model_id": 4686, + "year_id": 4736, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4748, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4749, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4750, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4751, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4752, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4753, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4754, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4755, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4756, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4757, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4758, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4759, + "make_id": 4313, + "model_id": 4686, + "year_id": 4748, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4760, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4761, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4762, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4763, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4764, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4765, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4766, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4767, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4768, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4769, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4770, + "make_id": 4313, + "model_id": 4686, + "year_id": 4760, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4771, + "make_id": 4313, + "model_id": 4686, + "year_id": 4771, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4772, + "make_id": 4313, + "model_id": 4686, + "year_id": 4771, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4773, + "make_id": 4313, + "model_id": 4686, + "year_id": 4771, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4774, + "make_id": 4313, + "model_id": 4686, + "year_id": 4771, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4775, + "make_id": 4313, + "model_id": 4686, + "year_id": 4771, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4776, + "make_id": 4313, + "model_id": 4686, + "year_id": 4771, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4777, + "make_id": 4313, + "model_id": 4686, + "year_id": 4771, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4778, + "make_id": 4313, + "model_id": 4686, + "year_id": 4778, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4779, + "make_id": 4313, + "model_id": 4686, + "year_id": 4778, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4780, + "make_id": 4313, + "model_id": 4686, + "year_id": 4778, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4781, + "make_id": 4313, + "model_id": 4686, + "year_id": 4778, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4782, + "make_id": 4313, + "model_id": 4686, + "year_id": 4778, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4783, + "make_id": 4313, + "model_id": 4686, + "year_id": 4778, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4784, + "make_id": 4313, + "model_id": 4686, + "year_id": 4784, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4785, + "make_id": 4313, + "model_id": 4686, + "year_id": 4784, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4786, + "make_id": 4313, + "model_id": 4686, + "year_id": 4784, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4787, + "make_id": 4313, + "model_id": 4686, + "year_id": 4784, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4788, + "make_id": 4313, + "model_id": 4686, + "year_id": 4784, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4789, + "make_id": 4313, + "model_id": 4686, + "year_id": 4784, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4790, + "make_id": 4313, + "model_id": 4686, + "year_id": 4790, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4791, + "make_id": 4313, + "model_id": 4686, + "year_id": 4790, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4792, + "make_id": 4313, + "model_id": 4792, + "year_id": 4792, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4793, + "make_id": 4313, + "model_id": 4792, + "year_id": 4792, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4794, + "make_id": 4313, + "model_id": 4792, + "year_id": 4792, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4795, + "make_id": 4313, + "model_id": 4792, + "year_id": 4792, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4796, + "make_id": 4313, + "model_id": 4792, + "year_id": 4792, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4797, + "make_id": 4313, + "model_id": 4792, + "year_id": 4792, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4798, + "make_id": 4313, + "model_id": 4792, + "year_id": 4792, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4799, + "make_id": 4313, + "model_id": 4792, + "year_id": 4792, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4800, + "make_id": 4313, + "model_id": 4792, + "year_id": 4792, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4801, + "make_id": 4313, + "model_id": 4792, + "year_id": 4792, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4802, + "make_id": 4313, + "model_id": 4792, + "year_id": 4802, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4803, + "make_id": 4313, + "model_id": 4792, + "year_id": 4802, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4804, + "make_id": 4313, + "model_id": 4792, + "year_id": 4802, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4805, + "make_id": 4313, + "model_id": 4792, + "year_id": 4802, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4806, + "make_id": 4313, + "model_id": 4792, + "year_id": 4802, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4807, + "make_id": 4313, + "model_id": 4792, + "year_id": 4802, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4808, + "make_id": 4313, + "model_id": 4792, + "year_id": 4802, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4809, + "make_id": 4313, + "model_id": 4792, + "year_id": 4802, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4810, + "make_id": 4313, + "model_id": 4792, + "year_id": 4810, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4811, + "make_id": 4313, + "model_id": 4792, + "year_id": 4810, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4812, + "make_id": 4313, + "model_id": 4792, + "year_id": 4810, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4813, + "make_id": 4313, + "model_id": 4792, + "year_id": 4810, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4814, + "make_id": 4313, + "model_id": 4792, + "year_id": 4810, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4815, + "make_id": 4313, + "model_id": 4792, + "year_id": 4810, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4816, + "make_id": 4313, + "model_id": 4792, + "year_id": 4810, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4817, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4818, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4819, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4820, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4821, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4822, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4823, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4824, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4825, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4826, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4827, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4828, + "make_id": 4313, + "model_id": 4792, + "year_id": 4817, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4829, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4830, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4831, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4832, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4833, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4834, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4835, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4836, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4837, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4838, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4839, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4840, + "make_id": 4313, + "model_id": 4829, + "year_id": 4829, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4841, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4842, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4843, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4844, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 4845, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4846, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4847, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4848, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4849, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4850, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4851, + "make_id": 4313, + "model_id": 4829, + "year_id": 4841, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4852, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4853, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4854, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4855, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4856, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4857, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4858, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4859, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4860, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4861, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4862, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4863, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4864, + "make_id": 4313, + "model_id": 4829, + "year_id": 4852, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4865, + "make_id": 4313, + "model_id": 4829, + "year_id": 4865, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4866, + "make_id": 4313, + "model_id": 4829, + "year_id": 4865, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4867, + "make_id": 4313, + "model_id": 4829, + "year_id": 4865, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4868, + "make_id": 4313, + "model_id": 4829, + "year_id": 4865, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4869, + "make_id": 4313, + "model_id": 4829, + "year_id": 4865, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4870, + "make_id": 4313, + "model_id": 4829, + "year_id": 4865, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4871, + "make_id": 4313, + "model_id": 4829, + "year_id": 4865, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 4872, + "make_id": 4313, + "model_id": 4829, + "year_id": 4865, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4873, + "make_id": 4313, + "model_id": 4829, + "year_id": 4865, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4874, + "make_id": 4313, + "model_id": 4829, + "year_id": 4865, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4875, + "make_id": 4313, + "model_id": 4829, + "year_id": 4875, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4876, + "make_id": 4313, + "model_id": 4829, + "year_id": 4875, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4877, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4878, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 4879, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 4880, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4881, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 4882, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4883, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 4884, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4885, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 4886, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 4887, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4888, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 4889, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 4890, + "make_id": 4313, + "model_id": 4877, + "year_id": 4877, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 4891, + "make_id": 4313, + "model_id": 4877, + "year_id": 4891, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4892, + "make_id": 4313, + "model_id": 4877, + "year_id": 4891, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4893, + "make_id": 4313, + "model_id": 4877, + "year_id": 4891, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4894, + "make_id": 4313, + "model_id": 4877, + "year_id": 4891, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4895, + "make_id": 4313, + "model_id": 4877, + "year_id": 4891, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4896, + "make_id": 4313, + "model_id": 4877, + "year_id": 4891, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4897, + "make_id": 4313, + "model_id": 4877, + "year_id": 4891, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4898, + "make_id": 4313, + "model_id": 4877, + "year_id": 4891, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4899, + "make_id": 4313, + "model_id": 4877, + "year_id": 4891, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4900, + "make_id": 4313, + "model_id": 4877, + "year_id": 4900, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4901, + "make_id": 4313, + "model_id": 4877, + "year_id": 4900, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4902, + "make_id": 4313, + "model_id": 4877, + "year_id": 4900, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4903, + "make_id": 4313, + "model_id": 4877, + "year_id": 4900, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4904, + "make_id": 4313, + "model_id": 4877, + "year_id": 4900, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4905, + "make_id": 4313, + "model_id": 4877, + "year_id": 4900, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4906, + "make_id": 4313, + "model_id": 4877, + "year_id": 4906, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4907, + "make_id": 4313, + "model_id": 4877, + "year_id": 4906, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4908, + "make_id": 4313, + "model_id": 4877, + "year_id": 4906, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4909, + "make_id": 4313, + "model_id": 4877, + "year_id": 4906, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4910, + "make_id": 4313, + "model_id": 4877, + "year_id": 4906, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4911, + "make_id": 4313, + "model_id": 4877, + "year_id": 4906, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4912, + "make_id": 4313, + "model_id": 4877, + "year_id": 4906, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4913, + "make_id": 4313, + "model_id": 4877, + "year_id": 4906, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4914, + "make_id": 4313, + "model_id": 4877, + "year_id": 4914, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4915, + "make_id": 4313, + "model_id": 4877, + "year_id": 4914, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4916, + "make_id": 4313, + "model_id": 4877, + "year_id": 4914, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4917, + "make_id": 4313, + "model_id": 4877, + "year_id": 4914, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4918, + "make_id": 4313, + "model_id": 4877, + "year_id": 4914, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4919, + "make_id": 4313, + "model_id": 4877, + "year_id": 4914, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4920, + "make_id": 4313, + "model_id": 4877, + "year_id": 4914, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4921, + "make_id": 4313, + "model_id": 4877, + "year_id": 4921, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4922, + "make_id": 4313, + "model_id": 4877, + "year_id": 4921, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4923, + "make_id": 4313, + "model_id": 4877, + "year_id": 4921, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4924, + "make_id": 4313, + "model_id": 4877, + "year_id": 4921, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4925, + "make_id": 4313, + "model_id": 4877, + "year_id": 4921, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4926, + "make_id": 4313, + "model_id": 4877, + "year_id": 4921, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4927, + "make_id": 4313, + "model_id": 4877, + "year_id": 4921, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4928, + "make_id": 4313, + "model_id": 4877, + "year_id": 4928, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4929, + "make_id": 4313, + "model_id": 4877, + "year_id": 4928, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4930, + "make_id": 4313, + "model_id": 4877, + "year_id": 4928, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4931, + "make_id": 4313, + "model_id": 4877, + "year_id": 4928, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4932, + "make_id": 4313, + "model_id": 4877, + "year_id": 4928, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4933, + "make_id": 4313, + "model_id": 4877, + "year_id": 4928, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4934, + "make_id": 4313, + "model_id": 4877, + "year_id": 4928, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4935, + "make_id": 4313, + "model_id": 4877, + "year_id": 4935, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4936, + "make_id": 4313, + "model_id": 4877, + "year_id": 4935, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4937, + "make_id": 4313, + "model_id": 4877, + "year_id": 4935, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4938, + "make_id": 4313, + "model_id": 4877, + "year_id": 4935, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4939, + "make_id": 4313, + "model_id": 4877, + "year_id": 4935, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4940, + "make_id": 4313, + "model_id": 4877, + "year_id": 4935, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4941, + "make_id": 4313, + "model_id": 4877, + "year_id": 4935, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4942, + "make_id": 4313, + "model_id": 4877, + "year_id": 4942, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4943, + "make_id": 4313, + "model_id": 4877, + "year_id": 4942, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4944, + "make_id": 4313, + "model_id": 4877, + "year_id": 4942, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4945, + "make_id": 4313, + "model_id": 4877, + "year_id": 4942, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4946, + "make_id": 4313, + "model_id": 4877, + "year_id": 4942, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4947, + "make_id": 4313, + "model_id": 4877, + "year_id": 4942, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4948, + "make_id": 4313, + "model_id": 4877, + "year_id": 4942, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4949, + "make_id": 4313, + "model_id": 4877, + "year_id": 4949, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4950, + "make_id": 4313, + "model_id": 4877, + "year_id": 4949, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4951, + "make_id": 4313, + "model_id": 4877, + "year_id": 4949, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4952, + "make_id": 4313, + "model_id": 4877, + "year_id": 4949, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4953, + "make_id": 4313, + "model_id": 4877, + "year_id": 4953, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4954, + "make_id": 4313, + "model_id": 4877, + "year_id": 4953, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4955, + "make_id": 4313, + "model_id": 4877, + "year_id": 4953, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4956, + "make_id": 4313, + "model_id": 4877, + "year_id": 4953, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4957, + "make_id": 4313, + "model_id": 4877, + "year_id": 4957, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4958, + "make_id": 4313, + "model_id": 4877, + "year_id": 4957, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4959, + "make_id": 4313, + "model_id": 4877, + "year_id": 4957, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4960, + "make_id": 4313, + "model_id": 4877, + "year_id": 4957, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4961, + "make_id": 4313, + "model_id": 4877, + "year_id": 4957, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4962, + "make_id": 4313, + "model_id": 4877, + "year_id": 4962, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4963, + "make_id": 4313, + "model_id": 4877, + "year_id": 4962, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4964, + "make_id": 4313, + "model_id": 4877, + "year_id": 4962, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4965, + "make_id": 4313, + "model_id": 4877, + "year_id": 4962, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4966, + "make_id": 4313, + "model_id": 4877, + "year_id": 4966, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4967, + "make_id": 4313, + "model_id": 4877, + "year_id": 4966, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4968, + "make_id": 4313, + "model_id": 4877, + "year_id": 4966, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4969, + "make_id": 4313, + "model_id": 4877, + "year_id": 4966, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4970, + "make_id": 4313, + "model_id": 4877, + "year_id": 4970, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4971, + "make_id": 4313, + "model_id": 4877, + "year_id": 4970, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4972, + "make_id": 4313, + "model_id": 4877, + "year_id": 4970, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4973, + "make_id": 4313, + "model_id": 4877, + "year_id": 4970, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4974, + "make_id": 4313, + "model_id": 4877, + "year_id": 4974, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4975, + "make_id": 4313, + "model_id": 4877, + "year_id": 4974, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4976, + "make_id": 4313, + "model_id": 4877, + "year_id": 4974, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4977, + "make_id": 4313, + "model_id": 4877, + "year_id": 4974, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4978, + "make_id": 4313, + "model_id": 4877, + "year_id": 4978, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4979, + "make_id": 4313, + "model_id": 4877, + "year_id": 4978, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4980, + "make_id": 4313, + "model_id": 4877, + "year_id": 4978, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4981, + "make_id": 4313, + "model_id": 4877, + "year_id": 4978, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4982, + "make_id": 4313, + "model_id": 4877, + "year_id": 4982, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4983, + "make_id": 4313, + "model_id": 4877, + "year_id": 4982, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4984, + "make_id": 4313, + "model_id": 4877, + "year_id": 4982, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4985, + "make_id": 4313, + "model_id": 4877, + "year_id": 4982, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4986, + "make_id": 4313, + "model_id": 4877, + "year_id": 4986, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4987, + "make_id": 4313, + "model_id": 4877, + "year_id": 4986, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 4988, + "make_id": 4313, + "model_id": 4877, + "year_id": 4986, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 4989, + "make_id": 4313, + "model_id": 4877, + "year_id": 4986, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4990, + "make_id": 4313, + "model_id": 4877, + "year_id": 4990, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4991, + "make_id": 4313, + "model_id": 4877, + "year_id": 4990, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4992, + "make_id": 4313, + "model_id": 4877, + "year_id": 4990, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4993, + "make_id": 4313, + "model_id": 4877, + "year_id": 4990, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4994, + "make_id": 4313, + "model_id": 4877, + "year_id": 4994, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4995, + "make_id": 4313, + "model_id": 4877, + "year_id": 4994, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4996, + "make_id": 4313, + "model_id": 4877, + "year_id": 4994, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4997, + "make_id": 4313, + "model_id": 4877, + "year_id": 4994, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 4998, + "make_id": 4313, + "model_id": 4877, + "year_id": 4994, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 4999, + "make_id": 4313, + "model_id": 4877, + "year_id": 4999, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5000, + "make_id": 4313, + "model_id": 4877, + "year_id": 4999, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5001, + "make_id": 4313, + "model_id": 4877, + "year_id": 4999, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5002, + "make_id": 4313, + "model_id": 4877, + "year_id": 4999, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5003, + "make_id": 4313, + "model_id": 4877, + "year_id": 4999, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5004, + "make_id": 4313, + "model_id": 4877, + "year_id": 4999, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5005, + "make_id": 4313, + "model_id": 4877, + "year_id": 4999, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5006, + "make_id": 4313, + "model_id": 4877, + "year_id": 5006, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5007, + "make_id": 4313, + "model_id": 4877, + "year_id": 5006, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5008, + "make_id": 4313, + "model_id": 4877, + "year_id": 5006, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5009, + "make_id": 4313, + "model_id": 4877, + "year_id": 5006, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5010, + "make_id": 4313, + "model_id": 4877, + "year_id": 5006, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5011, + "make_id": 4313, + "model_id": 4877, + "year_id": 5006, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5012, + "make_id": 4313, + "model_id": 4877, + "year_id": 5006, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5013, + "make_id": 4313, + "model_id": 4877, + "year_id": 5013, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5014, + "make_id": 4313, + "model_id": 4877, + "year_id": 5013, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5015, + "make_id": 4313, + "model_id": 4877, + "year_id": 5013, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5016, + "make_id": 4313, + "model_id": 4877, + "year_id": 5013, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5017, + "make_id": 4313, + "model_id": 4877, + "year_id": 5013, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5018, + "make_id": 4313, + "model_id": 4877, + "year_id": 5013, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5019, + "make_id": 4313, + "model_id": 4877, + "year_id": 5013, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5020, + "make_id": 4313, + "model_id": 4877, + "year_id": 5013, + "cylinders": 8, + "displacement": 7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5021, + "make_id": 4313, + "model_id": 4877, + "year_id": 5021, + "cylinders": 8, + "displacement": 7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5022, + "make_id": 4313, + "model_id": 4877, + "year_id": 5021, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5023, + "make_id": 4313, + "model_id": 4877, + "year_id": 5021, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5024, + "make_id": 4313, + "model_id": 4877, + "year_id": 5021, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5025, + "make_id": 4313, + "model_id": 4877, + "year_id": 5021, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5026, + "make_id": 4313, + "model_id": 4877, + "year_id": 5021, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5027, + "make_id": 4313, + "model_id": 4877, + "year_id": 5021, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5028, + "make_id": 4313, + "model_id": 4877, + "year_id": 5021, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5029, + "make_id": 4313, + "model_id": 4877, + "year_id": 5029, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5030, + "make_id": 4313, + "model_id": 4877, + "year_id": 5029, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 5031, + "make_id": 4313, + "model_id": 4877, + "year_id": 5029, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5032, + "make_id": 4313, + "model_id": 4877, + "year_id": 5029, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 5033, + "make_id": 4313, + "model_id": 4877, + "year_id": 5029, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 5034, + "make_id": 4313, + "model_id": 4877, + "year_id": 5029, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5035, + "make_id": 4313, + "model_id": 5035, + "year_id": 5035, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5036, + "make_id": 4313, + "model_id": 5035, + "year_id": 5035, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5037, + "make_id": 4313, + "model_id": 5035, + "year_id": 5035, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5038, + "make_id": 4313, + "model_id": 5035, + "year_id": 5035, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5039, + "make_id": 4313, + "model_id": 5035, + "year_id": 5035, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5040, + "make_id": 4313, + "model_id": 5035, + "year_id": 5040, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5041, + "make_id": 4313, + "model_id": 5035, + "year_id": 5040, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5042, + "make_id": 4313, + "model_id": 5035, + "year_id": 5040, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5043, + "make_id": 4313, + "model_id": 5035, + "year_id": 5040, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5044, + "make_id": 4313, + "model_id": 5035, + "year_id": 5040, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5045, + "make_id": 4313, + "model_id": 5035, + "year_id": 5045, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5046, + "make_id": 4313, + "model_id": 5035, + "year_id": 5045, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5047, + "make_id": 4313, + "model_id": 5035, + "year_id": 5045, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5048, + "make_id": 4313, + "model_id": 5035, + "year_id": 5048, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5049, + "make_id": 4313, + "model_id": 5035, + "year_id": 5048, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5050, + "make_id": 4313, + "model_id": 5035, + "year_id": 5048, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5051, + "make_id": 4313, + "model_id": 5035, + "year_id": 5051, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5052, + "make_id": 4313, + "model_id": 5035, + "year_id": 5051, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5053, + "make_id": 4313, + "model_id": 5035, + "year_id": 5051, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5054, + "make_id": 4313, + "model_id": 5035, + "year_id": 5054, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5055, + "make_id": 4313, + "model_id": 5035, + "year_id": 5054, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5056, + "make_id": 4313, + "model_id": 5035, + "year_id": 5056, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5057, + "make_id": 4313, + "model_id": 5035, + "year_id": 5056, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5058, + "make_id": 4313, + "model_id": 5035, + "year_id": 5056, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5059, + "make_id": 4313, + "model_id": 5035, + "year_id": 5059, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5060, + "make_id": 4313, + "model_id": 5035, + "year_id": 5059, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5061, + "make_id": 4313, + "model_id": 5035, + "year_id": 5059, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5062, + "make_id": 4313, + "model_id": 5035, + "year_id": 5059, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5063, + "make_id": 4313, + "model_id": 5063, + "year_id": 5063, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 5064, + "make_id": 4313, + "model_id": 5063, + "year_id": 5063, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 5065, + "make_id": 4313, + "model_id": 5063, + "year_id": 5063, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 5066, + "make_id": 4313, + "model_id": 5063, + "year_id": 5066, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5067, + "make_id": 4313, + "model_id": 5063, + "year_id": 5066, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5068, + "make_id": 4313, + "model_id": 5063, + "year_id": 5066, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5069, + "make_id": 4313, + "model_id": 5063, + "year_id": 5069, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5070, + "make_id": 4313, + "model_id": 5063, + "year_id": 5069, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5071, + "make_id": 4313, + "model_id": 5063, + "year_id": 5071, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5072, + "make_id": 4313, + "model_id": 5063, + "year_id": 5072, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5073, + "make_id": 4313, + "model_id": 5063, + "year_id": 5073, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5074, + "make_id": 4313, + "model_id": 5063, + "year_id": 5074, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5075, + "make_id": 4313, + "model_id": 5063, + "year_id": 5075, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5076, + "make_id": 4313, + "model_id": 5063, + "year_id": 5076, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5077, + "make_id": 4313, + "model_id": 5063, + "year_id": 5076, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5078, + "make_id": 4313, + "model_id": 5063, + "year_id": 5078, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5079, + "make_id": 4313, + "model_id": 5063, + "year_id": 5078, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5080, + "make_id": 4313, + "model_id": 5080, + "year_id": 5080, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5081, + "make_id": 4313, + "model_id": 5080, + "year_id": 5080, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5082, + "make_id": 4313, + "model_id": 5080, + "year_id": 5082, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5083, + "make_id": 4313, + "model_id": 5080, + "year_id": 5082, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5084, + "make_id": 4313, + "model_id": 5080, + "year_id": 5084, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5085, + "make_id": 4313, + "model_id": 5080, + "year_id": 5084, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5086, + "make_id": 4313, + "model_id": 5086, + "year_id": 5086, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5087, + "make_id": 4313, + "model_id": 5086, + "year_id": 5086, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5088, + "make_id": 4313, + "model_id": 5086, + "year_id": 5088, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5089, + "make_id": 4313, + "model_id": 5086, + "year_id": 5089, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5090, + "make_id": 4313, + "model_id": 5090, + "year_id": 5090, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5091, + "make_id": 4313, + "model_id": 5090, + "year_id": 5090, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5092, + "make_id": 4313, + "model_id": 5090, + "year_id": 5090, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5093, + "make_id": 4313, + "model_id": 5090, + "year_id": 5093, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5094, + "make_id": 4313, + "model_id": 5090, + "year_id": 5093, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5095, + "make_id": 4313, + "model_id": 5090, + "year_id": 5093, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5096, + "make_id": 4313, + "model_id": 5090, + "year_id": 5096, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5097, + "make_id": 4313, + "model_id": 5090, + "year_id": 5096, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5098, + "make_id": 4313, + "model_id": 5090, + "year_id": 5096, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5099, + "make_id": 4313, + "model_id": 5090, + "year_id": 5099, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5100, + "make_id": 4313, + "model_id": 5100, + "year_id": 5100, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5101, + "make_id": 4313, + "model_id": 5100, + "year_id": 5100, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5102, + "make_id": 4313, + "model_id": 5100, + "year_id": 5100, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5103, + "make_id": 4313, + "model_id": 5100, + "year_id": 5100, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 5104, + "make_id": 4313, + "model_id": 5100, + "year_id": 5100, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5105, + "make_id": 4313, + "model_id": 5100, + "year_id": 5100, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5106, + "make_id": 4313, + "model_id": 5100, + "year_id": 5100, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 5107, + "make_id": 4313, + "model_id": 5100, + "year_id": 5107, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5108, + "make_id": 4313, + "model_id": 5100, + "year_id": 5107, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5109, + "make_id": 4313, + "model_id": 5100, + "year_id": 5107, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5110, + "make_id": 4313, + "model_id": 5100, + "year_id": 5107, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5111, + "make_id": 4313, + "model_id": 5100, + "year_id": 5107, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5112, + "make_id": 4313, + "model_id": 5100, + "year_id": 5107, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5113, + "make_id": 4313, + "model_id": 5100, + "year_id": 5107, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5114, + "make_id": 4313, + "model_id": 5100, + "year_id": 5107, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5115, + "make_id": 4313, + "model_id": 5100, + "year_id": 5107, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5116, + "make_id": 4313, + "model_id": 5100, + "year_id": 5107, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5117, + "make_id": 4313, + "model_id": 5100, + "year_id": 5117, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5118, + "make_id": 4313, + "model_id": 5100, + "year_id": 5117, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5119, + "make_id": 4313, + "model_id": 5100, + "year_id": 5117, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5120, + "make_id": 4313, + "model_id": 5100, + "year_id": 5117, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5121, + "make_id": 4313, + "model_id": 5100, + "year_id": 5117, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5122, + "make_id": 4313, + "model_id": 5100, + "year_id": 5122, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5123, + "make_id": 4313, + "model_id": 5100, + "year_id": 5122, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5124, + "make_id": 4313, + "model_id": 5100, + "year_id": 5122, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5125, + "make_id": 4313, + "model_id": 5100, + "year_id": 5122, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5126, + "make_id": 4313, + "model_id": 5100, + "year_id": 5122, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5127, + "make_id": 4313, + "model_id": 5100, + "year_id": 5127, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5128, + "make_id": 4313, + "model_id": 5100, + "year_id": 5127, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5129, + "make_id": 4313, + "model_id": 5100, + "year_id": 5127, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5130, + "make_id": 4313, + "model_id": 5100, + "year_id": 5127, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5131, + "make_id": 4313, + "model_id": 5100, + "year_id": 5131, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5132, + "make_id": 4313, + "model_id": 5100, + "year_id": 5131, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5133, + "make_id": 4313, + "model_id": 5100, + "year_id": 5131, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5134, + "make_id": 4313, + "model_id": 5100, + "year_id": 5131, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5135, + "make_id": 4313, + "model_id": 5100, + "year_id": 5135, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5136, + "make_id": 4313, + "model_id": 5100, + "year_id": 5135, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5137, + "make_id": 4313, + "model_id": 5100, + "year_id": 5135, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5138, + "make_id": 4313, + "model_id": 5100, + "year_id": 5135, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5139, + "make_id": 4313, + "model_id": 5100, + "year_id": 5139, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5140, + "make_id": 4313, + "model_id": 5100, + "year_id": 5139, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5141, + "make_id": 4313, + "model_id": 5100, + "year_id": 5139, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5142, + "make_id": 4313, + "model_id": 5100, + "year_id": 5139, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5143, + "make_id": 4313, + "model_id": 5100, + "year_id": 5143, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5144, + "make_id": 4313, + "model_id": 5100, + "year_id": 5143, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5145, + "make_id": 4313, + "model_id": 5100, + "year_id": 5143, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5146, + "make_id": 4313, + "model_id": 5100, + "year_id": 5143, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5147, + "make_id": 4313, + "model_id": 5100, + "year_id": 5147, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5148, + "make_id": 4313, + "model_id": 5100, + "year_id": 5147, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5149, + "make_id": 4313, + "model_id": 5100, + "year_id": 5147, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5150, + "make_id": 4313, + "model_id": 5100, + "year_id": 5147, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5151, + "make_id": 4313, + "model_id": 5100, + "year_id": 5151, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5152, + "make_id": 4313, + "model_id": 5100, + "year_id": 5151, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5153, + "make_id": 4313, + "model_id": 5100, + "year_id": 5151, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5154, + "make_id": 4313, + "model_id": 5100, + "year_id": 5151, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5155, + "make_id": 4313, + "model_id": 5100, + "year_id": 5155, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5156, + "make_id": 4313, + "model_id": 5100, + "year_id": 5155, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5157, + "make_id": 4313, + "model_id": 5100, + "year_id": 5155, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5158, + "make_id": 4313, + "model_id": 5100, + "year_id": 5158, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5159, + "make_id": 4313, + "model_id": 5100, + "year_id": 5158, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5160, + "make_id": 4313, + "model_id": 5100, + "year_id": 5158, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5161, + "make_id": 4313, + "model_id": 5100, + "year_id": 5158, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5162, + "make_id": 4313, + "model_id": 5100, + "year_id": 5158, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5163, + "make_id": 4313, + "model_id": 5100, + "year_id": 5163, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5164, + "make_id": 4313, + "model_id": 5100, + "year_id": 5163, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5165, + "make_id": 4313, + "model_id": 5100, + "year_id": 5163, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5166, + "make_id": 4313, + "model_id": 5100, + "year_id": 5163, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5167, + "make_id": 4313, + "model_id": 5100, + "year_id": 5163, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5168, + "make_id": 4313, + "model_id": 5100, + "year_id": 5163, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5169, + "make_id": 4313, + "model_id": 5100, + "year_id": 5169, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5170, + "make_id": 4313, + "model_id": 5100, + "year_id": 5169, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5171, + "make_id": 4313, + "model_id": 5100, + "year_id": 5169, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5172, + "make_id": 4313, + "model_id": 5100, + "year_id": 5169, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5173, + "make_id": 4313, + "model_id": 5100, + "year_id": 5169, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5174, + "make_id": 4313, + "model_id": 5100, + "year_id": 5174, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5175, + "make_id": 4313, + "model_id": 5100, + "year_id": 5174, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5176, + "make_id": 4313, + "model_id": 5100, + "year_id": 5174, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5177, + "make_id": 4313, + "model_id": 5100, + "year_id": 5174, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5178, + "make_id": 4313, + "model_id": 5100, + "year_id": 5174, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5179, + "make_id": 4313, + "model_id": 5100, + "year_id": 5179, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5180, + "make_id": 4313, + "model_id": 5100, + "year_id": 5179, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5181, + "make_id": 4313, + "model_id": 5100, + "year_id": 5179, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5182, + "make_id": 4313, + "model_id": 5100, + "year_id": 5179, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5183, + "make_id": 4313, + "model_id": 5100, + "year_id": 5179, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5184, + "make_id": 4313, + "model_id": 5100, + "year_id": 5184, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5185, + "make_id": 4313, + "model_id": 5100, + "year_id": 5184, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5186, + "make_id": 4313, + "model_id": 5100, + "year_id": 5184, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5187, + "make_id": 4313, + "model_id": 5100, + "year_id": 5184, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5188, + "make_id": 4313, + "model_id": 5100, + "year_id": 5184, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5189, + "make_id": 4313, + "model_id": 5100, + "year_id": 5189, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5190, + "make_id": 4313, + "model_id": 5100, + "year_id": 5189, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5191, + "make_id": 4313, + "model_id": 5100, + "year_id": 5189, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5192, + "make_id": 4313, + "model_id": 5100, + "year_id": 5189, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5193, + "make_id": 4313, + "model_id": 5100, + "year_id": 5189, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5194, + "make_id": 4313, + "model_id": 5100, + "year_id": 5189, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5195, + "make_id": 4313, + "model_id": 5100, + "year_id": 5195, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5196, + "make_id": 4313, + "model_id": 5100, + "year_id": 5195, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5197, + "make_id": 4313, + "model_id": 5100, + "year_id": 5197, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5198, + "make_id": 4313, + "model_id": 5100, + "year_id": 5197, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5199, + "make_id": 4313, + "model_id": 5100, + "year_id": 5199, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5200, + "make_id": 4313, + "model_id": 5100, + "year_id": 5199, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5201, + "make_id": 4313, + "model_id": 5201, + "year_id": 5201, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5202, + "make_id": 4313, + "model_id": 5201, + "year_id": 5202, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5203, + "make_id": 4313, + "model_id": 5203, + "year_id": 5203, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5204, + "make_id": 4313, + "model_id": 5203, + "year_id": 5203, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5205, + "make_id": 4313, + "model_id": 5203, + "year_id": 5203, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 5206, + "make_id": 4313, + "model_id": 5203, + "year_id": 5203, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5207, + "make_id": 4313, + "model_id": 5203, + "year_id": 5203, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5208, + "make_id": 4313, + "model_id": 5203, + "year_id": 5203, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 5209, + "make_id": 4313, + "model_id": 5203, + "year_id": 5209, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5210, + "make_id": 4313, + "model_id": 5203, + "year_id": 5209, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5211, + "make_id": 4313, + "model_id": 5203, + "year_id": 5209, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5212, + "make_id": 4313, + "model_id": 5203, + "year_id": 5209, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5213, + "make_id": 4313, + "model_id": 5203, + "year_id": 5209, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5214, + "make_id": 4313, + "model_id": 5203, + "year_id": 5209, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5215, + "make_id": 4313, + "model_id": 5203, + "year_id": 5209, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5216, + "make_id": 4313, + "model_id": 5203, + "year_id": 5209, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5217, + "make_id": 4313, + "model_id": 5203, + "year_id": 5209, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5218, + "make_id": 4313, + "model_id": 5203, + "year_id": 5209, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5219, + "make_id": 4313, + "model_id": 5203, + "year_id": 5219, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5220, + "make_id": 4313, + "model_id": 5203, + "year_id": 5219, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5221, + "make_id": 4313, + "model_id": 5203, + "year_id": 5219, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5222, + "make_id": 4313, + "model_id": 5203, + "year_id": 5219, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5223, + "make_id": 4313, + "model_id": 5203, + "year_id": 5219, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5224, + "make_id": 4313, + "model_id": 5203, + "year_id": 5224, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5225, + "make_id": 4313, + "model_id": 5203, + "year_id": 5224, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5226, + "make_id": 4313, + "model_id": 5203, + "year_id": 5224, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5227, + "make_id": 4313, + "model_id": 5203, + "year_id": 5224, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5228, + "make_id": 4313, + "model_id": 5203, + "year_id": 5224, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5229, + "make_id": 4313, + "model_id": 5203, + "year_id": 5229, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5230, + "make_id": 4313, + "model_id": 5203, + "year_id": 5229, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5231, + "make_id": 4313, + "model_id": 5203, + "year_id": 5231, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5232, + "make_id": 4313, + "model_id": 5203, + "year_id": 5231, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5233, + "make_id": 4313, + "model_id": 5203, + "year_id": 5233, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5234, + "make_id": 4313, + "model_id": 5203, + "year_id": 5233, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5235, + "make_id": 4313, + "model_id": 5235, + "year_id": 5235, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5236, + "make_id": 4313, + "model_id": 5235, + "year_id": 5236, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5237, + "make_id": 4313, + "model_id": 5235, + "year_id": 5237, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5238, + "make_id": 4313, + "model_id": 5238, + "year_id": 5238, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5239, + "make_id": 4313, + "model_id": 5238, + "year_id": 5238, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5240, + "make_id": 4313, + "model_id": 5238, + "year_id": 5238, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 5241, + "make_id": 4313, + "model_id": 5238, + "year_id": 5238, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5242, + "make_id": 4313, + "model_id": 5238, + "year_id": 5238, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5243, + "make_id": 4313, + "model_id": 5238, + "year_id": 5238, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 5244, + "make_id": 4313, + "model_id": 5238, + "year_id": 5244, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5245, + "make_id": 4313, + "model_id": 5238, + "year_id": 5244, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5246, + "make_id": 4313, + "model_id": 5238, + "year_id": 5244, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5247, + "make_id": 4313, + "model_id": 5238, + "year_id": 5244, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5248, + "make_id": 4313, + "model_id": 5238, + "year_id": 5244, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5249, + "make_id": 4313, + "model_id": 5238, + "year_id": 5244, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5250, + "make_id": 4313, + "model_id": 5238, + "year_id": 5244, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5251, + "make_id": 4313, + "model_id": 5238, + "year_id": 5244, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5252, + "make_id": 4313, + "model_id": 5238, + "year_id": 5244, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5253, + "make_id": 4313, + "model_id": 5238, + "year_id": 5244, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5254, + "make_id": 4313, + "model_id": 5238, + "year_id": 5254, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5255, + "make_id": 4313, + "model_id": 5238, + "year_id": 5254, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5256, + "make_id": 4313, + "model_id": 5238, + "year_id": 5254, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5257, + "make_id": 4313, + "model_id": 5238, + "year_id": 5254, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5258, + "make_id": 4313, + "model_id": 5238, + "year_id": 5254, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5259, + "make_id": 4313, + "model_id": 5238, + "year_id": 5259, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5260, + "make_id": 4313, + "model_id": 5238, + "year_id": 5259, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5261, + "make_id": 4313, + "model_id": 5238, + "year_id": 5259, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5262, + "make_id": 4313, + "model_id": 5238, + "year_id": 5259, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5263, + "make_id": 4313, + "model_id": 5238, + "year_id": 5259, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5264, + "make_id": 4313, + "model_id": 5238, + "year_id": 5264, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5265, + "make_id": 4313, + "model_id": 5238, + "year_id": 5264, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5266, + "make_id": 4313, + "model_id": 5238, + "year_id": 5264, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5267, + "make_id": 4313, + "model_id": 5238, + "year_id": 5264, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5268, + "make_id": 4313, + "model_id": 5238, + "year_id": 5268, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5269, + "make_id": 4313, + "model_id": 5238, + "year_id": 5268, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5270, + "make_id": 4313, + "model_id": 5238, + "year_id": 5268, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5271, + "make_id": 4313, + "model_id": 5238, + "year_id": 5268, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5272, + "make_id": 4313, + "model_id": 5238, + "year_id": 5272, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5273, + "make_id": 4313, + "model_id": 5238, + "year_id": 5272, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5274, + "make_id": 4313, + "model_id": 5238, + "year_id": 5272, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5275, + "make_id": 4313, + "model_id": 5238, + "year_id": 5272, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5276, + "make_id": 4313, + "model_id": 5238, + "year_id": 5276, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5277, + "make_id": 4313, + "model_id": 5238, + "year_id": 5276, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5278, + "make_id": 4313, + "model_id": 5238, + "year_id": 5276, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5279, + "make_id": 4313, + "model_id": 5238, + "year_id": 5279, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5280, + "make_id": 4313, + "model_id": 5238, + "year_id": 5279, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5281, + "make_id": 4313, + "model_id": 5238, + "year_id": 5281, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5282, + "make_id": 4313, + "model_id": 5238, + "year_id": 5281, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5283, + "make_id": 4313, + "model_id": 5238, + "year_id": 5283, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5284, + "make_id": 4313, + "model_id": 5238, + "year_id": 5283, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5285, + "make_id": 4313, + "model_id": 5285, + "year_id": 5285, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5286, + "make_id": 4313, + "model_id": 5285, + "year_id": 5285, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5287, + "make_id": 4313, + "model_id": 5285, + "year_id": 5285, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5288, + "make_id": 4313, + "model_id": 5285, + "year_id": 5285, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5289, + "make_id": 4313, + "model_id": 5285, + "year_id": 5285, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5290, + "make_id": 4313, + "model_id": 5285, + "year_id": 5285, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5291, + "make_id": 4313, + "model_id": 5285, + "year_id": 5285, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5292, + "make_id": 4313, + "model_id": 5285, + "year_id": 5285, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5293, + "make_id": 4313, + "model_id": 5285, + "year_id": 5285, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 5294, + "make_id": 4313, + "model_id": 5285, + "year_id": 5294, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5295, + "make_id": 4313, + "model_id": 5285, + "year_id": 5294, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5296, + "make_id": 4313, + "model_id": 5285, + "year_id": 5294, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5297, + "make_id": 4313, + "model_id": 5285, + "year_id": 5294, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5298, + "make_id": 4313, + "model_id": 5285, + "year_id": 5294, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5299, + "make_id": 4313, + "model_id": 5285, + "year_id": 5294, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5300, + "make_id": 4313, + "model_id": 5285, + "year_id": 5294, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5301, + "make_id": 4313, + "model_id": 5285, + "year_id": 5294, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5302, + "make_id": 4313, + "model_id": 5285, + "year_id": 5294, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5303, + "make_id": 4313, + "model_id": 5285, + "year_id": 5303, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5304, + "make_id": 4313, + "model_id": 5285, + "year_id": 5303, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5305, + "make_id": 4313, + "model_id": 5285, + "year_id": 5303, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5306, + "make_id": 4313, + "model_id": 5285, + "year_id": 5303, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5307, + "make_id": 4313, + "model_id": 5285, + "year_id": 5303, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5308, + "make_id": 4313, + "model_id": 5285, + "year_id": 5303, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5309, + "make_id": 4313, + "model_id": 5285, + "year_id": 5309, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5310, + "make_id": 4313, + "model_id": 5285, + "year_id": 5309, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5311, + "make_id": 4313, + "model_id": 5285, + "year_id": 5309, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5312, + "make_id": 4313, + "model_id": 5285, + "year_id": 5309, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5313, + "make_id": 4313, + "model_id": 5285, + "year_id": 5313, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5314, + "make_id": 4313, + "model_id": 5285, + "year_id": 5313, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5315, + "make_id": 4313, + "model_id": 5285, + "year_id": 5313, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5316, + "make_id": 4313, + "model_id": 5285, + "year_id": 5313, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5317, + "make_id": 4313, + "model_id": 5285, + "year_id": 5317, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5318, + "make_id": 4313, + "model_id": 5285, + "year_id": 5317, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5319, + "make_id": 4313, + "model_id": 5285, + "year_id": 5317, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5320, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5321, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5322, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5323, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 5324, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5325, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5326, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5327, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5328, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 5329, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5330, + "make_id": 4313, + "model_id": 5320, + "year_id": 5320, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 5331, + "make_id": 4313, + "model_id": 5320, + "year_id": 5331, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5332, + "make_id": 4313, + "model_id": 5320, + "year_id": 5331, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5333, + "make_id": 4313, + "model_id": 5320, + "year_id": 5331, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5334, + "make_id": 4313, + "model_id": 5320, + "year_id": 5331, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5335, + "make_id": 4313, + "model_id": 5320, + "year_id": 5331, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5336, + "make_id": 4313, + "model_id": 5320, + "year_id": 5331, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5337, + "make_id": 4313, + "model_id": 5320, + "year_id": 5331, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5338, + "make_id": 4313, + "model_id": 5320, + "year_id": 5331, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5339, + "make_id": 4313, + "model_id": 5320, + "year_id": 5331, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5340, + "make_id": 4313, + "model_id": 5320, + "year_id": 5340, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5341, + "make_id": 4313, + "model_id": 5320, + "year_id": 5340, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5342, + "make_id": 4313, + "model_id": 5320, + "year_id": 5340, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5343, + "make_id": 4313, + "model_id": 5320, + "year_id": 5340, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5344, + "make_id": 4313, + "model_id": 5320, + "year_id": 5340, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5345, + "make_id": 4313, + "model_id": 5320, + "year_id": 5340, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5346, + "make_id": 4313, + "model_id": 5320, + "year_id": 5346, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5347, + "make_id": 4313, + "model_id": 5320, + "year_id": 5346, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5348, + "make_id": 4313, + "model_id": 5320, + "year_id": 5346, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5349, + "make_id": 4313, + "model_id": 5320, + "year_id": 5346, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5350, + "make_id": 4313, + "model_id": 5320, + "year_id": 5350, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5351, + "make_id": 4313, + "model_id": 5320, + "year_id": 5350, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5352, + "make_id": 4313, + "model_id": 5320, + "year_id": 5350, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5353, + "make_id": 4313, + "model_id": 5320, + "year_id": 5353, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5354, + "make_id": 4313, + "model_id": 5320, + "year_id": 5353, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5355, + "make_id": 4313, + "model_id": 5320, + "year_id": 5355, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5356, + "make_id": 4313, + "model_id": 5320, + "year_id": 5355, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5357, + "make_id": 4313, + "model_id": 5357, + "year_id": 5357, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5358, + "make_id": 4313, + "model_id": 5357, + "year_id": 5357, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5359, + "make_id": 4313, + "model_id": 5357, + "year_id": 5357, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 5360, + "make_id": 4313, + "model_id": 5357, + "year_id": 5357, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5361, + "make_id": 4313, + "model_id": 5357, + "year_id": 5357, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 5362, + "make_id": 4313, + "model_id": 5357, + "year_id": 5357, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5363, + "make_id": 4313, + "model_id": 5357, + "year_id": 5357, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5364, + "make_id": 4313, + "model_id": 5357, + "year_id": 5357, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 5365, + "make_id": 4313, + "model_id": 5357, + "year_id": 5365, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5366, + "make_id": 4313, + "model_id": 5357, + "year_id": 5365, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5367, + "make_id": 4313, + "model_id": 5357, + "year_id": 5365, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5368, + "make_id": 4313, + "model_id": 5357, + "year_id": 5365, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5369, + "make_id": 4313, + "model_id": 5357, + "year_id": 5365, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5370, + "make_id": 4313, + "model_id": 5357, + "year_id": 5365, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5371, + "make_id": 4313, + "model_id": 5357, + "year_id": 5365, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5372, + "make_id": 4313, + "model_id": 5372, + "year_id": 5372, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5373, + "make_id": 4313, + "model_id": 5372, + "year_id": 5372, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5374, + "make_id": 4313, + "model_id": 5372, + "year_id": 5372, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5375, + "make_id": 4313, + "model_id": 5372, + "year_id": 5372, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5376, + "make_id": 4313, + "model_id": 5372, + "year_id": 5376, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5377, + "make_id": 4313, + "model_id": 5372, + "year_id": 5376, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5378, + "make_id": 4313, + "model_id": 5372, + "year_id": 5376, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5379, + "make_id": 4313, + "model_id": 5379, + "year_id": 5379, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5380, + "make_id": 4313, + "model_id": 5379, + "year_id": 5379, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5381, + "make_id": 4313, + "model_id": 5379, + "year_id": 5379, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5382, + "make_id": 4313, + "model_id": 5379, + "year_id": 5379, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5383, + "make_id": 4313, + "model_id": 5379, + "year_id": 5379, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5384, + "make_id": 4313, + "model_id": 5379, + "year_id": 5379, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5385, + "make_id": 4313, + "model_id": 5379, + "year_id": 5379, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 5386, + "make_id": 4313, + "model_id": 5379, + "year_id": 5379, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5387, + "make_id": 4313, + "model_id": 5379, + "year_id": 5387, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5388, + "make_id": 4313, + "model_id": 5379, + "year_id": 5387, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5389, + "make_id": 4313, + "model_id": 5379, + "year_id": 5387, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5390, + "make_id": 4313, + "model_id": 5379, + "year_id": 5387, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5391, + "make_id": 4313, + "model_id": 5379, + "year_id": 5387, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5392, + "make_id": 4313, + "model_id": 5379, + "year_id": 5387, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5393, + "make_id": 4313, + "model_id": 5379, + "year_id": 5387, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5394, + "make_id": 4313, + "model_id": 5379, + "year_id": 5387, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5395, + "make_id": 4313, + "model_id": 5395, + "year_id": 5395, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 5396, + "make_id": 4313, + "model_id": 5395, + "year_id": 5396, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 5397, + "make_id": 4313, + "model_id": 5397, + "year_id": 5397, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5398, + "make_id": 4313, + "model_id": 5397, + "year_id": 5398, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5399, + "make_id": 4313, + "model_id": 5397, + "year_id": 5399, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5400, + "make_id": 4313, + "model_id": 5397, + "year_id": 5399, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5401, + "make_id": 4313, + "model_id": 5401, + "year_id": 5401, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5402, + "make_id": 4313, + "model_id": 5401, + "year_id": 5401, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5403, + "make_id": 4313, + "model_id": 5401, + "year_id": 5403, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5404, + "make_id": 4313, + "model_id": 5401, + "year_id": 5404, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5405, + "make_id": 4313, + "model_id": 5405, + "year_id": 5405, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5406, + "make_id": 4313, + "model_id": 5405, + "year_id": 5405, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5407, + "make_id": 4313, + "model_id": 5405, + "year_id": 5405, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5408, + "make_id": 4313, + "model_id": 5405, + "year_id": 5408, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5409, + "make_id": 4313, + "model_id": 5405, + "year_id": 5408, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5410, + "make_id": 4313, + "model_id": 5405, + "year_id": 5408, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5411, + "make_id": 4313, + "model_id": 5405, + "year_id": 5408, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5412, + "make_id": 4313, + "model_id": 5405, + "year_id": 5408, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5413, + "make_id": 4313, + "model_id": 5405, + "year_id": 5413, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5414, + "make_id": 4313, + "model_id": 5405, + "year_id": 5413, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5415, + "make_id": 4313, + "model_id": 5405, + "year_id": 5413, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5416, + "make_id": 4313, + "model_id": 5405, + "year_id": 5413, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5417, + "make_id": 4313, + "model_id": 5405, + "year_id": 5413, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5418, + "make_id": 4313, + "model_id": 5405, + "year_id": 5418, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5419, + "make_id": 4313, + "model_id": 5405, + "year_id": 5418, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5420, + "make_id": 4313, + "model_id": 5405, + "year_id": 5418, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5421, + "make_id": 4313, + "model_id": 5405, + "year_id": 5418, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5422, + "make_id": 4313, + "model_id": 5405, + "year_id": 5418, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5423, + "make_id": 4313, + "model_id": 5405, + "year_id": 5423, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5424, + "make_id": 4313, + "model_id": 5405, + "year_id": 5423, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5425, + "make_id": 4313, + "model_id": 5405, + "year_id": 5423, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5426, + "make_id": 4313, + "model_id": 5426, + "year_id": 5426, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5427, + "make_id": 4313, + "model_id": 5426, + "year_id": 5426, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5428, + "make_id": 4313, + "model_id": 5428, + "year_id": 5428, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5429, + "make_id": 4313, + "model_id": 5428, + "year_id": 5428, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5430, + "make_id": 4313, + "model_id": 5430, + "year_id": 5430, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5431, + "make_id": 4313, + "model_id": 5431, + "year_id": 5431, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5432, + "make_id": 4313, + "model_id": 5431, + "year_id": 5432, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5433, + "make_id": 4313, + "model_id": 5433, + "year_id": 5433, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5434, + "make_id": 4313, + "model_id": 5434, + "year_id": 5434, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5435, + "make_id": 4313, + "model_id": 5435, + "year_id": 5435, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5436, + "make_id": 4313, + "model_id": 5435, + "year_id": 5435, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5437, + "make_id": 4313, + "model_id": 5435, + "year_id": 5435, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5438, + "make_id": 4313, + "model_id": 5435, + "year_id": 5435, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5439, + "make_id": 4313, + "model_id": 5435, + "year_id": 5435, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5440, + "make_id": 4313, + "model_id": 5435, + "year_id": 5435, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5441, + "make_id": 4313, + "model_id": 5435, + "year_id": 5435, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5442, + "make_id": 4313, + "model_id": 5435, + "year_id": 5435, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5443, + "make_id": 4313, + "model_id": 5435, + "year_id": 5443, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5444, + "make_id": 4313, + "model_id": 5435, + "year_id": 5443, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5445, + "make_id": 4313, + "model_id": 5435, + "year_id": 5443, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5446, + "make_id": 4313, + "model_id": 5435, + "year_id": 5443, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5447, + "make_id": 4313, + "model_id": 5435, + "year_id": 5443, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5448, + "make_id": 4313, + "model_id": 5435, + "year_id": 5443, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5449, + "make_id": 4313, + "model_id": 5435, + "year_id": 5443, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5450, + "make_id": 4313, + "model_id": 5435, + "year_id": 5443, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5451, + "make_id": 4313, + "model_id": 5435, + "year_id": 5451, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5452, + "make_id": 4313, + "model_id": 5435, + "year_id": 5451, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5453, + "make_id": 4313, + "model_id": 5435, + "year_id": 5451, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5454, + "make_id": 4313, + "model_id": 5435, + "year_id": 5451, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5455, + "make_id": 4313, + "model_id": 5435, + "year_id": 5451, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5456, + "make_id": 4313, + "model_id": 5435, + "year_id": 5451, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5457, + "make_id": 4313, + "model_id": 5435, + "year_id": 5451, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5458, + "make_id": 4313, + "model_id": 5435, + "year_id": 5451, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5459, + "make_id": 4313, + "model_id": 5435, + "year_id": 5459, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5460, + "make_id": 4313, + "model_id": 5435, + "year_id": 5459, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5461, + "make_id": 4313, + "model_id": 5435, + "year_id": 5459, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5462, + "make_id": 4313, + "model_id": 5435, + "year_id": 5459, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5463, + "make_id": 4313, + "model_id": 5435, + "year_id": 5459, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5464, + "make_id": 4313, + "model_id": 5435, + "year_id": 5459, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5465, + "make_id": 4313, + "model_id": 5435, + "year_id": 5465, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5466, + "make_id": 4313, + "model_id": 5435, + "year_id": 5465, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5467, + "make_id": 4313, + "model_id": 5435, + "year_id": 5465, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5468, + "make_id": 4313, + "model_id": 5435, + "year_id": 5465, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5469, + "make_id": 4313, + "model_id": 5435, + "year_id": 5465, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5470, + "make_id": 4313, + "model_id": 5435, + "year_id": 5465, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5471, + "make_id": 4313, + "model_id": 5435, + "year_id": 5471, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5472, + "make_id": 4313, + "model_id": 5435, + "year_id": 5471, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5473, + "make_id": 4313, + "model_id": 5435, + "year_id": 5471, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5474, + "make_id": 4313, + "model_id": 5435, + "year_id": 5471, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5475, + "make_id": 4313, + "model_id": 5435, + "year_id": 5471, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5476, + "make_id": 4313, + "model_id": 5435, + "year_id": 5471, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5477, + "make_id": 4313, + "model_id": 5435, + "year_id": 5471, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5478, + "make_id": 4313, + "model_id": 5435, + "year_id": 5471, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5479, + "make_id": 4313, + "model_id": 5435, + "year_id": 5479, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5480, + "make_id": 4313, + "model_id": 5435, + "year_id": 5479, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5481, + "make_id": 4313, + "model_id": 5435, + "year_id": 5479, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5482, + "make_id": 4313, + "model_id": 5435, + "year_id": 5479, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5483, + "make_id": 4313, + "model_id": 5435, + "year_id": 5479, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5484, + "make_id": 4313, + "model_id": 5435, + "year_id": 5479, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5485, + "make_id": 4313, + "model_id": 5435, + "year_id": 5479, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5486, + "make_id": 4313, + "model_id": 5435, + "year_id": 5479, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5487, + "make_id": 4313, + "model_id": 5435, + "year_id": 5487, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5488, + "make_id": 4313, + "model_id": 5435, + "year_id": 5487, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5489, + "make_id": 4313, + "model_id": 5435, + "year_id": 5487, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5490, + "make_id": 4313, + "model_id": 5435, + "year_id": 5487, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5491, + "make_id": 4313, + "model_id": 5435, + "year_id": 5487, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5492, + "make_id": 4313, + "model_id": 5435, + "year_id": 5487, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5493, + "make_id": 4313, + "model_id": 5435, + "year_id": 5487, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5494, + "make_id": 4313, + "model_id": 5435, + "year_id": 5487, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5495, + "make_id": 4313, + "model_id": 5435, + "year_id": 5495, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5496, + "make_id": 4313, + "model_id": 5435, + "year_id": 5495, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5497, + "make_id": 4313, + "model_id": 5435, + "year_id": 5495, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5498, + "make_id": 4313, + "model_id": 5435, + "year_id": 5495, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5499, + "make_id": 4313, + "model_id": 5435, + "year_id": 5495, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5500, + "make_id": 4313, + "model_id": 5435, + "year_id": 5495, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5501, + "make_id": 4313, + "model_id": 5435, + "year_id": 5495, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5502, + "make_id": 4313, + "model_id": 5435, + "year_id": 5495, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5503, + "make_id": 4313, + "model_id": 5435, + "year_id": 5503, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5504, + "make_id": 4313, + "model_id": 5435, + "year_id": 5503, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5505, + "make_id": 4313, + "model_id": 5435, + "year_id": 5503, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5506, + "make_id": 4313, + "model_id": 5435, + "year_id": 5503, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5507, + "make_id": 4313, + "model_id": 5435, + "year_id": 5503, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5508, + "make_id": 4313, + "model_id": 5435, + "year_id": 5508, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5509, + "make_id": 4313, + "model_id": 5435, + "year_id": 5508, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5510, + "make_id": 4313, + "model_id": 5435, + "year_id": 5508, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5511, + "make_id": 4313, + "model_id": 5435, + "year_id": 5508, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5512, + "make_id": 4313, + "model_id": 5435, + "year_id": 5508, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5513, + "make_id": 4313, + "model_id": 5435, + "year_id": 5508, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5514, + "make_id": 4313, + "model_id": 5435, + "year_id": 5508, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5515, + "make_id": 4313, + "model_id": 5515, + "year_id": 5515, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5516, + "make_id": 4313, + "model_id": 5515, + "year_id": 5516, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5517, + "make_id": 4313, + "model_id": 5517, + "year_id": 5517, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5518, + "make_id": 4313, + "model_id": 5517, + "year_id": 5517, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5519, + "make_id": 4313, + "model_id": 5517, + "year_id": 5519, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5520, + "make_id": 4313, + "model_id": 5517, + "year_id": 5519, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5521, + "make_id": 4313, + "model_id": 5517, + "year_id": 5521, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5522, + "make_id": 4313, + "model_id": 5517, + "year_id": 5521, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5523, + "make_id": 4313, + "model_id": 5517, + "year_id": 5523, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5524, + "make_id": 4313, + "model_id": 5517, + "year_id": 5523, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5525, + "make_id": 4313, + "model_id": 5517, + "year_id": 5525, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5526, + "make_id": 4313, + "model_id": 5517, + "year_id": 5525, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5527, + "make_id": 4313, + "model_id": 5517, + "year_id": 5527, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5528, + "make_id": 4313, + "model_id": 5517, + "year_id": 5527, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5529, + "make_id": 4313, + "model_id": 5517, + "year_id": 5529, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5530, + "make_id": 4313, + "model_id": 5517, + "year_id": 5529, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5531, + "make_id": 4313, + "model_id": 5531, + "year_id": 5531, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5532, + "make_id": 4313, + "model_id": 5531, + "year_id": 5531, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5533, + "make_id": 4313, + "model_id": 5531, + "year_id": 5531, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5534, + "make_id": 4313, + "model_id": 5531, + "year_id": 5531, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5535, + "make_id": 4313, + "model_id": 5531, + "year_id": 5531, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5536, + "make_id": 4313, + "model_id": 5531, + "year_id": 5531, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5537, + "make_id": 4313, + "model_id": 5531, + "year_id": 5537, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5538, + "make_id": 4313, + "model_id": 5531, + "year_id": 5537, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5539, + "make_id": 4313, + "model_id": 5531, + "year_id": 5537, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5540, + "make_id": 4313, + "model_id": 5531, + "year_id": 5537, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5541, + "make_id": 4313, + "model_id": 5531, + "year_id": 5537, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5542, + "make_id": 4313, + "model_id": 5531, + "year_id": 5537, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5543, + "make_id": 4313, + "model_id": 5531, + "year_id": 5543, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5544, + "make_id": 4313, + "model_id": 5531, + "year_id": 5543, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5545, + "make_id": 4313, + "model_id": 5531, + "year_id": 5543, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5546, + "make_id": 4313, + "model_id": 5531, + "year_id": 5543, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5547, + "make_id": 4313, + "model_id": 5531, + "year_id": 5543, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5548, + "make_id": 4313, + "model_id": 5531, + "year_id": 5543, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5549, + "make_id": 4313, + "model_id": 5531, + "year_id": 5549, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5550, + "make_id": 4313, + "model_id": 5531, + "year_id": 5549, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5551, + "make_id": 4313, + "model_id": 5531, + "year_id": 5549, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5552, + "make_id": 4313, + "model_id": 5531, + "year_id": 5549, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5553, + "make_id": 4313, + "model_id": 5531, + "year_id": 5553, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5554, + "make_id": 4313, + "model_id": 5531, + "year_id": 5553, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5555, + "make_id": 4313, + "model_id": 5531, + "year_id": 5553, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5556, + "make_id": 4313, + "model_id": 5531, + "year_id": 5553, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5557, + "make_id": 4313, + "model_id": 5531, + "year_id": 5557, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5558, + "make_id": 4313, + "model_id": 5531, + "year_id": 5557, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5559, + "make_id": 4313, + "model_id": 5531, + "year_id": 5557, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5560, + "make_id": 4313, + "model_id": 5531, + "year_id": 5557, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5561, + "make_id": 4313, + "model_id": 5531, + "year_id": 5557, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5562, + "make_id": 4313, + "model_id": 5531, + "year_id": 5557, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5563, + "make_id": 4313, + "model_id": 5531, + "year_id": 5563, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5564, + "make_id": 4313, + "model_id": 5531, + "year_id": 5563, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5565, + "make_id": 4313, + "model_id": 5531, + "year_id": 5563, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5566, + "make_id": 4313, + "model_id": 5531, + "year_id": 5563, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5567, + "make_id": 4313, + "model_id": 5531, + "year_id": 5563, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5568, + "make_id": 4313, + "model_id": 5531, + "year_id": 5563, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5569, + "make_id": 4313, + "model_id": 5531, + "year_id": 5569, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5570, + "make_id": 4313, + "model_id": 5531, + "year_id": 5569, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5571, + "make_id": 4313, + "model_id": 5531, + "year_id": 5569, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5572, + "make_id": 4313, + "model_id": 5531, + "year_id": 5569, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5573, + "make_id": 4313, + "model_id": 5531, + "year_id": 5569, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5574, + "make_id": 4313, + "model_id": 5531, + "year_id": 5569, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5575, + "make_id": 4313, + "model_id": 5531, + "year_id": 5575, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5576, + "make_id": 4313, + "model_id": 5531, + "year_id": 5575, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5577, + "make_id": 4313, + "model_id": 5531, + "year_id": 5575, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5578, + "make_id": 4313, + "model_id": 5531, + "year_id": 5575, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5579, + "make_id": 4313, + "model_id": 5531, + "year_id": 5575, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5580, + "make_id": 4313, + "model_id": 5531, + "year_id": 5575, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5581, + "make_id": 4313, + "model_id": 5581, + "year_id": 5581, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5582, + "make_id": 4313, + "model_id": 5581, + "year_id": 5581, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5583, + "make_id": 4313, + "model_id": 5581, + "year_id": 5581, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5584, + "make_id": 4313, + "model_id": 5581, + "year_id": 5581, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5585, + "make_id": 4313, + "model_id": 5581, + "year_id": 5585, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5586, + "make_id": 4313, + "model_id": 5581, + "year_id": 5585, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5587, + "make_id": 4313, + "model_id": 5581, + "year_id": 5585, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5588, + "make_id": 4313, + "model_id": 5581, + "year_id": 5585, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5589, + "make_id": 4313, + "model_id": 5581, + "year_id": 5585, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5590, + "make_id": 4313, + "model_id": 5581, + "year_id": 5590, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5591, + "make_id": 4313, + "model_id": 5581, + "year_id": 5590, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5592, + "make_id": 4313, + "model_id": 5581, + "year_id": 5590, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5593, + "make_id": 4313, + "model_id": 5581, + "year_id": 5590, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5594, + "make_id": 4313, + "model_id": 5581, + "year_id": 5594, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5595, + "make_id": 4313, + "model_id": 5581, + "year_id": 5594, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5596, + "make_id": 4313, + "model_id": 5581, + "year_id": 5594, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5597, + "make_id": 4313, + "model_id": 5581, + "year_id": 5594, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5598, + "make_id": 4313, + "model_id": 5581, + "year_id": 5598, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5599, + "make_id": 4313, + "model_id": 5581, + "year_id": 5598, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5600, + "make_id": 4313, + "model_id": 5581, + "year_id": 5598, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5601, + "make_id": 4313, + "model_id": 5581, + "year_id": 5598, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5602, + "make_id": 4313, + "model_id": 5581, + "year_id": 5602, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5603, + "make_id": 4313, + "model_id": 5581, + "year_id": 5602, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5604, + "make_id": 4313, + "model_id": 5581, + "year_id": 5602, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5605, + "make_id": 4313, + "model_id": 5581, + "year_id": 5602, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5606, + "make_id": 4313, + "model_id": 5581, + "year_id": 5606, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5607, + "make_id": 4313, + "model_id": 5581, + "year_id": 5606, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 5608, + "make_id": 4313, + "model_id": 5581, + "year_id": 5606, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5609, + "make_id": 4313, + "model_id": 5581, + "year_id": 5609, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5610, + "make_id": 4313, + "model_id": 5581, + "year_id": 5609, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5611, + "make_id": 4313, + "model_id": 5581, + "year_id": 5609, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5612, + "make_id": 4313, + "model_id": 5581, + "year_id": 5612, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5613, + "make_id": 4313, + "model_id": 5581, + "year_id": 5612, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5614, + "make_id": 4313, + "model_id": 5581, + "year_id": 5614, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5615, + "make_id": 4313, + "model_id": 5581, + "year_id": 5614, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5616, + "make_id": 4313, + "model_id": 5616, + "year_id": 5616, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 5617, + "make_id": 4313, + "model_id": 5616, + "year_id": 5616, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5618, + "make_id": 4313, + "model_id": 5616, + "year_id": 5616, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 5619, + "make_id": 4313, + "model_id": 5616, + "year_id": 5616, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 5620, + "make_id": 4313, + "model_id": 5616, + "year_id": 5620, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5621, + "make_id": 4313, + "model_id": 5616, + "year_id": 5620, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5622, + "make_id": 4313, + "model_id": 5616, + "year_id": 5622, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5623, + "make_id": 4313, + "model_id": 5616, + "year_id": 5622, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5624, + "make_id": 4313, + "model_id": 5616, + "year_id": 5624, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5625, + "make_id": 4313, + "model_id": 5616, + "year_id": 5625, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5626, + "make_id": 4313, + "model_id": 5616, + "year_id": 5625, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5627, + "make_id": 4313, + "model_id": 5616, + "year_id": 5627, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5628, + "make_id": 4313, + "model_id": 5616, + "year_id": 5627, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5629, + "make_id": 4313, + "model_id": 5616, + "year_id": 5629, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5630, + "make_id": 4313, + "model_id": 5616, + "year_id": 5629, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5631, + "make_id": 4313, + "model_id": 5616, + "year_id": 5629, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5632, + "make_id": 4313, + "model_id": 5616, + "year_id": 5632, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5633, + "make_id": 4313, + "model_id": 5616, + "year_id": 5632, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5634, + "make_id": 4313, + "model_id": 5616, + "year_id": 5632, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5635, + "make_id": 4313, + "model_id": 5616, + "year_id": 5635, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5636, + "make_id": 4313, + "model_id": 5616, + "year_id": 5635, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5637, + "make_id": 4313, + "model_id": 5616, + "year_id": 5635, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5638, + "make_id": 4313, + "model_id": 5616, + "year_id": 5638, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5639, + "make_id": 4313, + "model_id": 5616, + "year_id": 5638, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5640, + "make_id": 4313, + "model_id": 5616, + "year_id": 5638, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5641, + "make_id": 4313, + "model_id": 5616, + "year_id": 5641, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5642, + "make_id": 4313, + "model_id": 5616, + "year_id": 5641, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5643, + "make_id": 4313, + "model_id": 5616, + "year_id": 5641, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5644, + "make_id": 4313, + "model_id": 5616, + "year_id": 5644, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5645, + "make_id": 4313, + "model_id": 5616, + "year_id": 5644, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5646, + "make_id": 4313, + "model_id": 5616, + "year_id": 5644, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5647, + "make_id": 4313, + "model_id": 5616, + "year_id": 5647, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5648, + "make_id": 4313, + "model_id": 5616, + "year_id": 5647, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5649, + "make_id": 4313, + "model_id": 5616, + "year_id": 5649, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5650, + "make_id": 4313, + "model_id": 5616, + "year_id": 5649, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5651, + "make_id": 4313, + "model_id": 5616, + "year_id": 5651, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5652, + "make_id": 4313, + "model_id": 5616, + "year_id": 5651, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5653, + "make_id": 4313, + "model_id": 5616, + "year_id": 5653, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5654, + "make_id": 4313, + "model_id": 5616, + "year_id": 5653, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5655, + "make_id": 4313, + "model_id": 5616, + "year_id": 5655, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5656, + "make_id": 4313, + "model_id": 5616, + "year_id": 5655, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5657, + "make_id": 4313, + "model_id": 5616, + "year_id": 5657, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5658, + "make_id": 4313, + "model_id": 5616, + "year_id": 5657, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5659, + "make_id": 4313, + "model_id": 5616, + "year_id": 5659, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5660, + "make_id": 4313, + "model_id": 5616, + "year_id": 5659, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5661, + "make_id": 4313, + "model_id": 5616, + "year_id": 5661, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5662, + "make_id": 4313, + "model_id": 5616, + "year_id": 5661, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5663, + "make_id": 4313, + "model_id": 5616, + "year_id": 5663, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5664, + "make_id": 4313, + "model_id": 5616, + "year_id": 5663, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5665, + "make_id": 4313, + "model_id": 5616, + "year_id": 5665, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5666, + "make_id": 4313, + "model_id": 5616, + "year_id": 5665, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5667, + "make_id": 4313, + "model_id": 5616, + "year_id": 5667, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5668, + "make_id": 4313, + "model_id": 5616, + "year_id": 5667, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5669, + "make_id": 4313, + "model_id": 5616, + "year_id": 5667, + "cylinders": 8, + "displacement": 7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5670, + "make_id": 4313, + "model_id": 5616, + "year_id": 5670, + "cylinders": 8, + "displacement": 7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5671, + "make_id": 4313, + "model_id": 5616, + "year_id": 5670, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5672, + "make_id": 4313, + "model_id": 5616, + "year_id": 5670, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5673, + "make_id": 4313, + "model_id": 5616, + "year_id": 5673, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5674, + "make_id": 4313, + "model_id": 5616, + "year_id": 5673, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5675, + "make_id": 4313, + "model_id": 5616, + "year_id": 5673, + "cylinders": 8, + "displacement": 7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5676, + "make_id": 4313, + "model_id": 5616, + "year_id": 5676, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5677, + "make_id": 4313, + "model_id": 5616, + "year_id": 5676, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5678, + "make_id": 4313, + "model_id": 5616, + "year_id": 5676, + "cylinders": 8, + "displacement": 7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5679, + "make_id": 4313, + "model_id": 5616, + "year_id": 5676, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5680, + "make_id": 4313, + "model_id": 5616, + "year_id": 5680, + "cylinders": 8, + "displacement": 7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5681, + "make_id": 4313, + "model_id": 5616, + "year_id": 5680, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5682, + "make_id": 4313, + "model_id": 5616, + "year_id": 5680, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5683, + "make_id": 4313, + "model_id": 5616, + "year_id": 5680, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5684, + "make_id": 4313, + "model_id": 5616, + "year_id": 5684, + "cylinders": 8, + "displacement": 7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5685, + "make_id": 4313, + "model_id": 5616, + "year_id": 5684, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5686, + "make_id": 4313, + "model_id": 5616, + "year_id": 5684, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5687, + "make_id": 4313, + "model_id": 5616, + "year_id": 5684, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5688, + "make_id": 4313, + "model_id": 5616, + "year_id": 5688, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5689, + "make_id": 4313, + "model_id": 5616, + "year_id": 5688, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5690, + "make_id": 4313, + "model_id": 5616, + "year_id": 5688, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5691, + "make_id": 4313, + "model_id": 5616, + "year_id": 5688, + "cylinders": 8, + "displacement": 7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5692, + "make_id": 4313, + "model_id": 5616, + "year_id": 5692, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5693, + "make_id": 4313, + "model_id": 5616, + "year_id": 5692, + "cylinders": 8, + "displacement": 7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5694, + "make_id": 4313, + "model_id": 5616, + "year_id": 5692, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5695, + "make_id": 4313, + "model_id": 5616, + "year_id": 5692, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5696, + "make_id": 4313, + "model_id": 5616, + "year_id": 5696, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 5697, + "make_id": 4313, + "model_id": 5616, + "year_id": 5696, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5698, + "make_id": 4313, + "model_id": 5616, + "year_id": 5698, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 5699, + "make_id": 4313, + "model_id": 5616, + "year_id": 5698, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 5700, + "make_id": 4313, + "model_id": 5616, + "year_id": 5698, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 5701, + "make_id": 4313, + "model_id": 5616, + "year_id": 5698, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 5702, + "make_id": 4313, + "model_id": 5616, + "year_id": 5702, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 5703, + "make_id": 4313, + "model_id": 5616, + "year_id": 5702, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 5704, + "make_id": 4313, + "model_id": 5616, + "year_id": 5702, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 5705, + "make_id": 4313, + "model_id": 5616, + "year_id": 5702, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 5706, + "make_id": 4313, + "model_id": 5706, + "year_id": 5706, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5707, + "make_id": 4313, + "model_id": 5706, + "year_id": 5706, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5708, + "make_id": 4313, + "model_id": 5706, + "year_id": 5708, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5709, + "make_id": 4313, + "model_id": 5706, + "year_id": 5709, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5710, + "make_id": 4313, + "model_id": 5706, + "year_id": 5709, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5711, + "make_id": 4313, + "model_id": 5706, + "year_id": 5711, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5712, + "make_id": 4313, + "model_id": 5706, + "year_id": 5711, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5713, + "make_id": 4313, + "model_id": 5713, + "year_id": 5713, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5714, + "make_id": 4313, + "model_id": 5713, + "year_id": 5713, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5715, + "make_id": 4313, + "model_id": 5713, + "year_id": 5713, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5716, + "make_id": 4313, + "model_id": 5713, + "year_id": 5716, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5717, + "make_id": 4313, + "model_id": 5713, + "year_id": 5716, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5718, + "make_id": 4313, + "model_id": 5713, + "year_id": 5716, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5719, + "make_id": 4313, + "model_id": 5713, + "year_id": 5716, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5720, + "make_id": 4313, + "model_id": 5713, + "year_id": 5720, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5721, + "make_id": 4313, + "model_id": 5713, + "year_id": 5720, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5722, + "make_id": 4313, + "model_id": 5713, + "year_id": 5720, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5723, + "make_id": 4313, + "model_id": 5713, + "year_id": 5720, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5724, + "make_id": 4313, + "model_id": 5713, + "year_id": 5724, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5725, + "make_id": 4313, + "model_id": 5713, + "year_id": 5724, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5726, + "make_id": 4313, + "model_id": 5713, + "year_id": 5724, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5727, + "make_id": 4313, + "model_id": 5713, + "year_id": 5724, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5728, + "make_id": 4313, + "model_id": 5713, + "year_id": 5724, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5729, + "make_id": 4313, + "model_id": 5713, + "year_id": 5729, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5730, + "make_id": 4313, + "model_id": 5713, + "year_id": 5729, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5731, + "make_id": 4313, + "model_id": 5713, + "year_id": 5729, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5732, + "make_id": 4313, + "model_id": 5713, + "year_id": 5729, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5733, + "make_id": 4313, + "model_id": 5713, + "year_id": 5729, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5734, + "make_id": 4313, + "model_id": 5713, + "year_id": 5734, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5735, + "make_id": 4313, + "model_id": 5713, + "year_id": 5734, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5736, + "make_id": 4313, + "model_id": 5736, + "year_id": 5736, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5737, + "make_id": 4313, + "model_id": 5736, + "year_id": 5736, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5738, + "make_id": 4313, + "model_id": 5736, + "year_id": 5738, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5739, + "make_id": 4313, + "model_id": 5736, + "year_id": 5738, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5740, + "make_id": 4313, + "model_id": 5736, + "year_id": 5740, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5741, + "make_id": 4313, + "model_id": 5736, + "year_id": 5740, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5742, + "make_id": 4313, + "model_id": 5736, + "year_id": 5742, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5743, + "make_id": 4313, + "model_id": 5736, + "year_id": 5742, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5744, + "make_id": 4313, + "model_id": 5736, + "year_id": 5744, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5745, + "make_id": 4313, + "model_id": 5736, + "year_id": 5744, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5746, + "make_id": 4313, + "model_id": 5746, + "year_id": 5746, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5747, + "make_id": 4313, + "model_id": 5746, + "year_id": 5746, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5748, + "make_id": 4313, + "model_id": 5746, + "year_id": 5746, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5749, + "make_id": 4313, + "model_id": 5746, + "year_id": 5746, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5750, + "make_id": 4313, + "model_id": 5750, + "year_id": 5750, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 5751, + "make_id": 4313, + "model_id": 5750, + "year_id": 5750, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5752, + "make_id": 4313, + "model_id": 5752, + "year_id": 5752, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5753, + "make_id": 4313, + "model_id": 5753, + "year_id": 5753, + "cylinders": 6, + "displacement": 3.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5754, + "make_id": 4313, + "model_id": 5753, + "year_id": 5753, + "cylinders": 6, + "displacement": 3.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5755, + "make_id": 4313, + "model_id": 5753, + "year_id": 5753, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5756, + "make_id": 4313, + "model_id": 5753, + "year_id": 5753, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5757, + "make_id": 4313, + "model_id": 5753, + "year_id": 5753, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5758, + "make_id": 4313, + "model_id": 5753, + "year_id": 5753, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5759, + "make_id": 4313, + "model_id": 5753, + "year_id": 5753, + "cylinders": 6, + "displacement": 3.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5760, + "make_id": 4313, + "model_id": 5753, + "year_id": 5753, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5761, + "make_id": 4313, + "model_id": 5753, + "year_id": 5753, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5762, + "make_id": 4313, + "model_id": 5753, + "year_id": 5762, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5763, + "make_id": 4313, + "model_id": 5753, + "year_id": 5762, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5764, + "make_id": 4313, + "model_id": 5753, + "year_id": 5762, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5765, + "make_id": 4313, + "model_id": 5753, + "year_id": 5762, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5766, + "make_id": 4313, + "model_id": 5753, + "year_id": 5762, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5767, + "make_id": 4313, + "model_id": 5753, + "year_id": 5762, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5768, + "make_id": 4313, + "model_id": 5753, + "year_id": 5762, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5769, + "make_id": 4313, + "model_id": 5753, + "year_id": 5769, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5770, + "make_id": 4313, + "model_id": 5753, + "year_id": 5769, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5771, + "make_id": 4313, + "model_id": 5753, + "year_id": 5769, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5772, + "make_id": 4313, + "model_id": 5753, + "year_id": 5769, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5773, + "make_id": 4313, + "model_id": 5753, + "year_id": 5773, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5774, + "make_id": 4313, + "model_id": 5753, + "year_id": 5773, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5775, + "make_id": 4313, + "model_id": 5753, + "year_id": 5773, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5776, + "make_id": 4313, + "model_id": 5753, + "year_id": 5773, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5777, + "make_id": 4313, + "model_id": 5777, + "year_id": 5777, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5778, + "make_id": 4313, + "model_id": 5777, + "year_id": 5778, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5779, + "make_id": 4313, + "model_id": 5777, + "year_id": 5779, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5780, + "make_id": 4313, + "model_id": 5780, + "year_id": 5780, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 5781, + "make_id": 4313, + "model_id": 5780, + "year_id": 5780, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 5782, + "make_id": 4313, + "model_id": 5780, + "year_id": 5782, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 5783, + "make_id": 4313, + "model_id": 5780, + "year_id": 5782, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 5784, + "make_id": 4313, + "model_id": 5780, + "year_id": 5784, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 5785, + "make_id": 4313, + "model_id": 5780, + "year_id": 5784, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 5786, + "make_id": 4313, + "model_id": 5780, + "year_id": 5786, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5787, + "make_id": 4313, + "model_id": 5780, + "year_id": 5786, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 5788, + "make_id": 4313, + "model_id": 5780, + "year_id": 5786, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 5789, + "make_id": 4313, + "model_id": 5780, + "year_id": 5786, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5790, + "make_id": 4313, + "model_id": 5780, + "year_id": 5790, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 5791, + "make_id": 4313, + "model_id": 5780, + "year_id": 5790, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 5792, + "make_id": 4313, + "model_id": 5780, + "year_id": 5790, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5793, + "make_id": 4313, + "model_id": 5780, + "year_id": 5790, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5794, + "make_id": 4313, + "model_id": 5780, + "year_id": 5794, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5795, + "make_id": 4313, + "model_id": 5780, + "year_id": 5794, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5796, + "make_id": 4313, + "model_id": 5780, + "year_id": 5794, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5797, + "make_id": 4313, + "model_id": 5780, + "year_id": 5794, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5798, + "make_id": 4313, + "model_id": 5780, + "year_id": 5798, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5799, + "make_id": 4313, + "model_id": 5780, + "year_id": 5798, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5800, + "make_id": 4313, + "model_id": 5780, + "year_id": 5798, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5801, + "make_id": 4313, + "model_id": 5780, + "year_id": 5798, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5802, + "make_id": 4313, + "model_id": 5780, + "year_id": 5798, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5803, + "make_id": 4313, + "model_id": 5780, + "year_id": 5798, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5804, + "make_id": 4313, + "model_id": 5780, + "year_id": 5804, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5805, + "make_id": 4313, + "model_id": 5780, + "year_id": 5804, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5806, + "make_id": 4313, + "model_id": 5780, + "year_id": 5804, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5807, + "make_id": 4313, + "model_id": 5780, + "year_id": 5804, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5808, + "make_id": 4313, + "model_id": 5780, + "year_id": 5804, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5809, + "make_id": 4313, + "model_id": 5780, + "year_id": 5804, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5810, + "make_id": 4313, + "model_id": 5780, + "year_id": 5804, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5811, + "make_id": 4313, + "model_id": 5780, + "year_id": 5804, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5812, + "make_id": 4313, + "model_id": 5780, + "year_id": 5812, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5813, + "make_id": 4313, + "model_id": 5780, + "year_id": 5812, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5814, + "make_id": 4313, + "model_id": 5780, + "year_id": 5812, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5815, + "make_id": 4313, + "model_id": 5780, + "year_id": 5812, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5816, + "make_id": 4313, + "model_id": 5780, + "year_id": 5812, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5817, + "make_id": 4313, + "model_id": 5780, + "year_id": 5812, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5818, + "make_id": 4313, + "model_id": 5780, + "year_id": 5812, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5819, + "make_id": 4313, + "model_id": 5780, + "year_id": 5812, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5820, + "make_id": 4313, + "model_id": 5780, + "year_id": 5820, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5821, + "make_id": 4313, + "model_id": 5780, + "year_id": 5820, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5822, + "make_id": 4313, + "model_id": 5780, + "year_id": 5820, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5823, + "make_id": 4313, + "model_id": 5780, + "year_id": 5820, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5824, + "make_id": 4313, + "model_id": 5780, + "year_id": 5820, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5825, + "make_id": 4313, + "model_id": 5780, + "year_id": 5820, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5826, + "make_id": 4313, + "model_id": 5780, + "year_id": 5820, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5827, + "make_id": 4313, + "model_id": 5780, + "year_id": 5820, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5828, + "make_id": 4313, + "model_id": 5780, + "year_id": 5828, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5829, + "make_id": 4313, + "model_id": 5780, + "year_id": 5828, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5830, + "make_id": 4313, + "model_id": 5780, + "year_id": 5828, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5831, + "make_id": 4313, + "model_id": 5780, + "year_id": 5828, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5832, + "make_id": 4313, + "model_id": 5780, + "year_id": 5828, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5833, + "make_id": 4313, + "model_id": 5780, + "year_id": 5828, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5834, + "make_id": 4313, + "model_id": 5780, + "year_id": 5834, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5835, + "make_id": 4313, + "model_id": 5780, + "year_id": 5834, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5836, + "make_id": 4313, + "model_id": 5780, + "year_id": 5834, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5837, + "make_id": 4313, + "model_id": 5780, + "year_id": 5834, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5838, + "make_id": 4313, + "model_id": 5780, + "year_id": 5834, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5839, + "make_id": 4313, + "model_id": 5780, + "year_id": 5834, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5840, + "make_id": 4313, + "model_id": 5780, + "year_id": 5840, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5841, + "make_id": 4313, + "model_id": 5780, + "year_id": 5840, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5842, + "make_id": 4313, + "model_id": 5780, + "year_id": 5840, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5843, + "make_id": 4313, + "model_id": 5780, + "year_id": 5840, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5844, + "make_id": 4313, + "model_id": 5780, + "year_id": 5840, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5845, + "make_id": 4313, + "model_id": 5780, + "year_id": 5840, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5846, + "make_id": 4313, + "model_id": 5846, + "year_id": 5846, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5847, + "make_id": 4313, + "model_id": 5846, + "year_id": 5847, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5848, + "make_id": 4313, + "model_id": 5846, + "year_id": 5848, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5849, + "make_id": 4313, + "model_id": 5846, + "year_id": 5849, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5850, + "make_id": 4313, + "model_id": 5846, + "year_id": 5850, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5851, + "make_id": 4313, + "model_id": 5846, + "year_id": 5850, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5852, + "make_id": 4313, + "model_id": 5846, + "year_id": 5852, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5853, + "make_id": 4313, + "model_id": 5846, + "year_id": 5852, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5854, + "make_id": 4313, + "model_id": 5854, + "year_id": 5854, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5855, + "make_id": 4313, + "model_id": 5854, + "year_id": 5854, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5856, + "make_id": 4313, + "model_id": 5854, + "year_id": 5854, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5857, + "make_id": 4313, + "model_id": 5854, + "year_id": 5857, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5858, + "make_id": 4313, + "model_id": 5854, + "year_id": 5857, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5859, + "make_id": 4313, + "model_id": 5854, + "year_id": 5857, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5860, + "make_id": 4313, + "model_id": 5854, + "year_id": 5860, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5861, + "make_id": 4313, + "model_id": 5854, + "year_id": 5860, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5862, + "make_id": 4313, + "model_id": 5854, + "year_id": 5860, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5863, + "make_id": 4313, + "model_id": 5854, + "year_id": 5863, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5864, + "make_id": 4313, + "model_id": 5854, + "year_id": 5863, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5865, + "make_id": 4313, + "model_id": 5854, + "year_id": 5863, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5866, + "make_id": 4313, + "model_id": 5854, + "year_id": 5866, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5867, + "make_id": 4313, + "model_id": 5854, + "year_id": 5866, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5868, + "make_id": 4313, + "model_id": 5854, + "year_id": 5866, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5869, + "make_id": 4313, + "model_id": 5869, + "year_id": 5869, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5870, + "make_id": 4313, + "model_id": 5869, + "year_id": 5869, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5871, + "make_id": 4313, + "model_id": 5869, + "year_id": 5871, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5872, + "make_id": 4313, + "model_id": 5869, + "year_id": 5871, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5873, + "make_id": 4313, + "model_id": 5869, + "year_id": 5873, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5874, + "make_id": 4313, + "model_id": 5869, + "year_id": 5873, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5875, + "make_id": 4313, + "model_id": 5869, + "year_id": 5875, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5876, + "make_id": 4313, + "model_id": 5869, + "year_id": 5875, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5877, + "make_id": 4313, + "model_id": 5869, + "year_id": 5877, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5878, + "make_id": 4313, + "model_id": 5869, + "year_id": 5877, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5879, + "make_id": 4313, + "model_id": 5879, + "year_id": 5879, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5880, + "make_id": 4313, + "model_id": 5879, + "year_id": 5879, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5881, + "make_id": 4313, + "model_id": 5879, + "year_id": 5879, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5882, + "make_id": 4313, + "model_id": 5879, + "year_id": 5879, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5883, + "make_id": 4313, + "model_id": 5879, + "year_id": 5883, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5884, + "make_id": 4313, + "model_id": 5879, + "year_id": 5883, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5885, + "make_id": 4313, + "model_id": 5879, + "year_id": 5885, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5886, + "make_id": 4313, + "model_id": 5879, + "year_id": 5885, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5887, + "make_id": 4313, + "model_id": 5879, + "year_id": 5887, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5888, + "make_id": 4313, + "model_id": 5879, + "year_id": 5887, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5889, + "make_id": 4313, + "model_id": 5879, + "year_id": 5889, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5890, + "make_id": 4313, + "model_id": 5879, + "year_id": 5889, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5891, + "make_id": 4313, + "model_id": 5879, + "year_id": 5891, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5892, + "make_id": 4313, + "model_id": 5879, + "year_id": 5891, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5893, + "make_id": 4313, + "model_id": 5893, + "year_id": 5893, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5894, + "make_id": 4313, + "model_id": 5893, + "year_id": 5893, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5895, + "make_id": 4313, + "model_id": 5893, + "year_id": 5893, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5896, + "make_id": 4313, + "model_id": 5893, + "year_id": 5896, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5897, + "make_id": 4313, + "model_id": 5893, + "year_id": 5896, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5898, + "make_id": 4313, + "model_id": 5893, + "year_id": 5896, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5899, + "make_id": 4313, + "model_id": 5893, + "year_id": 5899, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5900, + "make_id": 4313, + "model_id": 5893, + "year_id": 5899, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5901, + "make_id": 4313, + "model_id": 5893, + "year_id": 5899, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5902, + "make_id": 4313, + "model_id": 5893, + "year_id": 5902, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5903, + "make_id": 4313, + "model_id": 5893, + "year_id": 5902, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5904, + "make_id": 4313, + "model_id": 5893, + "year_id": 5902, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5905, + "make_id": 4313, + "model_id": 5893, + "year_id": 5905, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5906, + "make_id": 4313, + "model_id": 5893, + "year_id": 5905, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5907, + "make_id": 4313, + "model_id": 5893, + "year_id": 5905, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5908, + "make_id": 4313, + "model_id": 5893, + "year_id": 5908, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5909, + "make_id": 4313, + "model_id": 5893, + "year_id": 5908, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5910, + "make_id": 4313, + "model_id": 5893, + "year_id": 5908, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5911, + "make_id": 4313, + "model_id": 5893, + "year_id": 5911, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5912, + "make_id": 4313, + "model_id": 5893, + "year_id": 5911, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5913, + "make_id": 4313, + "model_id": 5893, + "year_id": 5911, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5914, + "make_id": 4313, + "model_id": 5893, + "year_id": 5914, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5915, + "make_id": 4313, + "model_id": 5893, + "year_id": 5914, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5916, + "make_id": 4313, + "model_id": 5893, + "year_id": 5916, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5917, + "make_id": 4313, + "model_id": 5893, + "year_id": 5916, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5918, + "make_id": 4313, + "model_id": 5893, + "year_id": 5918, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5919, + "make_id": 4313, + "model_id": 5893, + "year_id": 5918, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5920, + "make_id": 4313, + "model_id": 5893, + "year_id": 5920, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5921, + "make_id": 4313, + "model_id": 5893, + "year_id": 5920, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5922, + "make_id": 4313, + "model_id": 5893, + "year_id": 5922, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5923, + "make_id": 4313, + "model_id": 5893, + "year_id": 5922, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5924, + "make_id": 4313, + "model_id": 5893, + "year_id": 5924, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5925, + "make_id": 4313, + "model_id": 5893, + "year_id": 5924, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5926, + "make_id": 4313, + "model_id": 5926, + "year_id": 5926, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5927, + "make_id": 4313, + "model_id": 5926, + "year_id": 5927, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5928, + "make_id": 4313, + "model_id": 5928, + "year_id": 5928, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5929, + "make_id": 4313, + "model_id": 5928, + "year_id": 5929, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5930, + "make_id": 4313, + "model_id": 5928, + "year_id": 5930, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5931, + "make_id": 4313, + "model_id": 5928, + "year_id": 5931, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5932, + "make_id": 4313, + "model_id": 5928, + "year_id": 5932, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5933, + "make_id": 4313, + "model_id": 5928, + "year_id": 5932, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5934, + "make_id": 4313, + "model_id": 5934, + "year_id": 5934, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5935, + "make_id": 4313, + "model_id": 5934, + "year_id": 5934, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5936, + "make_id": 4313, + "model_id": 5934, + "year_id": 5936, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5937, + "make_id": 4313, + "model_id": 5934, + "year_id": 5936, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5938, + "make_id": 4313, + "model_id": 5934, + "year_id": 5938, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5939, + "make_id": 4313, + "model_id": 5934, + "year_id": 5938, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5940, + "make_id": 4313, + "model_id": 5934, + "year_id": 5940, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5941, + "make_id": 4313, + "model_id": 5934, + "year_id": 5940, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5942, + "make_id": 4313, + "model_id": 5934, + "year_id": 5942, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5943, + "make_id": 4313, + "model_id": 5934, + "year_id": 5942, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5944, + "make_id": 4313, + "model_id": 5934, + "year_id": 5942, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5945, + "make_id": 4313, + "model_id": 5934, + "year_id": 5945, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5946, + "make_id": 4313, + "model_id": 5946, + "year_id": 5946, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5947, + "make_id": 4313, + "model_id": 5946, + "year_id": 5947, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5948, + "make_id": 4313, + "model_id": 5948, + "year_id": 5948, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5949, + "make_id": 4313, + "model_id": 5948, + "year_id": 5949, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5950, + "make_id": 4313, + "model_id": 5948, + "year_id": 5949, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5951, + "make_id": 4313, + "model_id": 5948, + "year_id": 5951, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5952, + "make_id": 4313, + "model_id": 5948, + "year_id": 5951, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5953, + "make_id": 4313, + "model_id": 5948, + "year_id": 5953, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5954, + "make_id": 4313, + "model_id": 5948, + "year_id": 5953, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5955, + "make_id": 4313, + "model_id": 5948, + "year_id": 5955, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5956, + "make_id": 4313, + "model_id": 5948, + "year_id": 5955, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5957, + "make_id": 4313, + "model_id": 5948, + "year_id": 5955, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5958, + "make_id": 4313, + "model_id": 5948, + "year_id": 5958, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 5959, + "make_id": 4313, + "model_id": 5959, + "year_id": 5959, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5960, + "make_id": 4313, + "model_id": 5960, + "year_id": 5960, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5961, + "make_id": 4313, + "model_id": 5961, + "year_id": 5961, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5962, + "make_id": 4313, + "model_id": 5962, + "year_id": 5962, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5963, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5964, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5965, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 5966, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5967, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5968, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5969, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5970, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5971, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5972, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5973, + "make_id": 4313, + "model_id": 5963, + "year_id": 5963, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5974, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5975, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5976, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 5977, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5978, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5979, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5980, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5981, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5982, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5983, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 5984, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5985, + "make_id": 4313, + "model_id": 5963, + "year_id": 5974, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5986, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5987, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5988, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5989, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 5990, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 5991, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 5992, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5993, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5994, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5995, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5996, + "make_id": 4313, + "model_id": 5963, + "year_id": 5986, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 5997, + "make_id": 4313, + "model_id": 5963, + "year_id": 5997, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 5998, + "make_id": 4313, + "model_id": 5963, + "year_id": 5997, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 5999, + "make_id": 4313, + "model_id": 5963, + "year_id": 5997, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6000, + "make_id": 4313, + "model_id": 5963, + "year_id": 5997, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6001, + "make_id": 4313, + "model_id": 5963, + "year_id": 5997, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6002, + "make_id": 4313, + "model_id": 5963, + "year_id": 5997, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6003, + "make_id": 4313, + "model_id": 5963, + "year_id": 6003, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6004, + "make_id": 4313, + "model_id": 5963, + "year_id": 6003, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6005, + "make_id": 4313, + "model_id": 5963, + "year_id": 6003, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6006, + "make_id": 4313, + "model_id": 5963, + "year_id": 6003, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6007, + "make_id": 4313, + "model_id": 5963, + "year_id": 6003, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6008, + "make_id": 4313, + "model_id": 5963, + "year_id": 6003, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6009, + "make_id": 4313, + "model_id": 5963, + "year_id": 6009, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6010, + "make_id": 4313, + "model_id": 5963, + "year_id": 6009, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6011, + "make_id": 4313, + "model_id": 5963, + "year_id": 6009, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6012, + "make_id": 4313, + "model_id": 5963, + "year_id": 6009, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6013, + "make_id": 4313, + "model_id": 5963, + "year_id": 6009, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6014, + "make_id": 4313, + "model_id": 5963, + "year_id": 6009, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6015, + "make_id": 4313, + "model_id": 5963, + "year_id": 6015, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6016, + "make_id": 4313, + "model_id": 5963, + "year_id": 6015, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6017, + "make_id": 4313, + "model_id": 5963, + "year_id": 6015, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6018, + "make_id": 4313, + "model_id": 5963, + "year_id": 6015, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6019, + "make_id": 4313, + "model_id": 5963, + "year_id": 6019, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6020, + "make_id": 4313, + "model_id": 5963, + "year_id": 6019, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6021, + "make_id": 4313, + "model_id": 5963, + "year_id": 6019, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6022, + "make_id": 4313, + "model_id": 5963, + "year_id": 6019, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6023, + "make_id": 4313, + "model_id": 5963, + "year_id": 6023, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6024, + "make_id": 4313, + "model_id": 5963, + "year_id": 6023, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6025, + "make_id": 4313, + "model_id": 5963, + "year_id": 6023, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6026, + "make_id": 4313, + "model_id": 5963, + "year_id": 6023, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6027, + "make_id": 4313, + "model_id": 5963, + "year_id": 6027, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6028, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6029, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6030, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6031, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6032, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6033, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6034, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6035, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6036, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6037, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6038, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6039, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6040, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6041, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6042, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6043, + "make_id": 4313, + "model_id": 6028, + "year_id": 6028, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6044, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6045, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6046, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6047, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6048, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6049, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6050, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6051, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6052, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6053, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6054, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6055, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6056, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6057, + "make_id": 4313, + "model_id": 6028, + "year_id": 6044, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6058, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6059, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6060, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6061, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6062, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6063, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6064, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6065, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6066, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6067, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6068, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6069, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6070, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6071, + "make_id": 4313, + "model_id": 6028, + "year_id": 6058, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6072, + "make_id": 4313, + "model_id": 6028, + "year_id": 6072, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6073, + "make_id": 4313, + "model_id": 6028, + "year_id": 6072, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6074, + "make_id": 4313, + "model_id": 6028, + "year_id": 6072, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6075, + "make_id": 4313, + "model_id": 6028, + "year_id": 6072, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6076, + "make_id": 4313, + "model_id": 6028, + "year_id": 6072, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6077, + "make_id": 4313, + "model_id": 6028, + "year_id": 6072, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6078, + "make_id": 4313, + "model_id": 6028, + "year_id": 6072, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6079, + "make_id": 4313, + "model_id": 6028, + "year_id": 6072, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6080, + "make_id": 4313, + "model_id": 6028, + "year_id": 6072, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6081, + "make_id": 4313, + "model_id": 6028, + "year_id": 6072, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6082, + "make_id": 4313, + "model_id": 6028, + "year_id": 6082, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6083, + "make_id": 4313, + "model_id": 6028, + "year_id": 6082, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6084, + "make_id": 4313, + "model_id": 6028, + "year_id": 6082, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6085, + "make_id": 4313, + "model_id": 6028, + "year_id": 6082, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6086, + "make_id": 4313, + "model_id": 6028, + "year_id": 6082, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6087, + "make_id": 4313, + "model_id": 6028, + "year_id": 6082, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6088, + "make_id": 4313, + "model_id": 6028, + "year_id": 6082, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6089, + "make_id": 4313, + "model_id": 6028, + "year_id": 6082, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6090, + "make_id": 4313, + "model_id": 6028, + "year_id": 6082, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6091, + "make_id": 4313, + "model_id": 6028, + "year_id": 6091, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6092, + "make_id": 4313, + "model_id": 6028, + "year_id": 6091, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6093, + "make_id": 4313, + "model_id": 6028, + "year_id": 6091, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6094, + "make_id": 4313, + "model_id": 6028, + "year_id": 6091, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6095, + "make_id": 4313, + "model_id": 6028, + "year_id": 6091, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6096, + "make_id": 4313, + "model_id": 6028, + "year_id": 6091, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6097, + "make_id": 4313, + "model_id": 6028, + "year_id": 6091, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6098, + "make_id": 4313, + "model_id": 6028, + "year_id": 6091, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6099, + "make_id": 4313, + "model_id": 6028, + "year_id": 6091, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6100, + "make_id": 4313, + "model_id": 6028, + "year_id": 6100, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6101, + "make_id": 4313, + "model_id": 6028, + "year_id": 6100, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6102, + "make_id": 4313, + "model_id": 6028, + "year_id": 6100, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6103, + "make_id": 4313, + "model_id": 6028, + "year_id": 6100, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6104, + "make_id": 4313, + "model_id": 6028, + "year_id": 6100, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6105, + "make_id": 4313, + "model_id": 6028, + "year_id": 6105, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6106, + "make_id": 4313, + "model_id": 6028, + "year_id": 6105, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6107, + "make_id": 4313, + "model_id": 6028, + "year_id": 6105, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6108, + "make_id": 4313, + "model_id": 6028, + "year_id": 6105, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6109, + "make_id": 4313, + "model_id": 6028, + "year_id": 6109, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6110, + "make_id": 4313, + "model_id": 6028, + "year_id": 6109, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6111, + "make_id": 4313, + "model_id": 6028, + "year_id": 6109, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6112, + "make_id": 4313, + "model_id": 6028, + "year_id": 6109, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6113, + "make_id": 4313, + "model_id": 6028, + "year_id": 6113, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6114, + "make_id": 4313, + "model_id": 6028, + "year_id": 6113, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6115, + "make_id": 4313, + "model_id": 6028, + "year_id": 6113, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6116, + "make_id": 4313, + "model_id": 6028, + "year_id": 6113, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6117, + "make_id": 4313, + "model_id": 6028, + "year_id": 6117, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6118, + "make_id": 4313, + "model_id": 6028, + "year_id": 6117, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6119, + "make_id": 4313, + "model_id": 6028, + "year_id": 6117, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6120, + "make_id": 4313, + "model_id": 6028, + "year_id": 6117, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6121, + "make_id": 4313, + "model_id": 6028, + "year_id": 6121, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6122, + "make_id": 4313, + "model_id": 6028, + "year_id": 6121, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6123, + "make_id": 4313, + "model_id": 6028, + "year_id": 6121, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6124, + "make_id": 4313, + "model_id": 6124, + "year_id": 6124, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6125, + "make_id": 4313, + "model_id": 6125, + "year_id": 6125, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6126, + "make_id": 4313, + "model_id": 6125, + "year_id": 6125, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6127, + "make_id": 4313, + "model_id": 6125, + "year_id": 6127, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6128, + "make_id": 4313, + "model_id": 6125, + "year_id": 6127, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6129, + "make_id": 4313, + "model_id": 6125, + "year_id": 6129, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6130, + "make_id": 4313, + "model_id": 6125, + "year_id": 6129, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6131, + "make_id": 4313, + "model_id": 6125, + "year_id": 6131, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6132, + "make_id": 4313, + "model_id": 6125, + "year_id": 6132, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6133, + "make_id": 4313, + "model_id": 6125, + "year_id": 6133, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6134, + "make_id": 4313, + "model_id": 6125, + "year_id": 6134, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6135, + "make_id": 4313, + "model_id": 6125, + "year_id": 6135, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6136, + "make_id": 4313, + "model_id": 6125, + "year_id": 6136, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6137, + "make_id": 4313, + "model_id": 6137, + "year_id": 6137, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6138, + "make_id": 4313, + "model_id": 6137, + "year_id": 6137, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6139, + "make_id": 4313, + "model_id": 6137, + "year_id": 6139, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6140, + "make_id": 4313, + "model_id": 6137, + "year_id": 6139, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6141, + "make_id": 4313, + "model_id": 6137, + "year_id": 6141, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6142, + "make_id": 4313, + "model_id": 6137, + "year_id": 6141, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6143, + "make_id": 4313, + "model_id": 6137, + "year_id": 6143, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6144, + "make_id": 4313, + "model_id": 6137, + "year_id": 6144, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6145, + "make_id": 4313, + "model_id": 6137, + "year_id": 6145, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6146, + "make_id": 4313, + "model_id": 6137, + "year_id": 6145, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6147, + "make_id": 4313, + "model_id": 6137, + "year_id": 6147, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6148, + "make_id": 4313, + "model_id": 6137, + "year_id": 6148, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6149, + "make_id": 4313, + "model_id": 6137, + "year_id": 6149, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6150, + "make_id": 4313, + "model_id": 6137, + "year_id": 6149, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6151, + "make_id": 4313, + "model_id": 6137, + "year_id": 6151, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6152, + "make_id": 4313, + "model_id": 6137, + "year_id": 6151, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6153, + "make_id": 4313, + "model_id": 6137, + "year_id": 6153, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6154, + "make_id": 4313, + "model_id": 6137, + "year_id": 6153, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6155, + "make_id": 4313, + "model_id": 6137, + "year_id": 6155, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6156, + "make_id": 4313, + "model_id": 6156, + "year_id": 6156, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6157, + "make_id": 4313, + "model_id": 6157, + "year_id": 6157, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6158, + "make_id": 4313, + "model_id": 6157, + "year_id": 6157, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6159, + "make_id": 4313, + "model_id": 6157, + "year_id": 6157, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6160, + "make_id": 4313, + "model_id": 6157, + "year_id": 6157, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6161, + "make_id": 4313, + "model_id": 6157, + "year_id": 6161, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6162, + "make_id": 4313, + "model_id": 6157, + "year_id": 6161, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6163, + "make_id": 4313, + "model_id": 6157, + "year_id": 6161, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6164, + "make_id": 4313, + "model_id": 6157, + "year_id": 6161, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6165, + "make_id": 4313, + "model_id": 6157, + "year_id": 6165, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6166, + "make_id": 4313, + "model_id": 6157, + "year_id": 6165, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6167, + "make_id": 4313, + "model_id": 6157, + "year_id": 6165, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6168, + "make_id": 4313, + "model_id": 6157, + "year_id": 6165, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6169, + "make_id": 4313, + "model_id": 6157, + "year_id": 6165, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6170, + "make_id": 4313, + "model_id": 6157, + "year_id": 6165, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6171, + "make_id": 4313, + "model_id": 6157, + "year_id": 6171, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6172, + "make_id": 4313, + "model_id": 6157, + "year_id": 6171, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6173, + "make_id": 4313, + "model_id": 6157, + "year_id": 6171, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6174, + "make_id": 4313, + "model_id": 6157, + "year_id": 6171, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6175, + "make_id": 4313, + "model_id": 6157, + "year_id": 6171, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6176, + "make_id": 4313, + "model_id": 6157, + "year_id": 6171, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6177, + "make_id": 4313, + "model_id": 6157, + "year_id": 6177, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6178, + "make_id": 4313, + "model_id": 6157, + "year_id": 6177, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6179, + "make_id": 4313, + "model_id": 6157, + "year_id": 6177, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6180, + "make_id": 4313, + "model_id": 6157, + "year_id": 6177, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6181, + "make_id": 4313, + "model_id": 6157, + "year_id": 6177, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6182, + "make_id": 4313, + "model_id": 6157, + "year_id": 6177, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6183, + "make_id": 4313, + "model_id": 6157, + "year_id": 6183, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6184, + "make_id": 4313, + "model_id": 6157, + "year_id": 6183, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6185, + "make_id": 4313, + "model_id": 6157, + "year_id": 6183, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6186, + "make_id": 4313, + "model_id": 6157, + "year_id": 6183, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6187, + "make_id": 4313, + "model_id": 6187, + "year_id": 6187, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6188, + "make_id": 4313, + "model_id": 6187, + "year_id": 6187, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6189, + "make_id": 4313, + "model_id": 6187, + "year_id": 6187, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6190, + "make_id": 4313, + "model_id": 6187, + "year_id": 6187, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6191, + "make_id": 4313, + "model_id": 6187, + "year_id": 6191, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6192, + "make_id": 4313, + "model_id": 6187, + "year_id": 6191, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6193, + "make_id": 4313, + "model_id": 6187, + "year_id": 6191, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6194, + "make_id": 4313, + "model_id": 6187, + "year_id": 6191, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6195, + "make_id": 4313, + "model_id": 6187, + "year_id": 6195, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6196, + "make_id": 4313, + "model_id": 6187, + "year_id": 6195, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6197, + "make_id": 4313, + "model_id": 6187, + "year_id": 6195, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6198, + "make_id": 4313, + "model_id": 6187, + "year_id": 6195, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6199, + "make_id": 4313, + "model_id": 6187, + "year_id": 6195, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6200, + "make_id": 4313, + "model_id": 6187, + "year_id": 6195, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6201, + "make_id": 4313, + "model_id": 6187, + "year_id": 6201, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6202, + "make_id": 4313, + "model_id": 6187, + "year_id": 6201, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6203, + "make_id": 4313, + "model_id": 6187, + "year_id": 6201, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6204, + "make_id": 4313, + "model_id": 6187, + "year_id": 6201, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6205, + "make_id": 4313, + "model_id": 6187, + "year_id": 6205, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6206, + "make_id": 4313, + "model_id": 6187, + "year_id": 6205, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6207, + "make_id": 4313, + "model_id": 6187, + "year_id": 6205, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6208, + "make_id": 4313, + "model_id": 6187, + "year_id": 6205, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6209, + "make_id": 4313, + "model_id": 6209, + "year_id": 6209, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6210, + "make_id": 4313, + "model_id": 6209, + "year_id": 6209, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6211, + "make_id": 4313, + "model_id": 6209, + "year_id": 6209, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6212, + "make_id": 4313, + "model_id": 6209, + "year_id": 6212, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6213, + "make_id": 4313, + "model_id": 6209, + "year_id": 6212, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6214, + "make_id": 4313, + "model_id": 6209, + "year_id": 6214, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6215, + "make_id": 4313, + "model_id": 6209, + "year_id": 6214, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6216, + "make_id": 4313, + "model_id": 6209, + "year_id": 6214, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6217, + "make_id": 4313, + "model_id": 6209, + "year_id": 6217, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6218, + "make_id": 4313, + "model_id": 6209, + "year_id": 6217, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6219, + "make_id": 4313, + "model_id": 6209, + "year_id": 6219, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6220, + "make_id": 4313, + "model_id": 6209, + "year_id": 6219, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6221, + "make_id": 4313, + "model_id": 6209, + "year_id": 6219, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6222, + "make_id": 4313, + "model_id": 6209, + "year_id": 6222, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6223, + "make_id": 4313, + "model_id": 6209, + "year_id": 6222, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6224, + "make_id": 4313, + "model_id": 6209, + "year_id": 6222, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6225, + "make_id": 4313, + "model_id": 6209, + "year_id": 6225, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6226, + "make_id": 4313, + "model_id": 6209, + "year_id": 6225, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6227, + "make_id": 4313, + "model_id": 6209, + "year_id": 6225, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6228, + "make_id": 4313, + "model_id": 6209, + "year_id": 6225, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6229, + "make_id": 4313, + "model_id": 6209, + "year_id": 6229, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6230, + "make_id": 4313, + "model_id": 6209, + "year_id": 6229, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6231, + "make_id": 4313, + "model_id": 6209, + "year_id": 6229, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6232, + "make_id": 4313, + "model_id": 6209, + "year_id": 6229, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6233, + "make_id": 4313, + "model_id": 6209, + "year_id": 6233, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6234, + "make_id": 4313, + "model_id": 6209, + "year_id": 6233, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6235, + "make_id": 4313, + "model_id": 6209, + "year_id": 6233, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6236, + "make_id": 4313, + "model_id": 6209, + "year_id": 6233, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6237, + "make_id": 4313, + "model_id": 6209, + "year_id": 6237, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6238, + "make_id": 4313, + "model_id": 6209, + "year_id": 6237, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6239, + "make_id": 4313, + "model_id": 6209, + "year_id": 6237, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6240, + "make_id": 4313, + "model_id": 6209, + "year_id": 6237, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6241, + "make_id": 4313, + "model_id": 6209, + "year_id": 6241, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6242, + "make_id": 4313, + "model_id": 6209, + "year_id": 6241, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6243, + "make_id": 4313, + "model_id": 6209, + "year_id": 6241, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6244, + "make_id": 4313, + "model_id": 6209, + "year_id": 6244, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6245, + "make_id": 4313, + "model_id": 6209, + "year_id": 6244, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6246, + "make_id": 4313, + "model_id": 6209, + "year_id": 6246, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6247, + "make_id": 4313, + "model_id": 6209, + "year_id": 6246, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6248, + "make_id": 4313, + "model_id": 6209, + "year_id": 6248, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6249, + "make_id": 4313, + "model_id": 6209, + "year_id": 6248, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6250, + "make_id": 4313, + "model_id": 6209, + "year_id": 6250, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6251, + "make_id": 4313, + "model_id": 6209, + "year_id": 6250, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6252, + "make_id": 4313, + "model_id": 6209, + "year_id": 6250, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6253, + "make_id": 4313, + "model_id": 6209, + "year_id": 6253, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6254, + "make_id": 4313, + "model_id": 6209, + "year_id": 6253, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6255, + "make_id": 4313, + "model_id": 6209, + "year_id": 6253, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6256, + "make_id": 4313, + "model_id": 6209, + "year_id": 6256, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6257, + "make_id": 4313, + "model_id": 6209, + "year_id": 6256, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6258, + "make_id": 4313, + "model_id": 6209, + "year_id": 6256, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6259, + "make_id": 4313, + "model_id": 6209, + "year_id": 6259, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6260, + "make_id": 4313, + "model_id": 6209, + "year_id": 6259, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6261, + "make_id": 4313, + "model_id": 6261, + "year_id": 6261, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6262, + "make_id": 4313, + "model_id": 6261, + "year_id": 6262, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6263, + "make_id": 4313, + "model_id": 6263, + "year_id": 6263, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6264, + "make_id": 4313, + "model_id": 6264, + "year_id": 6264, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6265, + "make_id": 4313, + "model_id": 6264, + "year_id": 6265, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6266, + "make_id": 4313, + "model_id": 6264, + "year_id": 6266, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6267, + "make_id": 4313, + "model_id": 6267, + "year_id": 6267, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6268, + "make_id": 4313, + "model_id": 6267, + "year_id": 6268, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6269, + "make_id": 4313, + "model_id": 6267, + "year_id": 6269, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6270, + "make_id": 4313, + "model_id": 6267, + "year_id": 6270, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6271, + "make_id": 4313, + "model_id": 6271, + "year_id": 6271, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 6272, + "make_id": 4313, + "model_id": 6271, + "year_id": 6271, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 6273, + "make_id": 4313, + "model_id": 6271, + "year_id": 6271, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 6274, + "make_id": 4313, + "model_id": 6271, + "year_id": 6271, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 6275, + "make_id": 4313, + "model_id": 6271, + "year_id": 6271, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 6276, + "make_id": 4313, + "model_id": 6271, + "year_id": 6271, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 6277, + "make_id": 4313, + "model_id": 6271, + "year_id": 6271, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 6278, + "make_id": 4313, + "model_id": 6271, + "year_id": 6271, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 6279, + "make_id": 4313, + "model_id": 6271, + "year_id": 6271, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 6280, + "make_id": 4313, + "model_id": 6271, + "year_id": 6280, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6281, + "make_id": 4313, + "model_id": 6271, + "year_id": 6280, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6282, + "make_id": 4313, + "model_id": 6271, + "year_id": 6280, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6283, + "make_id": 4313, + "model_id": 6271, + "year_id": 6280, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6284, + "make_id": 4313, + "model_id": 6271, + "year_id": 6280, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6285, + "make_id": 4313, + "model_id": 6271, + "year_id": 6280, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6286, + "make_id": 4313, + "model_id": 6271, + "year_id": 6280, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6287, + "make_id": 4313, + "model_id": 6271, + "year_id": 6280, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6288, + "make_id": 4313, + "model_id": 6271, + "year_id": 6280, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6289, + "make_id": 4313, + "model_id": 6289, + "year_id": 6289, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6290, + "make_id": 4313, + "model_id": 6289, + "year_id": 6289, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6291, + "make_id": 4313, + "model_id": 6289, + "year_id": 6289, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6292, + "make_id": 4313, + "model_id": 6289, + "year_id": 6289, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6293, + "make_id": 4313, + "model_id": 6289, + "year_id": 6289, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6294, + "make_id": 4313, + "model_id": 6289, + "year_id": 6294, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6295, + "make_id": 4313, + "model_id": 6289, + "year_id": 6294, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6296, + "make_id": 4313, + "model_id": 6289, + "year_id": 6294, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6297, + "make_id": 4313, + "model_id": 6289, + "year_id": 6294, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6298, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 6, + "displacement": 4.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6299, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 6, + "displacement": 4.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6300, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 6, + "displacement": 4.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6301, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6302, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6303, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6304, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6305, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6306, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6307, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6308, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6309, + "make_id": 4313, + "model_id": 6298, + "year_id": 6298, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6310, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6311, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6312, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6313, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6314, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6315, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6316, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6317, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6318, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6319, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6320, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6321, + "make_id": 4313, + "model_id": 6298, + "year_id": 6310, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6322, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6323, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6324, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6325, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6326, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6327, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6328, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6329, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6330, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6331, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6332, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6333, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6334, + "make_id": 4313, + "model_id": 6298, + "year_id": 6322, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6335, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6336, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6337, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6338, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6339, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6340, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6341, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6342, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6343, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6344, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6345, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6346, + "make_id": 4313, + "model_id": 6298, + "year_id": 6335, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6347, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6348, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6349, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6350, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6351, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6352, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6353, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6354, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6355, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6356, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6357, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6358, + "make_id": 4313, + "model_id": 6347, + "year_id": 6347, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6359, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6360, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6361, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6362, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6363, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6364, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6365, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6366, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6367, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6368, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6369, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6370, + "make_id": 4313, + "model_id": 6347, + "year_id": 6359, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6371, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6372, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6373, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6374, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6375, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6376, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6377, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6378, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6379, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6380, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6381, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6382, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6383, + "make_id": 4313, + "model_id": 6347, + "year_id": 6371, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6384, + "make_id": 4313, + "model_id": 6347, + "year_id": 6384, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6385, + "make_id": 4313, + "model_id": 6347, + "year_id": 6384, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6386, + "make_id": 4313, + "model_id": 6347, + "year_id": 6384, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6387, + "make_id": 4313, + "model_id": 6347, + "year_id": 6384, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6388, + "make_id": 4313, + "model_id": 6347, + "year_id": 6384, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6389, + "make_id": 4313, + "model_id": 6347, + "year_id": 6384, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6390, + "make_id": 4313, + "model_id": 6347, + "year_id": 6384, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6391, + "make_id": 4313, + "model_id": 6347, + "year_id": 6384, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6392, + "make_id": 4313, + "model_id": 6347, + "year_id": 6384, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6393, + "make_id": 4313, + "model_id": 6347, + "year_id": 6384, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6394, + "make_id": 4313, + "model_id": 6347, + "year_id": 6394, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6395, + "make_id": 4313, + "model_id": 6347, + "year_id": 6394, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6396, + "make_id": 4313, + "model_id": 6347, + "year_id": 6394, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6397, + "make_id": 4313, + "model_id": 6347, + "year_id": 6394, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6398, + "make_id": 4313, + "model_id": 6347, + "year_id": 6394, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6399, + "make_id": 4313, + "model_id": 6347, + "year_id": 6394, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6400, + "make_id": 4313, + "model_id": 6347, + "year_id": 6394, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6401, + "make_id": 4313, + "model_id": 6347, + "year_id": 6394, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6402, + "make_id": 4313, + "model_id": 6347, + "year_id": 6394, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6403, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6404, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6405, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6406, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6407, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6408, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6409, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6410, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6411, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6412, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6413, + "make_id": 4313, + "model_id": 6347, + "year_id": 6403, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6414, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6415, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6416, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6417, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6418, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6419, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6420, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6421, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6422, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6423, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6424, + "make_id": 4313, + "model_id": 6347, + "year_id": 6414, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6425, + "make_id": 4313, + "model_id": 6347, + "year_id": 6425, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6426, + "make_id": 4313, + "model_id": 6347, + "year_id": 6425, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6427, + "make_id": 4313, + "model_id": 6347, + "year_id": 6425, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6428, + "make_id": 4313, + "model_id": 6347, + "year_id": 6425, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6429, + "make_id": 4313, + "model_id": 6347, + "year_id": 6425, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6430, + "make_id": 4313, + "model_id": 6347, + "year_id": 6425, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6431, + "make_id": 4313, + "model_id": 6347, + "year_id": 6425, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6432, + "make_id": 4313, + "model_id": 6347, + "year_id": 6432, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6433, + "make_id": 4313, + "model_id": 6347, + "year_id": 6432, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6434, + "make_id": 4313, + "model_id": 6347, + "year_id": 6432, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6435, + "make_id": 4313, + "model_id": 6347, + "year_id": 6432, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6436, + "make_id": 4313, + "model_id": 6347, + "year_id": 6432, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6437, + "make_id": 4313, + "model_id": 6347, + "year_id": 6432, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6438, + "make_id": 4313, + "model_id": 6347, + "year_id": 6432, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6439, + "make_id": 4313, + "model_id": 6347, + "year_id": 6439, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6440, + "make_id": 4313, + "model_id": 6347, + "year_id": 6439, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6441, + "make_id": 4313, + "model_id": 6347, + "year_id": 6439, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6442, + "make_id": 4313, + "model_id": 6347, + "year_id": 6439, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6443, + "make_id": 4313, + "model_id": 6347, + "year_id": 6439, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6444, + "make_id": 4313, + "model_id": 6347, + "year_id": 6439, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6445, + "make_id": 4313, + "model_id": 6347, + "year_id": 6439, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6446, + "make_id": 4313, + "model_id": 6347, + "year_id": 6446, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6447, + "make_id": 4313, + "model_id": 6347, + "year_id": 6446, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6448, + "make_id": 4313, + "model_id": 6448, + "year_id": 6448, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6449, + "make_id": 4313, + "model_id": 6448, + "year_id": 6448, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6450, + "make_id": 4313, + "model_id": 6448, + "year_id": 6448, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6451, + "make_id": 4313, + "model_id": 6448, + "year_id": 6448, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6452, + "make_id": 4313, + "model_id": 6448, + "year_id": 6448, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6453, + "make_id": 4313, + "model_id": 6448, + "year_id": 6453, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6454, + "make_id": 4313, + "model_id": 6448, + "year_id": 6453, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6455, + "make_id": 4313, + "model_id": 6448, + "year_id": 6453, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6456, + "make_id": 4313, + "model_id": 6448, + "year_id": 6453, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6457, + "make_id": 4313, + "model_id": 6448, + "year_id": 6457, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6458, + "make_id": 4313, + "model_id": 6448, + "year_id": 6457, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6459, + "make_id": 4313, + "model_id": 6448, + "year_id": 6457, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6460, + "make_id": 4313, + "model_id": 6448, + "year_id": 6457, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6461, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6462, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6463, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6464, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6465, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6466, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6467, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6468, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6469, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6470, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6471, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6472, + "make_id": 4313, + "model_id": 6448, + "year_id": 6461, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6473, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6474, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6475, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6476, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6477, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6478, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6479, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6480, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6481, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6482, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6483, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6484, + "make_id": 4313, + "model_id": 6473, + "year_id": 6473, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6485, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6486, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6487, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6488, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6489, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6490, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6491, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6492, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6493, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6494, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6495, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6496, + "make_id": 4313, + "model_id": 6473, + "year_id": 6485, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6497, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6498, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6499, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6500, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6501, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6502, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6503, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6504, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6505, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6506, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6507, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6508, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6509, + "make_id": 4313, + "model_id": 6473, + "year_id": 6497, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6510, + "make_id": 4313, + "model_id": 6473, + "year_id": 6510, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6511, + "make_id": 4313, + "model_id": 6473, + "year_id": 6510, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6512, + "make_id": 4313, + "model_id": 6473, + "year_id": 6510, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6513, + "make_id": 4313, + "model_id": 6473, + "year_id": 6510, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6514, + "make_id": 4313, + "model_id": 6473, + "year_id": 6510, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6515, + "make_id": 4313, + "model_id": 6473, + "year_id": 6510, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6516, + "make_id": 4313, + "model_id": 6473, + "year_id": 6510, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6517, + "make_id": 4313, + "model_id": 6473, + "year_id": 6510, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6518, + "make_id": 4313, + "model_id": 6473, + "year_id": 6510, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6519, + "make_id": 4313, + "model_id": 6473, + "year_id": 6510, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6520, + "make_id": 4313, + "model_id": 6473, + "year_id": 6520, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6521, + "make_id": 4313, + "model_id": 6473, + "year_id": 6520, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6522, + "make_id": 4313, + "model_id": 6522, + "year_id": 6522, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6523, + "make_id": 4313, + "model_id": 6522, + "year_id": 6522, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6524, + "make_id": 4313, + "model_id": 6522, + "year_id": 6522, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6525, + "make_id": 4313, + "model_id": 6522, + "year_id": 6522, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6526, + "make_id": 4313, + "model_id": 6522, + "year_id": 6522, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6527, + "make_id": 4313, + "model_id": 6527, + "year_id": 6527, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6528, + "make_id": 4313, + "model_id": 6527, + "year_id": 6527, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6529, + "make_id": 4313, + "model_id": 6527, + "year_id": 6527, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6530, + "make_id": 4313, + "model_id": 6527, + "year_id": 6530, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6531, + "make_id": 4313, + "model_id": 6527, + "year_id": 6530, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6532, + "make_id": 4313, + "model_id": 6527, + "year_id": 6530, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6533, + "make_id": 4313, + "model_id": 6527, + "year_id": 6530, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6534, + "make_id": 4313, + "model_id": 6527, + "year_id": 6530, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6535, + "make_id": 4313, + "model_id": 6527, + "year_id": 6535, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6536, + "make_id": 4313, + "model_id": 6527, + "year_id": 6535, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6537, + "make_id": 4313, + "model_id": 6527, + "year_id": 6535, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6538, + "make_id": 4313, + "model_id": 6527, + "year_id": 6535, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6539, + "make_id": 4313, + "model_id": 6527, + "year_id": 6535, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6540, + "make_id": 4313, + "model_id": 6527, + "year_id": 6540, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6541, + "make_id": 4313, + "model_id": 6527, + "year_id": 6540, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6542, + "make_id": 4313, + "model_id": 6527, + "year_id": 6540, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6543, + "make_id": 4313, + "model_id": 6527, + "year_id": 6540, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6544, + "make_id": 4313, + "model_id": 6527, + "year_id": 6540, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6545, + "make_id": 4313, + "model_id": 6527, + "year_id": 6545, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6546, + "make_id": 4313, + "model_id": 6527, + "year_id": 6545, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6547, + "make_id": 4313, + "model_id": 6527, + "year_id": 6547, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6548, + "make_id": 4313, + "model_id": 6548, + "year_id": 6548, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6549, + "make_id": 4313, + "model_id": 6548, + "year_id": 6548, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6550, + "make_id": 4313, + "model_id": 6548, + "year_id": 6550, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6551, + "make_id": 4313, + "model_id": 6548, + "year_id": 6550, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6552, + "make_id": 4313, + "model_id": 6548, + "year_id": 6552, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6553, + "make_id": 4313, + "model_id": 6553, + "year_id": 6553, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6554, + "make_id": 4313, + "model_id": 6553, + "year_id": 6554, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6555, + "make_id": 4313, + "model_id": 6553, + "year_id": 6555, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6556, + "make_id": 4313, + "model_id": 6553, + "year_id": 6555, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6557, + "make_id": 4313, + "model_id": 6553, + "year_id": 6557, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6558, + "make_id": 4313, + "model_id": 6553, + "year_id": 6557, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6559, + "make_id": 4313, + "model_id": 6559, + "year_id": 6559, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6560, + "make_id": 4313, + "model_id": 6559, + "year_id": 6559, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6561, + "make_id": 4313, + "model_id": 6559, + "year_id": 6559, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6562, + "make_id": 4313, + "model_id": 6559, + "year_id": 6562, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6563, + "make_id": 4313, + "model_id": 6559, + "year_id": 6562, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6564, + "make_id": 4313, + "model_id": 6559, + "year_id": 6564, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6565, + "make_id": 4313, + "model_id": 6559, + "year_id": 6564, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6566, + "make_id": 4313, + "model_id": 6559, + "year_id": 6566, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6567, + "make_id": 4313, + "model_id": 6559, + "year_id": 6566, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6568, + "make_id": 4313, + "model_id": 6559, + "year_id": 6566, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6569, + "make_id": 4313, + "model_id": 6559, + "year_id": 6569, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6570, + "make_id": 4313, + "model_id": 6559, + "year_id": 6569, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6571, + "make_id": 4313, + "model_id": 6559, + "year_id": 6569, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6572, + "make_id": 4313, + "model_id": 6559, + "year_id": 6572, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6573, + "make_id": 4313, + "model_id": 6559, + "year_id": 6572, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6574, + "make_id": 4313, + "model_id": 6559, + "year_id": 6572, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6575, + "make_id": 4313, + "model_id": 6575, + "year_id": 6575, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6576, + "make_id": 4313, + "model_id": 6575, + "year_id": 6576, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6577, + "make_id": 4313, + "model_id": 6575, + "year_id": 6576, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6578, + "make_id": 4313, + "model_id": 6575, + "year_id": 6578, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6579, + "make_id": 4313, + "model_id": 6575, + "year_id": 6578, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6580, + "make_id": 4313, + "model_id": 6575, + "year_id": 6580, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6581, + "make_id": 4313, + "model_id": 6575, + "year_id": 6580, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6582, + "make_id": 4313, + "model_id": 6575, + "year_id": 6582, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6583, + "make_id": 4313, + "model_id": 6575, + "year_id": 6583, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6584, + "make_id": 4313, + "model_id": 6575, + "year_id": 6584, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6585, + "make_id": 4313, + "model_id": 6575, + "year_id": 6585, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6586, + "make_id": 4313, + "model_id": 6575, + "year_id": 6585, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6587, + "make_id": 4313, + "model_id": 6575, + "year_id": 6587, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6588, + "make_id": 4313, + "model_id": 6575, + "year_id": 6587, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6589, + "make_id": 4313, + "model_id": 6575, + "year_id": 6589, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6590, + "make_id": 4313, + "model_id": 6575, + "year_id": 6589, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6591, + "make_id": 4313, + "model_id": 6575, + "year_id": 6589, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6592, + "make_id": 4313, + "model_id": 6575, + "year_id": 6592, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6593, + "make_id": 4313, + "model_id": 6575, + "year_id": 6592, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6594, + "make_id": 4313, + "model_id": 6575, + "year_id": 6592, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6595, + "make_id": 4313, + "model_id": 6575, + "year_id": 6595, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6596, + "make_id": 4313, + "model_id": 6575, + "year_id": 6595, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6597, + "make_id": 4313, + "model_id": 6575, + "year_id": 6595, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6598, + "make_id": 4313, + "model_id": 6575, + "year_id": 6595, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6599, + "make_id": 4313, + "model_id": 6575, + "year_id": 6599, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6600, + "make_id": 4313, + "model_id": 6575, + "year_id": 6599, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6601, + "make_id": 4313, + "model_id": 6575, + "year_id": 6599, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6602, + "make_id": 4313, + "model_id": 6575, + "year_id": 6599, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6603, + "make_id": 4313, + "model_id": 6575, + "year_id": 6599, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6604, + "make_id": 4313, + "model_id": 6575, + "year_id": 6604, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6605, + "make_id": 4313, + "model_id": 6575, + "year_id": 6604, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6606, + "make_id": 4313, + "model_id": 6575, + "year_id": 6604, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6607, + "make_id": 4313, + "model_id": 6575, + "year_id": 6604, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6608, + "make_id": 4313, + "model_id": 6575, + "year_id": 6604, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6609, + "make_id": 4313, + "model_id": 6575, + "year_id": 6604, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6610, + "make_id": 4313, + "model_id": 6575, + "year_id": 6604, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6611, + "make_id": 4313, + "model_id": 6575, + "year_id": 6611, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6612, + "make_id": 4313, + "model_id": 6575, + "year_id": 6611, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6613, + "make_id": 4313, + "model_id": 6575, + "year_id": 6611, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6614, + "make_id": 4313, + "model_id": 6575, + "year_id": 6614, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6615, + "make_id": 4313, + "model_id": 6575, + "year_id": 6614, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6616, + "make_id": 4313, + "model_id": 6575, + "year_id": 6614, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6617, + "make_id": 4313, + "model_id": 6575, + "year_id": 6617, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6618, + "make_id": 4313, + "model_id": 6575, + "year_id": 6617, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6619, + "make_id": 4313, + "model_id": 6575, + "year_id": 6619, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6620, + "make_id": 4313, + "model_id": 6575, + "year_id": 6619, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6621, + "make_id": 4313, + "model_id": 6575, + "year_id": 6621, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6622, + "make_id": 4313, + "model_id": 6575, + "year_id": 6621, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6623, + "make_id": 4313, + "model_id": 6575, + "year_id": 6623, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 6624, + "make_id": 4313, + "model_id": 6575, + "year_id": 6623, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6625, + "make_id": 4313, + "model_id": 6625, + "year_id": 6625, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6626, + "make_id": 4313, + "model_id": 6625, + "year_id": 6626, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6627, + "make_id": 4313, + "model_id": 6627, + "year_id": 6627, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6628, + "make_id": 4313, + "model_id": 6627, + "year_id": 6628, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6629, + "make_id": 4313, + "model_id": 6627, + "year_id": 6629, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6630, + "make_id": 4313, + "model_id": 6627, + "year_id": 6630, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 6631, + "make_id": 4313, + "model_id": 6631, + "year_id": 6631, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 6632, + "make_id": 4313, + "model_id": 6632, + "year_id": 6632, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6633, + "make_id": 4313, + "model_id": 6632, + "year_id": 6633, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6634, + "make_id": 4313, + "model_id": 6632, + "year_id": 6634, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6635, + "make_id": 4313, + "model_id": 6632, + "year_id": 6634, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6636, + "make_id": 4313, + "model_id": 6632, + "year_id": 6636, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6637, + "make_id": 4313, + "model_id": 6632, + "year_id": 6636, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6638, + "make_id": 4313, + "model_id": 6638, + "year_id": 6638, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6639, + "make_id": 4313, + "model_id": 6638, + "year_id": 6638, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6640, + "make_id": 4313, + "model_id": 6638, + "year_id": 6638, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6641, + "make_id": 4313, + "model_id": 6638, + "year_id": 6641, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6642, + "make_id": 4313, + "model_id": 6638, + "year_id": 6641, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6643, + "make_id": 4313, + "model_id": 6638, + "year_id": 6641, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6644, + "make_id": 4313, + "model_id": 6638, + "year_id": 6644, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6645, + "make_id": 4313, + "model_id": 6638, + "year_id": 6644, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6646, + "make_id": 4313, + "model_id": 6638, + "year_id": 6644, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6647, + "make_id": 4313, + "model_id": 6638, + "year_id": 6647, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6648, + "make_id": 4313, + "model_id": 6648, + "year_id": 6648, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 6649, + "make_id": 4313, + "model_id": 6648, + "year_id": 6648, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 6650, + "make_id": 4313, + "model_id": 6648, + "year_id": 6648, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 6651, + "make_id": 4313, + "model_id": 6648, + "year_id": 6648, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 6652, + "make_id": 4313, + "model_id": 6648, + "year_id": 6648, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 6653, + "make_id": 4313, + "model_id": 6648, + "year_id": 6648, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 6654, + "make_id": 4313, + "model_id": 6648, + "year_id": 6648, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 6655, + "make_id": 4313, + "model_id": 6648, + "year_id": 6648, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 6656, + "make_id": 4313, + "model_id": 6648, + "year_id": 6648, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 6657, + "make_id": 4313, + "model_id": 6648, + "year_id": 6657, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6658, + "make_id": 4313, + "model_id": 6648, + "year_id": 6657, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6659, + "make_id": 4313, + "model_id": 6648, + "year_id": 6657, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6660, + "make_id": 4313, + "model_id": 6648, + "year_id": 6657, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6661, + "make_id": 4313, + "model_id": 6648, + "year_id": 6657, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6662, + "make_id": 4313, + "model_id": 6648, + "year_id": 6657, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6663, + "make_id": 4313, + "model_id": 6648, + "year_id": 6657, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6664, + "make_id": 4313, + "model_id": 6648, + "year_id": 6664, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6665, + "make_id": 4313, + "model_id": 6648, + "year_id": 6664, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6666, + "make_id": 4313, + "model_id": 6648, + "year_id": 6664, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6667, + "make_id": 4313, + "model_id": 6648, + "year_id": 6667, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6668, + "make_id": 4313, + "model_id": 6648, + "year_id": 6667, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6669, + "make_id": 4313, + "model_id": 6648, + "year_id": 6667, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6670, + "make_id": 4313, + "model_id": 6648, + "year_id": 6670, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6671, + "make_id": 4313, + "model_id": 6648, + "year_id": 6670, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6672, + "make_id": 4313, + "model_id": 6648, + "year_id": 6672, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6673, + "make_id": 4313, + "model_id": 6648, + "year_id": 6672, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6674, + "make_id": 4313, + "model_id": 6648, + "year_id": 6674, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6675, + "make_id": 4313, + "model_id": 6648, + "year_id": 6674, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6676, + "make_id": 4313, + "model_id": 6648, + "year_id": 6676, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6677, + "make_id": 4313, + "model_id": 6648, + "year_id": 6676, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6678, + "make_id": 4313, + "model_id": 6648, + "year_id": 6678, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6679, + "make_id": 4313, + "model_id": 6648, + "year_id": 6678, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6680, + "make_id": 4313, + "model_id": 6648, + "year_id": 6678, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6681, + "make_id": 4313, + "model_id": 6648, + "year_id": 6681, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6682, + "make_id": 4313, + "model_id": 6648, + "year_id": 6681, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6683, + "make_id": 4313, + "model_id": 6648, + "year_id": 6681, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6684, + "make_id": 4313, + "model_id": 6648, + "year_id": 6684, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6685, + "make_id": 4313, + "model_id": 6648, + "year_id": 6684, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6686, + "make_id": 4313, + "model_id": 6648, + "year_id": 6684, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6687, + "make_id": 4313, + "model_id": 6648, + "year_id": 6687, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6688, + "make_id": 4313, + "model_id": 6648, + "year_id": 6687, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6689, + "make_id": 4313, + "model_id": 6648, + "year_id": 6687, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6690, + "make_id": 4313, + "model_id": 6690, + "year_id": 6690, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6691, + "make_id": 4313, + "model_id": 6690, + "year_id": 6690, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6692, + "make_id": 4313, + "model_id": 6690, + "year_id": 6692, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6693, + "make_id": 4313, + "model_id": 6690, + "year_id": 6692, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6694, + "make_id": 4313, + "model_id": 6690, + "year_id": 6694, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6695, + "make_id": 4313, + "model_id": 6690, + "year_id": 6694, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6696, + "make_id": 4313, + "model_id": 6690, + "year_id": 6696, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6697, + "make_id": 4313, + "model_id": 6690, + "year_id": 6696, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6698, + "make_id": 4313, + "model_id": 6690, + "year_id": 6696, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6699, + "make_id": 4313, + "model_id": 6690, + "year_id": 6696, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6700, + "make_id": 4313, + "model_id": 6700, + "year_id": 6700, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6701, + "make_id": 4313, + "model_id": 6700, + "year_id": 6700, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6702, + "make_id": 4313, + "model_id": 6700, + "year_id": 6702, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6703, + "make_id": 4313, + "model_id": 6700, + "year_id": 6702, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6704, + "make_id": 4313, + "model_id": 6700, + "year_id": 6704, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6705, + "make_id": 4313, + "model_id": 6700, + "year_id": 6704, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6706, + "make_id": 4313, + "model_id": 6700, + "year_id": 6706, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6707, + "make_id": 4313, + "model_id": 6700, + "year_id": 6706, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6708, + "make_id": 4313, + "model_id": 6708, + "year_id": 6708, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6709, + "make_id": 4313, + "model_id": 6708, + "year_id": 6708, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6710, + "make_id": 4313, + "model_id": 6708, + "year_id": 6710, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6711, + "make_id": 4313, + "model_id": 6708, + "year_id": 6710, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6712, + "make_id": 4313, + "model_id": 6708, + "year_id": 6712, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6713, + "make_id": 4313, + "model_id": 6708, + "year_id": 6712, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6714, + "make_id": 4313, + "model_id": 6714, + "year_id": 6714, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6715, + "make_id": 4313, + "model_id": 6714, + "year_id": 6714, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6716, + "make_id": 4313, + "model_id": 6714, + "year_id": 6716, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6717, + "make_id": 4313, + "model_id": 6714, + "year_id": 6716, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6718, + "make_id": 4313, + "model_id": 6714, + "year_id": 6718, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6719, + "make_id": 4313, + "model_id": 6714, + "year_id": 6718, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6720, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6721, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6722, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6723, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6724, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6725, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6726, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6727, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6728, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6729, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6730, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6731, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6732, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6733, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6734, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6735, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6736, + "make_id": 4313, + "model_id": 6720, + "year_id": 6720, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6737, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6738, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6739, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6740, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6741, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6742, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6743, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6744, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6745, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6746, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6747, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6748, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6749, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6750, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6751, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6752, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6753, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6754, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6755, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6756, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6757, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6758, + "make_id": 4313, + "model_id": 6720, + "year_id": 6737, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6759, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6760, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6761, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6762, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6763, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6764, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6765, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6766, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6767, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6768, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6769, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6770, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6771, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6772, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6773, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6774, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6775, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6776, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6777, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6778, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6779, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6780, + "make_id": 4313, + "model_id": 6720, + "year_id": 6759, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6781, + "make_id": 4313, + "model_id": 6720, + "year_id": 6781, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6782, + "make_id": 4313, + "model_id": 6720, + "year_id": 6781, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6783, + "make_id": 4313, + "model_id": 6720, + "year_id": 6781, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6784, + "make_id": 4313, + "model_id": 6720, + "year_id": 6781, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6785, + "make_id": 4313, + "model_id": 6720, + "year_id": 6781, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6786, + "make_id": 4313, + "model_id": 6720, + "year_id": 6786, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6787, + "make_id": 4313, + "model_id": 6720, + "year_id": 6786, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6788, + "make_id": 4313, + "model_id": 6720, + "year_id": 6786, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6789, + "make_id": 4313, + "model_id": 6720, + "year_id": 6786, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6790, + "make_id": 4313, + "model_id": 6720, + "year_id": 6786, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6791, + "make_id": 4313, + "model_id": 6720, + "year_id": 6791, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6792, + "make_id": 4313, + "model_id": 6720, + "year_id": 6791, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6793, + "make_id": 4313, + "model_id": 6720, + "year_id": 6791, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6794, + "make_id": 4313, + "model_id": 6720, + "year_id": 6791, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6795, + "make_id": 4313, + "model_id": 6720, + "year_id": 6791, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6796, + "make_id": 4313, + "model_id": 6796, + "year_id": 6796, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6797, + "make_id": 4313, + "model_id": 6796, + "year_id": 6797, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6798, + "make_id": 4313, + "model_id": 6796, + "year_id": 6798, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6799, + "make_id": 4313, + "model_id": 6796, + "year_id": 6799, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6800, + "make_id": 4313, + "model_id": 6800, + "year_id": 6800, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6801, + "make_id": 4313, + "model_id": 6800, + "year_id": 6800, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6802, + "make_id": 4313, + "model_id": 6800, + "year_id": 6800, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6803, + "make_id": 4313, + "model_id": 6800, + "year_id": 6803, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6804, + "make_id": 4313, + "model_id": 6800, + "year_id": 6803, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6805, + "make_id": 4313, + "model_id": 6800, + "year_id": 6803, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6806, + "make_id": 4313, + "model_id": 6800, + "year_id": 6806, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6807, + "make_id": 4313, + "model_id": 6800, + "year_id": 6806, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6808, + "make_id": 4313, + "model_id": 6800, + "year_id": 6806, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6809, + "make_id": 4313, + "model_id": 6800, + "year_id": 6809, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6810, + "make_id": 4313, + "model_id": 6800, + "year_id": 6809, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6811, + "make_id": 4313, + "model_id": 6800, + "year_id": 6809, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6812, + "make_id": 4313, + "model_id": 6800, + "year_id": 6812, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6813, + "make_id": 4313, + "model_id": 6800, + "year_id": 6812, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6814, + "make_id": 4313, + "model_id": 6800, + "year_id": 6812, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6815, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6816, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6817, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 6818, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6819, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6820, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6821, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6822, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6823, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6824, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6825, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6826, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6827, + "make_id": 4313, + "model_id": 6815, + "year_id": 6815, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6828, + "make_id": 4313, + "model_id": 6828, + "year_id": 6828, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6829, + "make_id": 4313, + "model_id": 6828, + "year_id": 6828, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6830, + "make_id": 4313, + "model_id": 6828, + "year_id": 6828, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6831, + "make_id": 4313, + "model_id": 6828, + "year_id": 6831, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6832, + "make_id": 4313, + "model_id": 6828, + "year_id": 6831, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6833, + "make_id": 4313, + "model_id": 6833, + "year_id": 6833, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6834, + "make_id": 4313, + "model_id": 6833, + "year_id": 6833, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6835, + "make_id": 4313, + "model_id": 6833, + "year_id": 6835, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6836, + "make_id": 4313, + "model_id": 6833, + "year_id": 6835, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6837, + "make_id": 4313, + "model_id": 6833, + "year_id": 6837, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6838, + "make_id": 4313, + "model_id": 6833, + "year_id": 6837, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6839, + "make_id": 4313, + "model_id": 6839, + "year_id": 6839, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6840, + "make_id": 4313, + "model_id": 6839, + "year_id": 6839, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6841, + "make_id": 4313, + "model_id": 6839, + "year_id": 6839, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6842, + "make_id": 4313, + "model_id": 6839, + "year_id": 6839, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6843, + "make_id": 4313, + "model_id": 6839, + "year_id": 6839, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6844, + "make_id": 4313, + "model_id": 6839, + "year_id": 6839, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6845, + "make_id": 4313, + "model_id": 6839, + "year_id": 6839, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6846, + "make_id": 4313, + "model_id": 6839, + "year_id": 6839, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6847, + "make_id": 4313, + "model_id": 6839, + "year_id": 6839, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6848, + "make_id": 4313, + "model_id": 6839, + "year_id": 6839, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6849, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6850, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6851, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6852, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6853, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6854, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6855, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6856, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6857, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6858, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6859, + "make_id": 4313, + "model_id": 6849, + "year_id": 6849, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6860, + "make_id": 4313, + "model_id": 6849, + "year_id": 6860, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6861, + "make_id": 4313, + "model_id": 6849, + "year_id": 6860, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6862, + "make_id": 4313, + "model_id": 6849, + "year_id": 6860, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6863, + "make_id": 4313, + "model_id": 6849, + "year_id": 6860, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6864, + "make_id": 4313, + "model_id": 6849, + "year_id": 6860, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6865, + "make_id": 4313, + "model_id": 6849, + "year_id": 6860, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6866, + "make_id": 4313, + "model_id": 6849, + "year_id": 6860, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6867, + "make_id": 4313, + "model_id": 6849, + "year_id": 6860, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6868, + "make_id": 4313, + "model_id": 6849, + "year_id": 6860, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6869, + "make_id": 4313, + "model_id": 6849, + "year_id": 6860, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6870, + "make_id": 4313, + "model_id": 6849, + "year_id": 6870, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6871, + "make_id": 4313, + "model_id": 6849, + "year_id": 6870, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6872, + "make_id": 4313, + "model_id": 6849, + "year_id": 6870, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6873, + "make_id": 4313, + "model_id": 6849, + "year_id": 6870, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6874, + "make_id": 4313, + "model_id": 6849, + "year_id": 6870, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6875, + "make_id": 4313, + "model_id": 6849, + "year_id": 6870, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6876, + "make_id": 4313, + "model_id": 6849, + "year_id": 6876, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6877, + "make_id": 4313, + "model_id": 6849, + "year_id": 6876, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6878, + "make_id": 4313, + "model_id": 6849, + "year_id": 6876, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6879, + "make_id": 4313, + "model_id": 6849, + "year_id": 6876, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6880, + "make_id": 4313, + "model_id": 6849, + "year_id": 6876, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6881, + "make_id": 4313, + "model_id": 6849, + "year_id": 6876, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6882, + "make_id": 4313, + "model_id": 6849, + "year_id": 6876, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6883, + "make_id": 4313, + "model_id": 6849, + "year_id": 6876, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6884, + "make_id": 4313, + "model_id": 6849, + "year_id": 6884, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6885, + "make_id": 4313, + "model_id": 6849, + "year_id": 6884, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6886, + "make_id": 4313, + "model_id": 6849, + "year_id": 6884, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6887, + "make_id": 4313, + "model_id": 6849, + "year_id": 6884, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6888, + "make_id": 4313, + "model_id": 6849, + "year_id": 6884, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6889, + "make_id": 4313, + "model_id": 6849, + "year_id": 6884, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6890, + "make_id": 4313, + "model_id": 6849, + "year_id": 6890, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6891, + "make_id": 4313, + "model_id": 6849, + "year_id": 6890, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6892, + "make_id": 4313, + "model_id": 6849, + "year_id": 6890, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6893, + "make_id": 4313, + "model_id": 6849, + "year_id": 6890, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6894, + "make_id": 4313, + "model_id": 6849, + "year_id": 6890, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6895, + "make_id": 4313, + "model_id": 6849, + "year_id": 6895, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6896, + "make_id": 4313, + "model_id": 6849, + "year_id": 6895, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6897, + "make_id": 4313, + "model_id": 6849, + "year_id": 6895, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6898, + "make_id": 4313, + "model_id": 6849, + "year_id": 6895, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6899, + "make_id": 4313, + "model_id": 6849, + "year_id": 6899, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6900, + "make_id": 4313, + "model_id": 6849, + "year_id": 6899, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6901, + "make_id": 4313, + "model_id": 6849, + "year_id": 6899, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6902, + "make_id": 4313, + "model_id": 6849, + "year_id": 6899, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6903, + "make_id": 4313, + "model_id": 6849, + "year_id": 6903, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6904, + "make_id": 4313, + "model_id": 6849, + "year_id": 6903, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6905, + "make_id": 4313, + "model_id": 6849, + "year_id": 6903, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6906, + "make_id": 4313, + "model_id": 6849, + "year_id": 6903, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6907, + "make_id": 4313, + "model_id": 6849, + "year_id": 6903, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6908, + "make_id": 4313, + "model_id": 6849, + "year_id": 6903, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6909, + "make_id": 4313, + "model_id": 6849, + "year_id": 6909, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6910, + "make_id": 4313, + "model_id": 6849, + "year_id": 6909, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6911, + "make_id": 4313, + "model_id": 6849, + "year_id": 6909, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6912, + "make_id": 4313, + "model_id": 6849, + "year_id": 6909, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6913, + "make_id": 4313, + "model_id": 6849, + "year_id": 6913, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6914, + "make_id": 4313, + "model_id": 6849, + "year_id": 6913, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6915, + "make_id": 4313, + "model_id": 6849, + "year_id": 6913, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6916, + "make_id": 4313, + "model_id": 6849, + "year_id": 6913, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6917, + "make_id": 4313, + "model_id": 6917, + "year_id": 6917, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6918, + "make_id": 4313, + "model_id": 6917, + "year_id": 6917, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6919, + "make_id": 4313, + "model_id": 6917, + "year_id": 6917, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6920, + "make_id": 4313, + "model_id": 6917, + "year_id": 6917, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6921, + "make_id": 4313, + "model_id": 6917, + "year_id": 6921, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6922, + "make_id": 4313, + "model_id": 6917, + "year_id": 6921, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6923, + "make_id": 4313, + "model_id": 6917, + "year_id": 6921, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6924, + "make_id": 4313, + "model_id": 6917, + "year_id": 6921, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6925, + "make_id": 4313, + "model_id": 6917, + "year_id": 6925, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6926, + "make_id": 4313, + "model_id": 6917, + "year_id": 6925, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6927, + "make_id": 4313, + "model_id": 6917, + "year_id": 6925, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6928, + "make_id": 4313, + "model_id": 6917, + "year_id": 6928, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6929, + "make_id": 4313, + "model_id": 6917, + "year_id": 6928, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6930, + "make_id": 4313, + "model_id": 6917, + "year_id": 6928, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6931, + "make_id": 4313, + "model_id": 6917, + "year_id": 6931, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6932, + "make_id": 4313, + "model_id": 6917, + "year_id": 6931, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6933, + "make_id": 4313, + "model_id": 6917, + "year_id": 6933, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6934, + "make_id": 4313, + "model_id": 6917, + "year_id": 6934, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6935, + "make_id": 4313, + "model_id": 6917, + "year_id": 6935, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6936, + "make_id": 4313, + "model_id": 6936, + "year_id": 6936, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 6937, + "make_id": 4313, + "model_id": 6936, + "year_id": 6936, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 6938, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6939, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6940, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6941, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6942, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6943, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6944, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6945, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6946, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6947, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6948, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6949, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6950, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6951, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6952, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6953, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6954, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6955, + "make_id": 4313, + "model_id": 6938, + "year_id": 6938, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6956, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6957, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6958, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6959, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6960, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6961, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6962, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6963, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6964, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6965, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6966, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6967, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6968, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6969, + "make_id": 4313, + "model_id": 6938, + "year_id": 6956, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6970, + "make_id": 4313, + "model_id": 6938, + "year_id": 6970, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6971, + "make_id": 4313, + "model_id": 6938, + "year_id": 6970, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6972, + "make_id": 4313, + "model_id": 6938, + "year_id": 6970, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6973, + "make_id": 4313, + "model_id": 6938, + "year_id": 6970, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6974, + "make_id": 4313, + "model_id": 6938, + "year_id": 6970, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6975, + "make_id": 4313, + "model_id": 6938, + "year_id": 6970, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6976, + "make_id": 4313, + "model_id": 6938, + "year_id": 6976, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6977, + "make_id": 4313, + "model_id": 6938, + "year_id": 6976, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6978, + "make_id": 4313, + "model_id": 6938, + "year_id": 6976, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6979, + "make_id": 4313, + "model_id": 6938, + "year_id": 6976, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6980, + "make_id": 4313, + "model_id": 6938, + "year_id": 6976, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 6981, + "make_id": 4313, + "model_id": 6938, + "year_id": 6976, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6982, + "make_id": 4313, + "model_id": 6938, + "year_id": 6976, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6983, + "make_id": 4313, + "model_id": 6938, + "year_id": 6976, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6984, + "make_id": 4313, + "model_id": 6938, + "year_id": 6984, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6985, + "make_id": 4313, + "model_id": 6938, + "year_id": 6984, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6986, + "make_id": 4313, + "model_id": 6938, + "year_id": 6984, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6987, + "make_id": 4313, + "model_id": 6938, + "year_id": 6984, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 6988, + "make_id": 4313, + "model_id": 6938, + "year_id": 6984, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6989, + "make_id": 4313, + "model_id": 6938, + "year_id": 6984, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6990, + "make_id": 4313, + "model_id": 6938, + "year_id": 6990, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6991, + "make_id": 4313, + "model_id": 6938, + "year_id": 6990, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6992, + "make_id": 4313, + "model_id": 6938, + "year_id": 6990, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6993, + "make_id": 4313, + "model_id": 6938, + "year_id": 6990, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6994, + "make_id": 4313, + "model_id": 6938, + "year_id": 6990, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6995, + "make_id": 4313, + "model_id": 6938, + "year_id": 6990, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6996, + "make_id": 4313, + "model_id": 6938, + "year_id": 6990, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6997, + "make_id": 4313, + "model_id": 6938, + "year_id": 6997, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 6998, + "make_id": 4313, + "model_id": 6938, + "year_id": 6997, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 6999, + "make_id": 4313, + "model_id": 6938, + "year_id": 6997, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7000, + "make_id": 4313, + "model_id": 6938, + "year_id": 6997, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7001, + "make_id": 4313, + "model_id": 6938, + "year_id": 6997, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7002, + "make_id": 4313, + "model_id": 6938, + "year_id": 6997, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7003, + "make_id": 4313, + "model_id": 6938, + "year_id": 6997, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7004, + "make_id": 4313, + "model_id": 6938, + "year_id": 7004, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7005, + "make_id": 4313, + "model_id": 6938, + "year_id": 7004, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7006, + "make_id": 4313, + "model_id": 6938, + "year_id": 7004, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7007, + "make_id": 4313, + "model_id": 6938, + "year_id": 7004, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7008, + "make_id": 4313, + "model_id": 6938, + "year_id": 7004, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7009, + "make_id": 4313, + "model_id": 6938, + "year_id": 7004, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7010, + "make_id": 4313, + "model_id": 6938, + "year_id": 7004, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7011, + "make_id": 4313, + "model_id": 6938, + "year_id": 7011, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7012, + "make_id": 4313, + "model_id": 6938, + "year_id": 7011, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7013, + "make_id": 4313, + "model_id": 6938, + "year_id": 7011, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7014, + "make_id": 4313, + "model_id": 6938, + "year_id": 7011, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7015, + "make_id": 4313, + "model_id": 6938, + "year_id": 7011, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7016, + "make_id": 4313, + "model_id": 6938, + "year_id": 7011, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7017, + "make_id": 4313, + "model_id": 6938, + "year_id": 7011, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7018, + "make_id": 4313, + "model_id": 6938, + "year_id": 7011, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7019, + "make_id": 4313, + "model_id": 6938, + "year_id": 7011, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7020, + "make_id": 4313, + "model_id": 6938, + "year_id": 7020, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7021, + "make_id": 4313, + "model_id": 6938, + "year_id": 7020, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7022, + "make_id": 4313, + "model_id": 6938, + "year_id": 7020, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7023, + "make_id": 4313, + "model_id": 6938, + "year_id": 7020, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7024, + "make_id": 4313, + "model_id": 6938, + "year_id": 7020, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7025, + "make_id": 4313, + "model_id": 6938, + "year_id": 7020, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7026, + "make_id": 4313, + "model_id": 6938, + "year_id": 7020, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7027, + "make_id": 4313, + "model_id": 6938, + "year_id": 7027, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7028, + "make_id": 4313, + "model_id": 6938, + "year_id": 7027, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7029, + "make_id": 4313, + "model_id": 6938, + "year_id": 7027, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7030, + "make_id": 4313, + "model_id": 6938, + "year_id": 7027, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7031, + "make_id": 4313, + "model_id": 6938, + "year_id": 7027, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7032, + "make_id": 4313, + "model_id": 6938, + "year_id": 7027, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7033, + "make_id": 4313, + "model_id": 6938, + "year_id": 7027, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7034, + "make_id": 4313, + "model_id": 6938, + "year_id": 7027, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7035, + "make_id": 4313, + "model_id": 6938, + "year_id": 7027, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7036, + "make_id": 4313, + "model_id": 6938, + "year_id": 7027, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7037, + "make_id": 4313, + "model_id": 6938, + "year_id": 7037, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7038, + "make_id": 4313, + "model_id": 6938, + "year_id": 7037, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7039, + "make_id": 4313, + "model_id": 6938, + "year_id": 7037, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7040, + "make_id": 4313, + "model_id": 6938, + "year_id": 7037, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7041, + "make_id": 4313, + "model_id": 6938, + "year_id": 7037, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7042, + "make_id": 4313, + "model_id": 6938, + "year_id": 7037, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7043, + "make_id": 4313, + "model_id": 6938, + "year_id": 7037, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7044, + "make_id": 4313, + "model_id": 6938, + "year_id": 7037, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7045, + "make_id": 4313, + "model_id": 6938, + "year_id": 7037, + "cylinders": 6, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7046, + "make_id": 4313, + "model_id": 6938, + "year_id": 7046, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7047, + "make_id": 4313, + "model_id": 6938, + "year_id": 7046, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7048, + "make_id": 4313, + "model_id": 6938, + "year_id": 7046, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7049, + "make_id": 4313, + "model_id": 6938, + "year_id": 7046, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7050, + "make_id": 4313, + "model_id": 6938, + "year_id": 7046, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7051, + "make_id": 4313, + "model_id": 6938, + "year_id": 7046, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7052, + "make_id": 4313, + "model_id": 6938, + "year_id": 7052, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7053, + "make_id": 4313, + "model_id": 6938, + "year_id": 7052, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7054, + "make_id": 4313, + "model_id": 6938, + "year_id": 7052, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7055, + "make_id": 4313, + "model_id": 6938, + "year_id": 7052, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7056, + "make_id": 4313, + "model_id": 6938, + "year_id": 7052, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7057, + "make_id": 4313, + "model_id": 6938, + "year_id": 7052, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7058, + "make_id": 4313, + "model_id": 6938, + "year_id": 7058, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7059, + "make_id": 4313, + "model_id": 6938, + "year_id": 7058, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7060, + "make_id": 4313, + "model_id": 6938, + "year_id": 7058, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7061, + "make_id": 4313, + "model_id": 6938, + "year_id": 7058, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7062, + "make_id": 4313, + "model_id": 6938, + "year_id": 7058, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7063, + "make_id": 4313, + "model_id": 6938, + "year_id": 7058, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7064, + "make_id": 4313, + "model_id": 6938, + "year_id": 7064, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7065, + "make_id": 4313, + "model_id": 6938, + "year_id": 7064, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7066, + "make_id": 4313, + "model_id": 6938, + "year_id": 7064, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7067, + "make_id": 4313, + "model_id": 6938, + "year_id": 7064, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7068, + "make_id": 4313, + "model_id": 6938, + "year_id": 7064, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7069, + "make_id": 4313, + "model_id": 6938, + "year_id": 7064, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7070, + "make_id": 4313, + "model_id": 6938, + "year_id": 7070, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7071, + "make_id": 4313, + "model_id": 6938, + "year_id": 7070, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7072, + "make_id": 4313, + "model_id": 6938, + "year_id": 7070, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7073, + "make_id": 4313, + "model_id": 6938, + "year_id": 7070, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7074, + "make_id": 4313, + "model_id": 6938, + "year_id": 7070, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7075, + "make_id": 4313, + "model_id": 6938, + "year_id": 7070, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7076, + "make_id": 4313, + "model_id": 6938, + "year_id": 7070, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7077, + "make_id": 4313, + "model_id": 6938, + "year_id": 7070, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7078, + "make_id": 4313, + "model_id": 6938, + "year_id": 7078, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7079, + "make_id": 4313, + "model_id": 6938, + "year_id": 7078, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7080, + "make_id": 4313, + "model_id": 6938, + "year_id": 7078, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7081, + "make_id": 4313, + "model_id": 6938, + "year_id": 7078, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7082, + "make_id": 4313, + "model_id": 6938, + "year_id": 7078, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7083, + "make_id": 4313, + "model_id": 6938, + "year_id": 7078, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7084, + "make_id": 4313, + "model_id": 6938, + "year_id": 7084, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7085, + "make_id": 4313, + "model_id": 6938, + "year_id": 7084, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7086, + "make_id": 4313, + "model_id": 6938, + "year_id": 7084, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7087, + "make_id": 4313, + "model_id": 6938, + "year_id": 7084, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7088, + "make_id": 4313, + "model_id": 6938, + "year_id": 7084, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7089, + "make_id": 4313, + "model_id": 6938, + "year_id": 7084, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7090, + "make_id": 4313, + "model_id": 6938, + "year_id": 7090, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7091, + "make_id": 4313, + "model_id": 6938, + "year_id": 7090, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7092, + "make_id": 4313, + "model_id": 6938, + "year_id": 7090, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7093, + "make_id": 4313, + "model_id": 6938, + "year_id": 7090, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7094, + "make_id": 4313, + "model_id": 6938, + "year_id": 7090, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7095, + "make_id": 4313, + "model_id": 6938, + "year_id": 7090, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7096, + "make_id": 4313, + "model_id": 6938, + "year_id": 7096, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7097, + "make_id": 4313, + "model_id": 7097, + "year_id": 7097, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7098, + "make_id": 4313, + "model_id": 7097, + "year_id": 7097, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7099, + "make_id": 4313, + "model_id": 7099, + "year_id": 7099, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7100, + "make_id": 4313, + "model_id": 7099, + "year_id": 7099, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7101, + "make_id": 4313, + "model_id": 7099, + "year_id": 7101, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7102, + "make_id": 4313, + "model_id": 7099, + "year_id": 7101, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7103, + "make_id": 4313, + "model_id": 7099, + "year_id": 7103, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7104, + "make_id": 4313, + "model_id": 7099, + "year_id": 7103, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7105, + "make_id": 4313, + "model_id": 7099, + "year_id": 7105, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7106, + "make_id": 4313, + "model_id": 7099, + "year_id": 7105, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7107, + "make_id": 4313, + "model_id": 7099, + "year_id": 7107, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7108, + "make_id": 4313, + "model_id": 7099, + "year_id": 7107, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7109, + "make_id": 4313, + "model_id": 7099, + "year_id": 7109, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7110, + "make_id": 4313, + "model_id": 7099, + "year_id": 7109, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7111, + "make_id": 4313, + "model_id": 7099, + "year_id": 7111, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7112, + "make_id": 4313, + "model_id": 7099, + "year_id": 7111, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7113, + "make_id": 4313, + "model_id": 7099, + "year_id": 7113, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7114, + "make_id": 4313, + "model_id": 7099, + "year_id": 7113, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7115, + "make_id": 4313, + "model_id": 7099, + "year_id": 7115, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 7116, + "make_id": 4313, + "model_id": 7099, + "year_id": 7115, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 7117, + "make_id": 4313, + "model_id": 7117, + "year_id": 7117, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7118, + "make_id": 4313, + "model_id": 7117, + "year_id": 7117, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7119, + "make_id": 4313, + "model_id": 7117, + "year_id": 7117, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7120, + "make_id": 4313, + "model_id": 7117, + "year_id": 7117, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7121, + "make_id": 4313, + "model_id": 7117, + "year_id": 7117, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7122, + "make_id": 4313, + "model_id": 7117, + "year_id": 7117, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7123, + "make_id": 4313, + "model_id": 7117, + "year_id": 7117, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7124, + "make_id": 4313, + "model_id": 7117, + "year_id": 7117, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7125, + "make_id": 4313, + "model_id": 7117, + "year_id": 7117, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7126, + "make_id": 4313, + "model_id": 7117, + "year_id": 7117, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7127, + "make_id": 4313, + "model_id": 7117, + "year_id": 7127, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7128, + "make_id": 4313, + "model_id": 7117, + "year_id": 7127, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7129, + "make_id": 4313, + "model_id": 7117, + "year_id": 7127, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7130, + "make_id": 4313, + "model_id": 7117, + "year_id": 7127, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7131, + "make_id": 4313, + "model_id": 7117, + "year_id": 7127, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7132, + "make_id": 4313, + "model_id": 7117, + "year_id": 7127, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7133, + "make_id": 4313, + "model_id": 7117, + "year_id": 7127, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7134, + "make_id": 4313, + "model_id": 7117, + "year_id": 7127, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7135, + "make_id": 4313, + "model_id": 7117, + "year_id": 7127, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7136, + "make_id": 4313, + "model_id": 7117, + "year_id": 7127, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7137, + "make_id": 4313, + "model_id": 7117, + "year_id": 7137, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7138, + "make_id": 4313, + "model_id": 7117, + "year_id": 7137, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7139, + "make_id": 4313, + "model_id": 7117, + "year_id": 7137, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7140, + "make_id": 4313, + "model_id": 7117, + "year_id": 7137, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7141, + "make_id": 4313, + "model_id": 7117, + "year_id": 7137, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7142, + "make_id": 4313, + "model_id": 7117, + "year_id": 7137, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7143, + "make_id": 4313, + "model_id": 7117, + "year_id": 7137, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7144, + "make_id": 4313, + "model_id": 7117, + "year_id": 7137, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7145, + "make_id": 4313, + "model_id": 7117, + "year_id": 7137, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7146, + "make_id": 4313, + "model_id": 7117, + "year_id": 7137, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7147, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7148, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7149, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7150, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7151, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7152, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7153, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7154, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7155, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7156, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7157, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7158, + "make_id": 4313, + "model_id": 7117, + "year_id": 7147, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7159, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7160, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7161, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7162, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7163, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7164, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7165, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7166, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7167, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7168, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7169, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7170, + "make_id": 4313, + "model_id": 7117, + "year_id": 7159, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7171, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7172, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7173, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7174, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7175, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7176, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7177, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7178, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7179, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7180, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7181, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7182, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7183, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7184, + "make_id": 4313, + "model_id": 7117, + "year_id": 7171, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7185, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7186, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7187, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7188, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7189, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7190, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7191, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7192, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7193, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7194, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7195, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7196, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7197, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7198, + "make_id": 4313, + "model_id": 7117, + "year_id": 7185, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7199, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7200, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7201, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7202, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7203, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7204, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7205, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7206, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7207, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7208, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7209, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7210, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7211, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7212, + "make_id": 4313, + "model_id": 7117, + "year_id": 7199, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7213, + "make_id": 4313, + "model_id": 7213, + "year_id": 7213, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7214, + "make_id": 4313, + "model_id": 7213, + "year_id": 7213, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7215, + "make_id": 4313, + "model_id": 7213, + "year_id": 7215, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7216, + "make_id": 4313, + "model_id": 7213, + "year_id": 7215, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7217, + "make_id": 4313, + "model_id": 7213, + "year_id": 7217, + "cylinders": 8, + "displacement": 6, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7218, + "make_id": 4313, + "model_id": 7213, + "year_id": 7217, + "cylinders": 8, + "displacement": 6, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7219, + "make_id": 4313, + "model_id": 7219, + "year_id": 7219, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7220, + "make_id": 4313, + "model_id": 7220, + "year_id": 7220, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7221, + "make_id": 4313, + "model_id": 7221, + "year_id": 7221, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7222, + "make_id": 4313, + "model_id": 7221, + "year_id": 7222, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7223, + "make_id": 4313, + "model_id": 7221, + "year_id": 7222, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7224, + "make_id": 4313, + "model_id": 7224, + "year_id": 7224, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7225, + "make_id": 4313, + "model_id": 7224, + "year_id": 7224, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7226, + "make_id": 4313, + "model_id": 7224, + "year_id": 7224, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7227, + "make_id": 4313, + "model_id": 7224, + "year_id": 7224, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7228, + "make_id": 4313, + "model_id": 7224, + "year_id": 7224, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7229, + "make_id": 4313, + "model_id": 7224, + "year_id": 7229, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7230, + "make_id": 4313, + "model_id": 7224, + "year_id": 7229, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7231, + "make_id": 4313, + "model_id": 7224, + "year_id": 7229, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7232, + "make_id": 4313, + "model_id": 7224, + "year_id": 7229, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7233, + "make_id": 4313, + "model_id": 7224, + "year_id": 7229, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7234, + "make_id": 4313, + "model_id": 7224, + "year_id": 7234, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7235, + "make_id": 4313, + "model_id": 7224, + "year_id": 7234, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7236, + "make_id": 4313, + "model_id": 7224, + "year_id": 7234, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7237, + "make_id": 4313, + "model_id": 7224, + "year_id": 7234, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7238, + "make_id": 4313, + "model_id": 7224, + "year_id": 7234, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7239, + "make_id": 4313, + "model_id": 7224, + "year_id": 7234, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7240, + "make_id": 4313, + "model_id": 7224, + "year_id": 7234, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7241, + "make_id": 4313, + "model_id": 7224, + "year_id": 7234, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7242, + "make_id": 4313, + "model_id": 7224, + "year_id": 7242, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7243, + "make_id": 4313, + "model_id": 7224, + "year_id": 7242, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7244, + "make_id": 4313, + "model_id": 7224, + "year_id": 7242, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7245, + "make_id": 4313, + "model_id": 7224, + "year_id": 7242, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7246, + "make_id": 4313, + "model_id": 7224, + "year_id": 7246, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7247, + "make_id": 4313, + "model_id": 7224, + "year_id": 7246, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7248, + "make_id": 4313, + "model_id": 7224, + "year_id": 7246, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7249, + "make_id": 4313, + "model_id": 7224, + "year_id": 7246, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7250, + "make_id": 4313, + "model_id": 7224, + "year_id": 7250, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7251, + "make_id": 4313, + "model_id": 7224, + "year_id": 7250, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7252, + "make_id": 4313, + "model_id": 7224, + "year_id": 7250, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7253, + "make_id": 4313, + "model_id": 7224, + "year_id": 7250, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7254, + "make_id": 4313, + "model_id": 7224, + "year_id": 7254, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7255, + "make_id": 4313, + "model_id": 7224, + "year_id": 7254, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7256, + "make_id": 4313, + "model_id": 7224, + "year_id": 7254, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7257, + "make_id": 4313, + "model_id": 7224, + "year_id": 7254, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7258, + "make_id": 4313, + "model_id": 7224, + "year_id": 7258, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7259, + "make_id": 4313, + "model_id": 7224, + "year_id": 7258, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7260, + "make_id": 4313, + "model_id": 7224, + "year_id": 7258, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7261, + "make_id": 4313, + "model_id": 7224, + "year_id": 7261, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7262, + "make_id": 4313, + "model_id": 7224, + "year_id": 7261, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7263, + "make_id": 4313, + "model_id": 7224, + "year_id": 7261, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7264, + "make_id": 4313, + "model_id": 7224, + "year_id": 7261, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 7265, + "make_id": 4313, + "model_id": 7224, + "year_id": 7265, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7266, + "make_id": 4313, + "model_id": 7224, + "year_id": 7265, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7267, + "make_id": 4313, + "model_id": 7224, + "year_id": 7265, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7268, + "make_id": 4313, + "model_id": 7224, + "year_id": 7265, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 7269, + "make_id": 4313, + "model_id": 7224, + "year_id": 7265, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 7270, + "make_id": 4313, + "model_id": 7270, + "year_id": 7270, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7271, + "make_id": 4313, + "model_id": 7270, + "year_id": 7270, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7272, + "make_id": 4313, + "model_id": 7270, + "year_id": 7270, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7273, + "make_id": 4313, + "model_id": 7270, + "year_id": 7273, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7274, + "make_id": 4313, + "model_id": 7274, + "year_id": 7274, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7275, + "make_id": 4313, + "model_id": 7274, + "year_id": 7275, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7276, + "make_id": 4313, + "model_id": 7274, + "year_id": 7276, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7277, + "make_id": 4313, + "model_id": 7274, + "year_id": 7277, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7278, + "make_id": 4313, + "model_id": 7274, + "year_id": 7278, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7279, + "make_id": 4313, + "model_id": 7279, + "year_id": 7279, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7280, + "make_id": 4313, + "model_id": 7279, + "year_id": 7279, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7281, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7282, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7283, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7284, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7285, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7286, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7287, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7288, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7289, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7290, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7291, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7292, + "make_id": 4313, + "model_id": 7281, + "year_id": 7281, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7293, + "make_id": 4313, + "model_id": 7293, + "year_id": 7293, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7294, + "make_id": 4313, + "model_id": 7293, + "year_id": 7293, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7295, + "make_id": 4313, + "model_id": 7293, + "year_id": 7293, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7296, + "make_id": 4313, + "model_id": 7293, + "year_id": 7293, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7297, + "make_id": 4313, + "model_id": 7293, + "year_id": 7293, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7298, + "make_id": 4313, + "model_id": 7293, + "year_id": 7298, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7299, + "make_id": 4313, + "model_id": 7293, + "year_id": 7298, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7300, + "make_id": 4313, + "model_id": 7293, + "year_id": 7298, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7301, + "make_id": 4313, + "model_id": 7293, + "year_id": 7298, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7302, + "make_id": 4313, + "model_id": 7293, + "year_id": 7298, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7303, + "make_id": 4313, + "model_id": 7293, + "year_id": 7303, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7304, + "make_id": 4313, + "model_id": 7293, + "year_id": 7303, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7305, + "make_id": 4313, + "model_id": 7293, + "year_id": 7303, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7306, + "make_id": 4313, + "model_id": 7293, + "year_id": 7303, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7307, + "make_id": 4313, + "model_id": 7293, + "year_id": 7303, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7308, + "make_id": 4313, + "model_id": 7293, + "year_id": 7303, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7309, + "make_id": 4313, + "model_id": 7293, + "year_id": 7303, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7310, + "make_id": 4313, + "model_id": 7293, + "year_id": 7303, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7311, + "make_id": 4313, + "model_id": 7293, + "year_id": 7311, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7312, + "make_id": 4313, + "model_id": 7293, + "year_id": 7311, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7313, + "make_id": 4313, + "model_id": 7293, + "year_id": 7311, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7314, + "make_id": 4313, + "model_id": 7293, + "year_id": 7311, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7315, + "make_id": 4313, + "model_id": 7293, + "year_id": 7315, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7316, + "make_id": 4313, + "model_id": 7293, + "year_id": 7315, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7317, + "make_id": 4313, + "model_id": 7293, + "year_id": 7315, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7318, + "make_id": 4313, + "model_id": 7293, + "year_id": 7315, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7319, + "make_id": 4313, + "model_id": 7293, + "year_id": 7319, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7320, + "make_id": 4313, + "model_id": 7293, + "year_id": 7319, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7321, + "make_id": 4313, + "model_id": 7293, + "year_id": 7319, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7322, + "make_id": 4313, + "model_id": 7293, + "year_id": 7319, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7323, + "make_id": 4313, + "model_id": 7293, + "year_id": 7323, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7324, + "make_id": 4313, + "model_id": 7293, + "year_id": 7323, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7325, + "make_id": 4313, + "model_id": 7293, + "year_id": 7323, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7326, + "make_id": 4313, + "model_id": 7293, + "year_id": 7323, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7327, + "make_id": 4313, + "model_id": 7293, + "year_id": 7327, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7328, + "make_id": 4313, + "model_id": 7293, + "year_id": 7327, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7329, + "make_id": 4313, + "model_id": 7293, + "year_id": 7327, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7330, + "make_id": 4313, + "model_id": 7293, + "year_id": 7330, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7331, + "make_id": 4313, + "model_id": 7293, + "year_id": 7330, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7332, + "make_id": 4313, + "model_id": 7293, + "year_id": 7330, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7333, + "make_id": 4313, + "model_id": 7293, + "year_id": 7330, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 7334, + "make_id": 4313, + "model_id": 7293, + "year_id": 7334, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7335, + "make_id": 4313, + "model_id": 7293, + "year_id": 7334, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7336, + "make_id": 4313, + "model_id": 7293, + "year_id": 7334, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 7337, + "make_id": 4313, + "model_id": 7293, + "year_id": 7334, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7338, + "make_id": 4313, + "model_id": 7293, + "year_id": 7334, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 7339, + "make_id": 4313, + "model_id": 7339, + "year_id": 7339, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7340, + "make_id": 4313, + "model_id": 7339, + "year_id": 7339, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7341, + "make_id": 4313, + "model_id": 7339, + "year_id": 7339, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7342, + "make_id": 4313, + "model_id": 7339, + "year_id": 7342, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7343, + "make_id": 4313, + "model_id": 7343, + "year_id": 7343, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7344, + "make_id": 4313, + "model_id": 7344, + "year_id": 7344, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7345, + "make_id": 4313, + "model_id": 7344, + "year_id": 7344, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7346, + "make_id": 4313, + "model_id": 7344, + "year_id": 7344, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7347, + "make_id": 4313, + "model_id": 7344, + "year_id": 7344, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7348, + "make_id": 4313, + "model_id": 7344, + "year_id": 7348, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7349, + "make_id": 4313, + "model_id": 7344, + "year_id": 7348, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7350, + "make_id": 4313, + "model_id": 7344, + "year_id": 7348, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7351, + "make_id": 4313, + "model_id": 7344, + "year_id": 7348, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7352, + "make_id": 4313, + "model_id": 7344, + "year_id": 7352, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7353, + "make_id": 4313, + "model_id": 7344, + "year_id": 7352, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7354, + "make_id": 4313, + "model_id": 7344, + "year_id": 7352, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7355, + "make_id": 4313, + "model_id": 7344, + "year_id": 7352, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7356, + "make_id": 4313, + "model_id": 7344, + "year_id": 7356, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7357, + "make_id": 4313, + "model_id": 7344, + "year_id": 7356, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7358, + "make_id": 4313, + "model_id": 7344, + "year_id": 7356, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7359, + "make_id": 4313, + "model_id": 7344, + "year_id": 7356, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7360, + "make_id": 4313, + "model_id": 7344, + "year_id": 7360, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7361, + "make_id": 4313, + "model_id": 7344, + "year_id": 7360, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7362, + "make_id": 4313, + "model_id": 7344, + "year_id": 7360, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7363, + "make_id": 4313, + "model_id": 7344, + "year_id": 7360, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7364, + "make_id": 4313, + "model_id": 7364, + "year_id": 7364, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7365, + "make_id": 4313, + "model_id": 7364, + "year_id": 7364, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7366, + "make_id": 4313, + "model_id": 7364, + "year_id": 7364, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7367, + "make_id": 4313, + "model_id": 7364, + "year_id": 7364, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7368, + "make_id": 4313, + "model_id": 7364, + "year_id": 7368, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7369, + "make_id": 4313, + "model_id": 7364, + "year_id": 7368, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7370, + "make_id": 4313, + "model_id": 7364, + "year_id": 7368, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7371, + "make_id": 4313, + "model_id": 7364, + "year_id": 7368, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7372, + "make_id": 4313, + "model_id": 7364, + "year_id": 7372, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7373, + "make_id": 4313, + "model_id": 7364, + "year_id": 7372, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7374, + "make_id": 4313, + "model_id": 7364, + "year_id": 7372, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7375, + "make_id": 4313, + "model_id": 7364, + "year_id": 7372, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7376, + "make_id": 4313, + "model_id": 7364, + "year_id": 7376, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7377, + "make_id": 4313, + "model_id": 7364, + "year_id": 7376, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7378, + "make_id": 4313, + "model_id": 7364, + "year_id": 7376, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7379, + "make_id": 4313, + "model_id": 7364, + "year_id": 7376, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7380, + "make_id": 4313, + "model_id": 7364, + "year_id": 7380, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7381, + "make_id": 4313, + "model_id": 7364, + "year_id": 7380, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7382, + "make_id": 4313, + "model_id": 7364, + "year_id": 7380, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7383, + "make_id": 4313, + "model_id": 7364, + "year_id": 7380, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7384, + "make_id": 4313, + "model_id": 7384, + "year_id": 7384, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7385, + "make_id": 4313, + "model_id": 7384, + "year_id": 7384, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7386, + "make_id": 4313, + "model_id": 7384, + "year_id": 7386, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7387, + "make_id": 4313, + "model_id": 7384, + "year_id": 7386, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7388, + "make_id": 4313, + "model_id": 7384, + "year_id": 7388, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7389, + "make_id": 4313, + "model_id": 7384, + "year_id": 7388, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7390, + "make_id": 4313, + "model_id": 7390, + "year_id": 7390, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7391, + "make_id": 4313, + "model_id": 7390, + "year_id": 7390, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7392, + "make_id": 4313, + "model_id": 7390, + "year_id": 7392, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7393, + "make_id": 4313, + "model_id": 7390, + "year_id": 7392, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7394, + "make_id": 4313, + "model_id": 7390, + "year_id": 7394, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7395, + "make_id": 4313, + "model_id": 7390, + "year_id": 7394, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7396, + "make_id": 4313, + "model_id": 7390, + "year_id": 7396, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7397, + "make_id": 4313, + "model_id": 7390, + "year_id": 7396, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7398, + "make_id": 4313, + "model_id": 7398, + "year_id": 7398, + "cylinders": 4, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7399, + "make_id": 4313, + "model_id": 7398, + "year_id": 7398, + "cylinders": 4, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7400, + "make_id": 4313, + "model_id": 7398, + "year_id": 7400, + "cylinders": 4, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7401, + "make_id": 4313, + "model_id": 7398, + "year_id": 7400, + "cylinders": 4, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7402, + "make_id": 4313, + "model_id": 7398, + "year_id": 7402, + "cylinders": 4, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7403, + "make_id": 4313, + "model_id": 7398, + "year_id": 7402, + "cylinders": 4, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7404, + "make_id": 4313, + "model_id": 7398, + "year_id": 7404, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7405, + "make_id": 4313, + "model_id": 7398, + "year_id": 7404, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7406, + "make_id": 4313, + "model_id": 7406, + "year_id": 7406, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 7407, + "make_id": 4313, + "model_id": 7406, + "year_id": 7407, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 7408, + "make_id": 4313, + "model_id": 7406, + "year_id": 7408, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 7409, + "make_id": 4313, + "model_id": 7409, + "year_id": 7409, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7410, + "make_id": 4313, + "model_id": 7409, + "year_id": 7409, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7411, + "make_id": 4313, + "model_id": 7409, + "year_id": 7411, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7412, + "make_id": 4313, + "model_id": 7409, + "year_id": 7411, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7413, + "make_id": 4313, + "model_id": 7409, + "year_id": 7413, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7414, + "make_id": 4313, + "model_id": 7409, + "year_id": 7413, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7415, + "make_id": 4313, + "model_id": 7409, + "year_id": 7415, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7416, + "make_id": 4313, + "model_id": 7409, + "year_id": 7415, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7417, + "make_id": 4313, + "model_id": 7417, + "year_id": 7417, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7418, + "make_id": 4313, + "model_id": 7417, + "year_id": 7418, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7419, + "make_id": 4313, + "model_id": 7419, + "year_id": 7419, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7420, + "make_id": 4313, + "model_id": 7419, + "year_id": 7419, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7421, + "make_id": 4313, + "model_id": 7419, + "year_id": 7419, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7422, + "make_id": 4313, + "model_id": 7419, + "year_id": 7422, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7423, + "make_id": 4313, + "model_id": 7419, + "year_id": 7422, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7424, + "make_id": 4313, + "model_id": 7419, + "year_id": 7422, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7425, + "make_id": 4313, + "model_id": 7419, + "year_id": 7422, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7426, + "make_id": 4313, + "model_id": 7419, + "year_id": 7426, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7427, + "make_id": 4313, + "model_id": 7419, + "year_id": 7426, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7428, + "make_id": 4313, + "model_id": 7419, + "year_id": 7426, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7429, + "make_id": 4313, + "model_id": 7429, + "year_id": 7429, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7430, + "make_id": 4313, + "model_id": 7430, + "year_id": 7430, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7431, + "make_id": 4313, + "model_id": 7431, + "year_id": 7431, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7432, + "make_id": 4313, + "model_id": 7432, + "year_id": 7432, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7433, + "make_id": 4313, + "model_id": 7433, + "year_id": 7433, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7434, + "make_id": 4313, + "model_id": 7433, + "year_id": 7433, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7435, + "make_id": 4313, + "model_id": 7433, + "year_id": 7435, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7436, + "make_id": 4313, + "model_id": 7433, + "year_id": 7435, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7437, + "make_id": 4313, + "model_id": 7433, + "year_id": 7437, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7438, + "make_id": 4313, + "model_id": 7433, + "year_id": 7437, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7439, + "make_id": 4313, + "model_id": 7433, + "year_id": 7439, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7440, + "make_id": 4313, + "model_id": 7433, + "year_id": 7439, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7441, + "make_id": 4313, + "model_id": 7433, + "year_id": 7441, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7442, + "make_id": 4313, + "model_id": 7433, + "year_id": 7441, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7443, + "make_id": 4313, + "model_id": 7433, + "year_id": 7443, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7444, + "make_id": 4313, + "model_id": 7433, + "year_id": 7443, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7445, + "make_id": 4313, + "model_id": 7433, + "year_id": 7445, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7446, + "make_id": 4313, + "model_id": 7433, + "year_id": 7445, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7447, + "make_id": 4313, + "model_id": 7433, + "year_id": 7447, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7448, + "make_id": 4313, + "model_id": 7433, + "year_id": 7447, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7449, + "make_id": 4313, + "model_id": 7433, + "year_id": 7449, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7450, + "make_id": 4313, + "model_id": 7433, + "year_id": 7449, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7451, + "make_id": 4313, + "model_id": 7433, + "year_id": 7451, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7452, + "make_id": 4313, + "model_id": 7433, + "year_id": 7451, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7453, + "make_id": 4313, + "model_id": 7453, + "year_id": 7453, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7454, + "make_id": 4313, + "model_id": 7453, + "year_id": 7454, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7455, + "make_id": 4313, + "model_id": 7455, + "year_id": 7455, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7456, + "make_id": 4313, + "model_id": 7456, + "year_id": 7456, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7457, + "make_id": 4313, + "model_id": 7456, + "year_id": 7456, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7458, + "make_id": 4313, + "model_id": 7458, + "year_id": 7458, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7459, + "make_id": 4313, + "model_id": 7458, + "year_id": 7459, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7460, + "make_id": 4313, + "model_id": 7458, + "year_id": 7459, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7461, + "make_id": 4313, + "model_id": 7458, + "year_id": 7461, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7462, + "make_id": 4313, + "model_id": 7458, + "year_id": 7461, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7463, + "make_id": 4313, + "model_id": 7463, + "year_id": 7463, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7464, + "make_id": 4313, + "model_id": 7463, + "year_id": 7464, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7465, + "make_id": 4313, + "model_id": 7463, + "year_id": 7465, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7466, + "make_id": 4313, + "model_id": 7463, + "year_id": 7465, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7467, + "make_id": 4313, + "model_id": 7463, + "year_id": 7467, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7468, + "make_id": 4313, + "model_id": 7463, + "year_id": 7467, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7469, + "make_id": 4313, + "model_id": 7469, + "year_id": 7469, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7470, + "make_id": 4313, + "model_id": 7469, + "year_id": 7469, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7471, + "make_id": 4313, + "model_id": 7469, + "year_id": 7471, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7472, + "make_id": 4313, + "model_id": 7469, + "year_id": 7471, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7473, + "make_id": 4313, + "model_id": 7469, + "year_id": 7473, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7474, + "make_id": 4313, + "model_id": 7469, + "year_id": 7473, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7475, + "make_id": 4313, + "model_id": 7469, + "year_id": 7475, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7476, + "make_id": 4313, + "model_id": 7469, + "year_id": 7475, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7477, + "make_id": 4313, + "model_id": 7469, + "year_id": 7477, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7478, + "make_id": 4313, + "model_id": 7469, + "year_id": 7477, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7479, + "make_id": 4313, + "model_id": 7469, + "year_id": 7479, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7480, + "make_id": 4313, + "model_id": 7469, + "year_id": 7479, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7481, + "make_id": 4313, + "model_id": 7469, + "year_id": 7481, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7482, + "make_id": 4313, + "model_id": 7469, + "year_id": 7482, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7483, + "make_id": 4313, + "model_id": 7469, + "year_id": 7483, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7484, + "make_id": 4313, + "model_id": 7469, + "year_id": 7483, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7485, + "make_id": 4313, + "model_id": 7469, + "year_id": 7485, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7486, + "make_id": 4313, + "model_id": 7469, + "year_id": 7485, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7487, + "make_id": 4313, + "model_id": 7469, + "year_id": 7487, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7488, + "make_id": 4313, + "model_id": 7469, + "year_id": 7487, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7489, + "make_id": 4313, + "model_id": 7469, + "year_id": 7487, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7490, + "make_id": 4313, + "model_id": 7469, + "year_id": 7487, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7491, + "make_id": 4313, + "model_id": 7469, + "year_id": 7491, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7492, + "make_id": 4313, + "model_id": 7469, + "year_id": 7491, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7493, + "make_id": 4313, + "model_id": 7469, + "year_id": 7491, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7494, + "make_id": 4313, + "model_id": 7469, + "year_id": 7491, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7495, + "make_id": 4313, + "model_id": 7469, + "year_id": 7491, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7496, + "make_id": 4313, + "model_id": 7469, + "year_id": 7491, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7497, + "make_id": 4313, + "model_id": 7469, + "year_id": 7497, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7498, + "make_id": 4313, + "model_id": 7469, + "year_id": 7497, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7499, + "make_id": 4313, + "model_id": 7469, + "year_id": 7497, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7500, + "make_id": 4313, + "model_id": 7469, + "year_id": 7497, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7501, + "make_id": 4313, + "model_id": 7469, + "year_id": 7497, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7502, + "make_id": 4313, + "model_id": 7469, + "year_id": 7497, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7503, + "make_id": 4313, + "model_id": 7469, + "year_id": 7503, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7504, + "make_id": 4313, + "model_id": 7469, + "year_id": 7503, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7505, + "make_id": 4313, + "model_id": 7469, + "year_id": 7503, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7506, + "make_id": 4313, + "model_id": 7469, + "year_id": 7503, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7507, + "make_id": 4313, + "model_id": 7469, + "year_id": 7507, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7508, + "make_id": 4313, + "model_id": 7469, + "year_id": 7507, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7509, + "make_id": 4313, + "model_id": 7469, + "year_id": 7507, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7510, + "make_id": 4313, + "model_id": 7469, + "year_id": 7507, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7511, + "make_id": 4313, + "model_id": 7469, + "year_id": 7511, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7512, + "make_id": 4313, + "model_id": 7469, + "year_id": 7511, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7513, + "make_id": 4313, + "model_id": 7469, + "year_id": 7511, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7514, + "make_id": 4313, + "model_id": 7469, + "year_id": 7511, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7515, + "make_id": 4313, + "model_id": 7469, + "year_id": 7511, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7516, + "make_id": 4313, + "model_id": 7469, + "year_id": 7516, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7517, + "make_id": 4313, + "model_id": 7469, + "year_id": 7516, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7518, + "make_id": 4313, + "model_id": 7469, + "year_id": 7516, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7519, + "make_id": 4313, + "model_id": 7469, + "year_id": 7516, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7520, + "make_id": 4313, + "model_id": 7469, + "year_id": 7516, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7521, + "make_id": 4313, + "model_id": 7469, + "year_id": 7521, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7522, + "make_id": 4313, + "model_id": 7469, + "year_id": 7521, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7523, + "make_id": 4313, + "model_id": 7469, + "year_id": 7521, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7524, + "make_id": 4313, + "model_id": 7469, + "year_id": 7524, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7525, + "make_id": 4313, + "model_id": 7469, + "year_id": 7524, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7526, + "make_id": 4313, + "model_id": 7469, + "year_id": 7526, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7527, + "make_id": 4313, + "model_id": 7469, + "year_id": 7526, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7528, + "make_id": 4313, + "model_id": 7469, + "year_id": 7528, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7529, + "make_id": 4313, + "model_id": 7469, + "year_id": 7528, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7530, + "make_id": 4313, + "model_id": 7469, + "year_id": 7530, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7531, + "make_id": 4313, + "model_id": 7469, + "year_id": 7530, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7532, + "make_id": 4313, + "model_id": 7532, + "year_id": 7532, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7533, + "make_id": 4313, + "model_id": 7532, + "year_id": 7532, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7534, + "make_id": 4313, + "model_id": 7532, + "year_id": 7534, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7535, + "make_id": 4313, + "model_id": 7532, + "year_id": 7534, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7536, + "make_id": 4313, + "model_id": 7532, + "year_id": 7536, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7537, + "make_id": 4313, + "model_id": 7532, + "year_id": 7536, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7538, + "make_id": 4313, + "model_id": 7538, + "year_id": 7538, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7539, + "make_id": 4313, + "model_id": 7538, + "year_id": 7538, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7540, + "make_id": 4313, + "model_id": 7538, + "year_id": 7538, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7541, + "make_id": 4313, + "model_id": 7538, + "year_id": 7538, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7542, + "make_id": 4313, + "model_id": 7538, + "year_id": 7538, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7543, + "make_id": 4313, + "model_id": 7538, + "year_id": 7543, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7544, + "make_id": 4313, + "model_id": 7538, + "year_id": 7543, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7545, + "make_id": 4313, + "model_id": 7538, + "year_id": 7543, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7546, + "make_id": 4313, + "model_id": 7538, + "year_id": 7543, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7547, + "make_id": 4313, + "model_id": 7538, + "year_id": 7543, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7548, + "make_id": 4313, + "model_id": 7538, + "year_id": 7548, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7549, + "make_id": 4313, + "model_id": 7538, + "year_id": 7548, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7550, + "make_id": 4313, + "model_id": 7538, + "year_id": 7548, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7551, + "make_id": 4313, + "model_id": 7538, + "year_id": 7548, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7552, + "make_id": 4313, + "model_id": 7538, + "year_id": 7552, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7553, + "make_id": 4313, + "model_id": 7553, + "year_id": 7553, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7554, + "make_id": 4313, + "model_id": 7553, + "year_id": 7553, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7555, + "make_id": 4313, + "model_id": 7553, + "year_id": 7555, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7556, + "make_id": 4313, + "model_id": 7553, + "year_id": 7555, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7557, + "make_id": 4313, + "model_id": 7557, + "year_id": 7557, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7558, + "make_id": 4313, + "model_id": 7557, + "year_id": 7557, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7559, + "make_id": 4313, + "model_id": 7557, + "year_id": 7557, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7560, + "make_id": 4313, + "model_id": 7557, + "year_id": 7557, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7561, + "make_id": 4313, + "model_id": 7557, + "year_id": 7557, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7562, + "make_id": 4313, + "model_id": 7557, + "year_id": 7562, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7563, + "make_id": 4313, + "model_id": 7557, + "year_id": 7562, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7564, + "make_id": 4313, + "model_id": 7557, + "year_id": 7562, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7565, + "make_id": 4313, + "model_id": 7557, + "year_id": 7562, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7566, + "make_id": 4313, + "model_id": 7557, + "year_id": 7562, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7567, + "make_id": 4313, + "model_id": 7557, + "year_id": 7567, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7568, + "make_id": 4313, + "model_id": 7557, + "year_id": 7567, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7569, + "make_id": 4313, + "model_id": 7557, + "year_id": 7567, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7570, + "make_id": 4313, + "model_id": 7557, + "year_id": 7567, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7571, + "make_id": 4313, + "model_id": 7557, + "year_id": 7571, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7572, + "make_id": 4313, + "model_id": 7572, + "year_id": 7572, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7573, + "make_id": 4313, + "model_id": 7572, + "year_id": 7572, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7574, + "make_id": 4313, + "model_id": 7572, + "year_id": 7574, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7575, + "make_id": 4313, + "model_id": 7572, + "year_id": 7574, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7576, + "make_id": 4313, + "model_id": 7576, + "year_id": 7576, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7577, + "make_id": 4313, + "model_id": 7576, + "year_id": 7576, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7578, + "make_id": 4313, + "model_id": 7576, + "year_id": 7576, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7579, + "make_id": 4313, + "model_id": 7576, + "year_id": 7576, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7580, + "make_id": 4313, + "model_id": 7576, + "year_id": 7580, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7581, + "make_id": 4313, + "model_id": 7576, + "year_id": 7580, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7582, + "make_id": 4313, + "model_id": 7576, + "year_id": 7580, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7583, + "make_id": 4313, + "model_id": 7576, + "year_id": 7583, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7584, + "make_id": 4313, + "model_id": 7576, + "year_id": 7583, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7585, + "make_id": 4313, + "model_id": 7585, + "year_id": 7585, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7586, + "make_id": 4313, + "model_id": 7585, + "year_id": 7585, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7587, + "make_id": 4313, + "model_id": 7585, + "year_id": 7585, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7588, + "make_id": 4313, + "model_id": 7585, + "year_id": 7585, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7589, + "make_id": 4313, + "model_id": 7585, + "year_id": 7585, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7590, + "make_id": 4313, + "model_id": 7585, + "year_id": 7585, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7591, + "make_id": 4313, + "model_id": 7585, + "year_id": 7585, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7592, + "make_id": 4313, + "model_id": 7585, + "year_id": 7585, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7593, + "make_id": 4313, + "model_id": 7585, + "year_id": 7585, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7594, + "make_id": 4313, + "model_id": 7585, + "year_id": 7585, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7595, + "make_id": 4313, + "model_id": 7585, + "year_id": 7595, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7596, + "make_id": 4313, + "model_id": 7585, + "year_id": 7595, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7597, + "make_id": 4313, + "model_id": 7585, + "year_id": 7595, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7598, + "make_id": 4313, + "model_id": 7585, + "year_id": 7595, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7599, + "make_id": 4313, + "model_id": 7585, + "year_id": 7595, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7600, + "make_id": 4313, + "model_id": 7585, + "year_id": 7595, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7601, + "make_id": 4313, + "model_id": 7585, + "year_id": 7595, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7602, + "make_id": 4313, + "model_id": 7585, + "year_id": 7595, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7603, + "make_id": 4313, + "model_id": 7585, + "year_id": 7595, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7604, + "make_id": 4313, + "model_id": 7585, + "year_id": 7604, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7605, + "make_id": 4313, + "model_id": 7585, + "year_id": 7604, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7606, + "make_id": 4313, + "model_id": 7585, + "year_id": 7604, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7607, + "make_id": 4313, + "model_id": 7585, + "year_id": 7604, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7608, + "make_id": 4313, + "model_id": 7585, + "year_id": 7604, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7609, + "make_id": 4313, + "model_id": 7585, + "year_id": 7604, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7610, + "make_id": 4313, + "model_id": 7585, + "year_id": 7610, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7611, + "make_id": 4313, + "model_id": 7585, + "year_id": 7610, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7612, + "make_id": 4313, + "model_id": 7585, + "year_id": 7610, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7613, + "make_id": 4313, + "model_id": 7585, + "year_id": 7610, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7614, + "make_id": 4313, + "model_id": 7585, + "year_id": 7610, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7615, + "make_id": 4313, + "model_id": 7585, + "year_id": 7610, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7616, + "make_id": 4313, + "model_id": 7585, + "year_id": 7616, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7617, + "make_id": 4313, + "model_id": 7585, + "year_id": 7616, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7618, + "make_id": 4313, + "model_id": 7585, + "year_id": 7616, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7619, + "make_id": 4313, + "model_id": 7585, + "year_id": 7616, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7620, + "make_id": 4313, + "model_id": 7620, + "year_id": 7620, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7621, + "make_id": 4313, + "model_id": 7620, + "year_id": 7620, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7622, + "make_id": 4313, + "model_id": 7620, + "year_id": 7620, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7623, + "make_id": 4313, + "model_id": 7620, + "year_id": 7620, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7624, + "make_id": 4313, + "model_id": 7620, + "year_id": 7620, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7625, + "make_id": 4313, + "model_id": 7620, + "year_id": 7620, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7626, + "make_id": 4313, + "model_id": 7620, + "year_id": 7620, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7627, + "make_id": 4313, + "model_id": 7620, + "year_id": 7620, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7628, + "make_id": 4313, + "model_id": 7620, + "year_id": 7620, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7629, + "make_id": 4313, + "model_id": 7620, + "year_id": 7620, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7630, + "make_id": 4313, + "model_id": 7620, + "year_id": 7630, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7631, + "make_id": 4313, + "model_id": 7620, + "year_id": 7630, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7632, + "make_id": 4313, + "model_id": 7620, + "year_id": 7630, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7633, + "make_id": 4313, + "model_id": 7620, + "year_id": 7630, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7634, + "make_id": 4313, + "model_id": 7620, + "year_id": 7630, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7635, + "make_id": 4313, + "model_id": 7620, + "year_id": 7630, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7636, + "make_id": 4313, + "model_id": 7620, + "year_id": 7630, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7637, + "make_id": 4313, + "model_id": 7620, + "year_id": 7630, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7638, + "make_id": 4313, + "model_id": 7620, + "year_id": 7630, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7639, + "make_id": 4313, + "model_id": 7620, + "year_id": 7639, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7640, + "make_id": 4313, + "model_id": 7620, + "year_id": 7639, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7641, + "make_id": 4313, + "model_id": 7620, + "year_id": 7639, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7642, + "make_id": 4313, + "model_id": 7620, + "year_id": 7639, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7643, + "make_id": 4313, + "model_id": 7620, + "year_id": 7639, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7644, + "make_id": 4313, + "model_id": 7620, + "year_id": 7639, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7645, + "make_id": 4313, + "model_id": 7620, + "year_id": 7645, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7646, + "make_id": 4313, + "model_id": 7620, + "year_id": 7645, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7647, + "make_id": 4313, + "model_id": 7620, + "year_id": 7645, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7648, + "make_id": 4313, + "model_id": 7620, + "year_id": 7645, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7649, + "make_id": 4313, + "model_id": 7620, + "year_id": 7645, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7650, + "make_id": 4313, + "model_id": 7620, + "year_id": 7645, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7651, + "make_id": 4313, + "model_id": 7620, + "year_id": 7651, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7652, + "make_id": 4313, + "model_id": 7620, + "year_id": 7651, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7653, + "make_id": 4313, + "model_id": 7620, + "year_id": 7651, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7654, + "make_id": 4313, + "model_id": 7620, + "year_id": 7651, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7655, + "make_id": 4313, + "model_id": 7620, + "year_id": 7651, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7656, + "make_id": 4313, + "model_id": 7620, + "year_id": 7651, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7657, + "make_id": 4313, + "model_id": 7657, + "year_id": 7657, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7658, + "make_id": 4313, + "model_id": 7657, + "year_id": 7657, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7659, + "make_id": 4313, + "model_id": 7657, + "year_id": 7657, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7660, + "make_id": 4313, + "model_id": 7657, + "year_id": 7657, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7661, + "make_id": 4313, + "model_id": 7657, + "year_id": 7661, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7662, + "make_id": 4313, + "model_id": 7657, + "year_id": 7661, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7663, + "make_id": 4313, + "model_id": 7657, + "year_id": 7661, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7664, + "make_id": 4313, + "model_id": 7657, + "year_id": 7664, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7665, + "make_id": 4313, + "model_id": 7657, + "year_id": 7664, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7666, + "make_id": 4313, + "model_id": 7657, + "year_id": 7664, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7667, + "make_id": 4313, + "model_id": 7657, + "year_id": 7667, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7668, + "make_id": 4313, + "model_id": 7657, + "year_id": 7667, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7669, + "make_id": 4313, + "model_id": 7657, + "year_id": 7667, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7670, + "make_id": 4313, + "model_id": 7657, + "year_id": 7667, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7671, + "make_id": 4313, + "model_id": 7657, + "year_id": 7671, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7672, + "make_id": 4313, + "model_id": 7657, + "year_id": 7671, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7673, + "make_id": 4313, + "model_id": 7657, + "year_id": 7671, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7674, + "make_id": 4313, + "model_id": 7657, + "year_id": 7671, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7675, + "make_id": 4313, + "model_id": 7657, + "year_id": 7675, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7676, + "make_id": 4313, + "model_id": 7657, + "year_id": 7675, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7677, + "make_id": 4313, + "model_id": 7657, + "year_id": 7675, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7678, + "make_id": 4313, + "model_id": 7657, + "year_id": 7675, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7679, + "make_id": 4313, + "model_id": 7657, + "year_id": 7675, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7680, + "make_id": 4313, + "model_id": 7657, + "year_id": 7675, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7681, + "make_id": 4313, + "model_id": 7657, + "year_id": 7675, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7682, + "make_id": 4313, + "model_id": 7657, + "year_id": 7682, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7683, + "make_id": 4313, + "model_id": 7657, + "year_id": 7682, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7684, + "make_id": 4313, + "model_id": 7657, + "year_id": 7682, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7685, + "make_id": 4313, + "model_id": 7657, + "year_id": 7682, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7686, + "make_id": 4313, + "model_id": 7657, + "year_id": 7686, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7687, + "make_id": 4313, + "model_id": 7657, + "year_id": 7686, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7688, + "make_id": 4313, + "model_id": 7657, + "year_id": 7686, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7689, + "make_id": 4313, + "model_id": 7657, + "year_id": 7686, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7690, + "make_id": 4313, + "model_id": 7657, + "year_id": 7686, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7691, + "make_id": 4313, + "model_id": 7657, + "year_id": 7686, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7692, + "make_id": 4313, + "model_id": 7657, + "year_id": 7692, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7693, + "make_id": 4313, + "model_id": 7657, + "year_id": 7692, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7694, + "make_id": 4313, + "model_id": 7657, + "year_id": 7692, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7695, + "make_id": 4313, + "model_id": 7657, + "year_id": 7692, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7696, + "make_id": 4313, + "model_id": 7657, + "year_id": 7692, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7697, + "make_id": 4313, + "model_id": 7657, + "year_id": 7692, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7698, + "make_id": 4313, + "model_id": 7657, + "year_id": 7692, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7699, + "make_id": 4313, + "model_id": 7657, + "year_id": 7692, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7700, + "make_id": 4313, + "model_id": 7657, + "year_id": 7700, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7701, + "make_id": 4313, + "model_id": 7657, + "year_id": 7700, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7702, + "make_id": 4313, + "model_id": 7657, + "year_id": 7700, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7703, + "make_id": 4313, + "model_id": 7657, + "year_id": 7700, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7704, + "make_id": 4313, + "model_id": 7657, + "year_id": 7700, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7705, + "make_id": 4313, + "model_id": 7657, + "year_id": 7700, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7706, + "make_id": 4313, + "model_id": 7657, + "year_id": 7700, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7707, + "make_id": 4313, + "model_id": 7657, + "year_id": 7700, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7708, + "make_id": 4313, + "model_id": 7657, + "year_id": 7708, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7709, + "make_id": 4313, + "model_id": 7657, + "year_id": 7708, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7710, + "make_id": 4313, + "model_id": 7657, + "year_id": 7708, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7711, + "make_id": 4313, + "model_id": 7657, + "year_id": 7708, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7712, + "make_id": 4313, + "model_id": 7657, + "year_id": 7708, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7713, + "make_id": 4313, + "model_id": 7657, + "year_id": 7708, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7714, + "make_id": 4313, + "model_id": 7657, + "year_id": 7708, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7715, + "make_id": 4313, + "model_id": 7657, + "year_id": 7708, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7716, + "make_id": 4313, + "model_id": 7657, + "year_id": 7716, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7717, + "make_id": 4313, + "model_id": 7657, + "year_id": 7716, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7718, + "make_id": 4313, + "model_id": 7657, + "year_id": 7716, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7719, + "make_id": 4313, + "model_id": 7657, + "year_id": 7716, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7720, + "make_id": 4313, + "model_id": 7657, + "year_id": 7716, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7721, + "make_id": 4313, + "model_id": 7657, + "year_id": 7716, + "cylinders": 8, + "displacement": 5.3, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7722, + "make_id": 4313, + "model_id": 7657, + "year_id": 7722, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7723, + "make_id": 4313, + "model_id": 7657, + "year_id": 7722, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7724, + "make_id": 4313, + "model_id": 7657, + "year_id": 7722, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7725, + "make_id": 4313, + "model_id": 7657, + "year_id": 7722, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7726, + "make_id": 4313, + "model_id": 7657, + "year_id": 7726, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7727, + "make_id": 4313, + "model_id": 7657, + "year_id": 7726, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7728, + "make_id": 4313, + "model_id": 7657, + "year_id": 7726, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7729, + "make_id": 4313, + "model_id": 7657, + "year_id": 7726, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7730, + "make_id": 4313, + "model_id": 7657, + "year_id": 7726, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7731, + "make_id": 4313, + "model_id": 7657, + "year_id": 7731, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7732, + "make_id": 4313, + "model_id": 7657, + "year_id": 7731, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7733, + "make_id": 4313, + "model_id": 7657, + "year_id": 7731, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7734, + "make_id": 4313, + "model_id": 7657, + "year_id": 7731, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7735, + "make_id": 4313, + "model_id": 7657, + "year_id": 7731, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7736, + "make_id": 4313, + "model_id": 7657, + "year_id": 7731, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7737, + "make_id": 4313, + "model_id": 7657, + "year_id": 7737, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7738, + "make_id": 4313, + "model_id": 7657, + "year_id": 7737, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7739, + "make_id": 4313, + "model_id": 7657, + "year_id": 7739, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7740, + "make_id": 4313, + "model_id": 7657, + "year_id": 7739, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7741, + "make_id": 4313, + "model_id": 7657, + "year_id": 7741, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7742, + "make_id": 4313, + "model_id": 7657, + "year_id": 7741, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7743, + "make_id": 4313, + "model_id": 7657, + "year_id": 7743, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7744, + "make_id": 4313, + "model_id": 7657, + "year_id": 7743, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7745, + "make_id": 4313, + "model_id": 7745, + "year_id": 7745, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7746, + "make_id": 4313, + "model_id": 7746, + "year_id": 7746, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7747, + "make_id": 4313, + "model_id": 7747, + "year_id": 7747, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7748, + "make_id": 4313, + "model_id": 7747, + "year_id": 7747, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7749, + "make_id": 4313, + "model_id": 7747, + "year_id": 7749, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7750, + "make_id": 4313, + "model_id": 7747, + "year_id": 7749, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7751, + "make_id": 4313, + "model_id": 7751, + "year_id": 7751, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7752, + "make_id": 4313, + "model_id": 7751, + "year_id": 7751, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7753, + "make_id": 4313, + "model_id": 7751, + "year_id": 7753, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7754, + "make_id": 4313, + "model_id": 7751, + "year_id": 7753, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7755, + "make_id": 4313, + "model_id": 7751, + "year_id": 7755, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7756, + "make_id": 4313, + "model_id": 7751, + "year_id": 7755, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7757, + "make_id": 4313, + "model_id": 7751, + "year_id": 7757, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7758, + "make_id": 4313, + "model_id": 7751, + "year_id": 7757, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7759, + "make_id": 4313, + "model_id": 7751, + "year_id": 7759, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7760, + "make_id": 4313, + "model_id": 7751, + "year_id": 7759, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7761, + "make_id": 4313, + "model_id": 7751, + "year_id": 7761, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7762, + "make_id": 4313, + "model_id": 7751, + "year_id": 7761, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 7763, + "make_id": 4313, + "model_id": 7763, + "year_id": 7763, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7764, + "make_id": 4313, + "model_id": 7764, + "year_id": 7764, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7765, + "make_id": 4313, + "model_id": 7764, + "year_id": 7764, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7766, + "make_id": 4313, + "model_id": 7764, + "year_id": 7766, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7767, + "make_id": 4313, + "model_id": 7764, + "year_id": 7766, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7768, + "make_id": 4313, + "model_id": 7768, + "year_id": 7768, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7769, + "make_id": 4313, + "model_id": 7768, + "year_id": 7768, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7770, + "make_id": 4313, + "model_id": 7768, + "year_id": 7768, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7771, + "make_id": 4313, + "model_id": 7768, + "year_id": 7768, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7772, + "make_id": 4313, + "model_id": 7768, + "year_id": 7772, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7773, + "make_id": 4313, + "model_id": 7768, + "year_id": 7772, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7774, + "make_id": 4313, + "model_id": 7768, + "year_id": 7772, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7775, + "make_id": 4313, + "model_id": 7768, + "year_id": 7772, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7776, + "make_id": 4313, + "model_id": 7768, + "year_id": 7772, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7777, + "make_id": 4313, + "model_id": 7768, + "year_id": 7772, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7778, + "make_id": 4313, + "model_id": 7768, + "year_id": 7778, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7779, + "make_id": 4313, + "model_id": 7768, + "year_id": 7778, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7780, + "make_id": 4313, + "model_id": 7768, + "year_id": 7778, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7781, + "make_id": 4313, + "model_id": 7768, + "year_id": 7778, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7782, + "make_id": 4313, + "model_id": 7768, + "year_id": 7778, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7783, + "make_id": 4313, + "model_id": 7768, + "year_id": 7778, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7784, + "make_id": 4313, + "model_id": 7768, + "year_id": 7784, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7785, + "make_id": 4313, + "model_id": 7768, + "year_id": 7784, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7786, + "make_id": 4313, + "model_id": 7768, + "year_id": 7784, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7787, + "make_id": 4313, + "model_id": 7768, + "year_id": 7784, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7788, + "make_id": 4313, + "model_id": 7768, + "year_id": 7788, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7789, + "make_id": 4313, + "model_id": 7768, + "year_id": 7788, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7790, + "make_id": 4313, + "model_id": 7768, + "year_id": 7788, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7791, + "make_id": 4313, + "model_id": 7768, + "year_id": 7788, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7792, + "make_id": 4313, + "model_id": 7768, + "year_id": 7792, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7793, + "make_id": 4313, + "model_id": 7768, + "year_id": 7792, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7794, + "make_id": 4313, + "model_id": 7768, + "year_id": 7792, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7795, + "make_id": 4313, + "model_id": 7768, + "year_id": 7792, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7796, + "make_id": 4313, + "model_id": 7796, + "year_id": 7796, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7797, + "make_id": 4313, + "model_id": 7796, + "year_id": 7796, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7798, + "make_id": 4313, + "model_id": 7796, + "year_id": 7796, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7799, + "make_id": 4313, + "model_id": 7796, + "year_id": 7796, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7800, + "make_id": 4313, + "model_id": 7796, + "year_id": 7800, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7801, + "make_id": 4313, + "model_id": 7796, + "year_id": 7800, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7802, + "make_id": 4313, + "model_id": 7796, + "year_id": 7800, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7803, + "make_id": 4313, + "model_id": 7796, + "year_id": 7800, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7804, + "make_id": 4313, + "model_id": 7796, + "year_id": 7804, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7805, + "make_id": 4313, + "model_id": 7796, + "year_id": 7804, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7806, + "make_id": 4313, + "model_id": 7796, + "year_id": 7804, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7807, + "make_id": 4313, + "model_id": 7796, + "year_id": 7804, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7808, + "make_id": 4313, + "model_id": 7796, + "year_id": 7808, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7809, + "make_id": 4313, + "model_id": 7796, + "year_id": 7808, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7810, + "make_id": 4313, + "model_id": 7796, + "year_id": 7808, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7811, + "make_id": 4313, + "model_id": 7796, + "year_id": 7808, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7812, + "make_id": 4313, + "model_id": 7796, + "year_id": 7812, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7813, + "make_id": 4313, + "model_id": 7796, + "year_id": 7812, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7814, + "make_id": 4313, + "model_id": 7796, + "year_id": 7812, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7815, + "make_id": 4313, + "model_id": 7796, + "year_id": 7812, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7816, + "make_id": 4313, + "model_id": 7796, + "year_id": 7816, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7817, + "make_id": 4313, + "model_id": 7796, + "year_id": 7816, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7818, + "make_id": 4313, + "model_id": 7796, + "year_id": 7816, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7819, + "make_id": 4313, + "model_id": 7796, + "year_id": 7816, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7820, + "make_id": 4313, + "model_id": 7796, + "year_id": 7816, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7821, + "make_id": 4313, + "model_id": 7796, + "year_id": 7816, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7822, + "make_id": 4313, + "model_id": 7796, + "year_id": 7822, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7823, + "make_id": 4313, + "model_id": 7796, + "year_id": 7822, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7824, + "make_id": 4313, + "model_id": 7824, + "year_id": 7824, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7825, + "make_id": 4313, + "model_id": 7824, + "year_id": 7824, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7826, + "make_id": 4313, + "model_id": 7824, + "year_id": 7826, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7827, + "make_id": 4313, + "model_id": 7824, + "year_id": 7826, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7828, + "make_id": 4313, + "model_id": 7824, + "year_id": 7828, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7829, + "make_id": 4313, + "model_id": 7824, + "year_id": 7828, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7830, + "make_id": 4313, + "model_id": 7824, + "year_id": 7830, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7831, + "make_id": 4313, + "model_id": 7824, + "year_id": 7830, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7832, + "make_id": 4313, + "model_id": 7832, + "year_id": 7832, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7833, + "make_id": 4313, + "model_id": 7832, + "year_id": 7833, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7834, + "make_id": 4313, + "model_id": 7832, + "year_id": 7834, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7835, + "make_id": 4313, + "model_id": 7832, + "year_id": 7835, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7836, + "make_id": 4313, + "model_id": 7836, + "year_id": 7836, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7837, + "make_id": 4313, + "model_id": 7836, + "year_id": 7836, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7838, + "make_id": 4313, + "model_id": 7836, + "year_id": 7838, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7839, + "make_id": 4313, + "model_id": 7836, + "year_id": 7838, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7840, + "make_id": 4313, + "model_id": 7836, + "year_id": 7840, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7841, + "make_id": 4313, + "model_id": 7836, + "year_id": 7840, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7842, + "make_id": 4313, + "model_id": 7842, + "year_id": 7842, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7843, + "make_id": 4313, + "model_id": 7842, + "year_id": 7842, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7844, + "make_id": 4313, + "model_id": 7842, + "year_id": 7844, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7845, + "make_id": 4313, + "model_id": 7842, + "year_id": 7844, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7846, + "make_id": 4313, + "model_id": 7842, + "year_id": 7846, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7847, + "make_id": 4313, + "model_id": 7842, + "year_id": 7846, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7848, + "make_id": 4313, + "model_id": 7842, + "year_id": 7848, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7849, + "make_id": 4313, + "model_id": 7842, + "year_id": 7848, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7850, + "make_id": 4313, + "model_id": 7842, + "year_id": 7850, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7851, + "make_id": 4313, + "model_id": 7842, + "year_id": 7850, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7852, + "make_id": 4313, + "model_id": 7842, + "year_id": 7850, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7853, + "make_id": 4313, + "model_id": 7842, + "year_id": 7850, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7854, + "make_id": 4313, + "model_id": 7842, + "year_id": 7850, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7855, + "make_id": 4313, + "model_id": 7842, + "year_id": 7850, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7856, + "make_id": 4313, + "model_id": 7842, + "year_id": 7856, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7857, + "make_id": 4313, + "model_id": 7842, + "year_id": 7856, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7858, + "make_id": 4313, + "model_id": 7842, + "year_id": 7856, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7859, + "make_id": 4313, + "model_id": 7842, + "year_id": 7856, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7860, + "make_id": 4313, + "model_id": 7842, + "year_id": 7856, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7861, + "make_id": 4313, + "model_id": 7842, + "year_id": 7856, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7862, + "make_id": 4313, + "model_id": 7842, + "year_id": 7862, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7863, + "make_id": 4313, + "model_id": 7842, + "year_id": 7862, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7864, + "make_id": 4313, + "model_id": 7842, + "year_id": 7862, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7865, + "make_id": 4313, + "model_id": 7842, + "year_id": 7862, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7866, + "make_id": 4313, + "model_id": 7842, + "year_id": 7862, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7867, + "make_id": 4313, + "model_id": 7842, + "year_id": 7862, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7868, + "make_id": 4313, + "model_id": 7842, + "year_id": 7868, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7869, + "make_id": 4313, + "model_id": 7842, + "year_id": 7868, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7870, + "make_id": 4313, + "model_id": 7842, + "year_id": 7868, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7871, + "make_id": 4313, + "model_id": 7842, + "year_id": 7868, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7872, + "make_id": 4313, + "model_id": 7842, + "year_id": 7868, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7873, + "make_id": 4313, + "model_id": 7842, + "year_id": 7868, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7874, + "make_id": 4313, + "model_id": 7874, + "year_id": 7874, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7875, + "make_id": 4313, + "model_id": 7874, + "year_id": 7874, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7876, + "make_id": 4313, + "model_id": 7874, + "year_id": 7876, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7877, + "make_id": 4313, + "model_id": 7874, + "year_id": 7876, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7878, + "make_id": 4313, + "model_id": 7874, + "year_id": 7876, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7879, + "make_id": 4313, + "model_id": 7874, + "year_id": 7876, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7880, + "make_id": 4313, + "model_id": 7874, + "year_id": 7880, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7881, + "make_id": 4313, + "model_id": 7874, + "year_id": 7880, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7882, + "make_id": 4313, + "model_id": 7874, + "year_id": 7880, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7883, + "make_id": 4313, + "model_id": 7874, + "year_id": 7880, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7884, + "make_id": 4313, + "model_id": 7874, + "year_id": 7884, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7885, + "make_id": 4313, + "model_id": 7874, + "year_id": 7884, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7886, + "make_id": 4313, + "model_id": 7874, + "year_id": 7884, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7887, + "make_id": 4313, + "model_id": 7874, + "year_id": 7884, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7888, + "make_id": 4313, + "model_id": 7874, + "year_id": 7888, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7889, + "make_id": 4313, + "model_id": 7874, + "year_id": 7888, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7890, + "make_id": 4313, + "model_id": 7874, + "year_id": 7888, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7891, + "make_id": 4313, + "model_id": 7874, + "year_id": 7888, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7892, + "make_id": 4313, + "model_id": 7874, + "year_id": 7892, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7893, + "make_id": 4313, + "model_id": 7893, + "year_id": 7893, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7894, + "make_id": 4313, + "model_id": 7893, + "year_id": 7893, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7895, + "make_id": 4313, + "model_id": 7893, + "year_id": 7895, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7896, + "make_id": 4313, + "model_id": 7893, + "year_id": 7895, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7897, + "make_id": 4313, + "model_id": 7893, + "year_id": 7897, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7898, + "make_id": 4313, + "model_id": 7893, + "year_id": 7897, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7899, + "make_id": 4313, + "model_id": 7893, + "year_id": 7899, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7900, + "make_id": 4313, + "model_id": 7893, + "year_id": 7899, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7901, + "make_id": 4313, + "model_id": 7893, + "year_id": 7901, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7902, + "make_id": 4313, + "model_id": 7893, + "year_id": 7901, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7903, + "make_id": 4313, + "model_id": 7893, + "year_id": 7903, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7904, + "make_id": 4313, + "model_id": 7893, + "year_id": 7903, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7905, + "make_id": 4313, + "model_id": 7893, + "year_id": 7905, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7906, + "make_id": 4313, + "model_id": 7893, + "year_id": 7905, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7907, + "make_id": 4313, + "model_id": 7893, + "year_id": 7907, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7908, + "make_id": 4313, + "model_id": 7893, + "year_id": 7907, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7909, + "make_id": 4313, + "model_id": 7893, + "year_id": 7909, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7910, + "make_id": 4313, + "model_id": 7893, + "year_id": 7909, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7911, + "make_id": 4313, + "model_id": 7911, + "year_id": 7911, + "cylinders": 4, + "displacement": 1.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7912, + "make_id": 4313, + "model_id": 7911, + "year_id": 7911, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7913, + "make_id": 4313, + "model_id": 7911, + "year_id": 7913, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7914, + "make_id": 4313, + "model_id": 7911, + "year_id": 7913, + "cylinders": 4, + "displacement": 1.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 7915, + "make_id": 4313, + "model_id": 7915, + "year_id": 7915, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7916, + "make_id": 4313, + "model_id": 7915, + "year_id": 7916, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7917, + "make_id": 4313, + "model_id": 7915, + "year_id": 7917, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7918, + "make_id": 4313, + "model_id": 7915, + "year_id": 7918, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 7919, + "make_id": 4313, + "model_id": 7919, + "year_id": 7919, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7920, + "make_id": 4313, + "model_id": 7919, + "year_id": 7920, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 7921, + "make_id": 4313, + "model_id": 7921, + "year_id": 7921, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7922, + "make_id": 4313, + "model_id": 7921, + "year_id": 7921, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7923, + "make_id": 4313, + "model_id": 7921, + "year_id": 7923, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7924, + "make_id": 4313, + "model_id": 7921, + "year_id": 7923, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7925, + "make_id": 4313, + "model_id": 7921, + "year_id": 7923, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7926, + "make_id": 4313, + "model_id": 7921, + "year_id": 7926, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7927, + "make_id": 4313, + "model_id": 7921, + "year_id": 7926, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7928, + "make_id": 4313, + "model_id": 7921, + "year_id": 7928, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7929, + "make_id": 4313, + "model_id": 7921, + "year_id": 7928, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7930, + "make_id": 4313, + "model_id": 7930, + "year_id": 7930, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7931, + "make_id": 4313, + "model_id": 7930, + "year_id": 7930, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7932, + "make_id": 4313, + "model_id": 7930, + "year_id": 7930, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7933, + "make_id": 4313, + "model_id": 7930, + "year_id": 7930, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7934, + "make_id": 4313, + "model_id": 7930, + "year_id": 7930, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7935, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7936, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7937, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7938, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 7939, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7940, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7941, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7942, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7943, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7944, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7945, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7946, + "make_id": 4313, + "model_id": 7935, + "year_id": 7935, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7947, + "make_id": 4313, + "model_id": 7947, + "year_id": 7947, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7948, + "make_id": 4313, + "model_id": 7947, + "year_id": 7947, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7949, + "make_id": 4313, + "model_id": 7947, + "year_id": 7947, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7950, + "make_id": 4313, + "model_id": 7947, + "year_id": 7947, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7951, + "make_id": 4313, + "model_id": 7951, + "year_id": 7951, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7952, + "make_id": 4313, + "model_id": 7951, + "year_id": 7951, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7953, + "make_id": 4313, + "model_id": 7951, + "year_id": 7951, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7954, + "make_id": 4313, + "model_id": 7954, + "year_id": 7954, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7955, + "make_id": 4313, + "model_id": 7954, + "year_id": 7954, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7956, + "make_id": 4313, + "model_id": 7954, + "year_id": 7954, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7957, + "make_id": 4313, + "model_id": 7957, + "year_id": 7957, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7958, + "make_id": 4313, + "model_id": 7957, + "year_id": 7957, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7959, + "make_id": 4313, + "model_id": 7957, + "year_id": 7957, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7960, + "make_id": 4313, + "model_id": 7957, + "year_id": 7957, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 7961, + "make_id": 4313, + "model_id": 7961, + "year_id": 7961, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7962, + "make_id": 4313, + "model_id": 7962, + "year_id": 7962, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7963, + "make_id": 4313, + "model_id": 7962, + "year_id": 7962, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7964, + "make_id": 4313, + "model_id": 7962, + "year_id": 7964, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7965, + "make_id": 4313, + "model_id": 7962, + "year_id": 7964, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7966, + "make_id": 4313, + "model_id": 7962, + "year_id": 7966, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7967, + "make_id": 4313, + "model_id": 7962, + "year_id": 7967, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7968, + "make_id": 4313, + "model_id": 7962, + "year_id": 7967, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7969, + "make_id": 4313, + "model_id": 7962, + "year_id": 7969, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7970, + "make_id": 4313, + "model_id": 7962, + "year_id": 7969, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7971, + "make_id": 4313, + "model_id": 7962, + "year_id": 7971, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7972, + "make_id": 4313, + "model_id": 7962, + "year_id": 7971, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7973, + "make_id": 4313, + "model_id": 7973, + "year_id": 7973, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7974, + "make_id": 4313, + "model_id": 7973, + "year_id": 7973, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7975, + "make_id": 4313, + "model_id": 7973, + "year_id": 7973, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7976, + "make_id": 4313, + "model_id": 7973, + "year_id": 7973, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7977, + "make_id": 4313, + "model_id": 7973, + "year_id": 7973, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7978, + "make_id": 4313, + "model_id": 7978, + "year_id": 7978, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7979, + "make_id": 4313, + "model_id": 7978, + "year_id": 7979, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7980, + "make_id": 4313, + "model_id": 7978, + "year_id": 7980, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7981, + "make_id": 4313, + "model_id": 7978, + "year_id": 7981, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7982, + "make_id": 4313, + "model_id": 7978, + "year_id": 7982, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7983, + "make_id": 4313, + "model_id": 7978, + "year_id": 7982, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7984, + "make_id": 4313, + "model_id": 7978, + "year_id": 7984, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7985, + "make_id": 4313, + "model_id": 7978, + "year_id": 7984, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7986, + "make_id": 4313, + "model_id": 7986, + "year_id": 7986, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7987, + "make_id": 4313, + "model_id": 7986, + "year_id": 7986, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7988, + "make_id": 4313, + "model_id": 7986, + "year_id": 7986, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7989, + "make_id": 4313, + "model_id": 7986, + "year_id": 7986, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7990, + "make_id": 4313, + "model_id": 7990, + "year_id": 7990, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7991, + "make_id": 4313, + "model_id": 7990, + "year_id": 7990, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7992, + "make_id": 4313, + "model_id": 7990, + "year_id": 7990, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7993, + "make_id": 4313, + "model_id": 7990, + "year_id": 7993, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7994, + "make_id": 4313, + "model_id": 7990, + "year_id": 7993, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7995, + "make_id": 4313, + "model_id": 7990, + "year_id": 7993, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7996, + "make_id": 4313, + "model_id": 7990, + "year_id": 7996, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7997, + "make_id": 4313, + "model_id": 7990, + "year_id": 7996, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7998, + "make_id": 4313, + "model_id": 7990, + "year_id": 7996, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 7999, + "make_id": 4313, + "model_id": 7990, + "year_id": 7999, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8000, + "make_id": 4313, + "model_id": 7990, + "year_id": 7999, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8001, + "make_id": 4313, + "model_id": 7990, + "year_id": 7999, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8002, + "make_id": 4313, + "model_id": 7990, + "year_id": 8002, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8003, + "make_id": 4313, + "model_id": 7990, + "year_id": 8002, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8004, + "make_id": 4313, + "model_id": 7990, + "year_id": 8002, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8005, + "make_id": 4313, + "model_id": 7990, + "year_id": 8005, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8006, + "make_id": 4313, + "model_id": 7990, + "year_id": 8005, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8007, + "make_id": 4313, + "model_id": 7990, + "year_id": 8005, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8008, + "make_id": 4313, + "model_id": 7990, + "year_id": 8008, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8009, + "make_id": 4313, + "model_id": 7990, + "year_id": 8008, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8010, + "make_id": 4313, + "model_id": 7990, + "year_id": 8008, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8011, + "make_id": 4313, + "model_id": 7990, + "year_id": 8011, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8012, + "make_id": 4313, + "model_id": 7990, + "year_id": 8011, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8013, + "make_id": 4313, + "model_id": 7990, + "year_id": 8011, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8014, + "make_id": 4313, + "model_id": 7990, + "year_id": 8014, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8015, + "make_id": 4313, + "model_id": 7990, + "year_id": 8014, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8016, + "make_id": 4313, + "model_id": 7990, + "year_id": 8014, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8017, + "make_id": 4313, + "model_id": 7990, + "year_id": 8017, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8018, + "make_id": 4313, + "model_id": 7990, + "year_id": 8017, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8019, + "make_id": 4313, + "model_id": 7990, + "year_id": 8017, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8020, + "make_id": 4313, + "model_id": 7990, + "year_id": 8020, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8021, + "make_id": 4313, + "model_id": 7990, + "year_id": 8020, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8022, + "make_id": 4313, + "model_id": 7990, + "year_id": 8020, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8023, + "make_id": 4313, + "model_id": 7990, + "year_id": 8023, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8024, + "make_id": 4313, + "model_id": 7990, + "year_id": 8023, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8025, + "make_id": 4313, + "model_id": 7990, + "year_id": 8023, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8026, + "make_id": 4313, + "model_id": 7990, + "year_id": 8023, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8027, + "make_id": 4313, + "model_id": 7990, + "year_id": 8023, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8028, + "make_id": 4313, + "model_id": 7990, + "year_id": 8028, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8029, + "make_id": 4313, + "model_id": 7990, + "year_id": 8028, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8030, + "make_id": 4313, + "model_id": 7990, + "year_id": 8028, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8031, + "make_id": 4313, + "model_id": 7990, + "year_id": 8028, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8032, + "make_id": 4313, + "model_id": 7990, + "year_id": 8028, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8033, + "make_id": 4313, + "model_id": 8033, + "year_id": 8033, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8034, + "make_id": 4313, + "model_id": 8033, + "year_id": 8034, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8035, + "make_id": 4313, + "model_id": 8033, + "year_id": 8035, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8036, + "make_id": 4313, + "model_id": 8033, + "year_id": 8036, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8037, + "make_id": 4313, + "model_id": 8033, + "year_id": 8037, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8038, + "make_id": 4313, + "model_id": 8033, + "year_id": 8038, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8039, + "make_id": 4313, + "model_id": 8033, + "year_id": 8038, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8040, + "make_id": 4313, + "model_id": 8033, + "year_id": 8040, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8041, + "make_id": 4313, + "model_id": 8033, + "year_id": 8040, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8042, + "make_id": 4313, + "model_id": 8033, + "year_id": 8042, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8043, + "make_id": 4313, + "model_id": 8033, + "year_id": 8042, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8044, + "make_id": 4313, + "model_id": 8033, + "year_id": 8044, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8045, + "make_id": 4313, + "model_id": 8045, + "year_id": 8045, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Automatic" + }, + { + "id": 8046, + "make_id": 4313, + "model_id": 8045, + "year_id": 8046, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Automatic" + }, + { + "id": 8047, + "make_id": 4313, + "model_id": 8045, + "year_id": 8047, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 8048, + "make_id": 4313, + "model_id": 8045, + "year_id": 8048, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 8049, + "make_id": 4313, + "model_id": 8045, + "year_id": 8049, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 8050, + "make_id": 4313, + "model_id": 8045, + "year_id": 8050, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 8051, + "make_id": 4313, + "model_id": 8045, + "year_id": 8051, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 8052, + "make_id": 8052, + "model_id": 8052, + "year_id": 8052, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8053, + "make_id": 8052, + "model_id": 8052, + "year_id": 8052, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8054, + "make_id": 8052, + "model_id": 8052, + "year_id": 8052, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8055, + "make_id": 8052, + "model_id": 8052, + "year_id": 8055, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8056, + "make_id": 8052, + "model_id": 8052, + "year_id": 8055, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8057, + "make_id": 8052, + "model_id": 8052, + "year_id": 8055, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8058, + "make_id": 8052, + "model_id": 8052, + "year_id": 8058, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8059, + "make_id": 8052, + "model_id": 8052, + "year_id": 8058, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8060, + "make_id": 8052, + "model_id": 8052, + "year_id": 8058, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8061, + "make_id": 8052, + "model_id": 8052, + "year_id": 8061, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8062, + "make_id": 8052, + "model_id": 8052, + "year_id": 8061, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8063, + "make_id": 8052, + "model_id": 8052, + "year_id": 8061, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8064, + "make_id": 8052, + "model_id": 8052, + "year_id": 8064, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8065, + "make_id": 8052, + "model_id": 8052, + "year_id": 8064, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8066, + "make_id": 8052, + "model_id": 8052, + "year_id": 8064, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8067, + "make_id": 8052, + "model_id": 8052, + "year_id": 8064, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8068, + "make_id": 8052, + "model_id": 8052, + "year_id": 8064, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8069, + "make_id": 8052, + "model_id": 8052, + "year_id": 8064, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8070, + "make_id": 8052, + "model_id": 8052, + "year_id": 8070, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8071, + "make_id": 8052, + "model_id": 8052, + "year_id": 8070, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8072, + "make_id": 8052, + "model_id": 8052, + "year_id": 8070, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8073, + "make_id": 8052, + "model_id": 8052, + "year_id": 8070, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8074, + "make_id": 8052, + "model_id": 8074, + "year_id": 8074, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8075, + "make_id": 8052, + "model_id": 8074, + "year_id": 8074, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8076, + "make_id": 8052, + "model_id": 8074, + "year_id": 8074, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8077, + "make_id": 8052, + "model_id": 8074, + "year_id": 8074, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8078, + "make_id": 8052, + "model_id": 8074, + "year_id": 8078, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8079, + "make_id": 8052, + "model_id": 8074, + "year_id": 8078, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8080, + "make_id": 8052, + "model_id": 8074, + "year_id": 8080, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8081, + "make_id": 8052, + "model_id": 8074, + "year_id": 8080, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8082, + "make_id": 8052, + "model_id": 8074, + "year_id": 8082, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8083, + "make_id": 8052, + "model_id": 8074, + "year_id": 8082, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8084, + "make_id": 8052, + "model_id": 8074, + "year_id": 8084, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8085, + "make_id": 8052, + "model_id": 8074, + "year_id": 8084, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8086, + "make_id": 8052, + "model_id": 8074, + "year_id": 8086, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8087, + "make_id": 8052, + "model_id": 8074, + "year_id": 8086, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8088, + "make_id": 8052, + "model_id": 8074, + "year_id": 8086, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8089, + "make_id": 8052, + "model_id": 8074, + "year_id": 8086, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8090, + "make_id": 8052, + "model_id": 8074, + "year_id": 8090, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8091, + "make_id": 8052, + "model_id": 8074, + "year_id": 8090, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8092, + "make_id": 8052, + "model_id": 8074, + "year_id": 8090, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8093, + "make_id": 8052, + "model_id": 8074, + "year_id": 8090, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8094, + "make_id": 8052, + "model_id": 8074, + "year_id": 8090, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8095, + "make_id": 8052, + "model_id": 8074, + "year_id": 8095, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8096, + "make_id": 8052, + "model_id": 8074, + "year_id": 8095, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8097, + "make_id": 8052, + "model_id": 8074, + "year_id": 8095, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8098, + "make_id": 8052, + "model_id": 8074, + "year_id": 8095, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8099, + "make_id": 8052, + "model_id": 8074, + "year_id": 8095, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8100, + "make_id": 8052, + "model_id": 8074, + "year_id": 8095, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8101, + "make_id": 8052, + "model_id": 8074, + "year_id": 8101, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8102, + "make_id": 8052, + "model_id": 8074, + "year_id": 8101, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8103, + "make_id": 8052, + "model_id": 8074, + "year_id": 8101, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8104, + "make_id": 8052, + "model_id": 8074, + "year_id": 8101, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8105, + "make_id": 8052, + "model_id": 8074, + "year_id": 8101, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8106, + "make_id": 8052, + "model_id": 8074, + "year_id": 8101, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8107, + "make_id": 8052, + "model_id": 8074, + "year_id": 8107, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8108, + "make_id": 8052, + "model_id": 8074, + "year_id": 8107, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8109, + "make_id": 8052, + "model_id": 8074, + "year_id": 8107, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8110, + "make_id": 8052, + "model_id": 8074, + "year_id": 8107, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8111, + "make_id": 8052, + "model_id": 8074, + "year_id": 8107, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8112, + "make_id": 8052, + "model_id": 8074, + "year_id": 8112, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8113, + "make_id": 8052, + "model_id": 8074, + "year_id": 8112, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8114, + "make_id": 8052, + "model_id": 8074, + "year_id": 8112, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8115, + "make_id": 8052, + "model_id": 8074, + "year_id": 8112, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8116, + "make_id": 8052, + "model_id": 8074, + "year_id": 8112, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 8117, + "make_id": 8052, + "model_id": 8117, + "year_id": 8117, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8118, + "make_id": 8052, + "model_id": 8117, + "year_id": 8117, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8119, + "make_id": 8052, + "model_id": 8117, + "year_id": 8117, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8120, + "make_id": 8052, + "model_id": 8117, + "year_id": 8120, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8121, + "make_id": 8052, + "model_id": 8117, + "year_id": 8120, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8122, + "make_id": 8052, + "model_id": 8117, + "year_id": 8122, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8123, + "make_id": 8052, + "model_id": 8117, + "year_id": 8122, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8124, + "make_id": 8052, + "model_id": 8117, + "year_id": 8124, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8125, + "make_id": 8052, + "model_id": 8117, + "year_id": 8124, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8126, + "make_id": 8052, + "model_id": 8126, + "year_id": 8126, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8127, + "make_id": 8052, + "model_id": 8126, + "year_id": 8127, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8128, + "make_id": 8052, + "model_id": 8126, + "year_id": 8128, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8129, + "make_id": 8052, + "model_id": 8126, + "year_id": 8129, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8130, + "make_id": 8052, + "model_id": 8126, + "year_id": 8130, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8131, + "make_id": 8052, + "model_id": 8131, + "year_id": 8131, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8132, + "make_id": 8052, + "model_id": 8131, + "year_id": 8132, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8133, + "make_id": 8052, + "model_id": 8131, + "year_id": 8133, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8134, + "make_id": 8052, + "model_id": 8134, + "year_id": 8134, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8135, + "make_id": 8052, + "model_id": 8134, + "year_id": 8134, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8136, + "make_id": 8052, + "model_id": 8134, + "year_id": 8134, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8137, + "make_id": 8052, + "model_id": 8134, + "year_id": 8134, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8138, + "make_id": 8052, + "model_id": 8134, + "year_id": 8138, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8139, + "make_id": 8052, + "model_id": 8134, + "year_id": 8138, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8140, + "make_id": 8052, + "model_id": 8134, + "year_id": 8138, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8141, + "make_id": 8052, + "model_id": 8134, + "year_id": 8138, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8142, + "make_id": 8052, + "model_id": 8134, + "year_id": 8138, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8143, + "make_id": 8052, + "model_id": 8134, + "year_id": 8143, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8144, + "make_id": 8052, + "model_id": 8134, + "year_id": 8143, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8145, + "make_id": 8052, + "model_id": 8134, + "year_id": 8143, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8146, + "make_id": 8052, + "model_id": 8134, + "year_id": 8143, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8147, + "make_id": 8052, + "model_id": 8134, + "year_id": 8147, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8148, + "make_id": 8052, + "model_id": 8134, + "year_id": 8147, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8149, + "make_id": 8052, + "model_id": 8134, + "year_id": 8147, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8150, + "make_id": 8052, + "model_id": 8134, + "year_id": 8147, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8151, + "make_id": 8052, + "model_id": 8151, + "year_id": 8151, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8152, + "make_id": 8052, + "model_id": 8151, + "year_id": 8151, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8153, + "make_id": 8052, + "model_id": 8151, + "year_id": 8153, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8154, + "make_id": 8052, + "model_id": 8151, + "year_id": 8153, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8155, + "make_id": 8052, + "model_id": 8155, + "year_id": 8155, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8156, + "make_id": 8052, + "model_id": 8155, + "year_id": 8155, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8157, + "make_id": 8052, + "model_id": 8155, + "year_id": 8155, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8158, + "make_id": 8052, + "model_id": 8155, + "year_id": 8155, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8159, + "make_id": 8052, + "model_id": 8155, + "year_id": 8159, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8160, + "make_id": 8052, + "model_id": 8160, + "year_id": 8160, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8161, + "make_id": 8052, + "model_id": 8161, + "year_id": 8161, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8162, + "make_id": 8052, + "model_id": 8161, + "year_id": 8161, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8163, + "make_id": 8052, + "model_id": 8161, + "year_id": 8161, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8164, + "make_id": 8052, + "model_id": 8161, + "year_id": 8161, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8165, + "make_id": 8052, + "model_id": 8161, + "year_id": 8165, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8166, + "make_id": 8052, + "model_id": 8161, + "year_id": 8165, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8167, + "make_id": 8052, + "model_id": 8161, + "year_id": 8165, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8168, + "make_id": 8052, + "model_id": 8161, + "year_id": 8165, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8169, + "make_id": 8052, + "model_id": 8161, + "year_id": 8165, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8170, + "make_id": 8052, + "model_id": 8161, + "year_id": 8165, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8171, + "make_id": 8052, + "model_id": 8161, + "year_id": 8171, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8172, + "make_id": 8052, + "model_id": 8161, + "year_id": 8171, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8173, + "make_id": 8052, + "model_id": 8161, + "year_id": 8171, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8174, + "make_id": 8052, + "model_id": 8161, + "year_id": 8171, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8175, + "make_id": 8052, + "model_id": 8175, + "year_id": 8175, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8176, + "make_id": 8052, + "model_id": 8176, + "year_id": 8176, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8177, + "make_id": 8052, + "model_id": 8176, + "year_id": 8176, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8178, + "make_id": 8052, + "model_id": 8176, + "year_id": 8178, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8179, + "make_id": 8052, + "model_id": 8176, + "year_id": 8178, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8180, + "make_id": 8052, + "model_id": 8176, + "year_id": 8180, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8181, + "make_id": 8052, + "model_id": 8176, + "year_id": 8180, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8182, + "make_id": 8052, + "model_id": 8176, + "year_id": 8180, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8183, + "make_id": 8052, + "model_id": 8176, + "year_id": 8183, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8184, + "make_id": 8052, + "model_id": 8176, + "year_id": 8183, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8185, + "make_id": 8052, + "model_id": 8176, + "year_id": 8185, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8186, + "make_id": 8052, + "model_id": 8176, + "year_id": 8185, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8187, + "make_id": 8052, + "model_id": 8176, + "year_id": 8187, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8188, + "make_id": 8052, + "model_id": 8176, + "year_id": 8187, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8189, + "make_id": 8052, + "model_id": 8176, + "year_id": 8187, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8190, + "make_id": 8052, + "model_id": 8190, + "year_id": 8190, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8191, + "make_id": 8052, + "model_id": 8190, + "year_id": 8190, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8192, + "make_id": 8052, + "model_id": 8190, + "year_id": 8192, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8193, + "make_id": 8052, + "model_id": 8190, + "year_id": 8192, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8194, + "make_id": 8052, + "model_id": 8190, + "year_id": 8192, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8195, + "make_id": 8052, + "model_id": 8190, + "year_id": 8195, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8196, + "make_id": 8052, + "model_id": 8190, + "year_id": 8195, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8197, + "make_id": 8052, + "model_id": 8190, + "year_id": 8195, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8198, + "make_id": 8052, + "model_id": 8190, + "year_id": 8198, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8199, + "make_id": 8052, + "model_id": 8190, + "year_id": 8198, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8200, + "make_id": 8052, + "model_id": 8190, + "year_id": 8200, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8201, + "make_id": 8052, + "model_id": 8190, + "year_id": 8200, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8202, + "make_id": 8052, + "model_id": 8190, + "year_id": 8202, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8203, + "make_id": 8052, + "model_id": 8190, + "year_id": 8202, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8204, + "make_id": 8052, + "model_id": 8190, + "year_id": 8204, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8205, + "make_id": 8052, + "model_id": 8190, + "year_id": 8204, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8206, + "make_id": 8052, + "model_id": 8190, + "year_id": 8206, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8207, + "make_id": 8052, + "model_id": 8190, + "year_id": 8206, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8208, + "make_id": 8052, + "model_id": 8190, + "year_id": 8208, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8209, + "make_id": 8052, + "model_id": 8190, + "year_id": 8208, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8210, + "make_id": 8052, + "model_id": 8190, + "year_id": 8210, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8211, + "make_id": 8052, + "model_id": 8190, + "year_id": 8210, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8212, + "make_id": 8052, + "model_id": 8212, + "year_id": 8212, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8213, + "make_id": 8052, + "model_id": 8212, + "year_id": 8212, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8214, + "make_id": 8052, + "model_id": 8212, + "year_id": 8214, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8215, + "make_id": 8052, + "model_id": 8212, + "year_id": 8214, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8216, + "make_id": 8052, + "model_id": 8216, + "year_id": 8216, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8217, + "make_id": 8052, + "model_id": 8216, + "year_id": 8216, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8218, + "make_id": 8052, + "model_id": 8216, + "year_id": 8218, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8219, + "make_id": 8052, + "model_id": 8216, + "year_id": 8218, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8220, + "make_id": 8052, + "model_id": 8216, + "year_id": 8220, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8221, + "make_id": 8052, + "model_id": 8216, + "year_id": 8220, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8222, + "make_id": 8052, + "model_id": 8222, + "year_id": 8222, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8223, + "make_id": 8052, + "model_id": 8222, + "year_id": 8222, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 8224, + "make_id": 8052, + "model_id": 8224, + "year_id": 8224, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8225, + "make_id": 8052, + "model_id": 8224, + "year_id": 8224, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8226, + "make_id": 8052, + "model_id": 8224, + "year_id": 8224, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 8227, + "make_id": 8052, + "model_id": 8224, + "year_id": 8227, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8228, + "make_id": 8052, + "model_id": 8224, + "year_id": 8227, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8229, + "make_id": 8052, + "model_id": 8224, + "year_id": 8227, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 8230, + "make_id": 8052, + "model_id": 8224, + "year_id": 8230, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8231, + "make_id": 8052, + "model_id": 8224, + "year_id": 8230, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 8232, + "make_id": 8052, + "model_id": 8224, + "year_id": 8232, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8233, + "make_id": 8052, + "model_id": 8224, + "year_id": 8232, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 8234, + "make_id": 8052, + "model_id": 8234, + "year_id": 8234, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8235, + "make_id": 8052, + "model_id": 8234, + "year_id": 8234, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8236, + "make_id": 8052, + "model_id": 8234, + "year_id": 8234, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 8237, + "make_id": 8052, + "model_id": 8234, + "year_id": 8237, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8238, + "make_id": 8052, + "model_id": 8234, + "year_id": 8237, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8239, + "make_id": 8052, + "model_id": 8234, + "year_id": 8237, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 8240, + "make_id": 8052, + "model_id": 8234, + "year_id": 8240, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8241, + "make_id": 8052, + "model_id": 8234, + "year_id": 8240, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 8242, + "make_id": 8052, + "model_id": 8234, + "year_id": 8242, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 8243, + "make_id": 8052, + "model_id": 8234, + "year_id": 8242, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 8244, + "make_id": 8052, + "model_id": 8244, + "year_id": 8244, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8245, + "make_id": 8052, + "model_id": 8244, + "year_id": 8244, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8246, + "make_id": 8052, + "model_id": 8244, + "year_id": 8244, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8247, + "make_id": 8052, + "model_id": 8244, + "year_id": 8244, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8248, + "make_id": 8052, + "model_id": 8244, + "year_id": 8244, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8249, + "make_id": 8052, + "model_id": 8244, + "year_id": 8244, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8250, + "make_id": 8052, + "model_id": 8250, + "year_id": 8250, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8251, + "make_id": 8052, + "model_id": 8250, + "year_id": 8250, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8252, + "make_id": 8052, + "model_id": 8250, + "year_id": 8252, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8253, + "make_id": 8052, + "model_id": 8253, + "year_id": 8253, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8254, + "make_id": 8052, + "model_id": 8253, + "year_id": 8253, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8255, + "make_id": 8052, + "model_id": 8255, + "year_id": 8255, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8256, + "make_id": 8052, + "model_id": 8255, + "year_id": 8255, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8257, + "make_id": 8052, + "model_id": 8257, + "year_id": 8257, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8258, + "make_id": 8052, + "model_id": 8257, + "year_id": 8257, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8259, + "make_id": 8052, + "model_id": 8257, + "year_id": 8257, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8260, + "make_id": 8052, + "model_id": 8260, + "year_id": 8260, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8261, + "make_id": 8052, + "model_id": 8260, + "year_id": 8260, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8262, + "make_id": 8052, + "model_id": 8260, + "year_id": 8260, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8263, + "make_id": 8052, + "model_id": 8260, + "year_id": 8260, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8264, + "make_id": 8052, + "model_id": 8260, + "year_id": 8260, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8265, + "make_id": 8052, + "model_id": 8260, + "year_id": 8260, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8266, + "make_id": 8052, + "model_id": 8260, + "year_id": 8260, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8267, + "make_id": 8052, + "model_id": 8260, + "year_id": 8260, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8268, + "make_id": 8052, + "model_id": 8268, + "year_id": 8268, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8269, + "make_id": 8052, + "model_id": 8268, + "year_id": 8268, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8270, + "make_id": 8052, + "model_id": 8268, + "year_id": 8268, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8271, + "make_id": 8052, + "model_id": 8268, + "year_id": 8268, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8272, + "make_id": 8052, + "model_id": 8268, + "year_id": 8268, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8273, + "make_id": 8052, + "model_id": 8268, + "year_id": 8268, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8274, + "make_id": 8052, + "model_id": 8268, + "year_id": 8268, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8275, + "make_id": 8052, + "model_id": 8268, + "year_id": 8268, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8276, + "make_id": 8052, + "model_id": 8268, + "year_id": 8276, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8277, + "make_id": 8052, + "model_id": 8268, + "year_id": 8276, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8278, + "make_id": 8052, + "model_id": 8268, + "year_id": 8276, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8279, + "make_id": 8052, + "model_id": 8268, + "year_id": 8276, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8280, + "make_id": 8052, + "model_id": 8268, + "year_id": 8276, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8281, + "make_id": 8052, + "model_id": 8268, + "year_id": 8276, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8282, + "make_id": 8052, + "model_id": 8268, + "year_id": 8282, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8283, + "make_id": 8052, + "model_id": 8268, + "year_id": 8282, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8284, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8285, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8286, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8287, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8288, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8289, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8290, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8291, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8292, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8293, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8294, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8295, + "make_id": 8052, + "model_id": 8284, + "year_id": 8284, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8296, + "make_id": 8052, + "model_id": 8284, + "year_id": 8296, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8297, + "make_id": 8052, + "model_id": 8284, + "year_id": 8296, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8298, + "make_id": 8052, + "model_id": 8284, + "year_id": 8296, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8299, + "make_id": 8052, + "model_id": 8284, + "year_id": 8296, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8300, + "make_id": 8052, + "model_id": 8284, + "year_id": 8296, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8301, + "make_id": 8052, + "model_id": 8284, + "year_id": 8296, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8302, + "make_id": 8052, + "model_id": 8284, + "year_id": 8302, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8303, + "make_id": 8052, + "model_id": 8284, + "year_id": 8302, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8304, + "make_id": 8052, + "model_id": 8284, + "year_id": 8302, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8305, + "make_id": 8052, + "model_id": 8284, + "year_id": 8305, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8306, + "make_id": 8052, + "model_id": 8284, + "year_id": 8305, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8307, + "make_id": 8052, + "model_id": 8284, + "year_id": 8305, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8308, + "make_id": 8052, + "model_id": 8284, + "year_id": 8305, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8309, + "make_id": 8052, + "model_id": 8284, + "year_id": 8305, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8310, + "make_id": 8052, + "model_id": 8284, + "year_id": 8310, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8311, + "make_id": 8052, + "model_id": 8284, + "year_id": 8310, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8312, + "make_id": 8052, + "model_id": 8284, + "year_id": 8310, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8313, + "make_id": 8052, + "model_id": 8284, + "year_id": 8310, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8314, + "make_id": 8052, + "model_id": 8284, + "year_id": 8310, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8315, + "make_id": 8052, + "model_id": 8284, + "year_id": 8315, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8316, + "make_id": 8052, + "model_id": 8284, + "year_id": 8315, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8317, + "make_id": 8052, + "model_id": 8284, + "year_id": 8315, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8318, + "make_id": 8052, + "model_id": 8284, + "year_id": 8315, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8319, + "make_id": 8052, + "model_id": 8284, + "year_id": 8315, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8320, + "make_id": 8052, + "model_id": 8284, + "year_id": 8320, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8321, + "make_id": 8052, + "model_id": 8284, + "year_id": 8320, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8322, + "make_id": 8052, + "model_id": 8284, + "year_id": 8320, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8323, + "make_id": 8052, + "model_id": 8284, + "year_id": 8320, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8324, + "make_id": 8052, + "model_id": 8284, + "year_id": 8320, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8325, + "make_id": 8052, + "model_id": 8284, + "year_id": 8325, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8326, + "make_id": 8052, + "model_id": 8284, + "year_id": 8325, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8327, + "make_id": 8052, + "model_id": 8284, + "year_id": 8325, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8328, + "make_id": 8052, + "model_id": 8284, + "year_id": 8325, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8329, + "make_id": 8052, + "model_id": 8284, + "year_id": 8325, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8330, + "make_id": 8052, + "model_id": 8284, + "year_id": 8330, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8331, + "make_id": 8052, + "model_id": 8284, + "year_id": 8330, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8332, + "make_id": 8052, + "model_id": 8284, + "year_id": 8330, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8333, + "make_id": 8052, + "model_id": 8284, + "year_id": 8330, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8334, + "make_id": 8052, + "model_id": 8284, + "year_id": 8330, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8335, + "make_id": 8052, + "model_id": 8284, + "year_id": 8330, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8336, + "make_id": 8052, + "model_id": 8284, + "year_id": 8336, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8337, + "make_id": 8052, + "model_id": 8284, + "year_id": 8336, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8338, + "make_id": 8052, + "model_id": 8284, + "year_id": 8336, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8339, + "make_id": 8052, + "model_id": 8284, + "year_id": 8336, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8340, + "make_id": 8052, + "model_id": 8284, + "year_id": 8340, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8341, + "make_id": 8052, + "model_id": 8284, + "year_id": 8340, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8342, + "make_id": 8052, + "model_id": 8284, + "year_id": 8340, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8343, + "make_id": 8052, + "model_id": 8343, + "year_id": 8343, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8344, + "make_id": 8052, + "model_id": 8343, + "year_id": 8343, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8345, + "make_id": 8052, + "model_id": 8343, + "year_id": 8343, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8346, + "make_id": 8052, + "model_id": 8343, + "year_id": 8343, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8347, + "make_id": 8052, + "model_id": 8343, + "year_id": 8343, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8348, + "make_id": 8052, + "model_id": 8343, + "year_id": 8343, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8349, + "make_id": 8052, + "model_id": 8343, + "year_id": 8343, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8350, + "make_id": 8052, + "model_id": 8343, + "year_id": 8343, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8351, + "make_id": 8052, + "model_id": 8343, + "year_id": 8351, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8352, + "make_id": 8052, + "model_id": 8343, + "year_id": 8351, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8353, + "make_id": 8052, + "model_id": 8343, + "year_id": 8351, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8354, + "make_id": 8052, + "model_id": 8343, + "year_id": 8351, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8355, + "make_id": 8052, + "model_id": 8343, + "year_id": 8351, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8356, + "make_id": 8052, + "model_id": 8343, + "year_id": 8351, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8357, + "make_id": 8052, + "model_id": 8343, + "year_id": 8357, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8358, + "make_id": 8052, + "model_id": 8343, + "year_id": 8357, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8359, + "make_id": 8052, + "model_id": 8343, + "year_id": 8357, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8360, + "make_id": 8052, + "model_id": 8343, + "year_id": 8357, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8361, + "make_id": 8052, + "model_id": 8343, + "year_id": 8361, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8362, + "make_id": 8052, + "model_id": 8343, + "year_id": 8361, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8363, + "make_id": 8052, + "model_id": 8343, + "year_id": 8361, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8364, + "make_id": 8052, + "model_id": 8343, + "year_id": 8361, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8365, + "make_id": 8052, + "model_id": 8343, + "year_id": 8365, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8366, + "make_id": 8052, + "model_id": 8343, + "year_id": 8365, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8367, + "make_id": 8052, + "model_id": 8343, + "year_id": 8365, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8368, + "make_id": 8052, + "model_id": 8343, + "year_id": 8365, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8369, + "make_id": 8052, + "model_id": 8343, + "year_id": 8369, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8370, + "make_id": 8052, + "model_id": 8343, + "year_id": 8369, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8371, + "make_id": 8052, + "model_id": 8343, + "year_id": 8369, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8372, + "make_id": 8052, + "model_id": 8343, + "year_id": 8369, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8373, + "make_id": 8052, + "model_id": 8343, + "year_id": 8369, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8374, + "make_id": 8052, + "model_id": 8343, + "year_id": 8374, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8375, + "make_id": 8052, + "model_id": 8343, + "year_id": 8374, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8376, + "make_id": 8052, + "model_id": 8343, + "year_id": 8374, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8377, + "make_id": 8052, + "model_id": 8343, + "year_id": 8374, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8378, + "make_id": 8052, + "model_id": 8343, + "year_id": 8374, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8379, + "make_id": 8052, + "model_id": 8343, + "year_id": 8379, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8380, + "make_id": 8052, + "model_id": 8343, + "year_id": 8379, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8381, + "make_id": 8052, + "model_id": 8343, + "year_id": 8379, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8382, + "make_id": 8052, + "model_id": 8343, + "year_id": 8379, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8383, + "make_id": 8052, + "model_id": 8343, + "year_id": 8379, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8384, + "make_id": 8052, + "model_id": 8343, + "year_id": 8384, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8385, + "make_id": 8052, + "model_id": 8343, + "year_id": 8384, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8386, + "make_id": 8052, + "model_id": 8343, + "year_id": 8384, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8387, + "make_id": 8052, + "model_id": 8343, + "year_id": 8384, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8388, + "make_id": 8052, + "model_id": 8343, + "year_id": 8384, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8389, + "make_id": 8052, + "model_id": 8343, + "year_id": 8389, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8390, + "make_id": 8052, + "model_id": 8343, + "year_id": 8389, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8391, + "make_id": 8052, + "model_id": 8343, + "year_id": 8389, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8392, + "make_id": 8052, + "model_id": 8343, + "year_id": 8392, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8393, + "make_id": 8052, + "model_id": 8343, + "year_id": 8393, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8394, + "make_id": 8052, + "model_id": 8394, + "year_id": 8394, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8395, + "make_id": 8052, + "model_id": 8394, + "year_id": 8394, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8396, + "make_id": 8052, + "model_id": 8394, + "year_id": 8394, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8397, + "make_id": 8052, + "model_id": 8394, + "year_id": 8394, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8398, + "make_id": 8052, + "model_id": 8394, + "year_id": 8394, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8399, + "make_id": 8052, + "model_id": 8394, + "year_id": 8394, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8400, + "make_id": 8052, + "model_id": 8394, + "year_id": 8394, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8401, + "make_id": 8052, + "model_id": 8394, + "year_id": 8394, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8402, + "make_id": 8052, + "model_id": 8394, + "year_id": 8402, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8403, + "make_id": 8052, + "model_id": 8394, + "year_id": 8402, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8404, + "make_id": 8052, + "model_id": 8394, + "year_id": 8402, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8405, + "make_id": 8052, + "model_id": 8394, + "year_id": 8402, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8406, + "make_id": 8052, + "model_id": 8394, + "year_id": 8402, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8407, + "make_id": 8052, + "model_id": 8394, + "year_id": 8402, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8408, + "make_id": 8052, + "model_id": 8394, + "year_id": 8408, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8409, + "make_id": 8052, + "model_id": 8394, + "year_id": 8408, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8410, + "make_id": 8052, + "model_id": 8394, + "year_id": 8408, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8411, + "make_id": 8052, + "model_id": 8394, + "year_id": 8408, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8412, + "make_id": 8052, + "model_id": 8394, + "year_id": 8408, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8413, + "make_id": 8052, + "model_id": 8394, + "year_id": 8408, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8414, + "make_id": 8052, + "model_id": 8394, + "year_id": 8414, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8415, + "make_id": 8052, + "model_id": 8394, + "year_id": 8414, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8416, + "make_id": 8052, + "model_id": 8394, + "year_id": 8414, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8417, + "make_id": 8052, + "model_id": 8394, + "year_id": 8414, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8418, + "make_id": 8052, + "model_id": 8394, + "year_id": 8414, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8419, + "make_id": 8052, + "model_id": 8394, + "year_id": 8414, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8420, + "make_id": 8052, + "model_id": 8394, + "year_id": 8420, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8421, + "make_id": 8052, + "model_id": 8394, + "year_id": 8420, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8422, + "make_id": 8052, + "model_id": 8394, + "year_id": 8420, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8423, + "make_id": 8052, + "model_id": 8394, + "year_id": 8420, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8424, + "make_id": 8052, + "model_id": 8394, + "year_id": 8420, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8425, + "make_id": 8052, + "model_id": 8394, + "year_id": 8420, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8426, + "make_id": 8052, + "model_id": 8394, + "year_id": 8420, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8427, + "make_id": 8052, + "model_id": 8427, + "year_id": 8427, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8428, + "make_id": 8052, + "model_id": 8428, + "year_id": 8428, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8429, + "make_id": 8052, + "model_id": 8428, + "year_id": 8429, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8430, + "make_id": 8052, + "model_id": 8428, + "year_id": 8430, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8431, + "make_id": 8052, + "model_id": 8431, + "year_id": 8431, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8432, + "make_id": 8052, + "model_id": 8432, + "year_id": 8432, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8433, + "make_id": 8052, + "model_id": 8432, + "year_id": 8432, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8434, + "make_id": 8052, + "model_id": 8432, + "year_id": 8432, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8435, + "make_id": 8052, + "model_id": 8432, + "year_id": 8432, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8436, + "make_id": 8052, + "model_id": 8432, + "year_id": 8436, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8437, + "make_id": 8052, + "model_id": 8432, + "year_id": 8436, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8438, + "make_id": 8052, + "model_id": 8432, + "year_id": 8438, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8439, + "make_id": 8052, + "model_id": 8432, + "year_id": 8438, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8440, + "make_id": 8052, + "model_id": 8432, + "year_id": 8440, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8441, + "make_id": 8052, + "model_id": 8432, + "year_id": 8441, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8442, + "make_id": 8052, + "model_id": 8432, + "year_id": 8441, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8443, + "make_id": 8052, + "model_id": 8432, + "year_id": 8443, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8444, + "make_id": 8052, + "model_id": 8432, + "year_id": 8444, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8445, + "make_id": 8052, + "model_id": 8432, + "year_id": 8445, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8446, + "make_id": 8052, + "model_id": 8446, + "year_id": 8446, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8447, + "make_id": 8052, + "model_id": 8446, + "year_id": 8447, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8448, + "make_id": 8052, + "model_id": 8446, + "year_id": 8448, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8449, + "make_id": 8052, + "model_id": 8446, + "year_id": 8448, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8450, + "make_id": 8052, + "model_id": 8450, + "year_id": 8450, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8451, + "make_id": 8052, + "model_id": 8451, + "year_id": 8451, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8452, + "make_id": 8052, + "model_id": 8452, + "year_id": 8452, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8453, + "make_id": 8052, + "model_id": 8452, + "year_id": 8453, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8454, + "make_id": 8052, + "model_id": 8452, + "year_id": 8454, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8455, + "make_id": 8052, + "model_id": 8452, + "year_id": 8455, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8456, + "make_id": 8052, + "model_id": 8456, + "year_id": 8456, + "cylinders": 8, + "displacement": 5.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8457, + "make_id": 8052, + "model_id": 8456, + "year_id": 8456, + "cylinders": 8, + "displacement": 5.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8458, + "make_id": 8052, + "model_id": 8456, + "year_id": 8458, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8459, + "make_id": 8052, + "model_id": 8456, + "year_id": 8458, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8460, + "make_id": 8052, + "model_id": 8456, + "year_id": 8460, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8461, + "make_id": 8052, + "model_id": 8456, + "year_id": 8461, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8462, + "make_id": 8052, + "model_id": 8456, + "year_id": 8462, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8463, + "make_id": 8052, + "model_id": 8456, + "year_id": 8463, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8464, + "make_id": 8052, + "model_id": 8464, + "year_id": 8464, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8465, + "make_id": 8052, + "model_id": 8464, + "year_id": 8464, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8466, + "make_id": 8052, + "model_id": 8464, + "year_id": 8466, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8467, + "make_id": 8052, + "model_id": 8464, + "year_id": 8466, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8468, + "make_id": 8052, + "model_id": 8464, + "year_id": 8466, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8469, + "make_id": 8052, + "model_id": 8464, + "year_id": 8469, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8470, + "make_id": 8052, + "model_id": 8464, + "year_id": 8469, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8471, + "make_id": 8052, + "model_id": 8464, + "year_id": 8469, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8472, + "make_id": 8052, + "model_id": 8464, + "year_id": 8472, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8473, + "make_id": 8052, + "model_id": 8464, + "year_id": 8472, + "cylinders": 6, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8474, + "make_id": 8052, + "model_id": 8464, + "year_id": 8472, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8475, + "make_id": 8052, + "model_id": 8464, + "year_id": 8475, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8476, + "make_id": 8052, + "model_id": 8464, + "year_id": 8475, + "cylinders": 6, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8477, + "make_id": 8052, + "model_id": 8464, + "year_id": 8475, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8478, + "make_id": 8052, + "model_id": 8464, + "year_id": 8478, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 8479, + "make_id": 8052, + "model_id": 8479, + "year_id": 8479, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8480, + "make_id": 8052, + "model_id": 8480, + "year_id": 8480, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8481, + "make_id": 8052, + "model_id": 8480, + "year_id": 8480, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8482, + "make_id": 8052, + "model_id": 8480, + "year_id": 8482, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8483, + "make_id": 8052, + "model_id": 8480, + "year_id": 8482, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8484, + "make_id": 8052, + "model_id": 8480, + "year_id": 8484, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8485, + "make_id": 8052, + "model_id": 8480, + "year_id": 8484, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8486, + "make_id": 8052, + "model_id": 8480, + "year_id": 8484, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8487, + "make_id": 8052, + "model_id": 8480, + "year_id": 8484, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8488, + "make_id": 8052, + "model_id": 8480, + "year_id": 8488, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8489, + "make_id": 8052, + "model_id": 8480, + "year_id": 8488, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8490, + "make_id": 8052, + "model_id": 8480, + "year_id": 8488, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8491, + "make_id": 8052, + "model_id": 8480, + "year_id": 8488, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8492, + "make_id": 8052, + "model_id": 8480, + "year_id": 8492, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8493, + "make_id": 8052, + "model_id": 8480, + "year_id": 8492, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8494, + "make_id": 8052, + "model_id": 8480, + "year_id": 8492, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8495, + "make_id": 8052, + "model_id": 8480, + "year_id": 8492, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8496, + "make_id": 8052, + "model_id": 8480, + "year_id": 8496, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8497, + "make_id": 8052, + "model_id": 8480, + "year_id": 8496, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8498, + "make_id": 8052, + "model_id": 8480, + "year_id": 8496, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8499, + "make_id": 8052, + "model_id": 8480, + "year_id": 8496, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8500, + "make_id": 8052, + "model_id": 8480, + "year_id": 8500, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8501, + "make_id": 8052, + "model_id": 8480, + "year_id": 8500, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8502, + "make_id": 8052, + "model_id": 8480, + "year_id": 8500, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8503, + "make_id": 8052, + "model_id": 8480, + "year_id": 8500, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8504, + "make_id": 8052, + "model_id": 8480, + "year_id": 8504, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8505, + "make_id": 8052, + "model_id": 8480, + "year_id": 8504, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8506, + "make_id": 8052, + "model_id": 8480, + "year_id": 8504, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8507, + "make_id": 8052, + "model_id": 8480, + "year_id": 8504, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8508, + "make_id": 8052, + "model_id": 8480, + "year_id": 8508, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8509, + "make_id": 8052, + "model_id": 8480, + "year_id": 8508, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8510, + "make_id": 8052, + "model_id": 8480, + "year_id": 8508, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8511, + "make_id": 8052, + "model_id": 8480, + "year_id": 8511, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8512, + "make_id": 8052, + "model_id": 8512, + "year_id": 8512, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8513, + "make_id": 8052, + "model_id": 8512, + "year_id": 8512, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8514, + "make_id": 8052, + "model_id": 8512, + "year_id": 8512, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8515, + "make_id": 8052, + "model_id": 8512, + "year_id": 8512, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8516, + "make_id": 8052, + "model_id": 8512, + "year_id": 8516, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8517, + "make_id": 8052, + "model_id": 8512, + "year_id": 8516, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8518, + "make_id": 8052, + "model_id": 8512, + "year_id": 8516, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8519, + "make_id": 8052, + "model_id": 8512, + "year_id": 8516, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8520, + "make_id": 8052, + "model_id": 8512, + "year_id": 8520, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8521, + "make_id": 8052, + "model_id": 8512, + "year_id": 8520, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8522, + "make_id": 8052, + "model_id": 8512, + "year_id": 8520, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8523, + "make_id": 8052, + "model_id": 8512, + "year_id": 8520, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8524, + "make_id": 8052, + "model_id": 8512, + "year_id": 8524, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8525, + "make_id": 8052, + "model_id": 8512, + "year_id": 8524, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8526, + "make_id": 8052, + "model_id": 8512, + "year_id": 8524, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8527, + "make_id": 8052, + "model_id": 8512, + "year_id": 8524, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8528, + "make_id": 8052, + "model_id": 8528, + "year_id": 8528, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8529, + "make_id": 8052, + "model_id": 8529, + "year_id": 8529, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8530, + "make_id": 8052, + "model_id": 8529, + "year_id": 8529, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8531, + "make_id": 8052, + "model_id": 8529, + "year_id": 8529, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8532, + "make_id": 8052, + "model_id": 8529, + "year_id": 8529, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8533, + "make_id": 8052, + "model_id": 8529, + "year_id": 8529, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8534, + "make_id": 8052, + "model_id": 8529, + "year_id": 8534, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8535, + "make_id": 8052, + "model_id": 8529, + "year_id": 8534, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8536, + "make_id": 8052, + "model_id": 8529, + "year_id": 8534, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8537, + "make_id": 8052, + "model_id": 8529, + "year_id": 8537, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8538, + "make_id": 8052, + "model_id": 8529, + "year_id": 8537, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8539, + "make_id": 8052, + "model_id": 8529, + "year_id": 8537, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8540, + "make_id": 8052, + "model_id": 8529, + "year_id": 8540, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8541, + "make_id": 8052, + "model_id": 8529, + "year_id": 8540, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8542, + "make_id": 8052, + "model_id": 8529, + "year_id": 8540, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8543, + "make_id": 8052, + "model_id": 8529, + "year_id": 8540, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8544, + "make_id": 8052, + "model_id": 8529, + "year_id": 8540, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8545, + "make_id": 8052, + "model_id": 8529, + "year_id": 8540, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8546, + "make_id": 8052, + "model_id": 8529, + "year_id": 8546, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8547, + "make_id": 8052, + "model_id": 8529, + "year_id": 8546, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8548, + "make_id": 8052, + "model_id": 8529, + "year_id": 8546, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8549, + "make_id": 8052, + "model_id": 8529, + "year_id": 8549, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8550, + "make_id": 8052, + "model_id": 8529, + "year_id": 8550, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8551, + "make_id": 8052, + "model_id": 8529, + "year_id": 8550, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8552, + "make_id": 8052, + "model_id": 8529, + "year_id": 8550, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8553, + "make_id": 8052, + "model_id": 8529, + "year_id": 8550, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8554, + "make_id": 8052, + "model_id": 8529, + "year_id": 8550, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8555, + "make_id": 8052, + "model_id": 8529, + "year_id": 8555, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8556, + "make_id": 8052, + "model_id": 8529, + "year_id": 8555, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8557, + "make_id": 8052, + "model_id": 8529, + "year_id": 8555, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8558, + "make_id": 8052, + "model_id": 8529, + "year_id": 8555, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8559, + "make_id": 8052, + "model_id": 8529, + "year_id": 8555, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8560, + "make_id": 8052, + "model_id": 8529, + "year_id": 8555, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8561, + "make_id": 8052, + "model_id": 8529, + "year_id": 8555, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8562, + "make_id": 8052, + "model_id": 8529, + "year_id": 8555, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8563, + "make_id": 8052, + "model_id": 8529, + "year_id": 8563, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8564, + "make_id": 8052, + "model_id": 8529, + "year_id": 8563, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8565, + "make_id": 8052, + "model_id": 8529, + "year_id": 8563, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8566, + "make_id": 8052, + "model_id": 8529, + "year_id": 8563, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8567, + "make_id": 8052, + "model_id": 8529, + "year_id": 8563, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8568, + "make_id": 8052, + "model_id": 8529, + "year_id": 8563, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8569, + "make_id": 8052, + "model_id": 8529, + "year_id": 8563, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8570, + "make_id": 8052, + "model_id": 8529, + "year_id": 8570, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8571, + "make_id": 8052, + "model_id": 8529, + "year_id": 8570, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8572, + "make_id": 8052, + "model_id": 8529, + "year_id": 8570, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8573, + "make_id": 8052, + "model_id": 8529, + "year_id": 8570, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8574, + "make_id": 8052, + "model_id": 8529, + "year_id": 8570, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8575, + "make_id": 8052, + "model_id": 8529, + "year_id": 8575, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8576, + "make_id": 8052, + "model_id": 8529, + "year_id": 8575, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8577, + "make_id": 8052, + "model_id": 8529, + "year_id": 8575, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8578, + "make_id": 8052, + "model_id": 8529, + "year_id": 8575, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8579, + "make_id": 8052, + "model_id": 8529, + "year_id": 8575, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8580, + "make_id": 8052, + "model_id": 8529, + "year_id": 8580, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8581, + "make_id": 8052, + "model_id": 8529, + "year_id": 8580, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8582, + "make_id": 8052, + "model_id": 8529, + "year_id": 8580, + "cylinders": 4, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8583, + "make_id": 8052, + "model_id": 8529, + "year_id": 8583, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8584, + "make_id": 8052, + "model_id": 8529, + "year_id": 8583, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8585, + "make_id": 8052, + "model_id": 8529, + "year_id": 8583, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8586, + "make_id": 8052, + "model_id": 8529, + "year_id": 8583, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8587, + "make_id": 8052, + "model_id": 8529, + "year_id": 8583, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8588, + "make_id": 8052, + "model_id": 8529, + "year_id": 8588, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8589, + "make_id": 8052, + "model_id": 8529, + "year_id": 8588, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8590, + "make_id": 8052, + "model_id": 8529, + "year_id": 8588, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8591, + "make_id": 8052, + "model_id": 8529, + "year_id": 8591, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8592, + "make_id": 8052, + "model_id": 8529, + "year_id": 8591, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8593, + "make_id": 8052, + "model_id": 8529, + "year_id": 8591, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8594, + "make_id": 8052, + "model_id": 8594, + "year_id": 8594, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8595, + "make_id": 8052, + "model_id": 8594, + "year_id": 8594, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8596, + "make_id": 8052, + "model_id": 8594, + "year_id": 8594, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8597, + "make_id": 8052, + "model_id": 8594, + "year_id": 8597, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8598, + "make_id": 8052, + "model_id": 8594, + "year_id": 8597, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8599, + "make_id": 8052, + "model_id": 8594, + "year_id": 8597, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8600, + "make_id": 8052, + "model_id": 8594, + "year_id": 8600, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8601, + "make_id": 8052, + "model_id": 8594, + "year_id": 8600, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8602, + "make_id": 8052, + "model_id": 8594, + "year_id": 8600, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8603, + "make_id": 8052, + "model_id": 8594, + "year_id": 8600, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8604, + "make_id": 8052, + "model_id": 8594, + "year_id": 8604, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8605, + "make_id": 8052, + "model_id": 8594, + "year_id": 8604, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8606, + "make_id": 8052, + "model_id": 8594, + "year_id": 8604, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8607, + "make_id": 8052, + "model_id": 8594, + "year_id": 8607, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8608, + "make_id": 8052, + "model_id": 8594, + "year_id": 8607, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8609, + "make_id": 8052, + "model_id": 8594, + "year_id": 8607, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8610, + "make_id": 8052, + "model_id": 8594, + "year_id": 8610, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8611, + "make_id": 8052, + "model_id": 8594, + "year_id": 8610, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8612, + "make_id": 8052, + "model_id": 8594, + "year_id": 8610, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8613, + "make_id": 8052, + "model_id": 8613, + "year_id": 8613, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8614, + "make_id": 8052, + "model_id": 8613, + "year_id": 8613, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8615, + "make_id": 8052, + "model_id": 8613, + "year_id": 8615, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8616, + "make_id": 8052, + "model_id": 8613, + "year_id": 8615, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8617, + "make_id": 8052, + "model_id": 8613, + "year_id": 8615, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8618, + "make_id": 8052, + "model_id": 8613, + "year_id": 8618, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8619, + "make_id": 8052, + "model_id": 8613, + "year_id": 8618, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8620, + "make_id": 8052, + "model_id": 8613, + "year_id": 8618, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8621, + "make_id": 8052, + "model_id": 8613, + "year_id": 8621, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8622, + "make_id": 8052, + "model_id": 8613, + "year_id": 8621, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8623, + "make_id": 8052, + "model_id": 8613, + "year_id": 8623, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8624, + "make_id": 8052, + "model_id": 8613, + "year_id": 8623, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8625, + "make_id": 8052, + "model_id": 8613, + "year_id": 8625, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8626, + "make_id": 8052, + "model_id": 8613, + "year_id": 8625, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8627, + "make_id": 8052, + "model_id": 8613, + "year_id": 8625, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8628, + "make_id": 8052, + "model_id": 8613, + "year_id": 8625, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8629, + "make_id": 8052, + "model_id": 8613, + "year_id": 8629, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8630, + "make_id": 8052, + "model_id": 8613, + "year_id": 8629, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8631, + "make_id": 8052, + "model_id": 8613, + "year_id": 8629, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8632, + "make_id": 8052, + "model_id": 8613, + "year_id": 8629, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8633, + "make_id": 8052, + "model_id": 8613, + "year_id": 8629, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8634, + "make_id": 8052, + "model_id": 8613, + "year_id": 8634, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8635, + "make_id": 8052, + "model_id": 8613, + "year_id": 8634, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8636, + "make_id": 8052, + "model_id": 8613, + "year_id": 8634, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8637, + "make_id": 8052, + "model_id": 8613, + "year_id": 8634, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8638, + "make_id": 8052, + "model_id": 8613, + "year_id": 8638, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8639, + "make_id": 8052, + "model_id": 8613, + "year_id": 8638, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8640, + "make_id": 8052, + "model_id": 8613, + "year_id": 8638, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8641, + "make_id": 8052, + "model_id": 8613, + "year_id": 8641, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8642, + "make_id": 8052, + "model_id": 8613, + "year_id": 8641, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8643, + "make_id": 8052, + "model_id": 8613, + "year_id": 8641, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8644, + "make_id": 8052, + "model_id": 8613, + "year_id": 8644, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8645, + "make_id": 8052, + "model_id": 8613, + "year_id": 8644, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8646, + "make_id": 8052, + "model_id": 8613, + "year_id": 8644, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8647, + "make_id": 8052, + "model_id": 8613, + "year_id": 8644, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8648, + "make_id": 8052, + "model_id": 8613, + "year_id": 8648, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8649, + "make_id": 8052, + "model_id": 8613, + "year_id": 8648, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8650, + "make_id": 8052, + "model_id": 8613, + "year_id": 8648, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8651, + "make_id": 8052, + "model_id": 8613, + "year_id": 8651, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8652, + "make_id": 8052, + "model_id": 8613, + "year_id": 8651, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8653, + "make_id": 8052, + "model_id": 8613, + "year_id": 8651, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8654, + "make_id": 8052, + "model_id": 8654, + "year_id": 8654, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8655, + "make_id": 8052, + "model_id": 8654, + "year_id": 8654, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8656, + "make_id": 8052, + "model_id": 8654, + "year_id": 8654, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8657, + "make_id": 8052, + "model_id": 8654, + "year_id": 8654, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8658, + "make_id": 8052, + "model_id": 8658, + "year_id": 8658, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8659, + "make_id": 8052, + "model_id": 8658, + "year_id": 8658, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8660, + "make_id": 8052, + "model_id": 8660, + "year_id": 8660, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8661, + "make_id": 8052, + "model_id": 8661, + "year_id": 8661, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8662, + "make_id": 8052, + "model_id": 8661, + "year_id": 8662, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8663, + "make_id": 8052, + "model_id": 8661, + "year_id": 8663, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8664, + "make_id": 8052, + "model_id": 8661, + "year_id": 8664, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8665, + "make_id": 8052, + "model_id": 8661, + "year_id": 8665, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8666, + "make_id": 8052, + "model_id": 8661, + "year_id": 8665, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8667, + "make_id": 8052, + "model_id": 8661, + "year_id": 8667, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8668, + "make_id": 8052, + "model_id": 8661, + "year_id": 8667, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8669, + "make_id": 8052, + "model_id": 8661, + "year_id": 8669, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8670, + "make_id": 8052, + "model_id": 8661, + "year_id": 8669, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8671, + "make_id": 8052, + "model_id": 8661, + "year_id": 8671, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8672, + "make_id": 8052, + "model_id": 8661, + "year_id": 8671, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8673, + "make_id": 8052, + "model_id": 8661, + "year_id": 8673, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8674, + "make_id": 8052, + "model_id": 8661, + "year_id": 8673, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8675, + "make_id": 8052, + "model_id": 8661, + "year_id": 8673, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8676, + "make_id": 8052, + "model_id": 8661, + "year_id": 8676, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8677, + "make_id": 8052, + "model_id": 8661, + "year_id": 8676, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8678, + "make_id": 8052, + "model_id": 8661, + "year_id": 8676, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8679, + "make_id": 8052, + "model_id": 8661, + "year_id": 8679, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8680, + "make_id": 8052, + "model_id": 8661, + "year_id": 8679, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8681, + "make_id": 8052, + "model_id": 8661, + "year_id": 8679, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8682, + "make_id": 8052, + "model_id": 8661, + "year_id": 8679, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8683, + "make_id": 8052, + "model_id": 8661, + "year_id": 8683, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8684, + "make_id": 8052, + "model_id": 8661, + "year_id": 8683, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8685, + "make_id": 8052, + "model_id": 8661, + "year_id": 8683, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8686, + "make_id": 8052, + "model_id": 8661, + "year_id": 8683, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8687, + "make_id": 8052, + "model_id": 8661, + "year_id": 8687, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8688, + "make_id": 8052, + "model_id": 8661, + "year_id": 8687, + "cylinders": 6, + "displacement": 3.3, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8689, + "make_id": 8052, + "model_id": 8661, + "year_id": 8689, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8690, + "make_id": 8052, + "model_id": 8661, + "year_id": 8689, + "cylinders": 6, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8691, + "make_id": 8052, + "model_id": 8661, + "year_id": 8689, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8692, + "make_id": 8052, + "model_id": 8661, + "year_id": 8692, + "cylinders": 6, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8693, + "make_id": 8052, + "model_id": 8661, + "year_id": 8692, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8694, + "make_id": 8052, + "model_id": 8661, + "year_id": 8692, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8695, + "make_id": 8052, + "model_id": 8661, + "year_id": 8695, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8696, + "make_id": 8052, + "model_id": 8661, + "year_id": 8696, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8697, + "make_id": 8052, + "model_id": 8661, + "year_id": 8697, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8698, + "make_id": 8052, + "model_id": 8661, + "year_id": 8698, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8699, + "make_id": 8052, + "model_id": 8661, + "year_id": 8698, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8700, + "make_id": 8052, + "model_id": 8661, + "year_id": 8700, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8701, + "make_id": 8052, + "model_id": 8661, + "year_id": 8700, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8702, + "make_id": 8052, + "model_id": 8661, + "year_id": 8702, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8703, + "make_id": 8052, + "model_id": 8661, + "year_id": 8702, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8704, + "make_id": 8052, + "model_id": 8704, + "year_id": 8704, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8705, + "make_id": 8052, + "model_id": 8704, + "year_id": 8704, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8706, + "make_id": 8052, + "model_id": 8704, + "year_id": 8704, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8707, + "make_id": 8052, + "model_id": 8704, + "year_id": 8704, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8708, + "make_id": 8052, + "model_id": 8704, + "year_id": 8708, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8709, + "make_id": 8052, + "model_id": 8704, + "year_id": 8708, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8710, + "make_id": 8052, + "model_id": 8704, + "year_id": 8708, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8711, + "make_id": 8052, + "model_id": 8704, + "year_id": 8708, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8712, + "make_id": 8052, + "model_id": 8704, + "year_id": 8712, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8713, + "make_id": 8052, + "model_id": 8704, + "year_id": 8712, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8714, + "make_id": 8052, + "model_id": 8704, + "year_id": 8714, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8715, + "make_id": 8052, + "model_id": 8704, + "year_id": 8714, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8716, + "make_id": 8052, + "model_id": 8704, + "year_id": 8716, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8717, + "make_id": 8052, + "model_id": 8704, + "year_id": 8716, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8718, + "make_id": 8052, + "model_id": 8718, + "year_id": 8718, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8719, + "make_id": 8052, + "model_id": 8718, + "year_id": 8718, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8720, + "make_id": 8052, + "model_id": 8718, + "year_id": 8718, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8721, + "make_id": 8052, + "model_id": 8718, + "year_id": 8718, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8722, + "make_id": 8052, + "model_id": 8718, + "year_id": 8722, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8723, + "make_id": 8052, + "model_id": 8718, + "year_id": 8722, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8724, + "make_id": 8052, + "model_id": 8718, + "year_id": 8722, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8725, + "make_id": 8052, + "model_id": 8718, + "year_id": 8722, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8726, + "make_id": 8052, + "model_id": 8718, + "year_id": 8722, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8727, + "make_id": 8052, + "model_id": 8718, + "year_id": 8727, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8728, + "make_id": 8052, + "model_id": 8718, + "year_id": 8727, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8729, + "make_id": 8052, + "model_id": 8718, + "year_id": 8727, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8730, + "make_id": 8052, + "model_id": 8718, + "year_id": 8727, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8731, + "make_id": 8052, + "model_id": 8718, + "year_id": 8727, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8732, + "make_id": 8052, + "model_id": 8718, + "year_id": 8727, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8733, + "make_id": 8052, + "model_id": 8718, + "year_id": 8733, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8734, + "make_id": 8052, + "model_id": 8718, + "year_id": 8733, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8735, + "make_id": 8052, + "model_id": 8718, + "year_id": 8733, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8736, + "make_id": 8052, + "model_id": 8718, + "year_id": 8733, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8737, + "make_id": 8052, + "model_id": 8718, + "year_id": 8733, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8738, + "make_id": 8052, + "model_id": 8718, + "year_id": 8738, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8739, + "make_id": 8052, + "model_id": 8718, + "year_id": 8738, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8740, + "make_id": 8052, + "model_id": 8718, + "year_id": 8738, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8741, + "make_id": 8052, + "model_id": 8718, + "year_id": 8738, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8742, + "make_id": 8052, + "model_id": 8718, + "year_id": 8742, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8743, + "make_id": 8052, + "model_id": 8718, + "year_id": 8742, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8744, + "make_id": 8052, + "model_id": 8718, + "year_id": 8744, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8745, + "make_id": 8052, + "model_id": 8718, + "year_id": 8744, + "cylinders": 6, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 8746, + "make_id": 8052, + "model_id": 8718, + "year_id": 8744, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8747, + "make_id": 8052, + "model_id": 8718, + "year_id": 8744, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8748, + "make_id": 8052, + "model_id": 8748, + "year_id": 8748, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8749, + "make_id": 8052, + "model_id": 8748, + "year_id": 8748, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8750, + "make_id": 8052, + "model_id": 8748, + "year_id": 8748, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8751, + "make_id": 8751, + "model_id": 8751, + "year_id": 8751, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 8752, + "make_id": 8751, + "model_id": 8751, + "year_id": 8752, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 8753, + "make_id": 8753, + "model_id": 8753, + "year_id": 8753, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8754, + "make_id": 8753, + "model_id": 8753, + "year_id": 8754, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8755, + "make_id": 8753, + "model_id": 8753, + "year_id": 8755, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8756, + "make_id": 8756, + "model_id": 8756, + "year_id": 8756, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8757, + "make_id": 8756, + "model_id": 8756, + "year_id": 8756, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8758, + "make_id": 8756, + "model_id": 8758, + "year_id": 8758, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8759, + "make_id": 8756, + "model_id": 8759, + "year_id": 8759, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8760, + "make_id": 8756, + "model_id": 8759, + "year_id": 8759, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8761, + "make_id": 8756, + "model_id": 8761, + "year_id": 8761, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8762, + "make_id": 8756, + "model_id": 8761, + "year_id": 8761, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8763, + "make_id": 8756, + "model_id": 8761, + "year_id": 8763, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8764, + "make_id": 8756, + "model_id": 8764, + "year_id": 8764, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8765, + "make_id": 8756, + "model_id": 8764, + "year_id": 8765, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8766, + "make_id": 8756, + "model_id": 8764, + "year_id": 8765, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8767, + "make_id": 8756, + "model_id": 8764, + "year_id": 8765, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8768, + "make_id": 8756, + "model_id": 8764, + "year_id": 8768, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8769, + "make_id": 8756, + "model_id": 8769, + "year_id": 8769, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8770, + "make_id": 8756, + "model_id": 8769, + "year_id": 8770, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8771, + "make_id": 8756, + "model_id": 8771, + "year_id": 8771, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8772, + "make_id": 8756, + "model_id": 8771, + "year_id": 8772, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8773, + "make_id": 8773, + "model_id": 8773, + "year_id": 8773, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8774, + "make_id": 8773, + "model_id": 8773, + "year_id": 8773, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8775, + "make_id": 8773, + "model_id": 8773, + "year_id": 8773, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8776, + "make_id": 8773, + "model_id": 8773, + "year_id": 8773, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8777, + "make_id": 8773, + "model_id": 8773, + "year_id": 8773, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8778, + "make_id": 8773, + "model_id": 8773, + "year_id": 8773, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8779, + "make_id": 8773, + "model_id": 8773, + "year_id": 8773, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8780, + "make_id": 8773, + "model_id": 8773, + "year_id": 8773, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8781, + "make_id": 8773, + "model_id": 8773, + "year_id": 8773, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8782, + "make_id": 8782, + "model_id": 8782, + "year_id": 8782, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8783, + "make_id": 8782, + "model_id": 8783, + "year_id": 8783, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8784, + "make_id": 8782, + "model_id": 8784, + "year_id": 8784, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8785, + "make_id": 8785, + "model_id": 8785, + "year_id": 8785, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8786, + "make_id": 8785, + "model_id": 8785, + "year_id": 8785, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8787, + "make_id": 8785, + "model_id": 8787, + "year_id": 8787, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8788, + "make_id": 8785, + "model_id": 8787, + "year_id": 8787, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8789, + "make_id": 8785, + "model_id": 8789, + "year_id": 8789, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8790, + "make_id": 8785, + "model_id": 8789, + "year_id": 8789, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8791, + "make_id": 8785, + "model_id": 8789, + "year_id": 8789, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8792, + "make_id": 8785, + "model_id": 8789, + "year_id": 8789, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8793, + "make_id": 8785, + "model_id": 8789, + "year_id": 8793, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8794, + "make_id": 8785, + "model_id": 8789, + "year_id": 8793, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8795, + "make_id": 8785, + "model_id": 8789, + "year_id": 8793, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8796, + "make_id": 8785, + "model_id": 8789, + "year_id": 8793, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8797, + "make_id": 8785, + "model_id": 8789, + "year_id": 8797, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8798, + "make_id": 8785, + "model_id": 8789, + "year_id": 8797, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8799, + "make_id": 8785, + "model_id": 8789, + "year_id": 8797, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8800, + "make_id": 8785, + "model_id": 8789, + "year_id": 8797, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8801, + "make_id": 8785, + "model_id": 8789, + "year_id": 8801, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8802, + "make_id": 8785, + "model_id": 8789, + "year_id": 8801, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8803, + "make_id": 8785, + "model_id": 8789, + "year_id": 8801, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8804, + "make_id": 8785, + "model_id": 8789, + "year_id": 8801, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8805, + "make_id": 8785, + "model_id": 8789, + "year_id": 8805, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8806, + "make_id": 8785, + "model_id": 8789, + "year_id": 8805, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8807, + "make_id": 8785, + "model_id": 8789, + "year_id": 8805, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8808, + "make_id": 8785, + "model_id": 8789, + "year_id": 8805, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8809, + "make_id": 8785, + "model_id": 8789, + "year_id": 8809, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8810, + "make_id": 8785, + "model_id": 8789, + "year_id": 8809, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8811, + "make_id": 8785, + "model_id": 8811, + "year_id": 8811, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8812, + "make_id": 8785, + "model_id": 8811, + "year_id": 8811, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8813, + "make_id": 8785, + "model_id": 8811, + "year_id": 8811, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8814, + "make_id": 8785, + "model_id": 8811, + "year_id": 8811, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8815, + "make_id": 8785, + "model_id": 8811, + "year_id": 8815, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8816, + "make_id": 8785, + "model_id": 8811, + "year_id": 8815, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8817, + "make_id": 8785, + "model_id": 8811, + "year_id": 8817, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8818, + "make_id": 8785, + "model_id": 8811, + "year_id": 8817, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8819, + "make_id": 8785, + "model_id": 8811, + "year_id": 8819, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8820, + "make_id": 8785, + "model_id": 8811, + "year_id": 8819, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8821, + "make_id": 8785, + "model_id": 8811, + "year_id": 8821, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8822, + "make_id": 8785, + "model_id": 8811, + "year_id": 8821, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8823, + "make_id": 8785, + "model_id": 8823, + "year_id": 8823, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8824, + "make_id": 8785, + "model_id": 8824, + "year_id": 8824, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8825, + "make_id": 8785, + "model_id": 8824, + "year_id": 8824, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8826, + "make_id": 8785, + "model_id": 8824, + "year_id": 8824, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8827, + "make_id": 8785, + "model_id": 8824, + "year_id": 8824, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8828, + "make_id": 8785, + "model_id": 8824, + "year_id": 8828, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8829, + "make_id": 8785, + "model_id": 8824, + "year_id": 8828, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8830, + "make_id": 8785, + "model_id": 8824, + "year_id": 8830, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8831, + "make_id": 8785, + "model_id": 8824, + "year_id": 8830, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8832, + "make_id": 8785, + "model_id": 8824, + "year_id": 8832, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8833, + "make_id": 8785, + "model_id": 8824, + "year_id": 8832, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8834, + "make_id": 8785, + "model_id": 8824, + "year_id": 8834, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8835, + "make_id": 8785, + "model_id": 8824, + "year_id": 8834, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8836, + "make_id": 8785, + "model_id": 8824, + "year_id": 8836, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8837, + "make_id": 8785, + "model_id": 8824, + "year_id": 8836, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8838, + "make_id": 8785, + "model_id": 8838, + "year_id": 8838, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8839, + "make_id": 8785, + "model_id": 8838, + "year_id": 8838, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8840, + "make_id": 8785, + "model_id": 8838, + "year_id": 8840, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8841, + "make_id": 8785, + "model_id": 8838, + "year_id": 8840, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8842, + "make_id": 8785, + "model_id": 8838, + "year_id": 8842, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8843, + "make_id": 8785, + "model_id": 8838, + "year_id": 8842, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8844, + "make_id": 8785, + "model_id": 8838, + "year_id": 8844, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8845, + "make_id": 8785, + "model_id": 8838, + "year_id": 8844, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8846, + "make_id": 8785, + "model_id": 8838, + "year_id": 8846, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8847, + "make_id": 8785, + "model_id": 8838, + "year_id": 8846, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8848, + "make_id": 8785, + "model_id": 8848, + "year_id": 8848, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8849, + "make_id": 8785, + "model_id": 8848, + "year_id": 8848, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8850, + "make_id": 8785, + "model_id": 8848, + "year_id": 8848, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8851, + "make_id": 8785, + "model_id": 8848, + "year_id": 8848, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8852, + "make_id": 8852, + "model_id": 8852, + "year_id": 8852, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8853, + "make_id": 8852, + "model_id": 8852, + "year_id": 8853, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8854, + "make_id": 8852, + "model_id": 8852, + "year_id": 8853, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8855, + "make_id": 8852, + "model_id": 8852, + "year_id": 8853, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8856, + "make_id": 8852, + "model_id": 8852, + "year_id": 8856, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8857, + "make_id": 8852, + "model_id": 8852, + "year_id": 8856, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8858, + "make_id": 8852, + "model_id": 8852, + "year_id": 8856, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8859, + "make_id": 8852, + "model_id": 8852, + "year_id": 8859, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8860, + "make_id": 8852, + "model_id": 8852, + "year_id": 8859, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8861, + "make_id": 8852, + "model_id": 8852, + "year_id": 8859, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8862, + "make_id": 8852, + "model_id": 8852, + "year_id": 8862, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8863, + "make_id": 8852, + "model_id": 8852, + "year_id": 8862, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8864, + "make_id": 8852, + "model_id": 8852, + "year_id": 8862, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8865, + "make_id": 8852, + "model_id": 8865, + "year_id": 8865, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8866, + "make_id": 8852, + "model_id": 8866, + "year_id": 8866, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8867, + "make_id": 8852, + "model_id": 8866, + "year_id": 8867, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8868, + "make_id": 8852, + "model_id": 8866, + "year_id": 8868, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8869, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8870, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8871, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8872, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8873, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8874, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8875, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8876, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8877, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8878, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8879, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8880, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8881, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8882, + "make_id": 8869, + "model_id": 8869, + "year_id": 8869, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8883, + "make_id": 8869, + "model_id": 8869, + "year_id": 8883, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8884, + "make_id": 8869, + "model_id": 8869, + "year_id": 8883, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8885, + "make_id": 8869, + "model_id": 8869, + "year_id": 8883, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8886, + "make_id": 8869, + "model_id": 8869, + "year_id": 8883, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8887, + "make_id": 8869, + "model_id": 8869, + "year_id": 8883, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8888, + "make_id": 8869, + "model_id": 8869, + "year_id": 8883, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8889, + "make_id": 8869, + "model_id": 8869, + "year_id": 8889, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8890, + "make_id": 8869, + "model_id": 8869, + "year_id": 8889, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8891, + "make_id": 8869, + "model_id": 8869, + "year_id": 8889, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8892, + "make_id": 8869, + "model_id": 8869, + "year_id": 8892, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8893, + "make_id": 8869, + "model_id": 8869, + "year_id": 8892, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8894, + "make_id": 8869, + "model_id": 8869, + "year_id": 8892, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8895, + "make_id": 8869, + "model_id": 8869, + "year_id": 8895, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8896, + "make_id": 8869, + "model_id": 8869, + "year_id": 8895, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8897, + "make_id": 8869, + "model_id": 8869, + "year_id": 8895, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8898, + "make_id": 8869, + "model_id": 8869, + "year_id": 8898, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8899, + "make_id": 8869, + "model_id": 8869, + "year_id": 8898, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8900, + "make_id": 8869, + "model_id": 8869, + "year_id": 8898, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8901, + "make_id": 8869, + "model_id": 8901, + "year_id": 8901, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8902, + "make_id": 8869, + "model_id": 8901, + "year_id": 8901, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8903, + "make_id": 8869, + "model_id": 8901, + "year_id": 8901, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8904, + "make_id": 8869, + "model_id": 8901, + "year_id": 8901, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8905, + "make_id": 8869, + "model_id": 8901, + "year_id": 8901, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8906, + "make_id": 8869, + "model_id": 8901, + "year_id": 8901, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8907, + "make_id": 8869, + "model_id": 8901, + "year_id": 8901, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8908, + "make_id": 8869, + "model_id": 8901, + "year_id": 8901, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8909, + "make_id": 8869, + "model_id": 8901, + "year_id": 8909, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8910, + "make_id": 8869, + "model_id": 8901, + "year_id": 8909, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8911, + "make_id": 8869, + "model_id": 8901, + "year_id": 8909, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8912, + "make_id": 8869, + "model_id": 8901, + "year_id": 8909, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8913, + "make_id": 8869, + "model_id": 8901, + "year_id": 8909, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8914, + "make_id": 8869, + "model_id": 8901, + "year_id": 8909, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8915, + "make_id": 8869, + "model_id": 8901, + "year_id": 8915, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8916, + "make_id": 8869, + "model_id": 8901, + "year_id": 8915, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8917, + "make_id": 8869, + "model_id": 8901, + "year_id": 8915, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8918, + "make_id": 8869, + "model_id": 8901, + "year_id": 8915, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8919, + "make_id": 8869, + "model_id": 8919, + "year_id": 8919, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8920, + "make_id": 8869, + "model_id": 8919, + "year_id": 8919, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8921, + "make_id": 8869, + "model_id": 8919, + "year_id": 8919, + "cylinders": 8, + "displacement": 5.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8922, + "make_id": 8869, + "model_id": 8919, + "year_id": 8919, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8923, + "make_id": 8869, + "model_id": 8919, + "year_id": 8919, + "cylinders": 8, + "displacement": 5.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8924, + "make_id": 8869, + "model_id": 8919, + "year_id": 8924, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8925, + "make_id": 8869, + "model_id": 8919, + "year_id": 8924, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8926, + "make_id": 8869, + "model_id": 8919, + "year_id": 8924, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8927, + "make_id": 8869, + "model_id": 8919, + "year_id": 8924, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8928, + "make_id": 8869, + "model_id": 8919, + "year_id": 8924, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8929, + "make_id": 8869, + "model_id": 8919, + "year_id": 8929, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8930, + "make_id": 8869, + "model_id": 8919, + "year_id": 8929, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8931, + "make_id": 8869, + "model_id": 8919, + "year_id": 8929, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8932, + "make_id": 8869, + "model_id": 8919, + "year_id": 8929, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8933, + "make_id": 8869, + "model_id": 8919, + "year_id": 8933, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8934, + "make_id": 8869, + "model_id": 8919, + "year_id": 8933, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8935, + "make_id": 8869, + "model_id": 8919, + "year_id": 8933, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8936, + "make_id": 8869, + "model_id": 8919, + "year_id": 8933, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8937, + "make_id": 8869, + "model_id": 8919, + "year_id": 8937, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8938, + "make_id": 8869, + "model_id": 8919, + "year_id": 8937, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8939, + "make_id": 8869, + "model_id": 8919, + "year_id": 8937, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8940, + "make_id": 8869, + "model_id": 8919, + "year_id": 8940, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8941, + "make_id": 8869, + "model_id": 8919, + "year_id": 8940, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8942, + "make_id": 8869, + "model_id": 8919, + "year_id": 8940, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8943, + "make_id": 8869, + "model_id": 8919, + "year_id": 8943, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8944, + "make_id": 8869, + "model_id": 8919, + "year_id": 8943, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8945, + "make_id": 8869, + "model_id": 8919, + "year_id": 8945, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8946, + "make_id": 8869, + "model_id": 8919, + "year_id": 8945, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 8947, + "make_id": 8869, + "model_id": 8947, + "year_id": 8947, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8948, + "make_id": 8869, + "model_id": 8947, + "year_id": 8947, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 8949, + "make_id": 8869, + "model_id": 8947, + "year_id": 8947, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8950, + "make_id": 8869, + "model_id": 8947, + "year_id": 8947, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8951, + "make_id": 8869, + "model_id": 8947, + "year_id": 8947, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8952, + "make_id": 8869, + "model_id": 8947, + "year_id": 8947, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 8953, + "make_id": 8869, + "model_id": 8947, + "year_id": 8947, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8954, + "make_id": 8869, + "model_id": 8947, + "year_id": 8947, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8955, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8956, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 8957, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8958, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8959, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8960, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8961, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 8962, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8963, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8964, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8965, + "make_id": 8869, + "model_id": 8947, + "year_id": 8955, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8966, + "make_id": 8869, + "model_id": 8947, + "year_id": 8966, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8967, + "make_id": 8869, + "model_id": 8947, + "year_id": 8966, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8968, + "make_id": 8869, + "model_id": 8947, + "year_id": 8966, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8969, + "make_id": 8869, + "model_id": 8947, + "year_id": 8966, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8970, + "make_id": 8869, + "model_id": 8947, + "year_id": 8966, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8971, + "make_id": 8869, + "model_id": 8947, + "year_id": 8971, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8972, + "make_id": 8869, + "model_id": 8947, + "year_id": 8971, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8973, + "make_id": 8869, + "model_id": 8947, + "year_id": 8971, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8974, + "make_id": 8869, + "model_id": 8947, + "year_id": 8971, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8975, + "make_id": 8869, + "model_id": 8947, + "year_id": 8971, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8976, + "make_id": 8869, + "model_id": 8947, + "year_id": 8976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8977, + "make_id": 8869, + "model_id": 8947, + "year_id": 8976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8978, + "make_id": 8869, + "model_id": 8947, + "year_id": 8976, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8979, + "make_id": 8869, + "model_id": 8947, + "year_id": 8979, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8980, + "make_id": 8869, + "model_id": 8947, + "year_id": 8979, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8981, + "make_id": 8869, + "model_id": 8947, + "year_id": 8979, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8982, + "make_id": 8869, + "model_id": 8982, + "year_id": 8982, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8983, + "make_id": 8869, + "model_id": 8982, + "year_id": 8982, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 8984, + "make_id": 8869, + "model_id": 8982, + "year_id": 8982, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8985, + "make_id": 8869, + "model_id": 8982, + "year_id": 8982, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8986, + "make_id": 8869, + "model_id": 8982, + "year_id": 8982, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8987, + "make_id": 8869, + "model_id": 8982, + "year_id": 8982, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 8988, + "make_id": 8869, + "model_id": 8982, + "year_id": 8982, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 8989, + "make_id": 8869, + "model_id": 8982, + "year_id": 8982, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 8990, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8991, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 8992, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8993, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8994, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8995, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 8996, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 8997, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8998, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 8999, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9000, + "make_id": 8869, + "model_id": 8982, + "year_id": 8990, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9001, + "make_id": 8869, + "model_id": 8982, + "year_id": 9001, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9002, + "make_id": 8869, + "model_id": 8982, + "year_id": 9001, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9003, + "make_id": 8869, + "model_id": 8982, + "year_id": 9001, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9004, + "make_id": 8869, + "model_id": 8982, + "year_id": 9004, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9005, + "make_id": 8869, + "model_id": 8982, + "year_id": 9004, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9006, + "make_id": 8869, + "model_id": 8982, + "year_id": 9004, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9007, + "make_id": 8869, + "model_id": 8982, + "year_id": 9007, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9008, + "make_id": 8869, + "model_id": 8982, + "year_id": 9007, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9009, + "make_id": 8869, + "model_id": 8982, + "year_id": 9007, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9010, + "make_id": 8869, + "model_id": 9010, + "year_id": 9010, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9011, + "make_id": 8869, + "model_id": 9010, + "year_id": 9010, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9012, + "make_id": 8869, + "model_id": 9010, + "year_id": 9010, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9013, + "make_id": 8869, + "model_id": 9010, + "year_id": 9010, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9014, + "make_id": 8869, + "model_id": 9010, + "year_id": 9010, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9015, + "make_id": 8869, + "model_id": 9010, + "year_id": 9015, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9016, + "make_id": 8869, + "model_id": 9010, + "year_id": 9015, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9017, + "make_id": 8869, + "model_id": 9010, + "year_id": 9015, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9018, + "make_id": 8869, + "model_id": 9010, + "year_id": 9018, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9019, + "make_id": 8869, + "model_id": 9010, + "year_id": 9018, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9020, + "make_id": 8869, + "model_id": 9010, + "year_id": 9018, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9021, + "make_id": 8869, + "model_id": 9010, + "year_id": 9021, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9022, + "make_id": 8869, + "model_id": 9010, + "year_id": 9021, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9023, + "make_id": 8869, + "model_id": 9010, + "year_id": 9021, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9024, + "make_id": 8869, + "model_id": 9010, + "year_id": 9021, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9025, + "make_id": 8869, + "model_id": 9010, + "year_id": 9021, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9026, + "make_id": 8869, + "model_id": 9010, + "year_id": 9021, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9027, + "make_id": 8869, + "model_id": 9010, + "year_id": 9027, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9028, + "make_id": 8869, + "model_id": 9010, + "year_id": 9027, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9029, + "make_id": 8869, + "model_id": 9010, + "year_id": 9027, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9030, + "make_id": 8869, + "model_id": 9010, + "year_id": 9030, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9031, + "make_id": 8869, + "model_id": 9010, + "year_id": 9031, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9032, + "make_id": 8869, + "model_id": 9010, + "year_id": 9031, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9033, + "make_id": 8869, + "model_id": 9010, + "year_id": 9031, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9034, + "make_id": 8869, + "model_id": 9010, + "year_id": 9031, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9035, + "make_id": 8869, + "model_id": 9010, + "year_id": 9031, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9036, + "make_id": 8869, + "model_id": 9010, + "year_id": 9036, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9037, + "make_id": 8869, + "model_id": 9010, + "year_id": 9036, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9038, + "make_id": 8869, + "model_id": 9010, + "year_id": 9036, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9039, + "make_id": 8869, + "model_id": 9010, + "year_id": 9039, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9040, + "make_id": 8869, + "model_id": 9010, + "year_id": 9039, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9041, + "make_id": 8869, + "model_id": 9010, + "year_id": 9039, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9042, + "make_id": 8869, + "model_id": 9010, + "year_id": 9042, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9043, + "make_id": 8869, + "model_id": 9010, + "year_id": 9042, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9044, + "make_id": 8869, + "model_id": 9010, + "year_id": 9042, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9045, + "make_id": 8869, + "model_id": 9010, + "year_id": 9045, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9046, + "make_id": 8869, + "model_id": 9010, + "year_id": 9045, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9047, + "make_id": 8869, + "model_id": 9010, + "year_id": 9045, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9048, + "make_id": 8869, + "model_id": 9010, + "year_id": 9048, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9049, + "make_id": 8869, + "model_id": 9010, + "year_id": 9048, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9050, + "make_id": 8869, + "model_id": 9010, + "year_id": 9048, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9051, + "make_id": 8869, + "model_id": 9010, + "year_id": 9051, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9052, + "make_id": 8869, + "model_id": 9010, + "year_id": 9051, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9053, + "make_id": 8869, + "model_id": 9010, + "year_id": 9051, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9054, + "make_id": 8869, + "model_id": 9054, + "year_id": 9054, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9055, + "make_id": 8869, + "model_id": 9054, + "year_id": 9054, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9056, + "make_id": 8869, + "model_id": 9054, + "year_id": 9054, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9057, + "make_id": 8869, + "model_id": 9054, + "year_id": 9054, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9058, + "make_id": 8869, + "model_id": 9054, + "year_id": 9054, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9059, + "make_id": 8869, + "model_id": 9054, + "year_id": 9059, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9060, + "make_id": 8869, + "model_id": 9054, + "year_id": 9059, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9061, + "make_id": 8869, + "model_id": 9054, + "year_id": 9059, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9062, + "make_id": 8869, + "model_id": 9054, + "year_id": 9059, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9063, + "make_id": 8869, + "model_id": 9054, + "year_id": 9063, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9064, + "make_id": 8869, + "model_id": 9054, + "year_id": 9063, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9065, + "make_id": 8869, + "model_id": 9054, + "year_id": 9063, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9066, + "make_id": 8869, + "model_id": 9054, + "year_id": 9063, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9067, + "make_id": 8869, + "model_id": 9054, + "year_id": 9063, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9068, + "make_id": 8869, + "model_id": 9054, + "year_id": 9068, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9069, + "make_id": 8869, + "model_id": 9054, + "year_id": 9068, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9070, + "make_id": 8869, + "model_id": 9054, + "year_id": 9068, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9071, + "make_id": 8869, + "model_id": 9054, + "year_id": 9068, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9072, + "make_id": 8869, + "model_id": 9054, + "year_id": 9068, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9073, + "make_id": 8869, + "model_id": 9054, + "year_id": 9073, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9074, + "make_id": 8869, + "model_id": 9054, + "year_id": 9073, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9075, + "make_id": 8869, + "model_id": 9054, + "year_id": 9073, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9076, + "make_id": 8869, + "model_id": 9054, + "year_id": 9073, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9077, + "make_id": 8869, + "model_id": 9054, + "year_id": 9077, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9078, + "make_id": 8869, + "model_id": 9054, + "year_id": 9077, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9079, + "make_id": 8869, + "model_id": 9054, + "year_id": 9077, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9080, + "make_id": 8869, + "model_id": 9054, + "year_id": 9077, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9081, + "make_id": 8869, + "model_id": 9054, + "year_id": 9081, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9082, + "make_id": 8869, + "model_id": 9054, + "year_id": 9081, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9083, + "make_id": 8869, + "model_id": 9054, + "year_id": 9081, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9084, + "make_id": 8869, + "model_id": 9054, + "year_id": 9081, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9085, + "make_id": 8869, + "model_id": 9054, + "year_id": 9085, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9086, + "make_id": 8869, + "model_id": 9054, + "year_id": 9085, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9087, + "make_id": 8869, + "model_id": 9054, + "year_id": 9085, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9088, + "make_id": 8869, + "model_id": 9054, + "year_id": 9085, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9089, + "make_id": 8869, + "model_id": 9089, + "year_id": 9089, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9090, + "make_id": 8869, + "model_id": 9089, + "year_id": 9089, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9091, + "make_id": 8869, + "model_id": 9089, + "year_id": 9089, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9092, + "make_id": 8869, + "model_id": 9089, + "year_id": 9089, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9093, + "make_id": 8869, + "model_id": 9089, + "year_id": 9089, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9094, + "make_id": 8869, + "model_id": 9089, + "year_id": 9089, + "cylinders": 8, + "displacement": 5.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9095, + "make_id": 8869, + "model_id": 9089, + "year_id": 9089, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9096, + "make_id": 8869, + "model_id": 9089, + "year_id": 9089, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9097, + "make_id": 8869, + "model_id": 9089, + "year_id": 9089, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9098, + "make_id": 8869, + "model_id": 9089, + "year_id": 9089, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9099, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9100, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9101, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9102, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9103, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9104, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9105, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9106, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9107, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9108, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9109, + "make_id": 8869, + "model_id": 9089, + "year_id": 9099, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9110, + "make_id": 8869, + "model_id": 9089, + "year_id": 9110, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9111, + "make_id": 8869, + "model_id": 9089, + "year_id": 9110, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9112, + "make_id": 8869, + "model_id": 9089, + "year_id": 9110, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9113, + "make_id": 8869, + "model_id": 9089, + "year_id": 9110, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9114, + "make_id": 8869, + "model_id": 9089, + "year_id": 9110, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9115, + "make_id": 8869, + "model_id": 9089, + "year_id": 9110, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9116, + "make_id": 8869, + "model_id": 9089, + "year_id": 9110, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9117, + "make_id": 8869, + "model_id": 9089, + "year_id": 9110, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9118, + "make_id": 8869, + "model_id": 9089, + "year_id": 9110, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9119, + "make_id": 8869, + "model_id": 9089, + "year_id": 9110, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9120, + "make_id": 8869, + "model_id": 9089, + "year_id": 9120, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9121, + "make_id": 8869, + "model_id": 9089, + "year_id": 9120, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9122, + "make_id": 8869, + "model_id": 9089, + "year_id": 9120, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9123, + "make_id": 8869, + "model_id": 9089, + "year_id": 9120, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9124, + "make_id": 8869, + "model_id": 9089, + "year_id": 9120, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9125, + "make_id": 8869, + "model_id": 9089, + "year_id": 9120, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9126, + "make_id": 8869, + "model_id": 9089, + "year_id": 9120, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9127, + "make_id": 8869, + "model_id": 9089, + "year_id": 9120, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9128, + "make_id": 8869, + "model_id": 9089, + "year_id": 9120, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9129, + "make_id": 8869, + "model_id": 9089, + "year_id": 9120, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9130, + "make_id": 8869, + "model_id": 9089, + "year_id": 9130, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9131, + "make_id": 8869, + "model_id": 9089, + "year_id": 9130, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9132, + "make_id": 8869, + "model_id": 9089, + "year_id": 9130, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9133, + "make_id": 8869, + "model_id": 9089, + "year_id": 9130, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9134, + "make_id": 8869, + "model_id": 9089, + "year_id": 9130, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9135, + "make_id": 8869, + "model_id": 9089, + "year_id": 9130, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9136, + "make_id": 8869, + "model_id": 9089, + "year_id": 9130, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9137, + "make_id": 8869, + "model_id": 9089, + "year_id": 9137, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9138, + "make_id": 8869, + "model_id": 9089, + "year_id": 9137, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9139, + "make_id": 8869, + "model_id": 9089, + "year_id": 9137, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9140, + "make_id": 8869, + "model_id": 9089, + "year_id": 9137, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9141, + "make_id": 8869, + "model_id": 9089, + "year_id": 9137, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9142, + "make_id": 8869, + "model_id": 9089, + "year_id": 9137, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9143, + "make_id": 8869, + "model_id": 9089, + "year_id": 9137, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9144, + "make_id": 8869, + "model_id": 9089, + "year_id": 9137, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9145, + "make_id": 8869, + "model_id": 9089, + "year_id": 9145, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9146, + "make_id": 8869, + "model_id": 9089, + "year_id": 9145, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9147, + "make_id": 8869, + "model_id": 9089, + "year_id": 9145, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9148, + "make_id": 8869, + "model_id": 9089, + "year_id": 9145, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9149, + "make_id": 8869, + "model_id": 9089, + "year_id": 9145, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9150, + "make_id": 8869, + "model_id": 9089, + "year_id": 9145, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9151, + "make_id": 8869, + "model_id": 9089, + "year_id": 9145, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9152, + "make_id": 8869, + "model_id": 9089, + "year_id": 9152, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9153, + "make_id": 8869, + "model_id": 9089, + "year_id": 9152, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9154, + "make_id": 8869, + "model_id": 9089, + "year_id": 9152, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9155, + "make_id": 8869, + "model_id": 9089, + "year_id": 9152, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9156, + "make_id": 8869, + "model_id": 9089, + "year_id": 9152, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9157, + "make_id": 8869, + "model_id": 9089, + "year_id": 9152, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9158, + "make_id": 8869, + "model_id": 9089, + "year_id": 9152, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9159, + "make_id": 8869, + "model_id": 9089, + "year_id": 9159, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9160, + "make_id": 8869, + "model_id": 9089, + "year_id": 9159, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9161, + "make_id": 8869, + "model_id": 9089, + "year_id": 9159, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9162, + "make_id": 8869, + "model_id": 9089, + "year_id": 9159, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9163, + "make_id": 8869, + "model_id": 9089, + "year_id": 9159, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9164, + "make_id": 8869, + "model_id": 9089, + "year_id": 9164, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9165, + "make_id": 8869, + "model_id": 9089, + "year_id": 9164, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9166, + "make_id": 8869, + "model_id": 9089, + "year_id": 9164, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9167, + "make_id": 8869, + "model_id": 9089, + "year_id": 9164, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9168, + "make_id": 8869, + "model_id": 9089, + "year_id": 9164, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9169, + "make_id": 8869, + "model_id": 9089, + "year_id": 9164, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9170, + "make_id": 8869, + "model_id": 9089, + "year_id": 9170, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9171, + "make_id": 8869, + "model_id": 9089, + "year_id": 9170, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9172, + "make_id": 8869, + "model_id": 9089, + "year_id": 9170, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9173, + "make_id": 8869, + "model_id": 9089, + "year_id": 9170, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9174, + "make_id": 8869, + "model_id": 9174, + "year_id": 9174, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9175, + "make_id": 8869, + "model_id": 9174, + "year_id": 9174, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9176, + "make_id": 8869, + "model_id": 9174, + "year_id": 9174, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9177, + "make_id": 8869, + "model_id": 9174, + "year_id": 9174, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9178, + "make_id": 8869, + "model_id": 9174, + "year_id": 9174, + "cylinders": 8, + "displacement": 5.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9179, + "make_id": 8869, + "model_id": 9174, + "year_id": 9174, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9180, + "make_id": 8869, + "model_id": 9174, + "year_id": 9174, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9181, + "make_id": 8869, + "model_id": 9174, + "year_id": 9174, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9182, + "make_id": 8869, + "model_id": 9174, + "year_id": 9174, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9183, + "make_id": 8869, + "model_id": 9174, + "year_id": 9183, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9184, + "make_id": 8869, + "model_id": 9174, + "year_id": 9183, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9185, + "make_id": 8869, + "model_id": 9174, + "year_id": 9183, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9186, + "make_id": 8869, + "model_id": 9174, + "year_id": 9183, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9187, + "make_id": 8869, + "model_id": 9174, + "year_id": 9183, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9188, + "make_id": 8869, + "model_id": 9174, + "year_id": 9183, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9189, + "make_id": 8869, + "model_id": 9174, + "year_id": 9183, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9190, + "make_id": 8869, + "model_id": 9174, + "year_id": 9183, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9191, + "make_id": 8869, + "model_id": 9174, + "year_id": 9183, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9192, + "make_id": 8869, + "model_id": 9174, + "year_id": 9183, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9193, + "make_id": 8869, + "model_id": 9174, + "year_id": 9193, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9194, + "make_id": 8869, + "model_id": 9174, + "year_id": 9193, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9195, + "make_id": 8869, + "model_id": 9174, + "year_id": 9193, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9196, + "make_id": 8869, + "model_id": 9174, + "year_id": 9193, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9197, + "make_id": 8869, + "model_id": 9174, + "year_id": 9193, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9198, + "make_id": 8869, + "model_id": 9174, + "year_id": 9193, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9199, + "make_id": 8869, + "model_id": 9174, + "year_id": 9193, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9200, + "make_id": 8869, + "model_id": 9174, + "year_id": 9193, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9201, + "make_id": 8869, + "model_id": 9174, + "year_id": 9193, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9202, + "make_id": 8869, + "model_id": 9174, + "year_id": 9202, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9203, + "make_id": 8869, + "model_id": 9174, + "year_id": 9202, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9204, + "make_id": 8869, + "model_id": 9174, + "year_id": 9202, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9205, + "make_id": 8869, + "model_id": 9174, + "year_id": 9202, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9206, + "make_id": 8869, + "model_id": 9174, + "year_id": 9202, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9207, + "make_id": 8869, + "model_id": 9174, + "year_id": 9202, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9208, + "make_id": 8869, + "model_id": 9174, + "year_id": 9202, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9209, + "make_id": 8869, + "model_id": 9174, + "year_id": 9202, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9210, + "make_id": 8869, + "model_id": 9174, + "year_id": 9202, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9211, + "make_id": 8869, + "model_id": 9174, + "year_id": 9211, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9212, + "make_id": 8869, + "model_id": 9174, + "year_id": 9211, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9213, + "make_id": 8869, + "model_id": 9174, + "year_id": 9211, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9214, + "make_id": 8869, + "model_id": 9174, + "year_id": 9211, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9215, + "make_id": 8869, + "model_id": 9174, + "year_id": 9211, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9216, + "make_id": 8869, + "model_id": 9174, + "year_id": 9211, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9217, + "make_id": 8869, + "model_id": 9174, + "year_id": 9211, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9218, + "make_id": 8869, + "model_id": 9174, + "year_id": 9218, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9219, + "make_id": 8869, + "model_id": 9174, + "year_id": 9218, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9220, + "make_id": 8869, + "model_id": 9174, + "year_id": 9218, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9221, + "make_id": 8869, + "model_id": 9174, + "year_id": 9218, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9222, + "make_id": 8869, + "model_id": 9174, + "year_id": 9218, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9223, + "make_id": 8869, + "model_id": 9174, + "year_id": 9218, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9224, + "make_id": 8869, + "model_id": 9174, + "year_id": 9218, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9225, + "make_id": 8869, + "model_id": 9174, + "year_id": 9218, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9226, + "make_id": 8869, + "model_id": 9174, + "year_id": 9226, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9227, + "make_id": 8869, + "model_id": 9174, + "year_id": 9226, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9228, + "make_id": 8869, + "model_id": 9174, + "year_id": 9226, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9229, + "make_id": 8869, + "model_id": 9174, + "year_id": 9226, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9230, + "make_id": 8869, + "model_id": 9174, + "year_id": 9226, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9231, + "make_id": 8869, + "model_id": 9174, + "year_id": 9226, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9232, + "make_id": 8869, + "model_id": 9174, + "year_id": 9226, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9233, + "make_id": 8869, + "model_id": 9174, + "year_id": 9233, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9234, + "make_id": 8869, + "model_id": 9174, + "year_id": 9233, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9235, + "make_id": 8869, + "model_id": 9174, + "year_id": 9233, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9236, + "make_id": 8869, + "model_id": 9174, + "year_id": 9233, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9237, + "make_id": 8869, + "model_id": 9174, + "year_id": 9233, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9238, + "make_id": 8869, + "model_id": 9174, + "year_id": 9233, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9239, + "make_id": 8869, + "model_id": 9174, + "year_id": 9233, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9240, + "make_id": 8869, + "model_id": 9174, + "year_id": 9240, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9241, + "make_id": 8869, + "model_id": 9174, + "year_id": 9240, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9242, + "make_id": 8869, + "model_id": 9174, + "year_id": 9240, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9243, + "make_id": 8869, + "model_id": 9174, + "year_id": 9240, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9244, + "make_id": 8869, + "model_id": 9174, + "year_id": 9240, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9245, + "make_id": 8869, + "model_id": 9174, + "year_id": 9245, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9246, + "make_id": 8869, + "model_id": 9174, + "year_id": 9245, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9247, + "make_id": 8869, + "model_id": 9174, + "year_id": 9245, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9248, + "make_id": 8869, + "model_id": 9174, + "year_id": 9245, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9249, + "make_id": 8869, + "model_id": 9174, + "year_id": 9245, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9250, + "make_id": 8869, + "model_id": 9174, + "year_id": 9245, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9251, + "make_id": 8869, + "model_id": 9174, + "year_id": 9251, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9252, + "make_id": 8869, + "model_id": 9174, + "year_id": 9251, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9253, + "make_id": 8869, + "model_id": 9174, + "year_id": 9251, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9254, + "make_id": 8869, + "model_id": 9174, + "year_id": 9251, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9255, + "make_id": 8869, + "model_id": 9255, + "year_id": 9255, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9256, + "make_id": 8869, + "model_id": 9255, + "year_id": 9255, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9257, + "make_id": 8869, + "model_id": 9255, + "year_id": 9255, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9258, + "make_id": 8869, + "model_id": 9255, + "year_id": 9258, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9259, + "make_id": 8869, + "model_id": 9255, + "year_id": 9258, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9260, + "make_id": 8869, + "model_id": 9255, + "year_id": 9258, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9261, + "make_id": 8869, + "model_id": 9255, + "year_id": 9261, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9262, + "make_id": 8869, + "model_id": 9255, + "year_id": 9261, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9263, + "make_id": 8869, + "model_id": 9255, + "year_id": 9261, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9264, + "make_id": 8869, + "model_id": 9264, + "year_id": 9264, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9265, + "make_id": 8869, + "model_id": 9264, + "year_id": 9264, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9266, + "make_id": 8869, + "model_id": 9264, + "year_id": 9266, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9267, + "make_id": 8869, + "model_id": 9264, + "year_id": 9266, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9268, + "make_id": 8869, + "model_id": 9264, + "year_id": 9268, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9269, + "make_id": 8869, + "model_id": 9264, + "year_id": 9268, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9270, + "make_id": 8869, + "model_id": 9270, + "year_id": 9270, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9271, + "make_id": 8869, + "model_id": 9270, + "year_id": 9270, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9272, + "make_id": 8869, + "model_id": 9270, + "year_id": 9270, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9273, + "make_id": 8869, + "model_id": 9270, + "year_id": 9270, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9274, + "make_id": 8869, + "model_id": 9270, + "year_id": 9274, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9275, + "make_id": 8869, + "model_id": 9270, + "year_id": 9274, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9276, + "make_id": 8869, + "model_id": 9270, + "year_id": 9274, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9277, + "make_id": 8869, + "model_id": 9270, + "year_id": 9274, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9278, + "make_id": 8869, + "model_id": 9270, + "year_id": 9278, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9279, + "make_id": 8869, + "model_id": 9270, + "year_id": 9278, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9280, + "make_id": 8869, + "model_id": 9270, + "year_id": 9278, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9281, + "make_id": 8869, + "model_id": 9270, + "year_id": 9278, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9282, + "make_id": 8869, + "model_id": 9282, + "year_id": 9282, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9283, + "make_id": 8869, + "model_id": 9282, + "year_id": 9282, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9284, + "make_id": 8869, + "model_id": 9282, + "year_id": 9282, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9285, + "make_id": 8869, + "model_id": 9282, + "year_id": 9282, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9286, + "make_id": 8869, + "model_id": 9282, + "year_id": 9286, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9287, + "make_id": 8869, + "model_id": 9282, + "year_id": 9286, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9288, + "make_id": 8869, + "model_id": 9282, + "year_id": 9286, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9289, + "make_id": 8869, + "model_id": 9282, + "year_id": 9286, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9290, + "make_id": 8869, + "model_id": 9282, + "year_id": 9290, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9291, + "make_id": 8869, + "model_id": 9282, + "year_id": 9290, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9292, + "make_id": 8869, + "model_id": 9282, + "year_id": 9290, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9293, + "make_id": 8869, + "model_id": 9293, + "year_id": 9293, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9294, + "make_id": 8869, + "model_id": 9293, + "year_id": 9293, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9295, + "make_id": 8869, + "model_id": 9293, + "year_id": 9295, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9296, + "make_id": 8869, + "model_id": 9293, + "year_id": 9295, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9297, + "make_id": 8869, + "model_id": 9293, + "year_id": 9297, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9298, + "make_id": 8869, + "model_id": 9293, + "year_id": 9297, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9299, + "make_id": 8869, + "model_id": 9299, + "year_id": 9299, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9300, + "make_id": 8869, + "model_id": 9299, + "year_id": 9299, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9301, + "make_id": 8869, + "model_id": 9299, + "year_id": 9301, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9302, + "make_id": 8869, + "model_id": 9299, + "year_id": 9301, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9303, + "make_id": 8869, + "model_id": 9299, + "year_id": 9303, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9304, + "make_id": 8869, + "model_id": 9299, + "year_id": 9303, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9305, + "make_id": 8869, + "model_id": 9305, + "year_id": 9305, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9306, + "make_id": 8869, + "model_id": 9305, + "year_id": 9305, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9307, + "make_id": 8869, + "model_id": 9305, + "year_id": 9305, + "cylinders": 8, + "displacement": 5.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9308, + "make_id": 8869, + "model_id": 9305, + "year_id": 9305, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9309, + "make_id": 8869, + "model_id": 9305, + "year_id": 9309, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9310, + "make_id": 8869, + "model_id": 9305, + "year_id": 9309, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9311, + "make_id": 8869, + "model_id": 9305, + "year_id": 9309, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9312, + "make_id": 8869, + "model_id": 9305, + "year_id": 9309, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9313, + "make_id": 8869, + "model_id": 9305, + "year_id": 9313, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9314, + "make_id": 8869, + "model_id": 9305, + "year_id": 9313, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9315, + "make_id": 8869, + "model_id": 9305, + "year_id": 9313, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9316, + "make_id": 8869, + "model_id": 9305, + "year_id": 9316, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9317, + "make_id": 8869, + "model_id": 9305, + "year_id": 9316, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9318, + "make_id": 8869, + "model_id": 9305, + "year_id": 9316, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9319, + "make_id": 8869, + "model_id": 9305, + "year_id": 9319, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9320, + "make_id": 8869, + "model_id": 9305, + "year_id": 9319, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9321, + "make_id": 8869, + "model_id": 9305, + "year_id": 9319, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9322, + "make_id": 8869, + "model_id": 9305, + "year_id": 9322, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9323, + "make_id": 8869, + "model_id": 9305, + "year_id": 9322, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9324, + "make_id": 8869, + "model_id": 9305, + "year_id": 9322, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9325, + "make_id": 8869, + "model_id": 9305, + "year_id": 9325, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9326, + "make_id": 8869, + "model_id": 9305, + "year_id": 9325, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9327, + "make_id": 8869, + "model_id": 9305, + "year_id": 9325, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9328, + "make_id": 8869, + "model_id": 9305, + "year_id": 9325, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9329, + "make_id": 8869, + "model_id": 9305, + "year_id": 9329, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9330, + "make_id": 8869, + "model_id": 9305, + "year_id": 9329, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9331, + "make_id": 8869, + "model_id": 9305, + "year_id": 9329, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9332, + "make_id": 8869, + "model_id": 9305, + "year_id": 9329, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9333, + "make_id": 8869, + "model_id": 9305, + "year_id": 9333, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9334, + "make_id": 8869, + "model_id": 9305, + "year_id": 9333, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9335, + "make_id": 8869, + "model_id": 9305, + "year_id": 9333, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9336, + "make_id": 8869, + "model_id": 9305, + "year_id": 9336, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9337, + "make_id": 8869, + "model_id": 9305, + "year_id": 9336, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9338, + "make_id": 8869, + "model_id": 9305, + "year_id": 9336, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9339, + "make_id": 8869, + "model_id": 9305, + "year_id": 9339, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9340, + "make_id": 8869, + "model_id": 9305, + "year_id": 9339, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9341, + "make_id": 8869, + "model_id": 9341, + "year_id": 9341, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9342, + "make_id": 8869, + "model_id": 9341, + "year_id": 9341, + "cylinders": 8, + "displacement": 5.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9343, + "make_id": 8869, + "model_id": 9341, + "year_id": 9341, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9344, + "make_id": 8869, + "model_id": 9341, + "year_id": 9344, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9345, + "make_id": 8869, + "model_id": 9341, + "year_id": 9344, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9346, + "make_id": 8869, + "model_id": 9341, + "year_id": 9344, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9347, + "make_id": 8869, + "model_id": 9341, + "year_id": 9347, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9348, + "make_id": 8869, + "model_id": 9341, + "year_id": 9347, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9349, + "make_id": 8869, + "model_id": 9341, + "year_id": 9347, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9350, + "make_id": 8869, + "model_id": 9341, + "year_id": 9350, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9351, + "make_id": 8869, + "model_id": 9341, + "year_id": 9350, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9352, + "make_id": 8869, + "model_id": 9341, + "year_id": 9350, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9353, + "make_id": 8869, + "model_id": 9341, + "year_id": 9353, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9354, + "make_id": 8869, + "model_id": 9341, + "year_id": 9353, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9355, + "make_id": 8869, + "model_id": 9341, + "year_id": 9353, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9356, + "make_id": 8869, + "model_id": 9341, + "year_id": 9356, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9357, + "make_id": 8869, + "model_id": 9341, + "year_id": 9356, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9358, + "make_id": 8869, + "model_id": 9341, + "year_id": 9356, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9359, + "make_id": 8869, + "model_id": 9341, + "year_id": 9359, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9360, + "make_id": 8869, + "model_id": 9341, + "year_id": 9359, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9361, + "make_id": 8869, + "model_id": 9341, + "year_id": 9359, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9362, + "make_id": 8869, + "model_id": 9341, + "year_id": 9362, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9363, + "make_id": 8869, + "model_id": 9341, + "year_id": 9362, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9364, + "make_id": 8869, + "model_id": 9341, + "year_id": 9362, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9365, + "make_id": 8869, + "model_id": 9341, + "year_id": 9365, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9366, + "make_id": 8869, + "model_id": 9341, + "year_id": 9365, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9367, + "make_id": 8869, + "model_id": 9341, + "year_id": 9367, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9368, + "make_id": 8869, + "model_id": 9341, + "year_id": 9367, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9369, + "make_id": 8869, + "model_id": 9341, + "year_id": 9369, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9370, + "make_id": 8869, + "model_id": 9341, + "year_id": 9369, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9371, + "make_id": 8869, + "model_id": 9371, + "year_id": 9371, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9372, + "make_id": 8869, + "model_id": 9371, + "year_id": 9371, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9373, + "make_id": 8869, + "model_id": 9371, + "year_id": 9373, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9374, + "make_id": 8869, + "model_id": 9371, + "year_id": 9373, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9375, + "make_id": 8869, + "model_id": 9371, + "year_id": 9375, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9376, + "make_id": 8869, + "model_id": 9371, + "year_id": 9375, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9377, + "make_id": 8869, + "model_id": 9377, + "year_id": 9377, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9378, + "make_id": 8869, + "model_id": 9377, + "year_id": 9377, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9379, + "make_id": 8869, + "model_id": 9377, + "year_id": 9379, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9380, + "make_id": 8869, + "model_id": 9377, + "year_id": 9379, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9381, + "make_id": 8869, + "model_id": 9377, + "year_id": 9381, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9382, + "make_id": 8869, + "model_id": 9377, + "year_id": 9381, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9383, + "make_id": 8869, + "model_id": 9383, + "year_id": 9383, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9384, + "make_id": 8869, + "model_id": 9383, + "year_id": 9383, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9385, + "make_id": 8869, + "model_id": 9383, + "year_id": 9383, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9386, + "make_id": 8869, + "model_id": 9383, + "year_id": 9383, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9387, + "make_id": 8869, + "model_id": 9383, + "year_id": 9383, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9388, + "make_id": 8869, + "model_id": 9383, + "year_id": 9388, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9389, + "make_id": 8869, + "model_id": 9383, + "year_id": 9388, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9390, + "make_id": 8869, + "model_id": 9383, + "year_id": 9388, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9391, + "make_id": 8869, + "model_id": 9383, + "year_id": 9388, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9392, + "make_id": 8869, + "model_id": 9383, + "year_id": 9388, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9393, + "make_id": 8869, + "model_id": 9383, + "year_id": 9388, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9394, + "make_id": 8869, + "model_id": 9383, + "year_id": 9394, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9395, + "make_id": 8869, + "model_id": 9383, + "year_id": 9394, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9396, + "make_id": 8869, + "model_id": 9383, + "year_id": 9394, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9397, + "make_id": 8869, + "model_id": 9383, + "year_id": 9394, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9398, + "make_id": 8869, + "model_id": 9383, + "year_id": 9394, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9399, + "make_id": 8869, + "model_id": 9383, + "year_id": 9399, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9400, + "make_id": 8869, + "model_id": 9383, + "year_id": 9399, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9401, + "make_id": 8869, + "model_id": 9383, + "year_id": 9399, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9402, + "make_id": 8869, + "model_id": 9383, + "year_id": 9399, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9403, + "make_id": 8869, + "model_id": 9383, + "year_id": 9403, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9404, + "make_id": 8869, + "model_id": 9383, + "year_id": 9403, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9405, + "make_id": 8869, + "model_id": 9383, + "year_id": 9403, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9406, + "make_id": 8869, + "model_id": 9383, + "year_id": 9403, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9407, + "make_id": 8869, + "model_id": 9383, + "year_id": 9407, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9408, + "make_id": 8869, + "model_id": 9383, + "year_id": 9407, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9409, + "make_id": 8869, + "model_id": 9383, + "year_id": 9407, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 9410, + "make_id": 8869, + "model_id": 9410, + "year_id": 9410, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9411, + "make_id": 8869, + "model_id": 9410, + "year_id": 9410, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9412, + "make_id": 8869, + "model_id": 9410, + "year_id": 9410, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9413, + "make_id": 8869, + "model_id": 9410, + "year_id": 9410, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9414, + "make_id": 8869, + "model_id": 9410, + "year_id": 9410, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9415, + "make_id": 8869, + "model_id": 9410, + "year_id": 9415, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9416, + "make_id": 8869, + "model_id": 9410, + "year_id": 9415, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9417, + "make_id": 8869, + "model_id": 9410, + "year_id": 9415, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9418, + "make_id": 8869, + "model_id": 9410, + "year_id": 9415, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9419, + "make_id": 8869, + "model_id": 9410, + "year_id": 9419, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9420, + "make_id": 8869, + "model_id": 9410, + "year_id": 9419, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9421, + "make_id": 8869, + "model_id": 9410, + "year_id": 9419, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9422, + "make_id": 8869, + "model_id": 9410, + "year_id": 9419, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9423, + "make_id": 8869, + "model_id": 9410, + "year_id": 9423, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9424, + "make_id": 8869, + "model_id": 9410, + "year_id": 9423, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9425, + "make_id": 8869, + "model_id": 9410, + "year_id": 9423, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9426, + "make_id": 8869, + "model_id": 9410, + "year_id": 9423, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9427, + "make_id": 8869, + "model_id": 9427, + "year_id": 9427, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9428, + "make_id": 8869, + "model_id": 9427, + "year_id": 9427, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9429, + "make_id": 8869, + "model_id": 9427, + "year_id": 9427, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9430, + "make_id": 8869, + "model_id": 9427, + "year_id": 9427, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9431, + "make_id": 8869, + "model_id": 9427, + "year_id": 9427, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9432, + "make_id": 8869, + "model_id": 9427, + "year_id": 9432, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9433, + "make_id": 8869, + "model_id": 9427, + "year_id": 9432, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9434, + "make_id": 8869, + "model_id": 9427, + "year_id": 9432, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9435, + "make_id": 8869, + "model_id": 9427, + "year_id": 9432, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9436, + "make_id": 8869, + "model_id": 9427, + "year_id": 9432, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9437, + "make_id": 8869, + "model_id": 9427, + "year_id": 9432, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9438, + "make_id": 8869, + "model_id": 9427, + "year_id": 9438, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9439, + "make_id": 8869, + "model_id": 9427, + "year_id": 9438, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9440, + "make_id": 8869, + "model_id": 9427, + "year_id": 9438, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9441, + "make_id": 8869, + "model_id": 9427, + "year_id": 9438, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9442, + "make_id": 8869, + "model_id": 9427, + "year_id": 9438, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9443, + "make_id": 8869, + "model_id": 9427, + "year_id": 9438, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9444, + "make_id": 8869, + "model_id": 9427, + "year_id": 9444, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9445, + "make_id": 8869, + "model_id": 9427, + "year_id": 9444, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9446, + "make_id": 8869, + "model_id": 9427, + "year_id": 9444, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9447, + "make_id": 8869, + "model_id": 9427, + "year_id": 9444, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9448, + "make_id": 8869, + "model_id": 9427, + "year_id": 9444, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9449, + "make_id": 8869, + "model_id": 9427, + "year_id": 9444, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9450, + "make_id": 8869, + "model_id": 9427, + "year_id": 9444, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9451, + "make_id": 8869, + "model_id": 9427, + "year_id": 9444, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9452, + "make_id": 8869, + "model_id": 9427, + "year_id": 9444, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9453, + "make_id": 8869, + "model_id": 9427, + "year_id": 9453, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9454, + "make_id": 8869, + "model_id": 9427, + "year_id": 9453, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9455, + "make_id": 8869, + "model_id": 9427, + "year_id": 9453, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9456, + "make_id": 8869, + "model_id": 9427, + "year_id": 9453, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9457, + "make_id": 8869, + "model_id": 9427, + "year_id": 9453, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9458, + "make_id": 8869, + "model_id": 9427, + "year_id": 9453, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9459, + "make_id": 8869, + "model_id": 9427, + "year_id": 9453, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9460, + "make_id": 8869, + "model_id": 9427, + "year_id": 9453, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9461, + "make_id": 8869, + "model_id": 9427, + "year_id": 9453, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9462, + "make_id": 8869, + "model_id": 9427, + "year_id": 9453, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9463, + "make_id": 8869, + "model_id": 9427, + "year_id": 9463, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9464, + "make_id": 8869, + "model_id": 9427, + "year_id": 9463, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9465, + "make_id": 8869, + "model_id": 9427, + "year_id": 9463, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9466, + "make_id": 8869, + "model_id": 9427, + "year_id": 9463, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9467, + "make_id": 8869, + "model_id": 9427, + "year_id": 9463, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9468, + "make_id": 8869, + "model_id": 9427, + "year_id": 9463, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9469, + "make_id": 8869, + "model_id": 9427, + "year_id": 9469, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9470, + "make_id": 8869, + "model_id": 9427, + "year_id": 9469, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9471, + "make_id": 8869, + "model_id": 9427, + "year_id": 9469, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9472, + "make_id": 8869, + "model_id": 9427, + "year_id": 9469, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9473, + "make_id": 8869, + "model_id": 9427, + "year_id": 9469, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9474, + "make_id": 8869, + "model_id": 9427, + "year_id": 9469, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9475, + "make_id": 8869, + "model_id": 9427, + "year_id": 9475, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9476, + "make_id": 8869, + "model_id": 9427, + "year_id": 9475, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9477, + "make_id": 8869, + "model_id": 9427, + "year_id": 9475, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9478, + "make_id": 8869, + "model_id": 9427, + "year_id": 9475, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9479, + "make_id": 8869, + "model_id": 9427, + "year_id": 9475, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9480, + "make_id": 8869, + "model_id": 9427, + "year_id": 9475, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9481, + "make_id": 8869, + "model_id": 9427, + "year_id": 9475, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9482, + "make_id": 8869, + "model_id": 9427, + "year_id": 9482, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9483, + "make_id": 8869, + "model_id": 9427, + "year_id": 9482, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9484, + "make_id": 8869, + "model_id": 9427, + "year_id": 9482, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9485, + "make_id": 8869, + "model_id": 9427, + "year_id": 9482, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9486, + "make_id": 8869, + "model_id": 9427, + "year_id": 9482, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9487, + "make_id": 8869, + "model_id": 9427, + "year_id": 9482, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9488, + "make_id": 8869, + "model_id": 9427, + "year_id": 9482, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9489, + "make_id": 8869, + "model_id": 9427, + "year_id": 9482, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9490, + "make_id": 8869, + "model_id": 9427, + "year_id": 9482, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 9491, + "make_id": 8869, + "model_id": 9427, + "year_id": 9491, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9492, + "make_id": 8869, + "model_id": 9427, + "year_id": 9491, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9493, + "make_id": 8869, + "model_id": 9427, + "year_id": 9491, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9494, + "make_id": 8869, + "model_id": 9427, + "year_id": 9491, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9495, + "make_id": 8869, + "model_id": 9427, + "year_id": 9491, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9496, + "make_id": 8869, + "model_id": 9427, + "year_id": 9491, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9497, + "make_id": 8869, + "model_id": 9427, + "year_id": 9491, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9498, + "make_id": 8869, + "model_id": 9427, + "year_id": 9491, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9499, + "make_id": 8869, + "model_id": 9427, + "year_id": 9499, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9500, + "make_id": 8869, + "model_id": 9427, + "year_id": 9499, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9501, + "make_id": 8869, + "model_id": 9427, + "year_id": 9499, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9502, + "make_id": 8869, + "model_id": 9427, + "year_id": 9499, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9503, + "make_id": 8869, + "model_id": 9427, + "year_id": 9499, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9504, + "make_id": 8869, + "model_id": 9427, + "year_id": 9499, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9505, + "make_id": 8869, + "model_id": 9427, + "year_id": 9499, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9506, + "make_id": 8869, + "model_id": 9427, + "year_id": 9506, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9507, + "make_id": 8869, + "model_id": 9427, + "year_id": 9506, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9508, + "make_id": 8869, + "model_id": 9427, + "year_id": 9506, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9509, + "make_id": 8869, + "model_id": 9427, + "year_id": 9506, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9510, + "make_id": 8869, + "model_id": 9427, + "year_id": 9506, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9511, + "make_id": 8869, + "model_id": 9427, + "year_id": 9506, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9512, + "make_id": 8869, + "model_id": 9427, + "year_id": 9506, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9513, + "make_id": 8869, + "model_id": 9427, + "year_id": 9513, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9514, + "make_id": 8869, + "model_id": 9427, + "year_id": 9513, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9515, + "make_id": 8869, + "model_id": 9427, + "year_id": 9513, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9516, + "make_id": 8869, + "model_id": 9427, + "year_id": 9513, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9517, + "make_id": 8869, + "model_id": 9427, + "year_id": 9517, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9518, + "make_id": 8869, + "model_id": 9427, + "year_id": 9517, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9519, + "make_id": 8869, + "model_id": 9427, + "year_id": 9517, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9520, + "make_id": 8869, + "model_id": 9427, + "year_id": 9517, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9521, + "make_id": 8869, + "model_id": 9427, + "year_id": 9521, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9522, + "make_id": 8869, + "model_id": 9427, + "year_id": 9521, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9523, + "make_id": 8869, + "model_id": 9427, + "year_id": 9521, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9524, + "make_id": 8869, + "model_id": 9427, + "year_id": 9521, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9525, + "make_id": 8869, + "model_id": 9427, + "year_id": 9525, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9526, + "make_id": 8869, + "model_id": 9427, + "year_id": 9525, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9527, + "make_id": 8869, + "model_id": 9427, + "year_id": 9525, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9528, + "make_id": 8869, + "model_id": 9427, + "year_id": 9528, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9529, + "make_id": 8869, + "model_id": 9427, + "year_id": 9528, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9530, + "make_id": 8869, + "model_id": 9427, + "year_id": 9528, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9531, + "make_id": 8869, + "model_id": 9427, + "year_id": 9531, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9532, + "make_id": 8869, + "model_id": 9427, + "year_id": 9531, + "cylinders": 6, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9533, + "make_id": 8869, + "model_id": 9427, + "year_id": 9531, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9534, + "make_id": 8869, + "model_id": 9427, + "year_id": 9531, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9535, + "make_id": 8869, + "model_id": 9427, + "year_id": 9535, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9536, + "make_id": 8869, + "model_id": 9427, + "year_id": 9535, + "cylinders": 6, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 9537, + "make_id": 8869, + "model_id": 9427, + "year_id": 9535, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9538, + "make_id": 8869, + "model_id": 9538, + "year_id": 9538, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9539, + "make_id": 8869, + "model_id": 9538, + "year_id": 9538, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9540, + "make_id": 8869, + "model_id": 9538, + "year_id": 9538, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9541, + "make_id": 8869, + "model_id": 9538, + "year_id": 9538, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9542, + "make_id": 8869, + "model_id": 9538, + "year_id": 9538, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9543, + "make_id": 8869, + "model_id": 9538, + "year_id": 9538, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9544, + "make_id": 8869, + "model_id": 9538, + "year_id": 9538, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9545, + "make_id": 8869, + "model_id": 9538, + "year_id": 9538, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9546, + "make_id": 8869, + "model_id": 9538, + "year_id": 9546, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9547, + "make_id": 8869, + "model_id": 9538, + "year_id": 9546, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9548, + "make_id": 8869, + "model_id": 9538, + "year_id": 9546, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9549, + "make_id": 8869, + "model_id": 9538, + "year_id": 9549, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9550, + "make_id": 8869, + "model_id": 9538, + "year_id": 9549, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9551, + "make_id": 8869, + "model_id": 9538, + "year_id": 9549, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9552, + "make_id": 8869, + "model_id": 9538, + "year_id": 9549, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9553, + "make_id": 8869, + "model_id": 9538, + "year_id": 9549, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9554, + "make_id": 8869, + "model_id": 9538, + "year_id": 9549, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9555, + "make_id": 8869, + "model_id": 9538, + "year_id": 9555, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9556, + "make_id": 8869, + "model_id": 9538, + "year_id": 9555, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9557, + "make_id": 8869, + "model_id": 9538, + "year_id": 9555, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9558, + "make_id": 8869, + "model_id": 9538, + "year_id": 9555, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9559, + "make_id": 8869, + "model_id": 9538, + "year_id": 9555, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9560, + "make_id": 8869, + "model_id": 9538, + "year_id": 9555, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9561, + "make_id": 8869, + "model_id": 9538, + "year_id": 9555, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9562, + "make_id": 8869, + "model_id": 9562, + "year_id": 9562, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9563, + "make_id": 8869, + "model_id": 9562, + "year_id": 9562, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9564, + "make_id": 8869, + "model_id": 9562, + "year_id": 9562, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9565, + "make_id": 8869, + "model_id": 9562, + "year_id": 9562, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9566, + "make_id": 8869, + "model_id": 9562, + "year_id": 9562, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9567, + "make_id": 8869, + "model_id": 9562, + "year_id": 9562, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9568, + "make_id": 8869, + "model_id": 9562, + "year_id": 9562, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9569, + "make_id": 8869, + "model_id": 9562, + "year_id": 9569, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9570, + "make_id": 8869, + "model_id": 9562, + "year_id": 9569, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9571, + "make_id": 8869, + "model_id": 9562, + "year_id": 9569, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9572, + "make_id": 8869, + "model_id": 9562, + "year_id": 9569, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9573, + "make_id": 8869, + "model_id": 9562, + "year_id": 9569, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9574, + "make_id": 8869, + "model_id": 9562, + "year_id": 9569, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9575, + "make_id": 8869, + "model_id": 9562, + "year_id": 9569, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9576, + "make_id": 8869, + "model_id": 9562, + "year_id": 9569, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9577, + "make_id": 8869, + "model_id": 9562, + "year_id": 9569, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9578, + "make_id": 8869, + "model_id": 9562, + "year_id": 9569, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9579, + "make_id": 8869, + "model_id": 9562, + "year_id": 9579, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9580, + "make_id": 8869, + "model_id": 9562, + "year_id": 9579, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9581, + "make_id": 8869, + "model_id": 9562, + "year_id": 9579, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9582, + "make_id": 8869, + "model_id": 9562, + "year_id": 9579, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9583, + "make_id": 8869, + "model_id": 9562, + "year_id": 9579, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9584, + "make_id": 8869, + "model_id": 9562, + "year_id": 9579, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9585, + "make_id": 8869, + "model_id": 9562, + "year_id": 9579, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9586, + "make_id": 8869, + "model_id": 9586, + "year_id": 9586, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9587, + "make_id": 8869, + "model_id": 9586, + "year_id": 9587, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9588, + "make_id": 8869, + "model_id": 9586, + "year_id": 9587, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9589, + "make_id": 8869, + "model_id": 9586, + "year_id": 9587, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9590, + "make_id": 8869, + "model_id": 9586, + "year_id": 9587, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9591, + "make_id": 8869, + "model_id": 9586, + "year_id": 9587, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9592, + "make_id": 8869, + "model_id": 9586, + "year_id": 9587, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9593, + "make_id": 8869, + "model_id": 9586, + "year_id": 9593, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9594, + "make_id": 8869, + "model_id": 9586, + "year_id": 9593, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9595, + "make_id": 8869, + "model_id": 9586, + "year_id": 9593, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9596, + "make_id": 8869, + "model_id": 9586, + "year_id": 9593, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9597, + "make_id": 8869, + "model_id": 9586, + "year_id": 9593, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9598, + "make_id": 8869, + "model_id": 9586, + "year_id": 9598, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9599, + "make_id": 8869, + "model_id": 9586, + "year_id": 9598, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9600, + "make_id": 8869, + "model_id": 9586, + "year_id": 9598, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9601, + "make_id": 8869, + "model_id": 9586, + "year_id": 9601, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9602, + "make_id": 8869, + "model_id": 9586, + "year_id": 9601, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9603, + "make_id": 8869, + "model_id": 9586, + "year_id": 9601, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9604, + "make_id": 8869, + "model_id": 9586, + "year_id": 9604, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9605, + "make_id": 8869, + "model_id": 9586, + "year_id": 9604, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9606, + "make_id": 8869, + "model_id": 9586, + "year_id": 9604, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9607, + "make_id": 8869, + "model_id": 9586, + "year_id": 9607, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9608, + "make_id": 8869, + "model_id": 9586, + "year_id": 9607, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9609, + "make_id": 8869, + "model_id": 9586, + "year_id": 9607, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9610, + "make_id": 8869, + "model_id": 9586, + "year_id": 9610, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9611, + "make_id": 8869, + "model_id": 9586, + "year_id": 9610, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9612, + "make_id": 8869, + "model_id": 9586, + "year_id": 9610, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9613, + "make_id": 8869, + "model_id": 9586, + "year_id": 9610, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9614, + "make_id": 8869, + "model_id": 9586, + "year_id": 9610, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9615, + "make_id": 8869, + "model_id": 9586, + "year_id": 9615, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9616, + "make_id": 8869, + "model_id": 9586, + "year_id": 9615, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9617, + "make_id": 8869, + "model_id": 9586, + "year_id": 9615, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9618, + "make_id": 8869, + "model_id": 9586, + "year_id": 9615, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9619, + "make_id": 8869, + "model_id": 9586, + "year_id": 9615, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9620, + "make_id": 8869, + "model_id": 9620, + "year_id": 9620, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9621, + "make_id": 8869, + "model_id": 9620, + "year_id": 9620, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9622, + "make_id": 8869, + "model_id": 9620, + "year_id": 9622, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9623, + "make_id": 8869, + "model_id": 9620, + "year_id": 9622, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9624, + "make_id": 8869, + "model_id": 9620, + "year_id": 9624, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9625, + "make_id": 8869, + "model_id": 9620, + "year_id": 9624, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9626, + "make_id": 8869, + "model_id": 9620, + "year_id": 9626, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9627, + "make_id": 8869, + "model_id": 9620, + "year_id": 9626, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9628, + "make_id": 8869, + "model_id": 9620, + "year_id": 9628, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9629, + "make_id": 8869, + "model_id": 9620, + "year_id": 9628, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9630, + "make_id": 8869, + "model_id": 9620, + "year_id": 9628, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9631, + "make_id": 8869, + "model_id": 9620, + "year_id": 9628, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9632, + "make_id": 8869, + "model_id": 9620, + "year_id": 9632, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9633, + "make_id": 8869, + "model_id": 9620, + "year_id": 9632, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9634, + "make_id": 8869, + "model_id": 9620, + "year_id": 9632, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9635, + "make_id": 8869, + "model_id": 9620, + "year_id": 9632, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 9636, + "make_id": 8869, + "model_id": 9636, + "year_id": 9636, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 9637, + "make_id": 8869, + "model_id": 9636, + "year_id": 9636, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 9638, + "make_id": 8869, + "model_id": 9636, + "year_id": 9636, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 9639, + "make_id": 8869, + "model_id": 9636, + "year_id": 9636, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 9640, + "make_id": 8869, + "model_id": 9636, + "year_id": 9636, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 9641, + "make_id": 8869, + "model_id": 9636, + "year_id": 9636, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 9642, + "make_id": 8869, + "model_id": 9636, + "year_id": 9642, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9643, + "make_id": 8869, + "model_id": 9636, + "year_id": 9642, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9644, + "make_id": 8869, + "model_id": 9636, + "year_id": 9642, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9645, + "make_id": 8869, + "model_id": 9636, + "year_id": 9642, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9646, + "make_id": 8869, + "model_id": 9636, + "year_id": 9642, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9647, + "make_id": 8869, + "model_id": 9636, + "year_id": 9642, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9648, + "make_id": 8869, + "model_id": 9636, + "year_id": 9642, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9649, + "make_id": 8869, + "model_id": 9636, + "year_id": 9642, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9650, + "make_id": 8869, + "model_id": 9636, + "year_id": 9642, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9651, + "make_id": 8869, + "model_id": 9636, + "year_id": 9651, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9652, + "make_id": 8869, + "model_id": 9636, + "year_id": 9651, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9653, + "make_id": 8869, + "model_id": 9636, + "year_id": 9651, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9654, + "make_id": 8869, + "model_id": 9636, + "year_id": 9651, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9655, + "make_id": 8869, + "model_id": 9636, + "year_id": 9651, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9656, + "make_id": 8869, + "model_id": 9636, + "year_id": 9651, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9657, + "make_id": 8869, + "model_id": 9636, + "year_id": 9657, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9658, + "make_id": 8869, + "model_id": 9636, + "year_id": 9657, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9659, + "make_id": 8869, + "model_id": 9636, + "year_id": 9657, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9660, + "make_id": 8869, + "model_id": 9636, + "year_id": 9660, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9661, + "make_id": 8869, + "model_id": 9636, + "year_id": 9660, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9662, + "make_id": 8869, + "model_id": 9636, + "year_id": 9660, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9663, + "make_id": 8869, + "model_id": 9636, + "year_id": 9660, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9664, + "make_id": 8869, + "model_id": 9636, + "year_id": 9664, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9665, + "make_id": 8869, + "model_id": 9636, + "year_id": 9664, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9666, + "make_id": 8869, + "model_id": 9636, + "year_id": 9664, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9667, + "make_id": 8869, + "model_id": 9636, + "year_id": 9664, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9668, + "make_id": 8869, + "model_id": 9636, + "year_id": 9664, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9669, + "make_id": 8869, + "model_id": 9636, + "year_id": 9664, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9670, + "make_id": 8869, + "model_id": 9636, + "year_id": 9670, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9671, + "make_id": 8869, + "model_id": 9636, + "year_id": 9670, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9672, + "make_id": 8869, + "model_id": 9636, + "year_id": 9670, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9673, + "make_id": 8869, + "model_id": 9636, + "year_id": 9670, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9674, + "make_id": 8869, + "model_id": 9636, + "year_id": 9670, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9675, + "make_id": 8869, + "model_id": 9636, + "year_id": 9670, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9676, + "make_id": 8869, + "model_id": 9636, + "year_id": 9670, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9677, + "make_id": 8869, + "model_id": 9636, + "year_id": 9677, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9678, + "make_id": 8869, + "model_id": 9636, + "year_id": 9677, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9679, + "make_id": 8869, + "model_id": 9636, + "year_id": 9677, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9680, + "make_id": 8869, + "model_id": 9636, + "year_id": 9677, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9681, + "make_id": 8869, + "model_id": 9636, + "year_id": 9677, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9682, + "make_id": 8869, + "model_id": 9636, + "year_id": 9677, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9683, + "make_id": 8869, + "model_id": 9636, + "year_id": 9677, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9684, + "make_id": 8869, + "model_id": 9636, + "year_id": 9684, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9685, + "make_id": 8869, + "model_id": 9636, + "year_id": 9684, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9686, + "make_id": 8869, + "model_id": 9636, + "year_id": 9684, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9687, + "make_id": 8869, + "model_id": 9636, + "year_id": 9684, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9688, + "make_id": 8869, + "model_id": 9636, + "year_id": 9684, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9689, + "make_id": 8869, + "model_id": 9636, + "year_id": 9684, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9690, + "make_id": 8869, + "model_id": 9636, + "year_id": 9690, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9691, + "make_id": 8869, + "model_id": 9636, + "year_id": 9690, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9692, + "make_id": 8869, + "model_id": 9636, + "year_id": 9690, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9693, + "make_id": 8869, + "model_id": 9636, + "year_id": 9690, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9694, + "make_id": 8869, + "model_id": 9636, + "year_id": 9694, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9695, + "make_id": 8869, + "model_id": 9636, + "year_id": 9694, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9696, + "make_id": 8869, + "model_id": 9636, + "year_id": 9694, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9697, + "make_id": 8869, + "model_id": 9636, + "year_id": 9694, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9698, + "make_id": 8869, + "model_id": 9636, + "year_id": 9694, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9699, + "make_id": 8869, + "model_id": 9636, + "year_id": 9699, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9700, + "make_id": 8869, + "model_id": 9636, + "year_id": 9699, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9701, + "make_id": 8869, + "model_id": 9636, + "year_id": 9699, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9702, + "make_id": 8869, + "model_id": 9636, + "year_id": 9699, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9703, + "make_id": 8869, + "model_id": 9636, + "year_id": 9699, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9704, + "make_id": 8869, + "model_id": 9636, + "year_id": 9699, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9705, + "make_id": 8869, + "model_id": 9636, + "year_id": 9699, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9706, + "make_id": 8869, + "model_id": 9636, + "year_id": 9699, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9707, + "make_id": 8869, + "model_id": 9636, + "year_id": 9707, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9708, + "make_id": 8869, + "model_id": 9636, + "year_id": 9707, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9709, + "make_id": 8869, + "model_id": 9636, + "year_id": 9707, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9710, + "make_id": 8869, + "model_id": 9636, + "year_id": 9707, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9711, + "make_id": 8869, + "model_id": 9636, + "year_id": 9707, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9712, + "make_id": 8869, + "model_id": 9636, + "year_id": 9707, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9713, + "make_id": 8869, + "model_id": 9636, + "year_id": 9707, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9714, + "make_id": 8869, + "model_id": 9636, + "year_id": 9707, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9715, + "make_id": 8869, + "model_id": 9636, + "year_id": 9715, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9716, + "make_id": 8869, + "model_id": 9636, + "year_id": 9715, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9717, + "make_id": 8869, + "model_id": 9636, + "year_id": 9715, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9718, + "make_id": 8869, + "model_id": 9636, + "year_id": 9715, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9719, + "make_id": 8869, + "model_id": 9636, + "year_id": 9715, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9720, + "make_id": 8869, + "model_id": 9636, + "year_id": 9720, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9721, + "make_id": 8869, + "model_id": 9636, + "year_id": 9720, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9722, + "make_id": 8869, + "model_id": 9636, + "year_id": 9720, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9723, + "make_id": 8869, + "model_id": 9636, + "year_id": 9720, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9724, + "make_id": 8869, + "model_id": 9636, + "year_id": 9720, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9725, + "make_id": 8869, + "model_id": 9636, + "year_id": 9720, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9726, + "make_id": 8869, + "model_id": 9726, + "year_id": 9726, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9727, + "make_id": 8869, + "model_id": 9726, + "year_id": 9726, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9728, + "make_id": 8869, + "model_id": 9728, + "year_id": 9728, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9729, + "make_id": 8869, + "model_id": 9728, + "year_id": 9729, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9730, + "make_id": 8869, + "model_id": 9728, + "year_id": 9730, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 9731, + "make_id": 8869, + "model_id": 9728, + "year_id": 9731, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9732, + "make_id": 8869, + "model_id": 9728, + "year_id": 9731, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9733, + "make_id": 8869, + "model_id": 9728, + "year_id": 9733, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9734, + "make_id": 8869, + "model_id": 9728, + "year_id": 9733, + "cylinders": 8, + "displacement": 6.4, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 9735, + "make_id": 8869, + "model_id": 9735, + "year_id": 9735, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 9736, + "make_id": 8869, + "model_id": 9735, + "year_id": 9735, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 9737, + "make_id": 8869, + "model_id": 9735, + "year_id": 9735, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 9738, + "make_id": 8869, + "model_id": 9735, + "year_id": 9735, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 9739, + "make_id": 8869, + "model_id": 9735, + "year_id": 9735, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 9740, + "make_id": 8869, + "model_id": 9735, + "year_id": 9735, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 9741, + "make_id": 8869, + "model_id": 9735, + "year_id": 9735, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 9742, + "make_id": 8869, + "model_id": 9735, + "year_id": 9735, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 9743, + "make_id": 8869, + "model_id": 9735, + "year_id": 9743, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9744, + "make_id": 8869, + "model_id": 9735, + "year_id": 9743, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9745, + "make_id": 8869, + "model_id": 9735, + "year_id": 9743, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9746, + "make_id": 8869, + "model_id": 9735, + "year_id": 9743, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9747, + "make_id": 8869, + "model_id": 9735, + "year_id": 9743, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9748, + "make_id": 8869, + "model_id": 9735, + "year_id": 9743, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9749, + "make_id": 8869, + "model_id": 9735, + "year_id": 9743, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9750, + "make_id": 8869, + "model_id": 9735, + "year_id": 9743, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9751, + "make_id": 8869, + "model_id": 9735, + "year_id": 9743, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9752, + "make_id": 8869, + "model_id": 9735, + "year_id": 9752, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9753, + "make_id": 8869, + "model_id": 9735, + "year_id": 9752, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9754, + "make_id": 8869, + "model_id": 9735, + "year_id": 9752, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9755, + "make_id": 8869, + "model_id": 9735, + "year_id": 9752, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9756, + "make_id": 8869, + "model_id": 9735, + "year_id": 9752, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9757, + "make_id": 8869, + "model_id": 9735, + "year_id": 9757, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9758, + "make_id": 8869, + "model_id": 9735, + "year_id": 9757, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9759, + "make_id": 8869, + "model_id": 9735, + "year_id": 9757, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9760, + "make_id": 8869, + "model_id": 9735, + "year_id": 9757, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9761, + "make_id": 8869, + "model_id": 9735, + "year_id": 9757, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9762, + "make_id": 8869, + "model_id": 9735, + "year_id": 9762, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9763, + "make_id": 8869, + "model_id": 9735, + "year_id": 9762, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9764, + "make_id": 8869, + "model_id": 9735, + "year_id": 9762, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9765, + "make_id": 8869, + "model_id": 9735, + "year_id": 9762, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9766, + "make_id": 8869, + "model_id": 9735, + "year_id": 9762, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9767, + "make_id": 8869, + "model_id": 9735, + "year_id": 9767, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9768, + "make_id": 8869, + "model_id": 9735, + "year_id": 9767, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9769, + "make_id": 8869, + "model_id": 9735, + "year_id": 9767, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9770, + "make_id": 8869, + "model_id": 9735, + "year_id": 9767, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9771, + "make_id": 8869, + "model_id": 9735, + "year_id": 9771, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9772, + "make_id": 8869, + "model_id": 9735, + "year_id": 9771, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9773, + "make_id": 8869, + "model_id": 9735, + "year_id": 9771, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9774, + "make_id": 8869, + "model_id": 9735, + "year_id": 9771, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9775, + "make_id": 8869, + "model_id": 9735, + "year_id": 9771, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9776, + "make_id": 8869, + "model_id": 9735, + "year_id": 9776, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9777, + "make_id": 8869, + "model_id": 9735, + "year_id": 9776, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9778, + "make_id": 8869, + "model_id": 9735, + "year_id": 9776, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9779, + "make_id": 8869, + "model_id": 9735, + "year_id": 9779, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9780, + "make_id": 8869, + "model_id": 9735, + "year_id": 9779, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9781, + "make_id": 8869, + "model_id": 9735, + "year_id": 9779, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9782, + "make_id": 8869, + "model_id": 9735, + "year_id": 9782, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9783, + "make_id": 8869, + "model_id": 9735, + "year_id": 9782, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9784, + "make_id": 8869, + "model_id": 9735, + "year_id": 9782, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9785, + "make_id": 8869, + "model_id": 9735, + "year_id": 9782, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9786, + "make_id": 8869, + "model_id": 9735, + "year_id": 9786, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9787, + "make_id": 8869, + "model_id": 9735, + "year_id": 9786, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9788, + "make_id": 8869, + "model_id": 9735, + "year_id": 9786, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9789, + "make_id": 8869, + "model_id": 9735, + "year_id": 9786, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9790, + "make_id": 8869, + "model_id": 9790, + "year_id": 9790, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 9791, + "make_id": 8869, + "model_id": 9790, + "year_id": 9790, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 9792, + "make_id": 8869, + "model_id": 9790, + "year_id": 9790, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 9793, + "make_id": 8869, + "model_id": 9790, + "year_id": 9790, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 9794, + "make_id": 8869, + "model_id": 9790, + "year_id": 9790, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 9795, + "make_id": 8869, + "model_id": 9790, + "year_id": 9790, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 9796, + "make_id": 8869, + "model_id": 9790, + "year_id": 9796, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9797, + "make_id": 8869, + "model_id": 9790, + "year_id": 9796, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9798, + "make_id": 8869, + "model_id": 9790, + "year_id": 9796, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9799, + "make_id": 8869, + "model_id": 9790, + "year_id": 9796, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9800, + "make_id": 8869, + "model_id": 9790, + "year_id": 9796, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9801, + "make_id": 8869, + "model_id": 9790, + "year_id": 9796, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9802, + "make_id": 8869, + "model_id": 9790, + "year_id": 9802, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9803, + "make_id": 8869, + "model_id": 9790, + "year_id": 9802, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9804, + "make_id": 8869, + "model_id": 9790, + "year_id": 9802, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9805, + "make_id": 8869, + "model_id": 9790, + "year_id": 9805, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9806, + "make_id": 8869, + "model_id": 9790, + "year_id": 9805, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9807, + "make_id": 8869, + "model_id": 9790, + "year_id": 9805, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9808, + "make_id": 8869, + "model_id": 9790, + "year_id": 9805, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9809, + "make_id": 8869, + "model_id": 9790, + "year_id": 9805, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9810, + "make_id": 8869, + "model_id": 9790, + "year_id": 9805, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9811, + "make_id": 8869, + "model_id": 9790, + "year_id": 9811, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9812, + "make_id": 8869, + "model_id": 9790, + "year_id": 9811, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9813, + "make_id": 8869, + "model_id": 9790, + "year_id": 9811, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9814, + "make_id": 8869, + "model_id": 9790, + "year_id": 9814, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9815, + "make_id": 8869, + "model_id": 9790, + "year_id": 9814, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9816, + "make_id": 8869, + "model_id": 9790, + "year_id": 9814, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9817, + "make_id": 8869, + "model_id": 9790, + "year_id": 9817, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9818, + "make_id": 8869, + "model_id": 9790, + "year_id": 9817, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9819, + "make_id": 8869, + "model_id": 9790, + "year_id": 9817, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9820, + "make_id": 8869, + "model_id": 9790, + "year_id": 9820, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9821, + "make_id": 8869, + "model_id": 9790, + "year_id": 9820, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9822, + "make_id": 8869, + "model_id": 9790, + "year_id": 9820, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9823, + "make_id": 8869, + "model_id": 9823, + "year_id": 9823, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9824, + "make_id": 8869, + "model_id": 9823, + "year_id": 9823, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9825, + "make_id": 8869, + "model_id": 9823, + "year_id": 9825, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9826, + "make_id": 8869, + "model_id": 9823, + "year_id": 9825, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9827, + "make_id": 8869, + "model_id": 9823, + "year_id": 9825, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9828, + "make_id": 8869, + "model_id": 9823, + "year_id": 9828, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9829, + "make_id": 8869, + "model_id": 9823, + "year_id": 9828, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9830, + "make_id": 8869, + "model_id": 9823, + "year_id": 9828, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9831, + "make_id": 8869, + "model_id": 9831, + "year_id": 9831, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 9832, + "make_id": 8869, + "model_id": 9831, + "year_id": 9831, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 9833, + "make_id": 8869, + "model_id": 9831, + "year_id": 9831, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 9834, + "make_id": 8869, + "model_id": 9831, + "year_id": 9831, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 9835, + "make_id": 8869, + "model_id": 9831, + "year_id": 9831, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 9836, + "make_id": 8869, + "model_id": 9831, + "year_id": 9831, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 9837, + "make_id": 8869, + "model_id": 9831, + "year_id": 9837, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9838, + "make_id": 8869, + "model_id": 9831, + "year_id": 9837, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9839, + "make_id": 8869, + "model_id": 9831, + "year_id": 9837, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9840, + "make_id": 8869, + "model_id": 9831, + "year_id": 9837, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9841, + "make_id": 8869, + "model_id": 9831, + "year_id": 9837, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9842, + "make_id": 8869, + "model_id": 9831, + "year_id": 9837, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9843, + "make_id": 8869, + "model_id": 9831, + "year_id": 9843, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9844, + "make_id": 8869, + "model_id": 9831, + "year_id": 9843, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9845, + "make_id": 8869, + "model_id": 9845, + "year_id": 9845, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9846, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9847, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9848, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9849, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9850, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9851, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9852, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9853, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 8, + "displacement": 5.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9854, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9855, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9856, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9857, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9858, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9859, + "make_id": 8869, + "model_id": 9846, + "year_id": 9846, + "cylinders": 8, + "displacement": 5.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9860, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9861, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9862, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9863, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9864, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9865, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9866, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9867, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9868, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9869, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9870, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9871, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9872, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9873, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9874, + "make_id": 8869, + "model_id": 9846, + "year_id": 9860, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9875, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9876, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9877, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9878, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9879, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9880, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9881, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9882, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9883, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9884, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9885, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9886, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9887, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9888, + "make_id": 8869, + "model_id": 9846, + "year_id": 9875, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9889, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9890, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9891, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9892, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9893, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9894, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9895, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9896, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9897, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9898, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9899, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9900, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9901, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9902, + "make_id": 8869, + "model_id": 9846, + "year_id": 9889, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9903, + "make_id": 8869, + "model_id": 9846, + "year_id": 9903, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9904, + "make_id": 8869, + "model_id": 9846, + "year_id": 9903, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9905, + "make_id": 8869, + "model_id": 9846, + "year_id": 9903, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9906, + "make_id": 8869, + "model_id": 9846, + "year_id": 9903, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9907, + "make_id": 8869, + "model_id": 9846, + "year_id": 9903, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9908, + "make_id": 8869, + "model_id": 9846, + "year_id": 9903, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9909, + "make_id": 8869, + "model_id": 9846, + "year_id": 9903, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9910, + "make_id": 8869, + "model_id": 9846, + "year_id": 9903, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9911, + "make_id": 8869, + "model_id": 9846, + "year_id": 9903, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9912, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9913, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9914, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9915, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9916, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9917, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9918, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9919, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9920, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9921, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9922, + "make_id": 8869, + "model_id": 9846, + "year_id": 9912, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9923, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9924, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9925, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9926, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9927, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9928, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9929, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9930, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9931, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9932, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9933, + "make_id": 8869, + "model_id": 9846, + "year_id": 9923, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9934, + "make_id": 8869, + "model_id": 9846, + "year_id": 9934, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9935, + "make_id": 8869, + "model_id": 9846, + "year_id": 9934, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9936, + "make_id": 8869, + "model_id": 9846, + "year_id": 9934, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9937, + "make_id": 8869, + "model_id": 9846, + "year_id": 9934, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9938, + "make_id": 8869, + "model_id": 9846, + "year_id": 9934, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9939, + "make_id": 8869, + "model_id": 9846, + "year_id": 9934, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9940, + "make_id": 8869, + "model_id": 9846, + "year_id": 9934, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9941, + "make_id": 8869, + "model_id": 9846, + "year_id": 9934, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9942, + "make_id": 8869, + "model_id": 9846, + "year_id": 9934, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9943, + "make_id": 8869, + "model_id": 9846, + "year_id": 9934, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9944, + "make_id": 8869, + "model_id": 9846, + "year_id": 9944, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9945, + "make_id": 8869, + "model_id": 9846, + "year_id": 9944, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9946, + "make_id": 8869, + "model_id": 9846, + "year_id": 9944, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9947, + "make_id": 8869, + "model_id": 9846, + "year_id": 9944, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9948, + "make_id": 8869, + "model_id": 9846, + "year_id": 9944, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9949, + "make_id": 8869, + "model_id": 9846, + "year_id": 9944, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9950, + "make_id": 8869, + "model_id": 9846, + "year_id": 9944, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9951, + "make_id": 8869, + "model_id": 9846, + "year_id": 9951, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9952, + "make_id": 8869, + "model_id": 9846, + "year_id": 9951, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9953, + "make_id": 8869, + "model_id": 9846, + "year_id": 9951, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9954, + "make_id": 8869, + "model_id": 9846, + "year_id": 9951, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9955, + "make_id": 8869, + "model_id": 9846, + "year_id": 9951, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9956, + "make_id": 8869, + "model_id": 9846, + "year_id": 9951, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9957, + "make_id": 8869, + "model_id": 9846, + "year_id": 9951, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 9958, + "make_id": 8869, + "model_id": 9958, + "year_id": 9958, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9959, + "make_id": 8869, + "model_id": 9958, + "year_id": 9959, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9960, + "make_id": 8869, + "model_id": 9958, + "year_id": 9960, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9961, + "make_id": 8869, + "model_id": 9958, + "year_id": 9961, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9962, + "make_id": 8869, + "model_id": 9958, + "year_id": 9962, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9963, + "make_id": 8869, + "model_id": 9958, + "year_id": 9963, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9964, + "make_id": 8869, + "model_id": 9958, + "year_id": 9964, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9965, + "make_id": 8869, + "model_id": 9958, + "year_id": 9965, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9966, + "make_id": 8869, + "model_id": 9958, + "year_id": 9966, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 9967, + "make_id": 8869, + "model_id": 9967, + "year_id": 9967, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9968, + "make_id": 8869, + "model_id": 9967, + "year_id": 9967, + "cylinders": 6, + "displacement": 3.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9969, + "make_id": 8869, + "model_id": 9967, + "year_id": 9967, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9970, + "make_id": 8869, + "model_id": 9967, + "year_id": 9967, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9971, + "make_id": 8869, + "model_id": 9967, + "year_id": 9967, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9972, + "make_id": 8869, + "model_id": 9967, + "year_id": 9967, + "cylinders": 8, + "displacement": 5.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9973, + "make_id": 8869, + "model_id": 9967, + "year_id": 9967, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9974, + "make_id": 8869, + "model_id": 9967, + "year_id": 9967, + "cylinders": 8, + "displacement": 5.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9975, + "make_id": 8869, + "model_id": 9967, + "year_id": 9975, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9976, + "make_id": 8869, + "model_id": 9967, + "year_id": 9975, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9977, + "make_id": 8869, + "model_id": 9967, + "year_id": 9975, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9978, + "make_id": 8869, + "model_id": 9967, + "year_id": 9975, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9979, + "make_id": 8869, + "model_id": 9967, + "year_id": 9975, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9980, + "make_id": 8869, + "model_id": 9967, + "year_id": 9975, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9981, + "make_id": 8869, + "model_id": 9967, + "year_id": 9975, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9982, + "make_id": 8869, + "model_id": 9967, + "year_id": 9975, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9983, + "make_id": 8869, + "model_id": 9967, + "year_id": 9975, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9984, + "make_id": 8869, + "model_id": 9967, + "year_id": 9984, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9985, + "make_id": 8869, + "model_id": 9967, + "year_id": 9984, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9986, + "make_id": 8869, + "model_id": 9967, + "year_id": 9984, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9987, + "make_id": 8869, + "model_id": 9967, + "year_id": 9984, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9988, + "make_id": 8869, + "model_id": 9967, + "year_id": 9984, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9989, + "make_id": 8869, + "model_id": 9967, + "year_id": 9984, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9990, + "make_id": 8869, + "model_id": 9967, + "year_id": 9984, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9991, + "make_id": 8869, + "model_id": 9967, + "year_id": 9984, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9992, + "make_id": 8869, + "model_id": 9967, + "year_id": 9992, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9993, + "make_id": 8869, + "model_id": 9967, + "year_id": 9992, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9994, + "make_id": 8869, + "model_id": 9967, + "year_id": 9992, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9995, + "make_id": 8869, + "model_id": 9967, + "year_id": 9992, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9996, + "make_id": 8869, + "model_id": 9967, + "year_id": 9992, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9997, + "make_id": 8869, + "model_id": 9967, + "year_id": 9992, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 9998, + "make_id": 8869, + "model_id": 9967, + "year_id": 9992, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 9999, + "make_id": 8869, + "model_id": 9967, + "year_id": 9992, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10000, + "make_id": 8869, + "model_id": 9967, + "year_id": 10000, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10001, + "make_id": 8869, + "model_id": 9967, + "year_id": 10000, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10002, + "make_id": 8869, + "model_id": 9967, + "year_id": 10000, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10003, + "make_id": 8869, + "model_id": 9967, + "year_id": 10000, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10004, + "make_id": 8869, + "model_id": 9967, + "year_id": 10000, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10005, + "make_id": 8869, + "model_id": 9967, + "year_id": 10000, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10006, + "make_id": 8869, + "model_id": 9967, + "year_id": 10000, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10007, + "make_id": 8869, + "model_id": 9967, + "year_id": 10007, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10008, + "make_id": 8869, + "model_id": 9967, + "year_id": 10007, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10009, + "make_id": 8869, + "model_id": 9967, + "year_id": 10007, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10010, + "make_id": 8869, + "model_id": 9967, + "year_id": 10007, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10011, + "make_id": 8869, + "model_id": 9967, + "year_id": 10007, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10012, + "make_id": 8869, + "model_id": 9967, + "year_id": 10007, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10013, + "make_id": 8869, + "model_id": 9967, + "year_id": 10007, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10014, + "make_id": 8869, + "model_id": 9967, + "year_id": 10014, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10015, + "make_id": 8869, + "model_id": 9967, + "year_id": 10014, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10016, + "make_id": 8869, + "model_id": 9967, + "year_id": 10014, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10017, + "make_id": 8869, + "model_id": 9967, + "year_id": 10014, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10018, + "make_id": 8869, + "model_id": 9967, + "year_id": 10014, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10019, + "make_id": 8869, + "model_id": 9967, + "year_id": 10014, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10020, + "make_id": 8869, + "model_id": 9967, + "year_id": 10014, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10021, + "make_id": 8869, + "model_id": 9967, + "year_id": 10021, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10022, + "make_id": 8869, + "model_id": 9967, + "year_id": 10021, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10023, + "make_id": 8869, + "model_id": 9967, + "year_id": 10021, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10024, + "make_id": 8869, + "model_id": 9967, + "year_id": 10021, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10025, + "make_id": 8869, + "model_id": 9967, + "year_id": 10021, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10026, + "make_id": 8869, + "model_id": 9967, + "year_id": 10021, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10027, + "make_id": 8869, + "model_id": 9967, + "year_id": 10021, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10028, + "make_id": 8869, + "model_id": 9967, + "year_id": 10028, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10029, + "make_id": 8869, + "model_id": 9967, + "year_id": 10028, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10030, + "make_id": 8869, + "model_id": 9967, + "year_id": 10028, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10031, + "make_id": 8869, + "model_id": 9967, + "year_id": 10028, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10032, + "make_id": 8869, + "model_id": 9967, + "year_id": 10028, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10033, + "make_id": 8869, + "model_id": 9967, + "year_id": 10028, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10034, + "make_id": 8869, + "model_id": 9967, + "year_id": 10034, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10035, + "make_id": 8869, + "model_id": 9967, + "year_id": 10034, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10036, + "make_id": 8869, + "model_id": 9967, + "year_id": 10034, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10037, + "make_id": 8869, + "model_id": 9967, + "year_id": 10034, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10038, + "make_id": 8869, + "model_id": 9967, + "year_id": 10034, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10039, + "make_id": 8869, + "model_id": 9967, + "year_id": 10034, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10040, + "make_id": 8869, + "model_id": 10040, + "year_id": 10040, + "cylinders": 8, + "displacement": 5.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10041, + "make_id": 8869, + "model_id": 10041, + "year_id": 10041, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10042, + "make_id": 8869, + "model_id": 10041, + "year_id": 10042, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10043, + "make_id": 8869, + "model_id": 10041, + "year_id": 10042, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10044, + "make_id": 8869, + "model_id": 10041, + "year_id": 10042, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10045, + "make_id": 8869, + "model_id": 10041, + "year_id": 10045, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10046, + "make_id": 8869, + "model_id": 10041, + "year_id": 10045, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10047, + "make_id": 8869, + "model_id": 10041, + "year_id": 10047, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10048, + "make_id": 8869, + "model_id": 10041, + "year_id": 10047, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10049, + "make_id": 8869, + "model_id": 10041, + "year_id": 10049, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10050, + "make_id": 8869, + "model_id": 10041, + "year_id": 10049, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10051, + "make_id": 8869, + "model_id": 10041, + "year_id": 10049, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10052, + "make_id": 8869, + "model_id": 10041, + "year_id": 10052, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10053, + "make_id": 8869, + "model_id": 10041, + "year_id": 10052, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10054, + "make_id": 8869, + "model_id": 10041, + "year_id": 10052, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10055, + "make_id": 8869, + "model_id": 10041, + "year_id": 10055, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10056, + "make_id": 8869, + "model_id": 10041, + "year_id": 10055, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10057, + "make_id": 8869, + "model_id": 10041, + "year_id": 10055, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10058, + "make_id": 8869, + "model_id": 10041, + "year_id": 10058, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10059, + "make_id": 8869, + "model_id": 10041, + "year_id": 10058, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10060, + "make_id": 8869, + "model_id": 10041, + "year_id": 10058, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10061, + "make_id": 8869, + "model_id": 10041, + "year_id": 10058, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10062, + "make_id": 8869, + "model_id": 10041, + "year_id": 10062, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10063, + "make_id": 8869, + "model_id": 10041, + "year_id": 10062, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10064, + "make_id": 8869, + "model_id": 10064, + "year_id": 10064, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10065, + "make_id": 8869, + "model_id": 10064, + "year_id": 10064, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10066, + "make_id": 8869, + "model_id": 10064, + "year_id": 10064, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10067, + "make_id": 8869, + "model_id": 10064, + "year_id": 10064, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10068, + "make_id": 8869, + "model_id": 10064, + "year_id": 10064, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10069, + "make_id": 8869, + "model_id": 10064, + "year_id": 10069, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10070, + "make_id": 8869, + "model_id": 10064, + "year_id": 10069, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10071, + "make_id": 8869, + "model_id": 10064, + "year_id": 10069, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10072, + "make_id": 8869, + "model_id": 10064, + "year_id": 10069, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10073, + "make_id": 8869, + "model_id": 10064, + "year_id": 10069, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10074, + "make_id": 8869, + "model_id": 10064, + "year_id": 10069, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10075, + "make_id": 8869, + "model_id": 10064, + "year_id": 10069, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10076, + "make_id": 8869, + "model_id": 10064, + "year_id": 10076, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10077, + "make_id": 8869, + "model_id": 10064, + "year_id": 10076, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10078, + "make_id": 8869, + "model_id": 10064, + "year_id": 10076, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10079, + "make_id": 8869, + "model_id": 10064, + "year_id": 10076, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10080, + "make_id": 8869, + "model_id": 10064, + "year_id": 10076, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10081, + "make_id": 8869, + "model_id": 10064, + "year_id": 10076, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10082, + "make_id": 8869, + "model_id": 10064, + "year_id": 10076, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10083, + "make_id": 8869, + "model_id": 10064, + "year_id": 10083, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10084, + "make_id": 8869, + "model_id": 10064, + "year_id": 10083, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10085, + "make_id": 8869, + "model_id": 10064, + "year_id": 10083, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10086, + "make_id": 8869, + "model_id": 10064, + "year_id": 10083, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10087, + "make_id": 8869, + "model_id": 10064, + "year_id": 10083, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10088, + "make_id": 8869, + "model_id": 10064, + "year_id": 10088, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10089, + "make_id": 8869, + "model_id": 10064, + "year_id": 10088, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10090, + "make_id": 8869, + "model_id": 10064, + "year_id": 10088, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10091, + "make_id": 8869, + "model_id": 10064, + "year_id": 10088, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10092, + "make_id": 8869, + "model_id": 10064, + "year_id": 10088, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10093, + "make_id": 8869, + "model_id": 10064, + "year_id": 10088, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10094, + "make_id": 8869, + "model_id": 10064, + "year_id": 10088, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10095, + "make_id": 8869, + "model_id": 10064, + "year_id": 10095, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10096, + "make_id": 8869, + "model_id": 10064, + "year_id": 10095, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10097, + "make_id": 8869, + "model_id": 10064, + "year_id": 10095, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10098, + "make_id": 8869, + "model_id": 10064, + "year_id": 10095, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10099, + "make_id": 8869, + "model_id": 10064, + "year_id": 10095, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10100, + "make_id": 8869, + "model_id": 10064, + "year_id": 10095, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10101, + "make_id": 8869, + "model_id": 10064, + "year_id": 10095, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10102, + "make_id": 8869, + "model_id": 10064, + "year_id": 10102, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10103, + "make_id": 8869, + "model_id": 10064, + "year_id": 10102, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10104, + "make_id": 8869, + "model_id": 10064, + "year_id": 10102, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10105, + "make_id": 8869, + "model_id": 10064, + "year_id": 10102, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10106, + "make_id": 8869, + "model_id": 10064, + "year_id": 10102, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10107, + "make_id": 8869, + "model_id": 10064, + "year_id": 10102, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10108, + "make_id": 8869, + "model_id": 10064, + "year_id": 10102, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10109, + "make_id": 8869, + "model_id": 10064, + "year_id": 10109, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10110, + "make_id": 8869, + "model_id": 10064, + "year_id": 10109, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10111, + "make_id": 8869, + "model_id": 10064, + "year_id": 10109, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10112, + "make_id": 8869, + "model_id": 10064, + "year_id": 10109, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10113, + "make_id": 8869, + "model_id": 10064, + "year_id": 10109, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10114, + "make_id": 8869, + "model_id": 10064, + "year_id": 10109, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10115, + "make_id": 8869, + "model_id": 10064, + "year_id": 10109, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10116, + "make_id": 8869, + "model_id": 10064, + "year_id": 10109, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10117, + "make_id": 8869, + "model_id": 10064, + "year_id": 10109, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10118, + "make_id": 8869, + "model_id": 10064, + "year_id": 10118, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10119, + "make_id": 8869, + "model_id": 10064, + "year_id": 10118, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10120, + "make_id": 8869, + "model_id": 10064, + "year_id": 10118, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10121, + "make_id": 8869, + "model_id": 10064, + "year_id": 10118, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10122, + "make_id": 8869, + "model_id": 10064, + "year_id": 10118, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10123, + "make_id": 8869, + "model_id": 10064, + "year_id": 10118, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10124, + "make_id": 8869, + "model_id": 10064, + "year_id": 10118, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10125, + "make_id": 8869, + "model_id": 10064, + "year_id": 10118, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10126, + "make_id": 8869, + "model_id": 10064, + "year_id": 10118, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10127, + "make_id": 8869, + "model_id": 10064, + "year_id": 10127, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10128, + "make_id": 8869, + "model_id": 10064, + "year_id": 10127, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10129, + "make_id": 8869, + "model_id": 10064, + "year_id": 10127, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10130, + "make_id": 8869, + "model_id": 10064, + "year_id": 10127, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10131, + "make_id": 8869, + "model_id": 10064, + "year_id": 10127, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10132, + "make_id": 8869, + "model_id": 10064, + "year_id": 10127, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10133, + "make_id": 8869, + "model_id": 10064, + "year_id": 10127, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10134, + "make_id": 8869, + "model_id": 10064, + "year_id": 10127, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10135, + "make_id": 8869, + "model_id": 10064, + "year_id": 10127, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10136, + "make_id": 8869, + "model_id": 10064, + "year_id": 10136, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10137, + "make_id": 8869, + "model_id": 10064, + "year_id": 10136, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10138, + "make_id": 8869, + "model_id": 10064, + "year_id": 10136, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10139, + "make_id": 8869, + "model_id": 10064, + "year_id": 10136, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10140, + "make_id": 8869, + "model_id": 10064, + "year_id": 10136, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10141, + "make_id": 8869, + "model_id": 10064, + "year_id": 10136, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10142, + "make_id": 8869, + "model_id": 10064, + "year_id": 10136, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10143, + "make_id": 8869, + "model_id": 10064, + "year_id": 10136, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10144, + "make_id": 8869, + "model_id": 10064, + "year_id": 10136, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10145, + "make_id": 8869, + "model_id": 10064, + "year_id": 10145, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10146, + "make_id": 8869, + "model_id": 10064, + "year_id": 10145, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10147, + "make_id": 8869, + "model_id": 10064, + "year_id": 10145, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10148, + "make_id": 8869, + "model_id": 10064, + "year_id": 10145, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10149, + "make_id": 8869, + "model_id": 10064, + "year_id": 10145, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10150, + "make_id": 8869, + "model_id": 10064, + "year_id": 10145, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10151, + "make_id": 8869, + "model_id": 10064, + "year_id": 10145, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10152, + "make_id": 8869, + "model_id": 10064, + "year_id": 10145, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10153, + "make_id": 8869, + "model_id": 10064, + "year_id": 10145, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10154, + "make_id": 8869, + "model_id": 10064, + "year_id": 10145, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10155, + "make_id": 8869, + "model_id": 10064, + "year_id": 10155, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10156, + "make_id": 8869, + "model_id": 10064, + "year_id": 10155, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10157, + "make_id": 8869, + "model_id": 10064, + "year_id": 10155, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10158, + "make_id": 8869, + "model_id": 10064, + "year_id": 10155, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10159, + "make_id": 8869, + "model_id": 10064, + "year_id": 10155, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10160, + "make_id": 8869, + "model_id": 10064, + "year_id": 10155, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10161, + "make_id": 8869, + "model_id": 10064, + "year_id": 10155, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10162, + "make_id": 8869, + "model_id": 10064, + "year_id": 10155, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10163, + "make_id": 8869, + "model_id": 10064, + "year_id": 10155, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10164, + "make_id": 8869, + "model_id": 10064, + "year_id": 10155, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10165, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10166, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10167, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10168, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10169, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10170, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10171, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10172, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10173, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10174, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10175, + "make_id": 8869, + "model_id": 10064, + "year_id": 10165, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10176, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10177, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10178, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10179, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10180, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10181, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10182, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10183, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10184, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10185, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10186, + "make_id": 8869, + "model_id": 10064, + "year_id": 10176, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10187, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10188, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10189, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10190, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10191, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10192, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10193, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10194, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10195, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10196, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10197, + "make_id": 8869, + "model_id": 10064, + "year_id": 10187, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10198, + "make_id": 8869, + "model_id": 10064, + "year_id": 10198, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10199, + "make_id": 8869, + "model_id": 10064, + "year_id": 10198, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10200, + "make_id": 8869, + "model_id": 10064, + "year_id": 10198, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10201, + "make_id": 8869, + "model_id": 10064, + "year_id": 10198, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10202, + "make_id": 8869, + "model_id": 10064, + "year_id": 10198, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10203, + "make_id": 8869, + "model_id": 10064, + "year_id": 10198, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10204, + "make_id": 8869, + "model_id": 10064, + "year_id": 10198, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10205, + "make_id": 8869, + "model_id": 10064, + "year_id": 10198, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10206, + "make_id": 8869, + "model_id": 10064, + "year_id": 10198, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10207, + "make_id": 8869, + "model_id": 10064, + "year_id": 10198, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10208, + "make_id": 8869, + "model_id": 10064, + "year_id": 10208, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10209, + "make_id": 8869, + "model_id": 10064, + "year_id": 10208, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10210, + "make_id": 8869, + "model_id": 10064, + "year_id": 10208, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10211, + "make_id": 8869, + "model_id": 10064, + "year_id": 10208, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10212, + "make_id": 8869, + "model_id": 10064, + "year_id": 10208, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10213, + "make_id": 8869, + "model_id": 10064, + "year_id": 10208, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10214, + "make_id": 8869, + "model_id": 10064, + "year_id": 10208, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10215, + "make_id": 8869, + "model_id": 10064, + "year_id": 10208, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10216, + "make_id": 8869, + "model_id": 10064, + "year_id": 10216, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10217, + "make_id": 8869, + "model_id": 10064, + "year_id": 10216, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10218, + "make_id": 8869, + "model_id": 10064, + "year_id": 10216, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10219, + "make_id": 8869, + "model_id": 10064, + "year_id": 10216, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10220, + "make_id": 8869, + "model_id": 10064, + "year_id": 10216, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10221, + "make_id": 8869, + "model_id": 10064, + "year_id": 10216, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10222, + "make_id": 8869, + "model_id": 10064, + "year_id": 10216, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10223, + "make_id": 8869, + "model_id": 10064, + "year_id": 10216, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10224, + "make_id": 8869, + "model_id": 10064, + "year_id": 10224, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10225, + "make_id": 8869, + "model_id": 10064, + "year_id": 10224, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10226, + "make_id": 8869, + "model_id": 10064, + "year_id": 10224, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10227, + "make_id": 8869, + "model_id": 10064, + "year_id": 10224, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10228, + "make_id": 8869, + "model_id": 10064, + "year_id": 10224, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10229, + "make_id": 8869, + "model_id": 10064, + "year_id": 10224, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10230, + "make_id": 8869, + "model_id": 10064, + "year_id": 10224, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10231, + "make_id": 8869, + "model_id": 10064, + "year_id": 10224, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10232, + "make_id": 8869, + "model_id": 10064, + "year_id": 10232, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10233, + "make_id": 8869, + "model_id": 10064, + "year_id": 10232, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10234, + "make_id": 8869, + "model_id": 10064, + "year_id": 10232, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10235, + "make_id": 8869, + "model_id": 10064, + "year_id": 10232, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10236, + "make_id": 8869, + "model_id": 10064, + "year_id": 10232, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10237, + "make_id": 8869, + "model_id": 10064, + "year_id": 10232, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10238, + "make_id": 8869, + "model_id": 10064, + "year_id": 10232, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10239, + "make_id": 8869, + "model_id": 10064, + "year_id": 10232, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10240, + "make_id": 8869, + "model_id": 10064, + "year_id": 10240, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10241, + "make_id": 8869, + "model_id": 10064, + "year_id": 10240, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10242, + "make_id": 8869, + "model_id": 10064, + "year_id": 10240, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10243, + "make_id": 8869, + "model_id": 10064, + "year_id": 10240, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10244, + "make_id": 8869, + "model_id": 10064, + "year_id": 10240, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10245, + "make_id": 8869, + "model_id": 10064, + "year_id": 10240, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10246, + "make_id": 8869, + "model_id": 10064, + "year_id": 10240, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10247, + "make_id": 8869, + "model_id": 10064, + "year_id": 10240, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10248, + "make_id": 8869, + "model_id": 10064, + "year_id": 10248, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10249, + "make_id": 8869, + "model_id": 10064, + "year_id": 10248, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10250, + "make_id": 8869, + "model_id": 10064, + "year_id": 10248, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10251, + "make_id": 8869, + "model_id": 10064, + "year_id": 10248, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10252, + "make_id": 8869, + "model_id": 10064, + "year_id": 10248, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10253, + "make_id": 8869, + "model_id": 10064, + "year_id": 10248, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10254, + "make_id": 8869, + "model_id": 10064, + "year_id": 10254, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10255, + "make_id": 8869, + "model_id": 10064, + "year_id": 10254, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10256, + "make_id": 8869, + "model_id": 10064, + "year_id": 10254, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10257, + "make_id": 8869, + "model_id": 10064, + "year_id": 10254, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10258, + "make_id": 8869, + "model_id": 10064, + "year_id": 10258, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10259, + "make_id": 8869, + "model_id": 10064, + "year_id": 10258, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10260, + "make_id": 8869, + "model_id": 10064, + "year_id": 10258, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10261, + "make_id": 8869, + "model_id": 10064, + "year_id": 10258, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10262, + "make_id": 8869, + "model_id": 10262, + "year_id": 10262, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10263, + "make_id": 8869, + "model_id": 10262, + "year_id": 10262, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10264, + "make_id": 8869, + "model_id": 10262, + "year_id": 10262, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10265, + "make_id": 8869, + "model_id": 10262, + "year_id": 10262, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 10266, + "make_id": 8869, + "model_id": 10262, + "year_id": 10262, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10267, + "make_id": 8869, + "model_id": 10262, + "year_id": 10262, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10268, + "make_id": 8869, + "model_id": 10262, + "year_id": 10262, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10269, + "make_id": 8869, + "model_id": 10262, + "year_id": 10269, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10270, + "make_id": 8869, + "model_id": 10262, + "year_id": 10269, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10271, + "make_id": 8869, + "model_id": 10262, + "year_id": 10269, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10272, + "make_id": 8869, + "model_id": 10262, + "year_id": 10269, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10273, + "make_id": 8869, + "model_id": 10262, + "year_id": 10269, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 10274, + "make_id": 8869, + "model_id": 10262, + "year_id": 10274, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 10275, + "make_id": 8869, + "model_id": 10262, + "year_id": 10274, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10276, + "make_id": 8869, + "model_id": 10262, + "year_id": 10274, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10277, + "make_id": 8869, + "model_id": 10262, + "year_id": 10274, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10278, + "make_id": 8869, + "model_id": 10262, + "year_id": 10274, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10279, + "make_id": 8869, + "model_id": 10262, + "year_id": 10279, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 10280, + "make_id": 8869, + "model_id": 10262, + "year_id": 10279, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10281, + "make_id": 8869, + "model_id": 10262, + "year_id": 10279, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10282, + "make_id": 8869, + "model_id": 10262, + "year_id": 10279, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10283, + "make_id": 8869, + "model_id": 10262, + "year_id": 10279, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10284, + "make_id": 8869, + "model_id": 10262, + "year_id": 10279, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10285, + "make_id": 8869, + "model_id": 10285, + "year_id": 10285, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 10286, + "make_id": 8869, + "model_id": 10285, + "year_id": 10285, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10287, + "make_id": 8869, + "model_id": 10285, + "year_id": 10287, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 10288, + "make_id": 8869, + "model_id": 10285, + "year_id": 10287, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10289, + "make_id": 8869, + "model_id": 10285, + "year_id": 10289, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 10290, + "make_id": 8869, + "model_id": 10285, + "year_id": 10289, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10291, + "make_id": 8869, + "model_id": 10285, + "year_id": 10291, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 10292, + "make_id": 8869, + "model_id": 10285, + "year_id": 10291, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10293, + "make_id": 8869, + "model_id": 10293, + "year_id": 10293, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10294, + "make_id": 8869, + "model_id": 10293, + "year_id": 10293, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10295, + "make_id": 8869, + "model_id": 10293, + "year_id": 10295, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10296, + "make_id": 8869, + "model_id": 10293, + "year_id": 10295, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10297, + "make_id": 8869, + "model_id": 10293, + "year_id": 10297, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10298, + "make_id": 8869, + "model_id": 10293, + "year_id": 10297, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10299, + "make_id": 8869, + "model_id": 10299, + "year_id": 10299, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 10300, + "make_id": 8869, + "model_id": 10299, + "year_id": 10299, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 10301, + "make_id": 8869, + "model_id": 10299, + "year_id": 10299, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 10302, + "make_id": 8869, + "model_id": 10299, + "year_id": 10299, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 10303, + "make_id": 8869, + "model_id": 10299, + "year_id": 10299, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 10304, + "make_id": 8869, + "model_id": 10299, + "year_id": 10299, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 10305, + "make_id": 8869, + "model_id": 10299, + "year_id": 10299, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 10306, + "make_id": 8869, + "model_id": 10299, + "year_id": 10299, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 10307, + "make_id": 8869, + "model_id": 10299, + "year_id": 10307, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10308, + "make_id": 8869, + "model_id": 10299, + "year_id": 10307, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10309, + "make_id": 8869, + "model_id": 10299, + "year_id": 10307, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10310, + "make_id": 8869, + "model_id": 10299, + "year_id": 10307, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10311, + "make_id": 8869, + "model_id": 10299, + "year_id": 10307, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10312, + "make_id": 8869, + "model_id": 10299, + "year_id": 10307, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10313, + "make_id": 8869, + "model_id": 10299, + "year_id": 10307, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10314, + "make_id": 8869, + "model_id": 10299, + "year_id": 10314, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10315, + "make_id": 8869, + "model_id": 10299, + "year_id": 10314, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10316, + "make_id": 8869, + "model_id": 10299, + "year_id": 10314, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10317, + "make_id": 8869, + "model_id": 10299, + "year_id": 10314, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10318, + "make_id": 8869, + "model_id": 10299, + "year_id": 10314, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10319, + "make_id": 8869, + "model_id": 10299, + "year_id": 10314, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10320, + "make_id": 8869, + "model_id": 10299, + "year_id": 10320, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10321, + "make_id": 8869, + "model_id": 10299, + "year_id": 10320, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10322, + "make_id": 8869, + "model_id": 10299, + "year_id": 10320, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10323, + "make_id": 8869, + "model_id": 10299, + "year_id": 10320, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10324, + "make_id": 8869, + "model_id": 10299, + "year_id": 10324, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10325, + "make_id": 8869, + "model_id": 10299, + "year_id": 10324, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10326, + "make_id": 8869, + "model_id": 10299, + "year_id": 10324, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10327, + "make_id": 8869, + "model_id": 10299, + "year_id": 10324, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10328, + "make_id": 8869, + "model_id": 10299, + "year_id": 10328, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10329, + "make_id": 8869, + "model_id": 10299, + "year_id": 10328, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10330, + "make_id": 8869, + "model_id": 10299, + "year_id": 10328, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10331, + "make_id": 8869, + "model_id": 10299, + "year_id": 10328, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10332, + "make_id": 8869, + "model_id": 10299, + "year_id": 10328, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10333, + "make_id": 8869, + "model_id": 10299, + "year_id": 10333, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10334, + "make_id": 8869, + "model_id": 10299, + "year_id": 10333, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10335, + "make_id": 8869, + "model_id": 10299, + "year_id": 10333, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10336, + "make_id": 8869, + "model_id": 10299, + "year_id": 10333, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10337, + "make_id": 8869, + "model_id": 10299, + "year_id": 10333, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10338, + "make_id": 8869, + "model_id": 10299, + "year_id": 10333, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10339, + "make_id": 8869, + "model_id": 10299, + "year_id": 10333, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10340, + "make_id": 8869, + "model_id": 10299, + "year_id": 10340, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10341, + "make_id": 8869, + "model_id": 10299, + "year_id": 10340, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10342, + "make_id": 8869, + "model_id": 10299, + "year_id": 10340, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10343, + "make_id": 8869, + "model_id": 10299, + "year_id": 10340, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10344, + "make_id": 8869, + "model_id": 10299, + "year_id": 10340, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10345, + "make_id": 8869, + "model_id": 10299, + "year_id": 10340, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10346, + "make_id": 8869, + "model_id": 10299, + "year_id": 10346, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10347, + "make_id": 8869, + "model_id": 10299, + "year_id": 10346, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10348, + "make_id": 8869, + "model_id": 10299, + "year_id": 10346, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10349, + "make_id": 8869, + "model_id": 10299, + "year_id": 10346, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10350, + "make_id": 8869, + "model_id": 10299, + "year_id": 10346, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10351, + "make_id": 8869, + "model_id": 10299, + "year_id": 10346, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10352, + "make_id": 8869, + "model_id": 10299, + "year_id": 10346, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10353, + "make_id": 8869, + "model_id": 10299, + "year_id": 10353, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10354, + "make_id": 8869, + "model_id": 10299, + "year_id": 10353, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10355, + "make_id": 8869, + "model_id": 10299, + "year_id": 10353, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10356, + "make_id": 8869, + "model_id": 10299, + "year_id": 10353, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10357, + "make_id": 8869, + "model_id": 10299, + "year_id": 10353, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10358, + "make_id": 8869, + "model_id": 10358, + "year_id": 10358, + "cylinders": 8, + "displacement": 5.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 10359, + "make_id": 8869, + "model_id": 10358, + "year_id": 10358, + "cylinders": 8, + "displacement": 5.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 10360, + "make_id": 8869, + "model_id": 10358, + "year_id": 10358, + "cylinders": 8, + "displacement": 5.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 10361, + "make_id": 8869, + "model_id": 10358, + "year_id": 10361, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10362, + "make_id": 8869, + "model_id": 10358, + "year_id": 10361, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10363, + "make_id": 8869, + "model_id": 10358, + "year_id": 10361, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10364, + "make_id": 8869, + "model_id": 10358, + "year_id": 10364, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10365, + "make_id": 8869, + "model_id": 10358, + "year_id": 10364, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10366, + "make_id": 8869, + "model_id": 10358, + "year_id": 10364, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10367, + "make_id": 8869, + "model_id": 10358, + "year_id": 10367, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10368, + "make_id": 8869, + "model_id": 10358, + "year_id": 10367, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10369, + "make_id": 8869, + "model_id": 10358, + "year_id": 10367, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10370, + "make_id": 8869, + "model_id": 10358, + "year_id": 10370, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10371, + "make_id": 8869, + "model_id": 10358, + "year_id": 10370, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10372, + "make_id": 8869, + "model_id": 10358, + "year_id": 10370, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10373, + "make_id": 8869, + "model_id": 10358, + "year_id": 10373, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10374, + "make_id": 8869, + "model_id": 10358, + "year_id": 10373, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10375, + "make_id": 8869, + "model_id": 10358, + "year_id": 10373, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10376, + "make_id": 8869, + "model_id": 10376, + "year_id": 10376, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10377, + "make_id": 8869, + "model_id": 10376, + "year_id": 10376, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10378, + "make_id": 8869, + "model_id": 10376, + "year_id": 10378, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10379, + "make_id": 8869, + "model_id": 10376, + "year_id": 10378, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10380, + "make_id": 8869, + "model_id": 10376, + "year_id": 10378, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10381, + "make_id": 8869, + "model_id": 10376, + "year_id": 10378, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10382, + "make_id": 8869, + "model_id": 10376, + "year_id": 10378, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10383, + "make_id": 8869, + "model_id": 10376, + "year_id": 10378, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10384, + "make_id": 8869, + "model_id": 10376, + "year_id": 10384, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10385, + "make_id": 8869, + "model_id": 10376, + "year_id": 10384, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10386, + "make_id": 8869, + "model_id": 10376, + "year_id": 10384, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10387, + "make_id": 8869, + "model_id": 10376, + "year_id": 10384, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10388, + "make_id": 8869, + "model_id": 10376, + "year_id": 10384, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10389, + "make_id": 8869, + "model_id": 10376, + "year_id": 10389, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10390, + "make_id": 8869, + "model_id": 10376, + "year_id": 10389, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10391, + "make_id": 8869, + "model_id": 10376, + "year_id": 10389, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10392, + "make_id": 8869, + "model_id": 10376, + "year_id": 10389, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10393, + "make_id": 8869, + "model_id": 10376, + "year_id": 10393, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10394, + "make_id": 8869, + "model_id": 10376, + "year_id": 10393, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10395, + "make_id": 8869, + "model_id": 10376, + "year_id": 10393, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10396, + "make_id": 8869, + "model_id": 10376, + "year_id": 10393, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10397, + "make_id": 8869, + "model_id": 10376, + "year_id": 10393, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10398, + "make_id": 8869, + "model_id": 10376, + "year_id": 10393, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10399, + "make_id": 8869, + "model_id": 10376, + "year_id": 10399, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10400, + "make_id": 8869, + "model_id": 10376, + "year_id": 10399, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10401, + "make_id": 8869, + "model_id": 10376, + "year_id": 10399, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10402, + "make_id": 8869, + "model_id": 10376, + "year_id": 10399, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10403, + "make_id": 8869, + "model_id": 10376, + "year_id": 10403, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10404, + "make_id": 8869, + "model_id": 10376, + "year_id": 10403, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10405, + "make_id": 8869, + "model_id": 10376, + "year_id": 10403, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10406, + "make_id": 8869, + "model_id": 10376, + "year_id": 10403, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10407, + "make_id": 8869, + "model_id": 10376, + "year_id": 10403, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10408, + "make_id": 8869, + "model_id": 10376, + "year_id": 10408, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10409, + "make_id": 8869, + "model_id": 10376, + "year_id": 10408, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10410, + "make_id": 8869, + "model_id": 10376, + "year_id": 10408, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10411, + "make_id": 8869, + "model_id": 10376, + "year_id": 10408, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10412, + "make_id": 8869, + "model_id": 10376, + "year_id": 10408, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10413, + "make_id": 8869, + "model_id": 10376, + "year_id": 10413, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10414, + "make_id": 8869, + "model_id": 10376, + "year_id": 10413, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10415, + "make_id": 8869, + "model_id": 10376, + "year_id": 10413, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10416, + "make_id": 8869, + "model_id": 10376, + "year_id": 10413, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10417, + "make_id": 8869, + "model_id": 10376, + "year_id": 10413, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10418, + "make_id": 8869, + "model_id": 10376, + "year_id": 10413, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10419, + "make_id": 8869, + "model_id": 10376, + "year_id": 10413, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10420, + "make_id": 8869, + "model_id": 10376, + "year_id": 10420, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10421, + "make_id": 8869, + "model_id": 10376, + "year_id": 10420, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10422, + "make_id": 8869, + "model_id": 10376, + "year_id": 10420, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10423, + "make_id": 8869, + "model_id": 10376, + "year_id": 10420, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10424, + "make_id": 8869, + "model_id": 10376, + "year_id": 10420, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10425, + "make_id": 8869, + "model_id": 10376, + "year_id": 10425, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10426, + "make_id": 8869, + "model_id": 10376, + "year_id": 10425, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10427, + "make_id": 8869, + "model_id": 10376, + "year_id": 10425, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10428, + "make_id": 8869, + "model_id": 10376, + "year_id": 10425, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10429, + "make_id": 8869, + "model_id": 10376, + "year_id": 10425, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10430, + "make_id": 8869, + "model_id": 10376, + "year_id": 10425, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10431, + "make_id": 8869, + "model_id": 10376, + "year_id": 10425, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10432, + "make_id": 8869, + "model_id": 10376, + "year_id": 10432, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10433, + "make_id": 8869, + "model_id": 10376, + "year_id": 10432, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10434, + "make_id": 8869, + "model_id": 10376, + "year_id": 10432, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10435, + "make_id": 8869, + "model_id": 10376, + "year_id": 10432, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10436, + "make_id": 8869, + "model_id": 10376, + "year_id": 10432, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10437, + "make_id": 8869, + "model_id": 10376, + "year_id": 10437, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10438, + "make_id": 8869, + "model_id": 10376, + "year_id": 10437, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10439, + "make_id": 8869, + "model_id": 10376, + "year_id": 10437, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10440, + "make_id": 8869, + "model_id": 10376, + "year_id": 10437, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10441, + "make_id": 8869, + "model_id": 10376, + "year_id": 10441, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10442, + "make_id": 8869, + "model_id": 10376, + "year_id": 10441, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10443, + "make_id": 8869, + "model_id": 10376, + "year_id": 10441, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10444, + "make_id": 8869, + "model_id": 10376, + "year_id": 10441, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10445, + "make_id": 8869, + "model_id": 10376, + "year_id": 10445, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10446, + "make_id": 8869, + "model_id": 10376, + "year_id": 10445, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10447, + "make_id": 8869, + "model_id": 10376, + "year_id": 10445, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10448, + "make_id": 8869, + "model_id": 10376, + "year_id": 10445, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10449, + "make_id": 8869, + "model_id": 10376, + "year_id": 10449, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10450, + "make_id": 8869, + "model_id": 10376, + "year_id": 10449, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10451, + "make_id": 8869, + "model_id": 10376, + "year_id": 10451, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10452, + "make_id": 8869, + "model_id": 10376, + "year_id": 10451, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10453, + "make_id": 8869, + "model_id": 10376, + "year_id": 10453, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10454, + "make_id": 8869, + "model_id": 10376, + "year_id": 10453, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10455, + "make_id": 8869, + "model_id": 10455, + "year_id": 10455, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10456, + "make_id": 8869, + "model_id": 10456, + "year_id": 10456, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10457, + "make_id": 8869, + "model_id": 10456, + "year_id": 10456, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10458, + "make_id": 8869, + "model_id": 10456, + "year_id": 10458, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10459, + "make_id": 8869, + "model_id": 10456, + "year_id": 10458, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10460, + "make_id": 8869, + "model_id": 10456, + "year_id": 10460, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10461, + "make_id": 8869, + "model_id": 10456, + "year_id": 10460, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 10462, + "make_id": 8869, + "model_id": 10462, + "year_id": 10462, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10463, + "make_id": 8869, + "model_id": 10462, + "year_id": 10462, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10464, + "make_id": 8869, + "model_id": 10462, + "year_id": 10464, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10465, + "make_id": 8869, + "model_id": 10462, + "year_id": 10464, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10466, + "make_id": 8869, + "model_id": 10462, + "year_id": 10466, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10467, + "make_id": 8869, + "model_id": 10462, + "year_id": 10466, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10468, + "make_id": 8869, + "model_id": 10462, + "year_id": 10466, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10469, + "make_id": 8869, + "model_id": 10462, + "year_id": 10469, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10470, + "make_id": 8869, + "model_id": 10462, + "year_id": 10469, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10471, + "make_id": 8869, + "model_id": 10462, + "year_id": 10469, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10472, + "make_id": 8869, + "model_id": 10462, + "year_id": 10472, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10473, + "make_id": 8869, + "model_id": 10462, + "year_id": 10472, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10474, + "make_id": 8869, + "model_id": 10462, + "year_id": 10472, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10475, + "make_id": 8869, + "model_id": 10462, + "year_id": 10475, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10476, + "make_id": 8869, + "model_id": 10462, + "year_id": 10475, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10477, + "make_id": 8869, + "model_id": 10462, + "year_id": 10475, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10478, + "make_id": 8869, + "model_id": 10478, + "year_id": 10478, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10479, + "make_id": 8869, + "model_id": 10479, + "year_id": 10479, + "cylinders": 6, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10480, + "make_id": 8869, + "model_id": 10479, + "year_id": 10479, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10481, + "make_id": 8869, + "model_id": 10479, + "year_id": 10479, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10482, + "make_id": 8869, + "model_id": 10479, + "year_id": 10482, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10483, + "make_id": 8869, + "model_id": 10479, + "year_id": 10483, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10484, + "make_id": 8869, + "model_id": 10479, + "year_id": 10484, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10485, + "make_id": 8869, + "model_id": 10479, + "year_id": 10484, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10486, + "make_id": 8869, + "model_id": 10479, + "year_id": 10486, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10487, + "make_id": 8869, + "model_id": 10479, + "year_id": 10486, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10488, + "make_id": 8869, + "model_id": 10479, + "year_id": 10488, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10489, + "make_id": 8869, + "model_id": 10479, + "year_id": 10488, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10490, + "make_id": 8869, + "model_id": 10479, + "year_id": 10490, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10491, + "make_id": 8869, + "model_id": 10479, + "year_id": 10490, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10492, + "make_id": 8869, + "model_id": 10492, + "year_id": 10492, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10493, + "make_id": 8869, + "model_id": 10492, + "year_id": 10492, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10494, + "make_id": 8869, + "model_id": 10492, + "year_id": 10494, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10495, + "make_id": 8869, + "model_id": 10492, + "year_id": 10494, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10496, + "make_id": 8869, + "model_id": 10492, + "year_id": 10494, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10497, + "make_id": 8869, + "model_id": 10492, + "year_id": 10497, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10498, + "make_id": 8869, + "model_id": 10492, + "year_id": 10497, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10499, + "make_id": 8869, + "model_id": 10492, + "year_id": 10497, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10500, + "make_id": 8869, + "model_id": 10492, + "year_id": 10500, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10501, + "make_id": 8869, + "model_id": 10492, + "year_id": 10500, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10502, + "make_id": 8869, + "model_id": 10492, + "year_id": 10500, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10503, + "make_id": 8869, + "model_id": 10492, + "year_id": 10503, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10504, + "make_id": 8869, + "model_id": 10492, + "year_id": 10503, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10505, + "make_id": 8869, + "model_id": 10492, + "year_id": 10503, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10506, + "make_id": 8869, + "model_id": 10492, + "year_id": 10506, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10507, + "make_id": 8869, + "model_id": 10492, + "year_id": 10506, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10508, + "make_id": 8869, + "model_id": 10492, + "year_id": 10508, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10509, + "make_id": 8869, + "model_id": 10492, + "year_id": 10508, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10510, + "make_id": 8869, + "model_id": 10492, + "year_id": 10510, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10511, + "make_id": 8869, + "model_id": 10492, + "year_id": 10510, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10512, + "make_id": 8869, + "model_id": 10492, + "year_id": 10510, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10513, + "make_id": 8869, + "model_id": 10492, + "year_id": 10510, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10514, + "make_id": 8869, + "model_id": 10492, + "year_id": 10514, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10515, + "make_id": 8869, + "model_id": 10492, + "year_id": 10514, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10516, + "make_id": 8869, + "model_id": 10492, + "year_id": 10514, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10517, + "make_id": 8869, + "model_id": 10492, + "year_id": 10514, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10518, + "make_id": 8869, + "model_id": 10492, + "year_id": 10518, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10519, + "make_id": 8869, + "model_id": 10492, + "year_id": 10518, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10520, + "make_id": 8869, + "model_id": 10492, + "year_id": 10518, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10521, + "make_id": 8869, + "model_id": 10492, + "year_id": 10518, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10522, + "make_id": 8869, + "model_id": 10492, + "year_id": 10522, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10523, + "make_id": 8869, + "model_id": 10492, + "year_id": 10522, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10524, + "make_id": 8869, + "model_id": 10492, + "year_id": 10522, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10525, + "make_id": 8869, + "model_id": 10492, + "year_id": 10525, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10526, + "make_id": 8869, + "model_id": 10492, + "year_id": 10525, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10527, + "make_id": 8869, + "model_id": 10492, + "year_id": 10525, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10528, + "make_id": 8869, + "model_id": 10528, + "year_id": 10528, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10529, + "make_id": 8869, + "model_id": 10528, + "year_id": 10528, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10530, + "make_id": 8869, + "model_id": 10528, + "year_id": 10528, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10531, + "make_id": 8869, + "model_id": 10528, + "year_id": 10531, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10532, + "make_id": 8869, + "model_id": 10528, + "year_id": 10531, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10533, + "make_id": 8869, + "model_id": 10528, + "year_id": 10531, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10534, + "make_id": 8869, + "model_id": 10528, + "year_id": 10534, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10535, + "make_id": 8869, + "model_id": 10528, + "year_id": 10534, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10536, + "make_id": 8869, + "model_id": 10528, + "year_id": 10534, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10537, + "make_id": 8869, + "model_id": 10528, + "year_id": 10537, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10538, + "make_id": 8869, + "model_id": 10528, + "year_id": 10537, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10539, + "make_id": 8869, + "model_id": 10528, + "year_id": 10537, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10540, + "make_id": 8869, + "model_id": 10528, + "year_id": 10540, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10541, + "make_id": 8869, + "model_id": 10528, + "year_id": 10540, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10542, + "make_id": 8869, + "model_id": 10528, + "year_id": 10540, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10543, + "make_id": 8869, + "model_id": 10528, + "year_id": 10543, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10544, + "make_id": 8869, + "model_id": 10528, + "year_id": 10543, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10545, + "make_id": 8869, + "model_id": 10528, + "year_id": 10543, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10546, + "make_id": 8869, + "model_id": 10546, + "year_id": 10546, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10547, + "make_id": 8869, + "model_id": 10546, + "year_id": 10546, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10548, + "make_id": 8869, + "model_id": 10546, + "year_id": 10546, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10549, + "make_id": 8869, + "model_id": 10546, + "year_id": 10549, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10550, + "make_id": 8869, + "model_id": 10546, + "year_id": 10549, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10551, + "make_id": 8869, + "model_id": 10546, + "year_id": 10549, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10552, + "make_id": 8869, + "model_id": 10552, + "year_id": 10552, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10553, + "make_id": 8869, + "model_id": 10552, + "year_id": 10552, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10554, + "make_id": 8869, + "model_id": 10552, + "year_id": 10552, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10555, + "make_id": 8869, + "model_id": 10552, + "year_id": 10552, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10556, + "make_id": 8869, + "model_id": 10552, + "year_id": 10552, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10557, + "make_id": 8869, + "model_id": 10552, + "year_id": 10552, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10558, + "make_id": 8869, + "model_id": 10552, + "year_id": 10552, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10559, + "make_id": 8869, + "model_id": 10552, + "year_id": 10552, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10560, + "make_id": 8869, + "model_id": 10552, + "year_id": 10560, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10561, + "make_id": 8869, + "model_id": 10552, + "year_id": 10560, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10562, + "make_id": 8869, + "model_id": 10552, + "year_id": 10560, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10563, + "make_id": 8869, + "model_id": 10552, + "year_id": 10560, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10564, + "make_id": 8869, + "model_id": 10552, + "year_id": 10560, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10565, + "make_id": 8869, + "model_id": 10552, + "year_id": 10560, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10566, + "make_id": 8869, + "model_id": 10552, + "year_id": 10566, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10567, + "make_id": 8869, + "model_id": 10552, + "year_id": 10566, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10568, + "make_id": 8869, + "model_id": 10552, + "year_id": 10566, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10569, + "make_id": 8869, + "model_id": 10552, + "year_id": 10566, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10570, + "make_id": 8869, + "model_id": 10552, + "year_id": 10566, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10571, + "make_id": 8869, + "model_id": 10552, + "year_id": 10566, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10572, + "make_id": 8869, + "model_id": 10552, + "year_id": 10566, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10573, + "make_id": 8869, + "model_id": 10552, + "year_id": 10566, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10574, + "make_id": 8869, + "model_id": 10552, + "year_id": 10566, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10575, + "make_id": 8869, + "model_id": 10552, + "year_id": 10575, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10576, + "make_id": 8869, + "model_id": 10552, + "year_id": 10575, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10577, + "make_id": 8869, + "model_id": 10552, + "year_id": 10575, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10578, + "make_id": 8869, + "model_id": 10552, + "year_id": 10575, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10579, + "make_id": 8869, + "model_id": 10552, + "year_id": 10575, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10580, + "make_id": 8869, + "model_id": 10552, + "year_id": 10575, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10581, + "make_id": 8869, + "model_id": 10552, + "year_id": 10581, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10582, + "make_id": 8869, + "model_id": 10552, + "year_id": 10581, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10583, + "make_id": 8869, + "model_id": 10552, + "year_id": 10581, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10584, + "make_id": 8869, + "model_id": 10552, + "year_id": 10581, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10585, + "make_id": 8869, + "model_id": 10552, + "year_id": 10581, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10586, + "make_id": 8869, + "model_id": 10552, + "year_id": 10581, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10587, + "make_id": 8869, + "model_id": 10552, + "year_id": 10581, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10588, + "make_id": 8869, + "model_id": 10588, + "year_id": 10588, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10589, + "make_id": 8869, + "model_id": 10588, + "year_id": 10588, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10590, + "make_id": 8869, + "model_id": 10590, + "year_id": 10590, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10591, + "make_id": 8869, + "model_id": 10590, + "year_id": 10590, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10592, + "make_id": 8869, + "model_id": 10590, + "year_id": 10590, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10593, + "make_id": 8869, + "model_id": 10590, + "year_id": 10590, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10594, + "make_id": 8869, + "model_id": 10590, + "year_id": 10590, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10595, + "make_id": 8869, + "model_id": 10590, + "year_id": 10595, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10596, + "make_id": 8869, + "model_id": 10590, + "year_id": 10595, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10597, + "make_id": 8869, + "model_id": 10590, + "year_id": 10595, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10598, + "make_id": 8869, + "model_id": 10590, + "year_id": 10595, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10599, + "make_id": 8869, + "model_id": 10590, + "year_id": 10595, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10600, + "make_id": 8869, + "model_id": 10590, + "year_id": 10595, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10601, + "make_id": 8869, + "model_id": 10590, + "year_id": 10595, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10602, + "make_id": 8869, + "model_id": 10590, + "year_id": 10595, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10603, + "make_id": 8869, + "model_id": 10590, + "year_id": 10603, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10604, + "make_id": 8869, + "model_id": 10590, + "year_id": 10603, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10605, + "make_id": 8869, + "model_id": 10590, + "year_id": 10603, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10606, + "make_id": 8869, + "model_id": 10590, + "year_id": 10603, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10607, + "make_id": 8869, + "model_id": 10590, + "year_id": 10603, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10608, + "make_id": 8869, + "model_id": 10590, + "year_id": 10603, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10609, + "make_id": 8869, + "model_id": 10590, + "year_id": 10609, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10610, + "make_id": 8869, + "model_id": 10590, + "year_id": 10609, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10611, + "make_id": 8869, + "model_id": 10590, + "year_id": 10609, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10612, + "make_id": 8869, + "model_id": 10590, + "year_id": 10609, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10613, + "make_id": 8869, + "model_id": 10590, + "year_id": 10609, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10614, + "make_id": 8869, + "model_id": 10590, + "year_id": 10609, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10615, + "make_id": 8869, + "model_id": 10590, + "year_id": 10609, + "cylinders": 8, + "displacement": 6.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10616, + "make_id": 8869, + "model_id": 10616, + "year_id": 10616, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10617, + "make_id": 8869, + "model_id": 10616, + "year_id": 10617, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10618, + "make_id": 8869, + "model_id": 10616, + "year_id": 10618, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10619, + "make_id": 8869, + "model_id": 10619, + "year_id": 10619, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10620, + "make_id": 8869, + "model_id": 10619, + "year_id": 10619, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10621, + "make_id": 8869, + "model_id": 10619, + "year_id": 10621, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10622, + "make_id": 8869, + "model_id": 10619, + "year_id": 10621, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10623, + "make_id": 8869, + "model_id": 10619, + "year_id": 10623, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10624, + "make_id": 8869, + "model_id": 10619, + "year_id": 10623, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10625, + "make_id": 8869, + "model_id": 10619, + "year_id": 10625, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10626, + "make_id": 8869, + "model_id": 10619, + "year_id": 10625, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10627, + "make_id": 8869, + "model_id": 10619, + "year_id": 10627, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10628, + "make_id": 8869, + "model_id": 10619, + "year_id": 10627, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10629, + "make_id": 8869, + "model_id": 10619, + "year_id": 10629, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10630, + "make_id": 8869, + "model_id": 10619, + "year_id": 10629, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10631, + "make_id": 8869, + "model_id": 10619, + "year_id": 10631, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10632, + "make_id": 8869, + "model_id": 10619, + "year_id": 10631, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10633, + "make_id": 8869, + "model_id": 10619, + "year_id": 10633, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10634, + "make_id": 8869, + "model_id": 10619, + "year_id": 10633, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10635, + "make_id": 8869, + "model_id": 10635, + "year_id": 10635, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10636, + "make_id": 8869, + "model_id": 10635, + "year_id": 10635, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10637, + "make_id": 8869, + "model_id": 10635, + "year_id": 10635, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10638, + "make_id": 8869, + "model_id": 10635, + "year_id": 10638, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10639, + "make_id": 8869, + "model_id": 10635, + "year_id": 10638, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10640, + "make_id": 8869, + "model_id": 10635, + "year_id": 10638, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10641, + "make_id": 8869, + "model_id": 10635, + "year_id": 10641, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10642, + "make_id": 8869, + "model_id": 10635, + "year_id": 10641, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10643, + "make_id": 8869, + "model_id": 10635, + "year_id": 10641, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10644, + "make_id": 8869, + "model_id": 10644, + "year_id": 10644, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10645, + "make_id": 8869, + "model_id": 10644, + "year_id": 10644, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10646, + "make_id": 8869, + "model_id": 10644, + "year_id": 10644, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10647, + "make_id": 8869, + "model_id": 10644, + "year_id": 10644, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10648, + "make_id": 8869, + "model_id": 10644, + "year_id": 10644, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10649, + "make_id": 8869, + "model_id": 10644, + "year_id": 10644, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10650, + "make_id": 8869, + "model_id": 10644, + "year_id": 10650, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10651, + "make_id": 8869, + "model_id": 10644, + "year_id": 10650, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10652, + "make_id": 8869, + "model_id": 10644, + "year_id": 10650, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10653, + "make_id": 8869, + "model_id": 10644, + "year_id": 10650, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10654, + "make_id": 8869, + "model_id": 10644, + "year_id": 10650, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10655, + "make_id": 8869, + "model_id": 10644, + "year_id": 10650, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10656, + "make_id": 8869, + "model_id": 10644, + "year_id": 10656, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10657, + "make_id": 8869, + "model_id": 10644, + "year_id": 10656, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10658, + "make_id": 8869, + "model_id": 10644, + "year_id": 10656, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10659, + "make_id": 8869, + "model_id": 10644, + "year_id": 10656, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10660, + "make_id": 8869, + "model_id": 10644, + "year_id": 10660, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10661, + "make_id": 8869, + "model_id": 10644, + "year_id": 10660, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10662, + "make_id": 8869, + "model_id": 10644, + "year_id": 10660, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10663, + "make_id": 8869, + "model_id": 10644, + "year_id": 10660, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10664, + "make_id": 8869, + "model_id": 10644, + "year_id": 10664, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10665, + "make_id": 8869, + "model_id": 10644, + "year_id": 10664, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10666, + "make_id": 8869, + "model_id": 10644, + "year_id": 10664, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10667, + "make_id": 8869, + "model_id": 10644, + "year_id": 10664, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10668, + "make_id": 8869, + "model_id": 10668, + "year_id": 10668, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 10669, + "make_id": 8869, + "model_id": 10668, + "year_id": 10668, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 10670, + "make_id": 8869, + "model_id": 10668, + "year_id": 10668, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 10671, + "make_id": 8869, + "model_id": 10668, + "year_id": 10668, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 10672, + "make_id": 8869, + "model_id": 10668, + "year_id": 10668, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 10673, + "make_id": 8869, + "model_id": 10668, + "year_id": 10668, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 10674, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10675, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10676, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10677, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10678, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10679, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10680, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10681, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10682, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10683, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10684, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10685, + "make_id": 8869, + "model_id": 10668, + "year_id": 10674, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10686, + "make_id": 8869, + "model_id": 10668, + "year_id": 10686, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10687, + "make_id": 8869, + "model_id": 10668, + "year_id": 10686, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10688, + "make_id": 8869, + "model_id": 10668, + "year_id": 10686, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10689, + "make_id": 8869, + "model_id": 10668, + "year_id": 10686, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10690, + "make_id": 8869, + "model_id": 10668, + "year_id": 10686, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10691, + "make_id": 8869, + "model_id": 10668, + "year_id": 10686, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10692, + "make_id": 8869, + "model_id": 10668, + "year_id": 10692, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10693, + "make_id": 8869, + "model_id": 10668, + "year_id": 10692, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10694, + "make_id": 8869, + "model_id": 10668, + "year_id": 10692, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10695, + "make_id": 8869, + "model_id": 10668, + "year_id": 10695, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10696, + "make_id": 8869, + "model_id": 10668, + "year_id": 10695, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10697, + "make_id": 8869, + "model_id": 10668, + "year_id": 10697, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10698, + "make_id": 8869, + "model_id": 10668, + "year_id": 10697, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10699, + "make_id": 8869, + "model_id": 10668, + "year_id": 10699, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10700, + "make_id": 8869, + "model_id": 10668, + "year_id": 10699, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10701, + "make_id": 8869, + "model_id": 10701, + "year_id": 10701, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10702, + "make_id": 8869, + "model_id": 10701, + "year_id": 10701, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10703, + "make_id": 8869, + "model_id": 10701, + "year_id": 10701, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10704, + "make_id": 8869, + "model_id": 10701, + "year_id": 10701, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10705, + "make_id": 8869, + "model_id": 10701, + "year_id": 10705, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10706, + "make_id": 8869, + "model_id": 10701, + "year_id": 10705, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10707, + "make_id": 8869, + "model_id": 10701, + "year_id": 10705, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10708, + "make_id": 8869, + "model_id": 10701, + "year_id": 10705, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10709, + "make_id": 8869, + "model_id": 10701, + "year_id": 10709, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10710, + "make_id": 8869, + "model_id": 10701, + "year_id": 10709, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10711, + "make_id": 8869, + "model_id": 10701, + "year_id": 10709, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10712, + "make_id": 8869, + "model_id": 10701, + "year_id": 10709, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10713, + "make_id": 8869, + "model_id": 10701, + "year_id": 10713, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10714, + "make_id": 8869, + "model_id": 10701, + "year_id": 10713, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10715, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10716, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10717, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10718, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10719, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10720, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10721, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10722, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10723, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10724, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10725, + "make_id": 8869, + "model_id": 10715, + "year_id": 10715, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10726, + "make_id": 8869, + "model_id": 10715, + "year_id": 10726, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10727, + "make_id": 8869, + "model_id": 10715, + "year_id": 10726, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10728, + "make_id": 8869, + "model_id": 10715, + "year_id": 10726, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10729, + "make_id": 8869, + "model_id": 10715, + "year_id": 10726, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10730, + "make_id": 8869, + "model_id": 10715, + "year_id": 10726, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10731, + "make_id": 8869, + "model_id": 10715, + "year_id": 10726, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10732, + "make_id": 8869, + "model_id": 10732, + "year_id": 10732, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10733, + "make_id": 8869, + "model_id": 10732, + "year_id": 10732, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10734, + "make_id": 8869, + "model_id": 10732, + "year_id": 10734, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10735, + "make_id": 8869, + "model_id": 10732, + "year_id": 10734, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10736, + "make_id": 8869, + "model_id": 10732, + "year_id": 10736, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10737, + "make_id": 8869, + "model_id": 10732, + "year_id": 10736, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10738, + "make_id": 8869, + "model_id": 10732, + "year_id": 10738, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10739, + "make_id": 8869, + "model_id": 10732, + "year_id": 10738, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10740, + "make_id": 8869, + "model_id": 10740, + "year_id": 10740, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10741, + "make_id": 8869, + "model_id": 10740, + "year_id": 10740, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10742, + "make_id": 8869, + "model_id": 10740, + "year_id": 10742, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10743, + "make_id": 8869, + "model_id": 10740, + "year_id": 10742, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10744, + "make_id": 8869, + "model_id": 10740, + "year_id": 10744, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10745, + "make_id": 8869, + "model_id": 10740, + "year_id": 10744, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10746, + "make_id": 8869, + "model_id": 10740, + "year_id": 10744, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10747, + "make_id": 8869, + "model_id": 10740, + "year_id": 10747, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10748, + "make_id": 8869, + "model_id": 10740, + "year_id": 10747, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10749, + "make_id": 8869, + "model_id": 10740, + "year_id": 10747, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10750, + "make_id": 8869, + "model_id": 10750, + "year_id": 10750, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10751, + "make_id": 8869, + "model_id": 10750, + "year_id": 10750, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10752, + "make_id": 8869, + "model_id": 10750, + "year_id": 10750, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10753, + "make_id": 8869, + "model_id": 10750, + "year_id": 10750, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10754, + "make_id": 8869, + "model_id": 10750, + "year_id": 10750, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10755, + "make_id": 8869, + "model_id": 10750, + "year_id": 10750, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10756, + "make_id": 8869, + "model_id": 10750, + "year_id": 10750, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10757, + "make_id": 8869, + "model_id": 10750, + "year_id": 10750, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10758, + "make_id": 8869, + "model_id": 10750, + "year_id": 10758, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10759, + "make_id": 8869, + "model_id": 10750, + "year_id": 10758, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10760, + "make_id": 8869, + "model_id": 10750, + "year_id": 10758, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10761, + "make_id": 8869, + "model_id": 10750, + "year_id": 10758, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10762, + "make_id": 8869, + "model_id": 10750, + "year_id": 10758, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10763, + "make_id": 8869, + "model_id": 10750, + "year_id": 10758, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10764, + "make_id": 8869, + "model_id": 10750, + "year_id": 10758, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10765, + "make_id": 8869, + "model_id": 10750, + "year_id": 10758, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10766, + "make_id": 8869, + "model_id": 10750, + "year_id": 10766, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10767, + "make_id": 8869, + "model_id": 10750, + "year_id": 10766, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10768, + "make_id": 8869, + "model_id": 10750, + "year_id": 10766, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10769, + "make_id": 8869, + "model_id": 10750, + "year_id": 10766, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10770, + "make_id": 8869, + "model_id": 10750, + "year_id": 10766, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10771, + "make_id": 8869, + "model_id": 10750, + "year_id": 10766, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10772, + "make_id": 8869, + "model_id": 10750, + "year_id": 10766, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10773, + "make_id": 8869, + "model_id": 10750, + "year_id": 10766, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10774, + "make_id": 8869, + "model_id": 10750, + "year_id": 10774, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10775, + "make_id": 8869, + "model_id": 10750, + "year_id": 10774, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10776, + "make_id": 8869, + "model_id": 10750, + "year_id": 10774, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10777, + "make_id": 8869, + "model_id": 10750, + "year_id": 10774, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10778, + "make_id": 8869, + "model_id": 10750, + "year_id": 10774, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10779, + "make_id": 8869, + "model_id": 10750, + "year_id": 10774, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10780, + "make_id": 8869, + "model_id": 10750, + "year_id": 10774, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10781, + "make_id": 8869, + "model_id": 10750, + "year_id": 10774, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10782, + "make_id": 8869, + "model_id": 10750, + "year_id": 10782, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10783, + "make_id": 8869, + "model_id": 10750, + "year_id": 10782, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10784, + "make_id": 8869, + "model_id": 10750, + "year_id": 10782, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10785, + "make_id": 8869, + "model_id": 10750, + "year_id": 10782, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10786, + "make_id": 8869, + "model_id": 10750, + "year_id": 10782, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10787, + "make_id": 8869, + "model_id": 10750, + "year_id": 10782, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10788, + "make_id": 8869, + "model_id": 10750, + "year_id": 10782, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10789, + "make_id": 8869, + "model_id": 10750, + "year_id": 10782, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10790, + "make_id": 8869, + "model_id": 10750, + "year_id": 10782, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10791, + "make_id": 8869, + "model_id": 10750, + "year_id": 10791, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10792, + "make_id": 8869, + "model_id": 10750, + "year_id": 10791, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10793, + "make_id": 8869, + "model_id": 10750, + "year_id": 10791, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10794, + "make_id": 8869, + "model_id": 10750, + "year_id": 10791, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10795, + "make_id": 8869, + "model_id": 10750, + "year_id": 10791, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10796, + "make_id": 8869, + "model_id": 10750, + "year_id": 10791, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10797, + "make_id": 8869, + "model_id": 10750, + "year_id": 10791, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10798, + "make_id": 8869, + "model_id": 10750, + "year_id": 10791, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10799, + "make_id": 8869, + "model_id": 10750, + "year_id": 10799, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10800, + "make_id": 8869, + "model_id": 10750, + "year_id": 10799, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10801, + "make_id": 8869, + "model_id": 10750, + "year_id": 10799, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10802, + "make_id": 8869, + "model_id": 10750, + "year_id": 10799, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10803, + "make_id": 8869, + "model_id": 10750, + "year_id": 10799, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10804, + "make_id": 8869, + "model_id": 10750, + "year_id": 10799, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10805, + "make_id": 8869, + "model_id": 10750, + "year_id": 10799, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10806, + "make_id": 8869, + "model_id": 10750, + "year_id": 10799, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10807, + "make_id": 8869, + "model_id": 10750, + "year_id": 10807, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10808, + "make_id": 8869, + "model_id": 10750, + "year_id": 10807, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10809, + "make_id": 8869, + "model_id": 10750, + "year_id": 10807, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10810, + "make_id": 8869, + "model_id": 10750, + "year_id": 10807, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10811, + "make_id": 8869, + "model_id": 10750, + "year_id": 10807, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10812, + "make_id": 8869, + "model_id": 10750, + "year_id": 10807, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10813, + "make_id": 8869, + "model_id": 10750, + "year_id": 10807, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10814, + "make_id": 8869, + "model_id": 10750, + "year_id": 10807, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10815, + "make_id": 8869, + "model_id": 10750, + "year_id": 10815, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10816, + "make_id": 8869, + "model_id": 10750, + "year_id": 10815, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10817, + "make_id": 8869, + "model_id": 10750, + "year_id": 10815, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10818, + "make_id": 8869, + "model_id": 10750, + "year_id": 10815, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10819, + "make_id": 8869, + "model_id": 10750, + "year_id": 10815, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10820, + "make_id": 8869, + "model_id": 10750, + "year_id": 10815, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10821, + "make_id": 8869, + "model_id": 10750, + "year_id": 10815, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10822, + "make_id": 8869, + "model_id": 10750, + "year_id": 10815, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10823, + "make_id": 8869, + "model_id": 10750, + "year_id": 10823, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10824, + "make_id": 8869, + "model_id": 10750, + "year_id": 10823, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10825, + "make_id": 8869, + "model_id": 10750, + "year_id": 10823, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10826, + "make_id": 8869, + "model_id": 10750, + "year_id": 10823, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10827, + "make_id": 8869, + "model_id": 10750, + "year_id": 10823, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10828, + "make_id": 8869, + "model_id": 10750, + "year_id": 10823, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10829, + "make_id": 8869, + "model_id": 10750, + "year_id": 10823, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10830, + "make_id": 8869, + "model_id": 10750, + "year_id": 10823, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10831, + "make_id": 8869, + "model_id": 10750, + "year_id": 10823, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10832, + "make_id": 8869, + "model_id": 10750, + "year_id": 10823, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10833, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10834, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10835, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10836, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10837, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10838, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 10, + "displacement": 8.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10839, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10840, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10841, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10842, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10843, + "make_id": 8869, + "model_id": 10750, + "year_id": 10833, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10844, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10845, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10846, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10847, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10848, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 10, + "displacement": 8.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10849, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 10, + "displacement": 8.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10850, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10851, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10852, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10853, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10854, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10855, + "make_id": 8869, + "model_id": 10750, + "year_id": 10844, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10856, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10857, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10858, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10859, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10860, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10861, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 10, + "displacement": 8.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10862, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 10, + "displacement": 8.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10863, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10864, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10865, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10866, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10867, + "make_id": 8869, + "model_id": 10750, + "year_id": 10856, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10868, + "make_id": 8869, + "model_id": 10750, + "year_id": 10868, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10869, + "make_id": 8869, + "model_id": 10750, + "year_id": 10868, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10870, + "make_id": 8869, + "model_id": 10750, + "year_id": 10868, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10871, + "make_id": 8869, + "model_id": 10750, + "year_id": 10868, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10872, + "make_id": 8869, + "model_id": 10750, + "year_id": 10868, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10873, + "make_id": 8869, + "model_id": 10750, + "year_id": 10868, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10874, + "make_id": 8869, + "model_id": 10750, + "year_id": 10868, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10875, + "make_id": 8869, + "model_id": 10750, + "year_id": 10868, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10876, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10877, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10878, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10879, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10880, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10881, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10882, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10883, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10884, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10885, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10886, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10887, + "make_id": 8869, + "model_id": 10750, + "year_id": 10876, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 10888, + "make_id": 8869, + "model_id": 10750, + "year_id": 10888, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10889, + "make_id": 8869, + "model_id": 10750, + "year_id": 10888, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10890, + "make_id": 8869, + "model_id": 10750, + "year_id": 10888, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10891, + "make_id": 8869, + "model_id": 10750, + "year_id": 10888, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10892, + "make_id": 8869, + "model_id": 10750, + "year_id": 10888, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10893, + "make_id": 8869, + "model_id": 10750, + "year_id": 10893, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10894, + "make_id": 8869, + "model_id": 10750, + "year_id": 10893, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10895, + "make_id": 8869, + "model_id": 10750, + "year_id": 10893, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10896, + "make_id": 8869, + "model_id": 10750, + "year_id": 10893, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10897, + "make_id": 8869, + "model_id": 10750, + "year_id": 10893, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10898, + "make_id": 8869, + "model_id": 10750, + "year_id": 10898, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10899, + "make_id": 8869, + "model_id": 10750, + "year_id": 10898, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10900, + "make_id": 8869, + "model_id": 10750, + "year_id": 10898, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10901, + "make_id": 8869, + "model_id": 10750, + "year_id": 10898, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10902, + "make_id": 8869, + "model_id": 10750, + "year_id": 10898, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 10903, + "make_id": 8869, + "model_id": 10750, + "year_id": 10903, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10904, + "make_id": 8869, + "model_id": 10750, + "year_id": 10903, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10905, + "make_id": 8869, + "model_id": 10750, + "year_id": 10903, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10906, + "make_id": 8869, + "model_id": 10750, + "year_id": 10903, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10907, + "make_id": 8869, + "model_id": 10750, + "year_id": 10903, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 10908, + "make_id": 8869, + "model_id": 10908, + "year_id": 10908, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10909, + "make_id": 8869, + "model_id": 10908, + "year_id": 10908, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10910, + "make_id": 8869, + "model_id": 10908, + "year_id": 10908, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10911, + "make_id": 8869, + "model_id": 10908, + "year_id": 10908, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10912, + "make_id": 8869, + "model_id": 10908, + "year_id": 10908, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10913, + "make_id": 8869, + "model_id": 10908, + "year_id": 10908, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10914, + "make_id": 8869, + "model_id": 10908, + "year_id": 10908, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10915, + "make_id": 8869, + "model_id": 10908, + "year_id": 10908, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10916, + "make_id": 8869, + "model_id": 10908, + "year_id": 10916, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10917, + "make_id": 8869, + "model_id": 10908, + "year_id": 10916, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10918, + "make_id": 8869, + "model_id": 10908, + "year_id": 10916, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10919, + "make_id": 8869, + "model_id": 10908, + "year_id": 10916, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10920, + "make_id": 8869, + "model_id": 10908, + "year_id": 10916, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10921, + "make_id": 8869, + "model_id": 10908, + "year_id": 10916, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10922, + "make_id": 8869, + "model_id": 10908, + "year_id": 10916, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10923, + "make_id": 8869, + "model_id": 10908, + "year_id": 10916, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10924, + "make_id": 8869, + "model_id": 10908, + "year_id": 10924, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10925, + "make_id": 8869, + "model_id": 10908, + "year_id": 10924, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10926, + "make_id": 8869, + "model_id": 10908, + "year_id": 10924, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10927, + "make_id": 8869, + "model_id": 10908, + "year_id": 10924, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10928, + "make_id": 8869, + "model_id": 10908, + "year_id": 10924, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10929, + "make_id": 8869, + "model_id": 10908, + "year_id": 10924, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10930, + "make_id": 8869, + "model_id": 10908, + "year_id": 10924, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10931, + "make_id": 8869, + "model_id": 10908, + "year_id": 10924, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10932, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10933, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10934, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10935, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10936, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10937, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10938, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10939, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10940, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10941, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10942, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10943, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10944, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10945, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10946, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10947, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10948, + "make_id": 8869, + "model_id": 10932, + "year_id": 10932, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10949, + "make_id": 8869, + "model_id": 10932, + "year_id": 10949, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10950, + "make_id": 8869, + "model_id": 10932, + "year_id": 10949, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10951, + "make_id": 8869, + "model_id": 10932, + "year_id": 10949, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10952, + "make_id": 8869, + "model_id": 10932, + "year_id": 10949, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 10953, + "make_id": 8869, + "model_id": 10932, + "year_id": 10949, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10954, + "make_id": 8869, + "model_id": 10932, + "year_id": 10949, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10955, + "make_id": 8869, + "model_id": 10932, + "year_id": 10955, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10956, + "make_id": 8869, + "model_id": 10932, + "year_id": 10955, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10957, + "make_id": 8869, + "model_id": 10932, + "year_id": 10955, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10958, + "make_id": 8869, + "model_id": 10932, + "year_id": 10955, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10959, + "make_id": 8869, + "model_id": 10932, + "year_id": 10959, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10960, + "make_id": 8869, + "model_id": 10932, + "year_id": 10959, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10961, + "make_id": 8869, + "model_id": 10932, + "year_id": 10959, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10962, + "make_id": 8869, + "model_id": 10932, + "year_id": 10959, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10963, + "make_id": 8869, + "model_id": 10932, + "year_id": 10963, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10964, + "make_id": 8869, + "model_id": 10932, + "year_id": 10963, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10965, + "make_id": 8869, + "model_id": 10932, + "year_id": 10963, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10966, + "make_id": 8869, + "model_id": 10932, + "year_id": 10963, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10967, + "make_id": 8869, + "model_id": 10932, + "year_id": 10967, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10968, + "make_id": 8869, + "model_id": 10932, + "year_id": 10967, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10969, + "make_id": 8869, + "model_id": 10932, + "year_id": 10967, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10970, + "make_id": 8869, + "model_id": 10932, + "year_id": 10967, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10971, + "make_id": 8869, + "model_id": 10932, + "year_id": 10971, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10972, + "make_id": 8869, + "model_id": 10932, + "year_id": 10971, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10973, + "make_id": 8869, + "model_id": 10932, + "year_id": 10973, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10974, + "make_id": 8869, + "model_id": 10932, + "year_id": 10973, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10975, + "make_id": 8869, + "model_id": 10932, + "year_id": 10975, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10976, + "make_id": 8869, + "model_id": 10932, + "year_id": 10975, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10977, + "make_id": 8869, + "model_id": 10932, + "year_id": 10977, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10978, + "make_id": 8869, + "model_id": 10932, + "year_id": 10977, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 10979, + "make_id": 8869, + "model_id": 10979, + "year_id": 10979, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10980, + "make_id": 8869, + "model_id": 10979, + "year_id": 10979, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10981, + "make_id": 8869, + "model_id": 10979, + "year_id": 10979, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10982, + "make_id": 8869, + "model_id": 10979, + "year_id": 10982, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10983, + "make_id": 8869, + "model_id": 10979, + "year_id": 10982, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10984, + "make_id": 8869, + "model_id": 10979, + "year_id": 10982, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10985, + "make_id": 8869, + "model_id": 10979, + "year_id": 10985, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10986, + "make_id": 8869, + "model_id": 10979, + "year_id": 10985, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10987, + "make_id": 8869, + "model_id": 10979, + "year_id": 10985, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10988, + "make_id": 8869, + "model_id": 10988, + "year_id": 10988, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10989, + "make_id": 8869, + "model_id": 10988, + "year_id": 10988, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10990, + "make_id": 8869, + "model_id": 10988, + "year_id": 10988, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10991, + "make_id": 8869, + "model_id": 10988, + "year_id": 10991, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10992, + "make_id": 8869, + "model_id": 10988, + "year_id": 10991, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10993, + "make_id": 8869, + "model_id": 10988, + "year_id": 10991, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10994, + "make_id": 8869, + "model_id": 10988, + "year_id": 10994, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 10995, + "make_id": 8869, + "model_id": 10988, + "year_id": 10994, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10996, + "make_id": 8869, + "model_id": 10988, + "year_id": 10994, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10997, + "make_id": 8869, + "model_id": 10997, + "year_id": 10997, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10998, + "make_id": 8869, + "model_id": 10997, + "year_id": 10998, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 10999, + "make_id": 8869, + "model_id": 10997, + "year_id": 10999, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11000, + "make_id": 8869, + "model_id": 11000, + "year_id": 11000, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11001, + "make_id": 8869, + "model_id": 11000, + "year_id": 11000, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11002, + "make_id": 8869, + "model_id": 11000, + "year_id": 11002, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11003, + "make_id": 8869, + "model_id": 11003, + "year_id": 11003, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11004, + "make_id": 8869, + "model_id": 11003, + "year_id": 11003, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11005, + "make_id": 8869, + "model_id": 11003, + "year_id": 11005, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11006, + "make_id": 8869, + "model_id": 11006, + "year_id": 11006, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11007, + "make_id": 8869, + "model_id": 11006, + "year_id": 11007, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11008, + "make_id": 8869, + "model_id": 11008, + "year_id": 11008, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11009, + "make_id": 8869, + "model_id": 11008, + "year_id": 11008, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11010, + "make_id": 8869, + "model_id": 11008, + "year_id": 11008, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11011, + "make_id": 8869, + "model_id": 11008, + "year_id": 11008, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11012, + "make_id": 8869, + "model_id": 11008, + "year_id": 11008, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11013, + "make_id": 8869, + "model_id": 11008, + "year_id": 11008, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11014, + "make_id": 8869, + "model_id": 11008, + "year_id": 11008, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11015, + "make_id": 8869, + "model_id": 11008, + "year_id": 11015, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11016, + "make_id": 8869, + "model_id": 11008, + "year_id": 11015, + "cylinders": 8, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11017, + "make_id": 8869, + "model_id": 11008, + "year_id": 11015, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11018, + "make_id": 8869, + "model_id": 11008, + "year_id": 11015, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11019, + "make_id": 8869, + "model_id": 11019, + "year_id": 11019, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11020, + "make_id": 8869, + "model_id": 11019, + "year_id": 11019, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11021, + "make_id": 8869, + "model_id": 11019, + "year_id": 11019, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11022, + "make_id": 8869, + "model_id": 11019, + "year_id": 11019, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11023, + "make_id": 8869, + "model_id": 11019, + "year_id": 11019, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11024, + "make_id": 8869, + "model_id": 11024, + "year_id": 11024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11025, + "make_id": 8869, + "model_id": 11024, + "year_id": 11024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11026, + "make_id": 8869, + "model_id": 11024, + "year_id": 11024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11027, + "make_id": 8869, + "model_id": 11024, + "year_id": 11024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11028, + "make_id": 8869, + "model_id": 11024, + "year_id": 11024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11029, + "make_id": 8869, + "model_id": 11024, + "year_id": 11024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11030, + "make_id": 8869, + "model_id": 11024, + "year_id": 11024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11031, + "make_id": 8869, + "model_id": 11024, + "year_id": 11024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11032, + "make_id": 8869, + "model_id": 11024, + "year_id": 11024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11033, + "make_id": 8869, + "model_id": 11024, + "year_id": 11033, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11034, + "make_id": 8869, + "model_id": 11024, + "year_id": 11033, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11035, + "make_id": 8869, + "model_id": 11024, + "year_id": 11033, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11036, + "make_id": 8869, + "model_id": 11024, + "year_id": 11033, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11037, + "make_id": 8869, + "model_id": 11024, + "year_id": 11033, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11038, + "make_id": 8869, + "model_id": 11024, + "year_id": 11033, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11039, + "make_id": 8869, + "model_id": 11024, + "year_id": 11039, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11040, + "make_id": 8869, + "model_id": 11024, + "year_id": 11039, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11041, + "make_id": 8869, + "model_id": 11024, + "year_id": 11039, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11042, + "make_id": 8869, + "model_id": 11024, + "year_id": 11039, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11043, + "make_id": 8869, + "model_id": 11024, + "year_id": 11039, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11044, + "make_id": 8869, + "model_id": 11024, + "year_id": 11039, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11045, + "make_id": 8869, + "model_id": 11024, + "year_id": 11045, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11046, + "make_id": 8869, + "model_id": 11024, + "year_id": 11045, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11047, + "make_id": 8869, + "model_id": 11024, + "year_id": 11045, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11048, + "make_id": 8869, + "model_id": 11024, + "year_id": 11045, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11049, + "make_id": 8869, + "model_id": 11024, + "year_id": 11045, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11050, + "make_id": 8869, + "model_id": 11024, + "year_id": 11045, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11051, + "make_id": 8869, + "model_id": 11024, + "year_id": 11045, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11052, + "make_id": 8869, + "model_id": 11024, + "year_id": 11052, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11053, + "make_id": 8869, + "model_id": 11024, + "year_id": 11052, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11054, + "make_id": 8869, + "model_id": 11024, + "year_id": 11052, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11055, + "make_id": 8869, + "model_id": 11024, + "year_id": 11052, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11056, + "make_id": 8869, + "model_id": 11024, + "year_id": 11052, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11057, + "make_id": 8869, + "model_id": 11024, + "year_id": 11052, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11058, + "make_id": 8869, + "model_id": 11024, + "year_id": 11058, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11059, + "make_id": 8869, + "model_id": 11024, + "year_id": 11058, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11060, + "make_id": 8869, + "model_id": 11024, + "year_id": 11058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11061, + "make_id": 8869, + "model_id": 11024, + "year_id": 11058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11062, + "make_id": 8869, + "model_id": 11024, + "year_id": 11058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11063, + "make_id": 8869, + "model_id": 11024, + "year_id": 11058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11064, + "make_id": 8869, + "model_id": 11024, + "year_id": 11058, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11065, + "make_id": 8869, + "model_id": 11024, + "year_id": 11058, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11066, + "make_id": 8869, + "model_id": 11024, + "year_id": 11066, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11067, + "make_id": 8869, + "model_id": 11024, + "year_id": 11066, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11068, + "make_id": 8869, + "model_id": 11024, + "year_id": 11066, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11069, + "make_id": 8869, + "model_id": 11024, + "year_id": 11066, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11070, + "make_id": 8869, + "model_id": 11024, + "year_id": 11066, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11071, + "make_id": 8869, + "model_id": 11024, + "year_id": 11066, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11072, + "make_id": 8869, + "model_id": 11024, + "year_id": 11072, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11073, + "make_id": 8869, + "model_id": 11024, + "year_id": 11072, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11074, + "make_id": 8869, + "model_id": 11024, + "year_id": 11072, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11075, + "make_id": 8869, + "model_id": 11024, + "year_id": 11072, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11076, + "make_id": 8869, + "model_id": 11024, + "year_id": 11072, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11077, + "make_id": 8869, + "model_id": 11024, + "year_id": 11072, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11078, + "make_id": 8869, + "model_id": 11078, + "year_id": 11078, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11079, + "make_id": 8869, + "model_id": 11078, + "year_id": 11078, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11080, + "make_id": 8869, + "model_id": 11078, + "year_id": 11078, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11081, + "make_id": 8869, + "model_id": 11078, + "year_id": 11078, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11082, + "make_id": 8869, + "model_id": 11078, + "year_id": 11078, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11083, + "make_id": 8869, + "model_id": 11078, + "year_id": 11083, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11084, + "make_id": 8869, + "model_id": 11078, + "year_id": 11083, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11085, + "make_id": 8869, + "model_id": 11078, + "year_id": 11083, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11086, + "make_id": 8869, + "model_id": 11078, + "year_id": 11083, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11087, + "make_id": 8869, + "model_id": 11078, + "year_id": 11083, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11088, + "make_id": 8869, + "model_id": 11078, + "year_id": 11088, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11089, + "make_id": 8869, + "model_id": 11078, + "year_id": 11088, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11090, + "make_id": 8869, + "model_id": 11078, + "year_id": 11088, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11091, + "make_id": 8869, + "model_id": 11078, + "year_id": 11088, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11092, + "make_id": 8869, + "model_id": 11078, + "year_id": 11088, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11093, + "make_id": 8869, + "model_id": 11078, + "year_id": 11088, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11094, + "make_id": 8869, + "model_id": 11078, + "year_id": 11094, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11095, + "make_id": 8869, + "model_id": 11078, + "year_id": 11094, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11096, + "make_id": 8869, + "model_id": 11078, + "year_id": 11094, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11097, + "make_id": 8869, + "model_id": 11078, + "year_id": 11094, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11098, + "make_id": 8869, + "model_id": 11098, + "year_id": 11098, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11099, + "make_id": 8869, + "model_id": 11098, + "year_id": 11098, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11100, + "make_id": 8869, + "model_id": 11098, + "year_id": 11098, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11101, + "make_id": 8869, + "model_id": 11098, + "year_id": 11098, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11102, + "make_id": 8869, + "model_id": 11098, + "year_id": 11098, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11103, + "make_id": 8869, + "model_id": 11098, + "year_id": 11098, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11104, + "make_id": 8869, + "model_id": 11098, + "year_id": 11104, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11105, + "make_id": 8869, + "model_id": 11098, + "year_id": 11104, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11106, + "make_id": 8869, + "model_id": 11098, + "year_id": 11104, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11107, + "make_id": 8869, + "model_id": 11098, + "year_id": 11104, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11108, + "make_id": 8869, + "model_id": 11098, + "year_id": 11104, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11109, + "make_id": 8869, + "model_id": 11098, + "year_id": 11109, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11110, + "make_id": 8869, + "model_id": 11098, + "year_id": 11109, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11111, + "make_id": 8869, + "model_id": 11098, + "year_id": 11109, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11112, + "make_id": 8869, + "model_id": 11098, + "year_id": 11109, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11113, + "make_id": 8869, + "model_id": 11098, + "year_id": 11109, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11114, + "make_id": 8869, + "model_id": 11098, + "year_id": 11109, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11115, + "make_id": 8869, + "model_id": 11098, + "year_id": 11115, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11116, + "make_id": 8869, + "model_id": 11098, + "year_id": 11115, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11117, + "make_id": 8869, + "model_id": 11098, + "year_id": 11115, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11118, + "make_id": 8869, + "model_id": 11098, + "year_id": 11115, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11119, + "make_id": 8869, + "model_id": 11098, + "year_id": 11115, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11120, + "make_id": 8869, + "model_id": 11098, + "year_id": 11115, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11121, + "make_id": 8869, + "model_id": 11098, + "year_id": 11115, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11122, + "make_id": 8869, + "model_id": 11098, + "year_id": 11122, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11123, + "make_id": 8869, + "model_id": 11098, + "year_id": 11122, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11124, + "make_id": 8869, + "model_id": 11098, + "year_id": 11122, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11125, + "make_id": 8869, + "model_id": 11098, + "year_id": 11122, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11126, + "make_id": 8869, + "model_id": 11098, + "year_id": 11122, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11127, + "make_id": 8869, + "model_id": 11098, + "year_id": 11127, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11128, + "make_id": 8869, + "model_id": 11098, + "year_id": 11127, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11129, + "make_id": 8869, + "model_id": 11098, + "year_id": 11127, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11130, + "make_id": 8869, + "model_id": 11098, + "year_id": 11127, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11131, + "make_id": 8869, + "model_id": 11098, + "year_id": 11127, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11132, + "make_id": 8869, + "model_id": 11098, + "year_id": 11132, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11133, + "make_id": 8869, + "model_id": 11098, + "year_id": 11132, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11134, + "make_id": 8869, + "model_id": 11134, + "year_id": 11134, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11135, + "make_id": 8869, + "model_id": 11134, + "year_id": 11134, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11136, + "make_id": 8869, + "model_id": 11134, + "year_id": 11134, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11137, + "make_id": 8869, + "model_id": 11134, + "year_id": 11134, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11138, + "make_id": 8869, + "model_id": 11134, + "year_id": 11134, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11139, + "make_id": 8869, + "model_id": 11134, + "year_id": 11139, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11140, + "make_id": 8869, + "model_id": 11134, + "year_id": 11139, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11141, + "make_id": 8869, + "model_id": 11134, + "year_id": 11139, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11142, + "make_id": 8869, + "model_id": 11134, + "year_id": 11139, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11143, + "make_id": 8869, + "model_id": 11134, + "year_id": 11139, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11144, + "make_id": 8869, + "model_id": 11134, + "year_id": 11144, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11145, + "make_id": 8869, + "model_id": 11134, + "year_id": 11144, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11146, + "make_id": 8869, + "model_id": 11134, + "year_id": 11144, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11147, + "make_id": 8869, + "model_id": 11134, + "year_id": 11144, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11148, + "make_id": 8869, + "model_id": 11134, + "year_id": 11144, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11149, + "make_id": 8869, + "model_id": 11134, + "year_id": 11149, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11150, + "make_id": 8869, + "model_id": 11134, + "year_id": 11149, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11151, + "make_id": 8869, + "model_id": 11134, + "year_id": 11149, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11152, + "make_id": 8869, + "model_id": 11134, + "year_id": 11149, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11153, + "make_id": 8869, + "model_id": 11134, + "year_id": 11149, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11154, + "make_id": 8869, + "model_id": 11134, + "year_id": 11154, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11155, + "make_id": 8869, + "model_id": 11134, + "year_id": 11154, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11156, + "make_id": 8869, + "model_id": 11134, + "year_id": 11154, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11157, + "make_id": 8869, + "model_id": 11134, + "year_id": 11154, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11158, + "make_id": 8869, + "model_id": 11134, + "year_id": 11154, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11159, + "make_id": 8869, + "model_id": 11134, + "year_id": 11159, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11160, + "make_id": 8869, + "model_id": 11134, + "year_id": 11159, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11161, + "make_id": 8869, + "model_id": 11134, + "year_id": 11159, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11162, + "make_id": 8869, + "model_id": 11134, + "year_id": 11159, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11163, + "make_id": 8869, + "model_id": 11134, + "year_id": 11159, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11164, + "make_id": 8869, + "model_id": 11164, + "year_id": 11164, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11165, + "make_id": 8869, + "model_id": 11164, + "year_id": 11164, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11166, + "make_id": 8869, + "model_id": 11164, + "year_id": 11166, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11167, + "make_id": 8869, + "model_id": 11164, + "year_id": 11166, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11168, + "make_id": 8869, + "model_id": 11164, + "year_id": 11166, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11169, + "make_id": 8869, + "model_id": 11164, + "year_id": 11166, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11170, + "make_id": 8869, + "model_id": 11164, + "year_id": 11166, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11171, + "make_id": 8869, + "model_id": 11164, + "year_id": 11171, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11172, + "make_id": 8869, + "model_id": 11164, + "year_id": 11171, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11173, + "make_id": 8869, + "model_id": 11164, + "year_id": 11171, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11174, + "make_id": 8869, + "model_id": 11164, + "year_id": 11171, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11175, + "make_id": 8869, + "model_id": 11164, + "year_id": 11171, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11176, + "make_id": 8869, + "model_id": 11164, + "year_id": 11176, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11177, + "make_id": 8869, + "model_id": 11164, + "year_id": 11176, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11178, + "make_id": 8869, + "model_id": 11164, + "year_id": 11176, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11179, + "make_id": 8869, + "model_id": 11164, + "year_id": 11176, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11180, + "make_id": 8869, + "model_id": 11164, + "year_id": 11180, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11181, + "make_id": 8869, + "model_id": 11164, + "year_id": 11180, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11182, + "make_id": 8869, + "model_id": 11164, + "year_id": 11180, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11183, + "make_id": 8869, + "model_id": 11164, + "year_id": 11180, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11184, + "make_id": 8869, + "model_id": 11164, + "year_id": 11184, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11185, + "make_id": 8869, + "model_id": 11164, + "year_id": 11184, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11186, + "make_id": 8869, + "model_id": 11164, + "year_id": 11184, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11187, + "make_id": 8869, + "model_id": 11164, + "year_id": 11184, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11188, + "make_id": 8869, + "model_id": 11164, + "year_id": 11188, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11189, + "make_id": 8869, + "model_id": 11164, + "year_id": 11188, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11190, + "make_id": 8869, + "model_id": 11164, + "year_id": 11188, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11191, + "make_id": 8869, + "model_id": 11164, + "year_id": 11188, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11192, + "make_id": 8869, + "model_id": 11164, + "year_id": 11188, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11193, + "make_id": 8869, + "model_id": 11164, + "year_id": 11193, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11194, + "make_id": 8869, + "model_id": 11164, + "year_id": 11193, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11195, + "make_id": 8869, + "model_id": 11164, + "year_id": 11193, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11196, + "make_id": 8869, + "model_id": 11164, + "year_id": 11193, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11197, + "make_id": 8869, + "model_id": 11164, + "year_id": 11193, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11198, + "make_id": 8869, + "model_id": 11164, + "year_id": 11193, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11199, + "make_id": 8869, + "model_id": 11164, + "year_id": 11193, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11200, + "make_id": 8869, + "model_id": 11164, + "year_id": 11193, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11201, + "make_id": 8869, + "model_id": 11164, + "year_id": 11201, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11202, + "make_id": 8869, + "model_id": 11164, + "year_id": 11201, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11203, + "make_id": 8869, + "model_id": 11164, + "year_id": 11201, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11204, + "make_id": 8869, + "model_id": 11164, + "year_id": 11201, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11205, + "make_id": 8869, + "model_id": 11164, + "year_id": 11201, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11206, + "make_id": 8869, + "model_id": 11164, + "year_id": 11201, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11207, + "make_id": 8869, + "model_id": 11164, + "year_id": 11201, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11208, + "make_id": 8869, + "model_id": 11164, + "year_id": 11208, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11209, + "make_id": 8869, + "model_id": 11164, + "year_id": 11208, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11210, + "make_id": 8869, + "model_id": 11164, + "year_id": 11208, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11211, + "make_id": 8869, + "model_id": 11164, + "year_id": 11208, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11212, + "make_id": 8869, + "model_id": 11164, + "year_id": 11208, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11213, + "make_id": 8869, + "model_id": 11164, + "year_id": 11213, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11214, + "make_id": 8869, + "model_id": 11164, + "year_id": 11213, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11215, + "make_id": 8869, + "model_id": 11164, + "year_id": 11213, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11216, + "make_id": 8869, + "model_id": 11164, + "year_id": 11213, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11217, + "make_id": 8869, + "model_id": 11164, + "year_id": 11213, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11218, + "make_id": 8869, + "model_id": 11218, + "year_id": 11218, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11219, + "make_id": 8869, + "model_id": 11218, + "year_id": 11218, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11220, + "make_id": 8869, + "model_id": 11218, + "year_id": 11218, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11221, + "make_id": 8869, + "model_id": 11218, + "year_id": 11221, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11222, + "make_id": 8869, + "model_id": 11218, + "year_id": 11221, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11223, + "make_id": 8869, + "model_id": 11218, + "year_id": 11221, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11224, + "make_id": 8869, + "model_id": 11218, + "year_id": 11221, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11225, + "make_id": 8869, + "model_id": 11218, + "year_id": 11225, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11226, + "make_id": 8869, + "model_id": 11218, + "year_id": 11225, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11227, + "make_id": 8869, + "model_id": 11218, + "year_id": 11225, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11228, + "make_id": 8869, + "model_id": 11218, + "year_id": 11225, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11229, + "make_id": 8869, + "model_id": 11218, + "year_id": 11225, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11230, + "make_id": 8869, + "model_id": 11218, + "year_id": 11230, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11231, + "make_id": 8869, + "model_id": 11218, + "year_id": 11230, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11232, + "make_id": 8869, + "model_id": 11218, + "year_id": 11230, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11233, + "make_id": 8869, + "model_id": 11218, + "year_id": 11230, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11234, + "make_id": 8869, + "model_id": 11218, + "year_id": 11234, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11235, + "make_id": 8869, + "model_id": 11218, + "year_id": 11234, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11236, + "make_id": 8869, + "model_id": 11218, + "year_id": 11234, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11237, + "make_id": 8869, + "model_id": 11218, + "year_id": 11237, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11238, + "make_id": 8869, + "model_id": 11218, + "year_id": 11237, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11239, + "make_id": 8869, + "model_id": 11218, + "year_id": 11237, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11240, + "make_id": 8869, + "model_id": 11240, + "year_id": 11240, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11241, + "make_id": 8869, + "model_id": 11240, + "year_id": 11241, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11242, + "make_id": 8869, + "model_id": 11240, + "year_id": 11242, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11243, + "make_id": 8869, + "model_id": 11240, + "year_id": 11243, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11244, + "make_id": 8869, + "model_id": 11240, + "year_id": 11244, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11245, + "make_id": 8869, + "model_id": 11245, + "year_id": 11245, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11246, + "make_id": 8869, + "model_id": 11245, + "year_id": 11246, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11247, + "make_id": 8869, + "model_id": 11245, + "year_id": 11247, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11248, + "make_id": 8869, + "model_id": 11245, + "year_id": 11248, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11249, + "make_id": 8869, + "model_id": 11245, + "year_id": 11249, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11250, + "make_id": 8869, + "model_id": 11245, + "year_id": 11250, + "cylinders": 10, + "displacement": 8.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11251, + "make_id": 8869, + "model_id": 11245, + "year_id": 11251, + "cylinders": 10, + "displacement": 8.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11252, + "make_id": 8869, + "model_id": 11245, + "year_id": 11252, + "cylinders": 10, + "displacement": 8.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11253, + "make_id": 8869, + "model_id": 11245, + "year_id": 11253, + "cylinders": 10, + "displacement": 8.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11254, + "make_id": 8869, + "model_id": 11245, + "year_id": 11254, + "cylinders": 10, + "displacement": 8.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11255, + "make_id": 8869, + "model_id": 11245, + "year_id": 11255, + "cylinders": 10, + "displacement": 8.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11256, + "make_id": 8869, + "model_id": 11245, + "year_id": 11256, + "cylinders": 10, + "displacement": 8.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11257, + "make_id": 8869, + "model_id": 11257, + "year_id": 11257, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11258, + "make_id": 8869, + "model_id": 11257, + "year_id": 11258, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11259, + "make_id": 8869, + "model_id": 11257, + "year_id": 11259, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11260, + "make_id": 8869, + "model_id": 11257, + "year_id": 11260, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11261, + "make_id": 8869, + "model_id": 11257, + "year_id": 11261, + "cylinders": 10, + "displacement": 8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11262, + "make_id": 8869, + "model_id": 11257, + "year_id": 11262, + "cylinders": 10, + "displacement": 8.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11263, + "make_id": 8869, + "model_id": 11257, + "year_id": 11263, + "cylinders": 10, + "displacement": 8.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11264, + "make_id": 8869, + "model_id": 11257, + "year_id": 11264, + "cylinders": 10, + "displacement": 8.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11265, + "make_id": 8869, + "model_id": 11265, + "year_id": 11265, + "cylinders": 10, + "displacement": 8.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11266, + "make_id": 8869, + "model_id": 11265, + "year_id": 11266, + "cylinders": 10, + "displacement": 8.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11267, + "make_id": 8869, + "model_id": 11267, + "year_id": 11267, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11268, + "make_id": 8869, + "model_id": 11267, + "year_id": 11267, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11269, + "make_id": 8869, + "model_id": 11267, + "year_id": 11267, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11270, + "make_id": 8869, + "model_id": 11267, + "year_id": 11267, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11271, + "make_id": 8869, + "model_id": 11267, + "year_id": 11267, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11272, + "make_id": 8869, + "model_id": 11267, + "year_id": 11267, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11273, + "make_id": 8869, + "model_id": 11267, + "year_id": 11267, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11274, + "make_id": 8869, + "model_id": 11267, + "year_id": 11267, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11275, + "make_id": 8869, + "model_id": 11267, + "year_id": 11275, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11276, + "make_id": 8869, + "model_id": 11267, + "year_id": 11275, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11277, + "make_id": 8869, + "model_id": 11267, + "year_id": 11275, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11278, + "make_id": 8869, + "model_id": 11267, + "year_id": 11275, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11279, + "make_id": 8869, + "model_id": 11267, + "year_id": 11275, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11280, + "make_id": 8869, + "model_id": 11267, + "year_id": 11275, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11281, + "make_id": 8869, + "model_id": 11267, + "year_id": 11275, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11282, + "make_id": 8869, + "model_id": 11267, + "year_id": 11282, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11283, + "make_id": 8869, + "model_id": 11267, + "year_id": 11282, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11284, + "make_id": 8869, + "model_id": 11267, + "year_id": 11282, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11285, + "make_id": 8869, + "model_id": 11267, + "year_id": 11282, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11286, + "make_id": 8869, + "model_id": 11267, + "year_id": 11282, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11287, + "make_id": 8869, + "model_id": 11267, + "year_id": 11282, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11288, + "make_id": 8869, + "model_id": 11267, + "year_id": 11282, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11289, + "make_id": 8869, + "model_id": 11267, + "year_id": 11289, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11290, + "make_id": 8869, + "model_id": 11267, + "year_id": 11289, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11291, + "make_id": 8869, + "model_id": 11267, + "year_id": 11289, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11292, + "make_id": 8869, + "model_id": 11267, + "year_id": 11289, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11293, + "make_id": 8869, + "model_id": 11267, + "year_id": 11289, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11294, + "make_id": 8869, + "model_id": 11267, + "year_id": 11289, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11295, + "make_id": 8869, + "model_id": 11267, + "year_id": 11289, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11296, + "make_id": 8869, + "model_id": 11267, + "year_id": 11296, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11297, + "make_id": 8869, + "model_id": 11267, + "year_id": 11296, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11298, + "make_id": 8869, + "model_id": 11267, + "year_id": 11296, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11299, + "make_id": 8869, + "model_id": 11267, + "year_id": 11296, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11300, + "make_id": 8869, + "model_id": 11267, + "year_id": 11300, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11301, + "make_id": 8869, + "model_id": 11267, + "year_id": 11300, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11302, + "make_id": 8869, + "model_id": 11267, + "year_id": 11300, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11303, + "make_id": 8869, + "model_id": 11267, + "year_id": 11300, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11304, + "make_id": 8869, + "model_id": 11267, + "year_id": 11300, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11305, + "make_id": 8869, + "model_id": 11267, + "year_id": 11300, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11306, + "make_id": 8869, + "model_id": 11267, + "year_id": 11306, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11307, + "make_id": 8869, + "model_id": 11267, + "year_id": 11306, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11308, + "make_id": 8869, + "model_id": 11267, + "year_id": 11306, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11309, + "make_id": 8869, + "model_id": 11267, + "year_id": 11306, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11310, + "make_id": 8869, + "model_id": 11267, + "year_id": 11306, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11311, + "make_id": 8869, + "model_id": 11267, + "year_id": 11306, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11312, + "make_id": 8869, + "model_id": 11267, + "year_id": 11312, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11313, + "make_id": 8869, + "model_id": 11267, + "year_id": 11312, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11314, + "make_id": 8869, + "model_id": 11267, + "year_id": 11312, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11315, + "make_id": 8869, + "model_id": 11267, + "year_id": 11312, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11316, + "make_id": 8869, + "model_id": 11267, + "year_id": 11312, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11317, + "make_id": 8869, + "model_id": 11267, + "year_id": 11312, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11318, + "make_id": 8869, + "model_id": 11267, + "year_id": 11318, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11319, + "make_id": 8869, + "model_id": 11267, + "year_id": 11318, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11320, + "make_id": 8869, + "model_id": 11267, + "year_id": 11318, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11321, + "make_id": 8869, + "model_id": 11267, + "year_id": 11318, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11322, + "make_id": 8869, + "model_id": 11267, + "year_id": 11318, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11323, + "make_id": 8869, + "model_id": 11267, + "year_id": 11318, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11324, + "make_id": 8869, + "model_id": 11267, + "year_id": 11318, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11325, + "make_id": 8869, + "model_id": 11267, + "year_id": 11325, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11326, + "make_id": 8869, + "model_id": 11267, + "year_id": 11325, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11327, + "make_id": 8869, + "model_id": 11267, + "year_id": 11325, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11328, + "make_id": 8869, + "model_id": 11267, + "year_id": 11325, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11329, + "make_id": 8869, + "model_id": 11267, + "year_id": 11325, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11330, + "make_id": 8869, + "model_id": 11267, + "year_id": 11325, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11331, + "make_id": 8869, + "model_id": 11331, + "year_id": 11331, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11332, + "make_id": 8869, + "model_id": 11331, + "year_id": 11331, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11333, + "make_id": 8869, + "model_id": 11331, + "year_id": 11331, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11334, + "make_id": 8869, + "model_id": 11331, + "year_id": 11334, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11335, + "make_id": 8869, + "model_id": 11331, + "year_id": 11334, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11336, + "make_id": 8869, + "model_id": 11331, + "year_id": 11334, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11337, + "make_id": 8869, + "model_id": 11331, + "year_id": 11334, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11338, + "make_id": 8869, + "model_id": 11331, + "year_id": 11334, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11339, + "make_id": 8869, + "model_id": 11331, + "year_id": 11339, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11340, + "make_id": 8869, + "model_id": 11331, + "year_id": 11339, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11341, + "make_id": 8869, + "model_id": 11331, + "year_id": 11339, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11342, + "make_id": 8869, + "model_id": 11331, + "year_id": 11339, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11343, + "make_id": 8869, + "model_id": 11331, + "year_id": 11343, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11344, + "make_id": 8869, + "model_id": 11331, + "year_id": 11343, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11345, + "make_id": 8869, + "model_id": 11331, + "year_id": 11343, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11346, + "make_id": 8869, + "model_id": 11331, + "year_id": 11343, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11347, + "make_id": 8869, + "model_id": 11331, + "year_id": 11347, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11348, + "make_id": 8869, + "model_id": 11331, + "year_id": 11347, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11349, + "make_id": 8869, + "model_id": 11331, + "year_id": 11347, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11350, + "make_id": 8869, + "model_id": 11331, + "year_id": 11347, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11351, + "make_id": 8869, + "model_id": 11331, + "year_id": 11351, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11352, + "make_id": 8869, + "model_id": 11331, + "year_id": 11351, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11353, + "make_id": 8869, + "model_id": 11331, + "year_id": 11351, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11354, + "make_id": 8869, + "model_id": 11331, + "year_id": 11351, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11355, + "make_id": 8869, + "model_id": 11331, + "year_id": 11355, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11356, + "make_id": 8869, + "model_id": 11331, + "year_id": 11355, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11357, + "make_id": 8869, + "model_id": 11331, + "year_id": 11355, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11358, + "make_id": 8869, + "model_id": 11331, + "year_id": 11355, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11359, + "make_id": 8869, + "model_id": 11331, + "year_id": 11359, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11360, + "make_id": 8869, + "model_id": 11331, + "year_id": 11359, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11361, + "make_id": 8869, + "model_id": 11331, + "year_id": 11359, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11362, + "make_id": 8869, + "model_id": 11331, + "year_id": 11359, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11363, + "make_id": 8869, + "model_id": 11331, + "year_id": 11363, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11364, + "make_id": 8869, + "model_id": 11331, + "year_id": 11363, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11365, + "make_id": 8869, + "model_id": 11331, + "year_id": 11363, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11366, + "make_id": 8869, + "model_id": 11331, + "year_id": 11363, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11367, + "make_id": 8869, + "model_id": 11331, + "year_id": 11363, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11368, + "make_id": 8869, + "model_id": 11331, + "year_id": 11368, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11369, + "make_id": 8869, + "model_id": 11331, + "year_id": 11368, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11370, + "make_id": 8869, + "model_id": 11331, + "year_id": 11368, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11371, + "make_id": 8869, + "model_id": 11331, + "year_id": 11368, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11372, + "make_id": 11372, + "model_id": 11372, + "year_id": 11372, + "cylinders": 8, + "displacement": 4.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11373, + "make_id": 11373, + "model_id": 11373, + "year_id": 11373, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11374, + "make_id": 11373, + "model_id": 11373, + "year_id": 11373, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11375, + "make_id": 11373, + "model_id": 11375, + "year_id": 11375, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11376, + "make_id": 11373, + "model_id": 11375, + "year_id": 11375, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11377, + "make_id": 11373, + "model_id": 11377, + "year_id": 11377, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11378, + "make_id": 11373, + "model_id": 11377, + "year_id": 11377, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11379, + "make_id": 11373, + "model_id": 11377, + "year_id": 11377, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11380, + "make_id": 11373, + "model_id": 11377, + "year_id": 11380, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11381, + "make_id": 11373, + "model_id": 11377, + "year_id": 11380, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11382, + "make_id": 11373, + "model_id": 11377, + "year_id": 11382, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11383, + "make_id": 11373, + "model_id": 11377, + "year_id": 11383, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11384, + "make_id": 11373, + "model_id": 11377, + "year_id": 11384, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11385, + "make_id": 11373, + "model_id": 11385, + "year_id": 11385, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11386, + "make_id": 11373, + "model_id": 11385, + "year_id": 11385, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11387, + "make_id": 11373, + "model_id": 11387, + "year_id": 11387, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11388, + "make_id": 11373, + "model_id": 11387, + "year_id": 11387, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11389, + "make_id": 11373, + "model_id": 11389, + "year_id": 11389, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11390, + "make_id": 11373, + "model_id": 11389, + "year_id": 11389, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11391, + "make_id": 11373, + "model_id": 11389, + "year_id": 11389, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11392, + "make_id": 11373, + "model_id": 11389, + "year_id": 11389, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11393, + "make_id": 11373, + "model_id": 11389, + "year_id": 11393, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11394, + "make_id": 11373, + "model_id": 11389, + "year_id": 11393, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11395, + "make_id": 11373, + "model_id": 11389, + "year_id": 11393, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11396, + "make_id": 11373, + "model_id": 11389, + "year_id": 11393, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11397, + "make_id": 11373, + "model_id": 11389, + "year_id": 11397, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11398, + "make_id": 11373, + "model_id": 11389, + "year_id": 11397, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11399, + "make_id": 11373, + "model_id": 11389, + "year_id": 11397, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11400, + "make_id": 11373, + "model_id": 11389, + "year_id": 11397, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11401, + "make_id": 11373, + "model_id": 11389, + "year_id": 11401, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11402, + "make_id": 11373, + "model_id": 11389, + "year_id": 11401, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11403, + "make_id": 11373, + "model_id": 11389, + "year_id": 11401, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11404, + "make_id": 11373, + "model_id": 11389, + "year_id": 11401, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11405, + "make_id": 11373, + "model_id": 11389, + "year_id": 11405, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11406, + "make_id": 11373, + "model_id": 11389, + "year_id": 11405, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11407, + "make_id": 11373, + "model_id": 11389, + "year_id": 11405, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11408, + "make_id": 11373, + "model_id": 11389, + "year_id": 11405, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11409, + "make_id": 11373, + "model_id": 11389, + "year_id": 11409, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11410, + "make_id": 11373, + "model_id": 11389, + "year_id": 11409, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11411, + "make_id": 11373, + "model_id": 11389, + "year_id": 11409, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11412, + "make_id": 11373, + "model_id": 11389, + "year_id": 11409, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11413, + "make_id": 11373, + "model_id": 11389, + "year_id": 11413, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11414, + "make_id": 11373, + "model_id": 11389, + "year_id": 11413, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11415, + "make_id": 11373, + "model_id": 11389, + "year_id": 11413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11416, + "make_id": 11373, + "model_id": 11389, + "year_id": 11413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11417, + "make_id": 11373, + "model_id": 11389, + "year_id": 11417, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11418, + "make_id": 11373, + "model_id": 11389, + "year_id": 11417, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11419, + "make_id": 11373, + "model_id": 11389, + "year_id": 11417, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11420, + "make_id": 11373, + "model_id": 11389, + "year_id": 11417, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11421, + "make_id": 11373, + "model_id": 11421, + "year_id": 11421, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11422, + "make_id": 11373, + "model_id": 11421, + "year_id": 11421, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11423, + "make_id": 11373, + "model_id": 11421, + "year_id": 11421, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11424, + "make_id": 11373, + "model_id": 11421, + "year_id": 11421, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11425, + "make_id": 11373, + "model_id": 11421, + "year_id": 11421, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11426, + "make_id": 11373, + "model_id": 11421, + "year_id": 11421, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11427, + "make_id": 11373, + "model_id": 11421, + "year_id": 11421, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11428, + "make_id": 11373, + "model_id": 11421, + "year_id": 11421, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11429, + "make_id": 11373, + "model_id": 11421, + "year_id": 11429, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11430, + "make_id": 11373, + "model_id": 11421, + "year_id": 11429, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11431, + "make_id": 11373, + "model_id": 11421, + "year_id": 11429, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11432, + "make_id": 11373, + "model_id": 11421, + "year_id": 11429, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11433, + "make_id": 11373, + "model_id": 11421, + "year_id": 11429, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11434, + "make_id": 11373, + "model_id": 11421, + "year_id": 11429, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11435, + "make_id": 11373, + "model_id": 11421, + "year_id": 11429, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11436, + "make_id": 11373, + "model_id": 11421, + "year_id": 11429, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11437, + "make_id": 11373, + "model_id": 11421, + "year_id": 11437, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11438, + "make_id": 11373, + "model_id": 11421, + "year_id": 11437, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11439, + "make_id": 11373, + "model_id": 11421, + "year_id": 11437, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11440, + "make_id": 11373, + "model_id": 11421, + "year_id": 11437, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11441, + "make_id": 11373, + "model_id": 11421, + "year_id": 11437, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11442, + "make_id": 11373, + "model_id": 11421, + "year_id": 11437, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11443, + "make_id": 11373, + "model_id": 11421, + "year_id": 11443, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11444, + "make_id": 11373, + "model_id": 11421, + "year_id": 11443, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11445, + "make_id": 11373, + "model_id": 11421, + "year_id": 11443, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11446, + "make_id": 11373, + "model_id": 11421, + "year_id": 11443, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11447, + "make_id": 11373, + "model_id": 11421, + "year_id": 11443, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11448, + "make_id": 11373, + "model_id": 11421, + "year_id": 11443, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11449, + "make_id": 11373, + "model_id": 11421, + "year_id": 11449, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11450, + "make_id": 11373, + "model_id": 11421, + "year_id": 11449, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11451, + "make_id": 11373, + "model_id": 11421, + "year_id": 11449, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11452, + "make_id": 11373, + "model_id": 11421, + "year_id": 11449, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11453, + "make_id": 11373, + "model_id": 11421, + "year_id": 11449, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11454, + "make_id": 11373, + "model_id": 11421, + "year_id": 11449, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11455, + "make_id": 11373, + "model_id": 11455, + "year_id": 11455, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11456, + "make_id": 11373, + "model_id": 11455, + "year_id": 11455, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11457, + "make_id": 11373, + "model_id": 11455, + "year_id": 11455, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11458, + "make_id": 11373, + "model_id": 11455, + "year_id": 11455, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11459, + "make_id": 11373, + "model_id": 11455, + "year_id": 11459, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11460, + "make_id": 11373, + "model_id": 11455, + "year_id": 11459, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11461, + "make_id": 11373, + "model_id": 11455, + "year_id": 11459, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11462, + "make_id": 11373, + "model_id": 11455, + "year_id": 11459, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11463, + "make_id": 11373, + "model_id": 11455, + "year_id": 11459, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11464, + "make_id": 11373, + "model_id": 11455, + "year_id": 11459, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11465, + "make_id": 11373, + "model_id": 11455, + "year_id": 11465, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11466, + "make_id": 11373, + "model_id": 11455, + "year_id": 11465, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11467, + "make_id": 11373, + "model_id": 11455, + "year_id": 11465, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11468, + "make_id": 11373, + "model_id": 11455, + "year_id": 11465, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11469, + "make_id": 11373, + "model_id": 11455, + "year_id": 11465, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11470, + "make_id": 11373, + "model_id": 11455, + "year_id": 11465, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11471, + "make_id": 11373, + "model_id": 11455, + "year_id": 11471, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11472, + "make_id": 11373, + "model_id": 11455, + "year_id": 11471, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11473, + "make_id": 11373, + "model_id": 11455, + "year_id": 11471, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11474, + "make_id": 11373, + "model_id": 11455, + "year_id": 11471, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11475, + "make_id": 11373, + "model_id": 11455, + "year_id": 11471, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11476, + "make_id": 11373, + "model_id": 11455, + "year_id": 11471, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11477, + "make_id": 11373, + "model_id": 11455, + "year_id": 11471, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11478, + "make_id": 11373, + "model_id": 11455, + "year_id": 11471, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11479, + "make_id": 11373, + "model_id": 11455, + "year_id": 11479, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11480, + "make_id": 11373, + "model_id": 11455, + "year_id": 11479, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11481, + "make_id": 11373, + "model_id": 11455, + "year_id": 11479, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11482, + "make_id": 11373, + "model_id": 11455, + "year_id": 11479, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11483, + "make_id": 11373, + "model_id": 11455, + "year_id": 11479, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11484, + "make_id": 11373, + "model_id": 11455, + "year_id": 11479, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11485, + "make_id": 11373, + "model_id": 11455, + "year_id": 11479, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11486, + "make_id": 11373, + "model_id": 11455, + "year_id": 11479, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11487, + "make_id": 11373, + "model_id": 11455, + "year_id": 11487, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11488, + "make_id": 11373, + "model_id": 11455, + "year_id": 11487, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11489, + "make_id": 11373, + "model_id": 11455, + "year_id": 11487, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11490, + "make_id": 11373, + "model_id": 11455, + "year_id": 11487, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11491, + "make_id": 11373, + "model_id": 11455, + "year_id": 11487, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11492, + "make_id": 11373, + "model_id": 11455, + "year_id": 11487, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11493, + "make_id": 11373, + "model_id": 11455, + "year_id": 11487, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11494, + "make_id": 11373, + "model_id": 11455, + "year_id": 11487, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11495, + "make_id": 11373, + "model_id": 11455, + "year_id": 11495, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11496, + "make_id": 11373, + "model_id": 11455, + "year_id": 11495, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11497, + "make_id": 11373, + "model_id": 11455, + "year_id": 11495, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11498, + "make_id": 11373, + "model_id": 11455, + "year_id": 11495, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11499, + "make_id": 11373, + "model_id": 11455, + "year_id": 11495, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11500, + "make_id": 11373, + "model_id": 11455, + "year_id": 11495, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11501, + "make_id": 11373, + "model_id": 11455, + "year_id": 11501, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11502, + "make_id": 11373, + "model_id": 11455, + "year_id": 11501, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11503, + "make_id": 11373, + "model_id": 11455, + "year_id": 11501, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11504, + "make_id": 11373, + "model_id": 11455, + "year_id": 11501, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11505, + "make_id": 11373, + "model_id": 11455, + "year_id": 11501, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11506, + "make_id": 11373, + "model_id": 11455, + "year_id": 11501, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11507, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11508, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11509, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11510, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11511, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11512, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11513, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11514, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11515, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11516, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11517, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11518, + "make_id": 11373, + "model_id": 11455, + "year_id": 11507, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11519, + "make_id": 11373, + "model_id": 11519, + "year_id": 11519, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11520, + "make_id": 11373, + "model_id": 11519, + "year_id": 11519, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11521, + "make_id": 11373, + "model_id": 11519, + "year_id": 11521, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11522, + "make_id": 11373, + "model_id": 11519, + "year_id": 11521, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11523, + "make_id": 11373, + "model_id": 11519, + "year_id": 11521, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11524, + "make_id": 11373, + "model_id": 11519, + "year_id": 11524, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11525, + "make_id": 11373, + "model_id": 11519, + "year_id": 11524, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11526, + "make_id": 11373, + "model_id": 11519, + "year_id": 11524, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11527, + "make_id": 11373, + "model_id": 11519, + "year_id": 11527, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11528, + "make_id": 11373, + "model_id": 11519, + "year_id": 11527, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11529, + "make_id": 11373, + "model_id": 11519, + "year_id": 11527, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11530, + "make_id": 11373, + "model_id": 11519, + "year_id": 11530, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11531, + "make_id": 11373, + "model_id": 11519, + "year_id": 11530, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11532, + "make_id": 11373, + "model_id": 11519, + "year_id": 11530, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11533, + "make_id": 11373, + "model_id": 11533, + "year_id": 11533, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11534, + "make_id": 11534, + "model_id": 11534, + "year_id": 11534, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11535, + "make_id": 11535, + "model_id": 11535, + "year_id": 11535, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11536, + "make_id": 11535, + "model_id": 11535, + "year_id": 11536, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11537, + "make_id": 11535, + "model_id": 11537, + "year_id": 11537, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11538, + "make_id": 11538, + "model_id": 11538, + "year_id": 11538, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11539, + "make_id": 11539, + "model_id": 11539, + "year_id": 11539, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11540, + "make_id": 11539, + "model_id": 11540, + "year_id": 11540, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11541, + "make_id": 11539, + "model_id": 11541, + "year_id": 11541, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11542, + "make_id": 11539, + "model_id": 11542, + "year_id": 11542, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11543, + "make_id": 11539, + "model_id": 11543, + "year_id": 11543, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11544, + "make_id": 11539, + "model_id": 11544, + "year_id": 11544, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11545, + "make_id": 11539, + "model_id": 11545, + "year_id": 11545, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11546, + "make_id": 11539, + "model_id": 11546, + "year_id": 11546, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11547, + "make_id": 11539, + "model_id": 11547, + "year_id": 11547, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11548, + "make_id": 11539, + "model_id": 11548, + "year_id": 11548, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11549, + "make_id": 11539, + "model_id": 11549, + "year_id": 11549, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11550, + "make_id": 11539, + "model_id": 11550, + "year_id": 11550, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11551, + "make_id": 11539, + "model_id": 11551, + "year_id": 11551, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11552, + "make_id": 11539, + "model_id": 11552, + "year_id": 11552, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11553, + "make_id": 11553, + "model_id": 11553, + "year_id": 11553, + "cylinders": 8, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11554, + "make_id": 11553, + "model_id": 11554, + "year_id": 11554, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11555, + "make_id": 11553, + "model_id": 11554, + "year_id": 11554, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11556, + "make_id": 11553, + "model_id": 11556, + "year_id": 11556, + "cylinders": 8, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11557, + "make_id": 11553, + "model_id": 11556, + "year_id": 11557, + "cylinders": 8, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11558, + "make_id": 11553, + "model_id": 11556, + "year_id": 11558, + "cylinders": 8, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11559, + "make_id": 11553, + "model_id": 11559, + "year_id": 11559, + "cylinders": 8, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11560, + "make_id": 11553, + "model_id": 11559, + "year_id": 11560, + "cylinders": 8, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11561, + "make_id": 11553, + "model_id": 11559, + "year_id": 11561, + "cylinders": 8, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11562, + "make_id": 11553, + "model_id": 11559, + "year_id": 11562, + "cylinders": 8, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11563, + "make_id": 11553, + "model_id": 11563, + "year_id": 11563, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11564, + "make_id": 11553, + "model_id": 11563, + "year_id": 11564, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11565, + "make_id": 11553, + "model_id": 11563, + "year_id": 11565, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11566, + "make_id": 11553, + "model_id": 11563, + "year_id": 11566, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11567, + "make_id": 11553, + "model_id": 11563, + "year_id": 11567, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11568, + "make_id": 11553, + "model_id": 11568, + "year_id": 11568, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11569, + "make_id": 11553, + "model_id": 11568, + "year_id": 11568, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11570, + "make_id": 11553, + "model_id": 11570, + "year_id": 11570, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11571, + "make_id": 11553, + "model_id": 11570, + "year_id": 11570, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11572, + "make_id": 11553, + "model_id": 11570, + "year_id": 11572, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11573, + "make_id": 11553, + "model_id": 11570, + "year_id": 11572, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11574, + "make_id": 11553, + "model_id": 11570, + "year_id": 11574, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11575, + "make_id": 11553, + "model_id": 11570, + "year_id": 11574, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11576, + "make_id": 11553, + "model_id": 11570, + "year_id": 11576, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11577, + "make_id": 11553, + "model_id": 11570, + "year_id": 11576, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11578, + "make_id": 11553, + "model_id": 11570, + "year_id": 11576, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11579, + "make_id": 11553, + "model_id": 11579, + "year_id": 11579, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11580, + "make_id": 11553, + "model_id": 11579, + "year_id": 11579, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11581, + "make_id": 11553, + "model_id": 11579, + "year_id": 11579, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11582, + "make_id": 11553, + "model_id": 11579, + "year_id": 11582, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11583, + "make_id": 11553, + "model_id": 11579, + "year_id": 11582, + "cylinders": 8, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11584, + "make_id": 11553, + "model_id": 11584, + "year_id": 11584, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11585, + "make_id": 11553, + "model_id": 11584, + "year_id": 11584, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11586, + "make_id": 11553, + "model_id": 11584, + "year_id": 11586, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11587, + "make_id": 11553, + "model_id": 11584, + "year_id": 11586, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11588, + "make_id": 11553, + "model_id": 11584, + "year_id": 11588, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11589, + "make_id": 11553, + "model_id": 11584, + "year_id": 11588, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11590, + "make_id": 11553, + "model_id": 11584, + "year_id": 11590, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11591, + "make_id": 11553, + "model_id": 11584, + "year_id": 11590, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11592, + "make_id": 11553, + "model_id": 11584, + "year_id": 11592, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11593, + "make_id": 11553, + "model_id": 11584, + "year_id": 11592, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11594, + "make_id": 11553, + "model_id": 11594, + "year_id": 11594, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11595, + "make_id": 11553, + "model_id": 11594, + "year_id": 11595, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11596, + "make_id": 11553, + "model_id": 11594, + "year_id": 11596, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11597, + "make_id": 11553, + "model_id": 11594, + "year_id": 11596, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11598, + "make_id": 11553, + "model_id": 11594, + "year_id": 11598, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11599, + "make_id": 11553, + "model_id": 11594, + "year_id": 11598, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11600, + "make_id": 11553, + "model_id": 11594, + "year_id": 11600, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11601, + "make_id": 11553, + "model_id": 11594, + "year_id": 11600, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11602, + "make_id": 11553, + "model_id": 11602, + "year_id": 11602, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11603, + "make_id": 11553, + "model_id": 11602, + "year_id": 11602, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11604, + "make_id": 11553, + "model_id": 11604, + "year_id": 11604, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11605, + "make_id": 11553, + "model_id": 11604, + "year_id": 11604, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11606, + "make_id": 11553, + "model_id": 11606, + "year_id": 11606, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11607, + "make_id": 11553, + "model_id": 11606, + "year_id": 11606, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11608, + "make_id": 11553, + "model_id": 11606, + "year_id": 11608, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11609, + "make_id": 11553, + "model_id": 11606, + "year_id": 11608, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11610, + "make_id": 11553, + "model_id": 11610, + "year_id": 11610, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11611, + "make_id": 11553, + "model_id": 11610, + "year_id": 11610, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11612, + "make_id": 11553, + "model_id": 11612, + "year_id": 11612, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11613, + "make_id": 11553, + "model_id": 11612, + "year_id": 11612, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11614, + "make_id": 11553, + "model_id": 11612, + "year_id": 11614, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11615, + "make_id": 11553, + "model_id": 11612, + "year_id": 11614, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11616, + "make_id": 11553, + "model_id": 11612, + "year_id": 11616, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11617, + "make_id": 11553, + "model_id": 11612, + "year_id": 11616, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11618, + "make_id": 11553, + "model_id": 11618, + "year_id": 11618, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11619, + "make_id": 11553, + "model_id": 11618, + "year_id": 11618, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11620, + "make_id": 11553, + "model_id": 11620, + "year_id": 11620, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11621, + "make_id": 11553, + "model_id": 11620, + "year_id": 11621, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11622, + "make_id": 11553, + "model_id": 11622, + "year_id": 11622, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11623, + "make_id": 11553, + "model_id": 11623, + "year_id": 11623, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11624, + "make_id": 11553, + "model_id": 11623, + "year_id": 11623, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11625, + "make_id": 11553, + "model_id": 11623, + "year_id": 11625, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11626, + "make_id": 11553, + "model_id": 11623, + "year_id": 11625, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11627, + "make_id": 11553, + "model_id": 11627, + "year_id": 11627, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11628, + "make_id": 11553, + "model_id": 11627, + "year_id": 11627, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11629, + "make_id": 11553, + "model_id": 11629, + "year_id": 11629, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11630, + "make_id": 11553, + "model_id": 11629, + "year_id": 11629, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11631, + "make_id": 11553, + "model_id": 11631, + "year_id": 11631, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11632, + "make_id": 11553, + "model_id": 11631, + "year_id": 11631, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11633, + "make_id": 11553, + "model_id": 11631, + "year_id": 11633, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11634, + "make_id": 11553, + "model_id": 11631, + "year_id": 11633, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11635, + "make_id": 11553, + "model_id": 11631, + "year_id": 11635, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 11636, + "make_id": 11553, + "model_id": 11631, + "year_id": 11635, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11637, + "make_id": 11553, + "model_id": 11631, + "year_id": 11637, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 11638, + "make_id": 11553, + "model_id": 11631, + "year_id": 11637, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11639, + "make_id": 11553, + "model_id": 11639, + "year_id": 11639, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 11640, + "make_id": 11553, + "model_id": 11640, + "year_id": 11640, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 11641, + "make_id": 11553, + "model_id": 11641, + "year_id": 11641, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11642, + "make_id": 11553, + "model_id": 11641, + "year_id": 11641, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11643, + "make_id": 11553, + "model_id": 11641, + "year_id": 11643, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11644, + "make_id": 11553, + "model_id": 11641, + "year_id": 11643, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11645, + "make_id": 11553, + "model_id": 11641, + "year_id": 11645, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11646, + "make_id": 11553, + "model_id": 11641, + "year_id": 11645, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11647, + "make_id": 11553, + "model_id": 11641, + "year_id": 11647, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11648, + "make_id": 11553, + "model_id": 11641, + "year_id": 11647, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11649, + "make_id": 11553, + "model_id": 11641, + "year_id": 11649, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11650, + "make_id": 11553, + "model_id": 11641, + "year_id": 11649, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11651, + "make_id": 11553, + "model_id": 11641, + "year_id": 11651, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 11652, + "make_id": 11553, + "model_id": 11641, + "year_id": 11651, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11653, + "make_id": 11553, + "model_id": 11641, + "year_id": 11653, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 11654, + "make_id": 11553, + "model_id": 11641, + "year_id": 11653, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11655, + "make_id": 11553, + "model_id": 11655, + "year_id": 11655, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11656, + "make_id": 11553, + "model_id": 11655, + "year_id": 11656, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11657, + "make_id": 11553, + "model_id": 11655, + "year_id": 11657, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11658, + "make_id": 11553, + "model_id": 11655, + "year_id": 11657, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11659, + "make_id": 11553, + "model_id": 11655, + "year_id": 11659, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11660, + "make_id": 11553, + "model_id": 11655, + "year_id": 11659, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11661, + "make_id": 11553, + "model_id": 11655, + "year_id": 11661, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11662, + "make_id": 11553, + "model_id": 11655, + "year_id": 11661, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11663, + "make_id": 11553, + "model_id": 11655, + "year_id": 11663, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11664, + "make_id": 11553, + "model_id": 11655, + "year_id": 11663, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11665, + "make_id": 11553, + "model_id": 11665, + "year_id": 11665, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11666, + "make_id": 11553, + "model_id": 11665, + "year_id": 11665, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11667, + "make_id": 11553, + "model_id": 11665, + "year_id": 11667, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11668, + "make_id": 11553, + "model_id": 11665, + "year_id": 11667, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11669, + "make_id": 11553, + "model_id": 11669, + "year_id": 11669, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11670, + "make_id": 11553, + "model_id": 11670, + "year_id": 11670, + "cylinders": 8, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11671, + "make_id": 11553, + "model_id": 11671, + "year_id": 11671, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11672, + "make_id": 11553, + "model_id": 11671, + "year_id": 11671, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11673, + "make_id": 11553, + "model_id": 11671, + "year_id": 11673, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11674, + "make_id": 11553, + "model_id": 11671, + "year_id": 11673, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11675, + "make_id": 11553, + "model_id": 11671, + "year_id": 11675, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11676, + "make_id": 11553, + "model_id": 11671, + "year_id": 11675, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11677, + "make_id": 11553, + "model_id": 11671, + "year_id": 11677, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11678, + "make_id": 11553, + "model_id": 11671, + "year_id": 11677, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11679, + "make_id": 11553, + "model_id": 11679, + "year_id": 11679, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11680, + "make_id": 11553, + "model_id": 11679, + "year_id": 11679, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11681, + "make_id": 11553, + "model_id": 11681, + "year_id": 11681, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11682, + "make_id": 11553, + "model_id": 11681, + "year_id": 11681, + "cylinders": 12, + "displacement": 5.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11683, + "make_id": 11553, + "model_id": 11683, + "year_id": 11683, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11684, + "make_id": 11553, + "model_id": 11683, + "year_id": 11683, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11685, + "make_id": 11553, + "model_id": 11685, + "year_id": 11685, + "cylinders": 8, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11686, + "make_id": 11553, + "model_id": 11685, + "year_id": 11686, + "cylinders": 8, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11687, + "make_id": 11553, + "model_id": 11687, + "year_id": 11687, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11688, + "make_id": 11553, + "model_id": 11687, + "year_id": 11687, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11689, + "make_id": 11553, + "model_id": 11687, + "year_id": 11689, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11690, + "make_id": 11553, + "model_id": 11687, + "year_id": 11689, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11691, + "make_id": 11553, + "model_id": 11687, + "year_id": 11691, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11692, + "make_id": 11553, + "model_id": 11687, + "year_id": 11691, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11693, + "make_id": 11553, + "model_id": 11687, + "year_id": 11693, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11694, + "make_id": 11553, + "model_id": 11687, + "year_id": 11693, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11695, + "make_id": 11553, + "model_id": 11687, + "year_id": 11695, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11696, + "make_id": 11553, + "model_id": 11687, + "year_id": 11695, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11697, + "make_id": 11553, + "model_id": 11697, + "year_id": 11697, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11698, + "make_id": 11553, + "model_id": 11697, + "year_id": 11697, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11699, + "make_id": 11553, + "model_id": 11699, + "year_id": 11699, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11700, + "make_id": 11553, + "model_id": 11700, + "year_id": 11700, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11701, + "make_id": 11553, + "model_id": 11700, + "year_id": 11700, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11702, + "make_id": 11553, + "model_id": 11700, + "year_id": 11702, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11703, + "make_id": 11553, + "model_id": 11703, + "year_id": 11703, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11704, + "make_id": 11553, + "model_id": 11703, + "year_id": 11703, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11705, + "make_id": 11553, + "model_id": 11705, + "year_id": 11705, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11706, + "make_id": 11553, + "model_id": 11706, + "year_id": 11706, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11707, + "make_id": 11553, + "model_id": 11706, + "year_id": 11706, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11708, + "make_id": 11553, + "model_id": 11708, + "year_id": 11708, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11709, + "make_id": 11553, + "model_id": 11708, + "year_id": 11709, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11710, + "make_id": 11553, + "model_id": 11710, + "year_id": 11710, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11711, + "make_id": 11553, + "model_id": 11711, + "year_id": 11711, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11712, + "make_id": 11553, + "model_id": 11712, + "year_id": 11712, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11713, + "make_id": 11553, + "model_id": 11712, + "year_id": 11713, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11714, + "make_id": 11553, + "model_id": 11714, + "year_id": 11714, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11715, + "make_id": 11553, + "model_id": 11714, + "year_id": 11714, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11716, + "make_id": 11553, + "model_id": 11716, + "year_id": 11716, + "cylinders": 12, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11717, + "make_id": 11553, + "model_id": 11717, + "year_id": 11717, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11718, + "make_id": 11553, + "model_id": 11718, + "year_id": 11718, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11719, + "make_id": 11553, + "model_id": 11718, + "year_id": 11718, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 11720, + "make_id": 11553, + "model_id": 11718, + "year_id": 11720, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11721, + "make_id": 11553, + "model_id": 11718, + "year_id": 11720, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 11722, + "make_id": 11553, + "model_id": 11722, + "year_id": 11722, + "cylinders": 12, + "displacement": 6.3, + "drive": "Part-time 4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11723, + "make_id": 11553, + "model_id": 11722, + "year_id": 11722, + "cylinders": 12, + "displacement": 6.3, + "drive": "Part-time 4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11724, + "make_id": 11553, + "model_id": 11722, + "year_id": 11724, + "cylinders": 12, + "displacement": 6.3, + "drive": "Part-time 4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11725, + "make_id": 11553, + "model_id": 11722, + "year_id": 11724, + "cylinders": 12, + "displacement": 6.3, + "drive": "Part-time 4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11726, + "make_id": 11553, + "model_id": 11722, + "year_id": 11726, + "cylinders": 12, + "displacement": 6.3, + "drive": "Part-time 4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11727, + "make_id": 11553, + "model_id": 11722, + "year_id": 11726, + "cylinders": 12, + "displacement": 6.3, + "drive": "Part-time 4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11728, + "make_id": 11553, + "model_id": 11722, + "year_id": 11728, + "cylinders": 12, + "displacement": 6.3, + "drive": "Part-time 4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11729, + "make_id": 11553, + "model_id": 11722, + "year_id": 11728, + "cylinders": 12, + "displacement": 6.3, + "drive": "Part-time 4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11730, + "make_id": 11553, + "model_id": 11722, + "year_id": 11730, + "cylinders": 12, + "displacement": 6.3, + "drive": "Part-time 4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11731, + "make_id": 11553, + "model_id": 11722, + "year_id": 11730, + "cylinders": 12, + "displacement": 6.3, + "drive": "Part-time 4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11732, + "make_id": 11553, + "model_id": 11732, + "year_id": 11732, + "cylinders": 12, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 11733, + "make_id": 11553, + "model_id": 11733, + "year_id": 11733, + "cylinders": 8, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11734, + "make_id": 11553, + "model_id": 11734, + "year_id": 11734, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11735, + "make_id": 11553, + "model_id": 11734, + "year_id": 11735, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11736, + "make_id": 11553, + "model_id": 11734, + "year_id": 11736, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11737, + "make_id": 11553, + "model_id": 11734, + "year_id": 11737, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11738, + "make_id": 11553, + "model_id": 11734, + "year_id": 11737, + "cylinders": 8, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 11739, + "make_id": 11553, + "model_id": 11739, + "year_id": 11739, + "cylinders": 8, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11740, + "make_id": 11553, + "model_id": 11740, + "year_id": 11740, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11741, + "make_id": 11553, + "model_id": 11740, + "year_id": 11741, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11742, + "make_id": 11553, + "model_id": 11740, + "year_id": 11742, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11743, + "make_id": 11553, + "model_id": 11740, + "year_id": 11743, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11744, + "make_id": 11553, + "model_id": 11740, + "year_id": 11744, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11745, + "make_id": 11553, + "model_id": 11740, + "year_id": 11745, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11746, + "make_id": 11553, + "model_id": 11740, + "year_id": 11746, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11747, + "make_id": 11553, + "model_id": 11740, + "year_id": 11747, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11748, + "make_id": 11553, + "model_id": 11748, + "year_id": 11748, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11749, + "make_id": 11749, + "model_id": 11749, + "year_id": 11749, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11750, + "make_id": 11749, + "model_id": 11749, + "year_id": 11749, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11751, + "make_id": 11749, + "model_id": 11749, + "year_id": 11751, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11752, + "make_id": 11749, + "model_id": 11749, + "year_id": 11751, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11753, + "make_id": 11749, + "model_id": 11749, + "year_id": 11751, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11754, + "make_id": 11749, + "model_id": 11749, + "year_id": 11754, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11755, + "make_id": 11749, + "model_id": 11749, + "year_id": 11754, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11756, + "make_id": 11749, + "model_id": 11749, + "year_id": 11754, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11757, + "make_id": 11749, + "model_id": 11749, + "year_id": 11757, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11758, + "make_id": 11749, + "model_id": 11749, + "year_id": 11757, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11759, + "make_id": 11749, + "model_id": 11749, + "year_id": 11757, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11760, + "make_id": 11749, + "model_id": 11749, + "year_id": 11757, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11761, + "make_id": 11749, + "model_id": 11749, + "year_id": 11761, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11762, + "make_id": 11749, + "model_id": 11749, + "year_id": 11761, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11763, + "make_id": 11749, + "model_id": 11749, + "year_id": 11761, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11764, + "make_id": 11749, + "model_id": 11749, + "year_id": 11761, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11765, + "make_id": 11749, + "model_id": 11765, + "year_id": 11765, + "cylinders": 4, + "displacement": 1.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11766, + "make_id": 11749, + "model_id": 11765, + "year_id": 11765, + "cylinders": 4, + "displacement": 1.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11767, + "make_id": 11749, + "model_id": 11767, + "year_id": 11767, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11768, + "make_id": 11749, + "model_id": 11767, + "year_id": 11768, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11769, + "make_id": 11749, + "model_id": 11767, + "year_id": 11769, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11770, + "make_id": 11749, + "model_id": 11767, + "year_id": 11770, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11771, + "make_id": 11749, + "model_id": 11767, + "year_id": 11770, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11772, + "make_id": 11749, + "model_id": 11767, + "year_id": 11772, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11773, + "make_id": 11749, + "model_id": 11767, + "year_id": 11772, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11774, + "make_id": 11749, + "model_id": 11774, + "year_id": 11774, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11775, + "make_id": 11749, + "model_id": 11775, + "year_id": 11775, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11776, + "make_id": 11749, + "model_id": 11775, + "year_id": 11775, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11777, + "make_id": 11749, + "model_id": 11775, + "year_id": 11777, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 11778, + "make_id": 11749, + "model_id": 11775, + "year_id": 11777, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11779, + "make_id": 11749, + "model_id": 11775, + "year_id": 11777, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11780, + "make_id": 11749, + "model_id": 11775, + "year_id": 11780, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 11781, + "make_id": 11749, + "model_id": 11775, + "year_id": 11780, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11782, + "make_id": 11749, + "model_id": 11782, + "year_id": 11782, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 11783, + "make_id": 11749, + "model_id": 11782, + "year_id": 11782, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 11784, + "make_id": 11749, + "model_id": 11782, + "year_id": 11782, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 11785, + "make_id": 11749, + "model_id": 11785, + "year_id": 11785, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 11786, + "make_id": 11749, + "model_id": 11785, + "year_id": 11786, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 11787, + "make_id": 11749, + "model_id": 11785, + "year_id": 11787, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 11788, + "make_id": 11749, + "model_id": 11785, + "year_id": 11788, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 11789, + "make_id": 11789, + "model_id": 11789, + "year_id": 11789, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 11790, + "make_id": 11790, + "model_id": 11790, + "year_id": 11790, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11791, + "make_id": 11790, + "model_id": 11790, + "year_id": 11790, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11792, + "make_id": 11790, + "model_id": 11790, + "year_id": 11790, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11793, + "make_id": 11790, + "model_id": 11790, + "year_id": 11790, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11794, + "make_id": 11790, + "model_id": 11790, + "year_id": 11790, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11795, + "make_id": 11790, + "model_id": 11790, + "year_id": 11790, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11796, + "make_id": 11790, + "model_id": 11790, + "year_id": 11796, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11797, + "make_id": 11790, + "model_id": 11790, + "year_id": 11796, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11798, + "make_id": 11790, + "model_id": 11790, + "year_id": 11796, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11799, + "make_id": 11790, + "model_id": 11790, + "year_id": 11796, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11800, + "make_id": 11790, + "model_id": 11790, + "year_id": 11800, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11801, + "make_id": 11790, + "model_id": 11790, + "year_id": 11800, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11802, + "make_id": 11790, + "model_id": 11790, + "year_id": 11802, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11803, + "make_id": 11790, + "model_id": 11790, + "year_id": 11802, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11804, + "make_id": 11790, + "model_id": 11790, + "year_id": 11804, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11805, + "make_id": 11790, + "model_id": 11790, + "year_id": 11804, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11806, + "make_id": 11790, + "model_id": 11790, + "year_id": 11804, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11807, + "make_id": 11790, + "model_id": 11790, + "year_id": 11804, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11808, + "make_id": 11790, + "model_id": 11790, + "year_id": 11808, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11809, + "make_id": 11790, + "model_id": 11790, + "year_id": 11808, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11810, + "make_id": 11790, + "model_id": 11790, + "year_id": 11808, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11811, + "make_id": 11790, + "model_id": 11790, + "year_id": 11808, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11812, + "make_id": 11790, + "model_id": 11790, + "year_id": 11812, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11813, + "make_id": 11790, + "model_id": 11790, + "year_id": 11812, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11814, + "make_id": 11790, + "model_id": 11790, + "year_id": 11812, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11815, + "make_id": 11790, + "model_id": 11790, + "year_id": 11812, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11816, + "make_id": 11790, + "model_id": 11790, + "year_id": 11816, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11817, + "make_id": 11790, + "model_id": 11790, + "year_id": 11816, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11818, + "make_id": 11790, + "model_id": 11790, + "year_id": 11816, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11819, + "make_id": 11790, + "model_id": 11790, + "year_id": 11816, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11820, + "make_id": 11790, + "model_id": 11790, + "year_id": 11820, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11821, + "make_id": 11790, + "model_id": 11790, + "year_id": 11820, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11822, + "make_id": 11790, + "model_id": 11790, + "year_id": 11820, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11823, + "make_id": 11790, + "model_id": 11790, + "year_id": 11820, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11824, + "make_id": 11790, + "model_id": 11790, + "year_id": 11824, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11825, + "make_id": 11790, + "model_id": 11790, + "year_id": 11825, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11826, + "make_id": 11790, + "model_id": 11790, + "year_id": 11826, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11827, + "make_id": 11790, + "model_id": 11827, + "year_id": 11827, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11828, + "make_id": 11790, + "model_id": 11827, + "year_id": 11827, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11829, + "make_id": 11790, + "model_id": 11827, + "year_id": 11827, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11830, + "make_id": 11790, + "model_id": 11827, + "year_id": 11827, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11831, + "make_id": 11790, + "model_id": 11827, + "year_id": 11827, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11832, + "make_id": 11790, + "model_id": 11827, + "year_id": 11832, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11833, + "make_id": 11790, + "model_id": 11827, + "year_id": 11832, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11834, + "make_id": 11790, + "model_id": 11827, + "year_id": 11832, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11835, + "make_id": 11790, + "model_id": 11827, + "year_id": 11835, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11836, + "make_id": 11790, + "model_id": 11827, + "year_id": 11835, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11837, + "make_id": 11790, + "model_id": 11827, + "year_id": 11837, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11838, + "make_id": 11790, + "model_id": 11827, + "year_id": 11837, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11839, + "make_id": 11790, + "model_id": 11827, + "year_id": 11839, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11840, + "make_id": 11790, + "model_id": 11827, + "year_id": 11839, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11841, + "make_id": 11790, + "model_id": 11827, + "year_id": 11839, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11842, + "make_id": 11790, + "model_id": 11827, + "year_id": 11839, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11843, + "make_id": 11790, + "model_id": 11827, + "year_id": 11843, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11844, + "make_id": 11790, + "model_id": 11827, + "year_id": 11843, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11845, + "make_id": 11790, + "model_id": 11827, + "year_id": 11843, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11846, + "make_id": 11790, + "model_id": 11827, + "year_id": 11843, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11847, + "make_id": 11790, + "model_id": 11827, + "year_id": 11847, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11848, + "make_id": 11790, + "model_id": 11827, + "year_id": 11847, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11849, + "make_id": 11790, + "model_id": 11827, + "year_id": 11847, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11850, + "make_id": 11790, + "model_id": 11827, + "year_id": 11847, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11851, + "make_id": 11790, + "model_id": 11827, + "year_id": 11851, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11852, + "make_id": 11790, + "model_id": 11827, + "year_id": 11851, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11853, + "make_id": 11790, + "model_id": 11827, + "year_id": 11851, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11854, + "make_id": 11790, + "model_id": 11827, + "year_id": 11851, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11855, + "make_id": 11790, + "model_id": 11827, + "year_id": 11855, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11856, + "make_id": 11790, + "model_id": 11827, + "year_id": 11855, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11857, + "make_id": 11790, + "model_id": 11827, + "year_id": 11855, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11858, + "make_id": 11790, + "model_id": 11827, + "year_id": 11855, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11859, + "make_id": 11790, + "model_id": 11827, + "year_id": 11859, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11860, + "make_id": 11790, + "model_id": 11827, + "year_id": 11859, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11861, + "make_id": 11790, + "model_id": 11827, + "year_id": 11859, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11862, + "make_id": 11790, + "model_id": 11827, + "year_id": 11862, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11863, + "make_id": 11790, + "model_id": 11827, + "year_id": 11862, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11864, + "make_id": 11790, + "model_id": 11827, + "year_id": 11862, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11865, + "make_id": 11790, + "model_id": 11827, + "year_id": 11865, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 11866, + "make_id": 11790, + "model_id": 11827, + "year_id": 11865, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11867, + "make_id": 11790, + "model_id": 11827, + "year_id": 11865, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 11868, + "make_id": 11790, + "model_id": 11868, + "year_id": 11868, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11869, + "make_id": 11790, + "model_id": 11868, + "year_id": 11868, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11870, + "make_id": 11790, + "model_id": 11868, + "year_id": 11870, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11871, + "make_id": 11790, + "model_id": 11868, + "year_id": 11870, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11872, + "make_id": 11790, + "model_id": 11868, + "year_id": 11872, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11873, + "make_id": 11790, + "model_id": 11868, + "year_id": 11872, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11874, + "make_id": 11790, + "model_id": 11868, + "year_id": 11874, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11875, + "make_id": 11790, + "model_id": 11868, + "year_id": 11874, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11876, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11877, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11878, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11879, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11880, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11881, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11882, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11883, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11884, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11885, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11886, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11887, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11888, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11889, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11890, + "make_id": 11790, + "model_id": 11876, + "year_id": 11876, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11891, + "make_id": 11790, + "model_id": 11876, + "year_id": 11891, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11892, + "make_id": 11790, + "model_id": 11876, + "year_id": 11891, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11893, + "make_id": 11790, + "model_id": 11876, + "year_id": 11891, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11894, + "make_id": 11790, + "model_id": 11876, + "year_id": 11891, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11895, + "make_id": 11790, + "model_id": 11876, + "year_id": 11891, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11896, + "make_id": 11790, + "model_id": 11876, + "year_id": 11891, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11897, + "make_id": 11790, + "model_id": 11876, + "year_id": 11891, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11898, + "make_id": 11790, + "model_id": 11876, + "year_id": 11891, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11899, + "make_id": 11790, + "model_id": 11876, + "year_id": 11891, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11900, + "make_id": 11790, + "model_id": 11876, + "year_id": 11891, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11901, + "make_id": 11790, + "model_id": 11876, + "year_id": 11901, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11902, + "make_id": 11790, + "model_id": 11876, + "year_id": 11901, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11903, + "make_id": 11790, + "model_id": 11876, + "year_id": 11901, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11904, + "make_id": 11790, + "model_id": 11876, + "year_id": 11901, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11905, + "make_id": 11790, + "model_id": 11876, + "year_id": 11901, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11906, + "make_id": 11790, + "model_id": 11876, + "year_id": 11901, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11907, + "make_id": 11790, + "model_id": 11876, + "year_id": 11907, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11908, + "make_id": 11790, + "model_id": 11876, + "year_id": 11907, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11909, + "make_id": 11790, + "model_id": 11876, + "year_id": 11907, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11910, + "make_id": 11790, + "model_id": 11876, + "year_id": 11907, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11911, + "make_id": 11790, + "model_id": 11876, + "year_id": 11907, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11912, + "make_id": 11790, + "model_id": 11876, + "year_id": 11907, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11913, + "make_id": 11790, + "model_id": 11876, + "year_id": 11907, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11914, + "make_id": 11790, + "model_id": 11876, + "year_id": 11907, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11915, + "make_id": 11790, + "model_id": 11876, + "year_id": 11915, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11916, + "make_id": 11790, + "model_id": 11876, + "year_id": 11915, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11917, + "make_id": 11790, + "model_id": 11876, + "year_id": 11915, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11918, + "make_id": 11790, + "model_id": 11876, + "year_id": 11915, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11919, + "make_id": 11790, + "model_id": 11876, + "year_id": 11915, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11920, + "make_id": 11790, + "model_id": 11876, + "year_id": 11915, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11921, + "make_id": 11790, + "model_id": 11876, + "year_id": 11915, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11922, + "make_id": 11790, + "model_id": 11876, + "year_id": 11915, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11923, + "make_id": 11790, + "model_id": 11876, + "year_id": 11915, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11924, + "make_id": 11790, + "model_id": 11876, + "year_id": 11924, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11925, + "make_id": 11790, + "model_id": 11876, + "year_id": 11924, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11926, + "make_id": 11790, + "model_id": 11876, + "year_id": 11924, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11927, + "make_id": 11790, + "model_id": 11876, + "year_id": 11924, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11928, + "make_id": 11790, + "model_id": 11876, + "year_id": 11924, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11929, + "make_id": 11790, + "model_id": 11876, + "year_id": 11924, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11930, + "make_id": 11790, + "model_id": 11876, + "year_id": 11924, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11931, + "make_id": 11790, + "model_id": 11876, + "year_id": 11924, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11932, + "make_id": 11790, + "model_id": 11876, + "year_id": 11924, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11933, + "make_id": 11790, + "model_id": 11876, + "year_id": 11933, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11934, + "make_id": 11790, + "model_id": 11876, + "year_id": 11933, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11935, + "make_id": 11790, + "model_id": 11876, + "year_id": 11933, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11936, + "make_id": 11790, + "model_id": 11876, + "year_id": 11933, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11937, + "make_id": 11790, + "model_id": 11876, + "year_id": 11933, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11938, + "make_id": 11790, + "model_id": 11876, + "year_id": 11933, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11939, + "make_id": 11790, + "model_id": 11876, + "year_id": 11933, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11940, + "make_id": 11790, + "model_id": 11876, + "year_id": 11940, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11941, + "make_id": 11790, + "model_id": 11876, + "year_id": 11940, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11942, + "make_id": 11790, + "model_id": 11876, + "year_id": 11940, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11943, + "make_id": 11790, + "model_id": 11876, + "year_id": 11940, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11944, + "make_id": 11790, + "model_id": 11876, + "year_id": 11940, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11945, + "make_id": 11790, + "model_id": 11876, + "year_id": 11945, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11946, + "make_id": 11790, + "model_id": 11876, + "year_id": 11945, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11947, + "make_id": 11790, + "model_id": 11876, + "year_id": 11945, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11948, + "make_id": 11790, + "model_id": 11876, + "year_id": 11945, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11949, + "make_id": 11790, + "model_id": 11876, + "year_id": 11945, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11950, + "make_id": 11790, + "model_id": 11876, + "year_id": 11950, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11951, + "make_id": 11790, + "model_id": 11876, + "year_id": 11950, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11952, + "make_id": 11790, + "model_id": 11876, + "year_id": 11950, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11953, + "make_id": 11790, + "model_id": 11876, + "year_id": 11953, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11954, + "make_id": 11790, + "model_id": 11876, + "year_id": 11953, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11955, + "make_id": 11790, + "model_id": 11876, + "year_id": 11953, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11956, + "make_id": 11790, + "model_id": 11876, + "year_id": 11956, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11957, + "make_id": 11790, + "model_id": 11876, + "year_id": 11956, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11958, + "make_id": 11790, + "model_id": 11876, + "year_id": 11956, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11959, + "make_id": 11790, + "model_id": 11876, + "year_id": 11959, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11960, + "make_id": 11790, + "model_id": 11876, + "year_id": 11959, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11961, + "make_id": 11790, + "model_id": 11876, + "year_id": 11959, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11962, + "make_id": 11790, + "model_id": 11962, + "year_id": 11962, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11963, + "make_id": 11790, + "model_id": 11962, + "year_id": 11962, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11964, + "make_id": 11790, + "model_id": 11962, + "year_id": 11962, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11965, + "make_id": 11790, + "model_id": 11962, + "year_id": 11962, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 11966, + "make_id": 11790, + "model_id": 11962, + "year_id": 11962, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 11967, + "make_id": 11790, + "model_id": 11962, + "year_id": 11962, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11968, + "make_id": 11790, + "model_id": 11962, + "year_id": 11968, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11969, + "make_id": 11790, + "model_id": 11962, + "year_id": 11968, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11970, + "make_id": 11790, + "model_id": 11962, + "year_id": 11968, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11971, + "make_id": 11790, + "model_id": 11962, + "year_id": 11968, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11972, + "make_id": 11790, + "model_id": 11962, + "year_id": 11968, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11973, + "make_id": 11790, + "model_id": 11962, + "year_id": 11973, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11974, + "make_id": 11790, + "model_id": 11962, + "year_id": 11973, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11975, + "make_id": 11790, + "model_id": 11962, + "year_id": 11973, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11976, + "make_id": 11790, + "model_id": 11962, + "year_id": 11973, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11977, + "make_id": 11790, + "model_id": 11962, + "year_id": 11973, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11978, + "make_id": 11790, + "model_id": 11962, + "year_id": 11978, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11979, + "make_id": 11790, + "model_id": 11962, + "year_id": 11978, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11980, + "make_id": 11790, + "model_id": 11962, + "year_id": 11978, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11981, + "make_id": 11790, + "model_id": 11962, + "year_id": 11978, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11982, + "make_id": 11790, + "model_id": 11962, + "year_id": 11982, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11983, + "make_id": 11790, + "model_id": 11962, + "year_id": 11982, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11984, + "make_id": 11790, + "model_id": 11962, + "year_id": 11982, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11985, + "make_id": 11790, + "model_id": 11962, + "year_id": 11982, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11986, + "make_id": 11790, + "model_id": 11962, + "year_id": 11986, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11987, + "make_id": 11790, + "model_id": 11962, + "year_id": 11986, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11988, + "make_id": 11790, + "model_id": 11962, + "year_id": 11986, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11989, + "make_id": 11790, + "model_id": 11962, + "year_id": 11986, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11990, + "make_id": 11790, + "model_id": 11962, + "year_id": 11986, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11991, + "make_id": 11790, + "model_id": 11962, + "year_id": 11991, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11992, + "make_id": 11790, + "model_id": 11962, + "year_id": 11991, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11993, + "make_id": 11790, + "model_id": 11962, + "year_id": 11991, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 11994, + "make_id": 11790, + "model_id": 11962, + "year_id": 11991, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 11995, + "make_id": 11790, + "model_id": 11995, + "year_id": 11995, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 11996, + "make_id": 11790, + "model_id": 11995, + "year_id": 11996, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 11997, + "make_id": 11790, + "model_id": 11995, + "year_id": 11997, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 11998, + "make_id": 11790, + "model_id": 11995, + "year_id": 11998, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 11999, + "make_id": 11790, + "model_id": 11999, + "year_id": 11999, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12000, + "make_id": 11790, + "model_id": 11999, + "year_id": 12000, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12001, + "make_id": 11790, + "model_id": 11999, + "year_id": 12001, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12002, + "make_id": 11790, + "model_id": 11999, + "year_id": 12002, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12003, + "make_id": 11790, + "model_id": 12003, + "year_id": 12003, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12004, + "make_id": 11790, + "model_id": 12003, + "year_id": 12003, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12005, + "make_id": 11790, + "model_id": 12003, + "year_id": 12003, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12006, + "make_id": 11790, + "model_id": 12003, + "year_id": 12003, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12007, + "make_id": 11790, + "model_id": 12003, + "year_id": 12007, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12008, + "make_id": 11790, + "model_id": 12003, + "year_id": 12007, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12009, + "make_id": 11790, + "model_id": 12003, + "year_id": 12007, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12010, + "make_id": 11790, + "model_id": 12003, + "year_id": 12007, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12011, + "make_id": 11790, + "model_id": 12003, + "year_id": 12011, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12012, + "make_id": 11790, + "model_id": 12003, + "year_id": 12011, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12013, + "make_id": 11790, + "model_id": 12003, + "year_id": 12011, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12014, + "make_id": 11790, + "model_id": 12003, + "year_id": 12011, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12015, + "make_id": 11790, + "model_id": 12003, + "year_id": 12015, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12016, + "make_id": 11790, + "model_id": 12003, + "year_id": 12015, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12017, + "make_id": 11790, + "model_id": 12003, + "year_id": 12015, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12018, + "make_id": 11790, + "model_id": 12003, + "year_id": 12015, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12019, + "make_id": 11790, + "model_id": 12003, + "year_id": 12019, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12020, + "make_id": 11790, + "model_id": 12003, + "year_id": 12019, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12021, + "make_id": 11790, + "model_id": 12003, + "year_id": 12019, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12022, + "make_id": 11790, + "model_id": 12003, + "year_id": 12019, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12023, + "make_id": 11790, + "model_id": 12003, + "year_id": 12023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12024, + "make_id": 11790, + "model_id": 12003, + "year_id": 12023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12025, + "make_id": 11790, + "model_id": 12003, + "year_id": 12023, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12026, + "make_id": 11790, + "model_id": 12003, + "year_id": 12023, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12027, + "make_id": 11790, + "model_id": 12027, + "year_id": 12027, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12028, + "make_id": 11790, + "model_id": 12027, + "year_id": 12027, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12029, + "make_id": 11790, + "model_id": 12027, + "year_id": 12027, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12030, + "make_id": 11790, + "model_id": 12027, + "year_id": 12030, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12031, + "make_id": 11790, + "model_id": 12027, + "year_id": 12030, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12032, + "make_id": 11790, + "model_id": 12027, + "year_id": 12032, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12033, + "make_id": 11790, + "model_id": 12027, + "year_id": 12032, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12034, + "make_id": 11790, + "model_id": 12034, + "year_id": 12034, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12035, + "make_id": 11790, + "model_id": 12034, + "year_id": 12035, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12036, + "make_id": 11790, + "model_id": 12034, + "year_id": 12036, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12037, + "make_id": 11790, + "model_id": 12034, + "year_id": 12037, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12038, + "make_id": 11790, + "model_id": 12038, + "year_id": 12038, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12039, + "make_id": 11790, + "model_id": 12038, + "year_id": 12039, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12040, + "make_id": 11790, + "model_id": 12038, + "year_id": 12040, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12041, + "make_id": 11790, + "model_id": 12038, + "year_id": 12041, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12042, + "make_id": 11790, + "model_id": 12038, + "year_id": 12042, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12043, + "make_id": 11790, + "model_id": 12038, + "year_id": 12043, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12044, + "make_id": 11790, + "model_id": 12038, + "year_id": 12044, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12045, + "make_id": 11790, + "model_id": 12038, + "year_id": 12045, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12046, + "make_id": 11790, + "model_id": 12038, + "year_id": 12046, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12047, + "make_id": 11790, + "model_id": 12038, + "year_id": 12047, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12048, + "make_id": 11790, + "model_id": 12038, + "year_id": 12048, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12049, + "make_id": 11790, + "model_id": 12038, + "year_id": 12049, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12050, + "make_id": 11790, + "model_id": 12038, + "year_id": 12049, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12051, + "make_id": 11790, + "model_id": 12038, + "year_id": 12051, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12052, + "make_id": 11790, + "model_id": 12038, + "year_id": 12051, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12053, + "make_id": 11790, + "model_id": 12038, + "year_id": 12053, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12054, + "make_id": 11790, + "model_id": 12038, + "year_id": 12054, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12055, + "make_id": 11790, + "model_id": 12038, + "year_id": 12055, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12056, + "make_id": 11790, + "model_id": 12038, + "year_id": 12056, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12057, + "make_id": 11790, + "model_id": 12057, + "year_id": 12057, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12058, + "make_id": 11790, + "model_id": 12057, + "year_id": 12058, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12059, + "make_id": 11790, + "model_id": 12057, + "year_id": 12059, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12060, + "make_id": 11790, + "model_id": 12057, + "year_id": 12060, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12061, + "make_id": 11790, + "model_id": 12057, + "year_id": 12061, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12062, + "make_id": 11790, + "model_id": 12057, + "year_id": 12062, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12063, + "make_id": 11790, + "model_id": 12057, + "year_id": 12063, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12064, + "make_id": 11790, + "model_id": 12057, + "year_id": 12064, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12065, + "make_id": 11790, + "model_id": 12065, + "year_id": 12065, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12066, + "make_id": 11790, + "model_id": 12065, + "year_id": 12066, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12067, + "make_id": 11790, + "model_id": 12065, + "year_id": 12067, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12068, + "make_id": 11790, + "model_id": 12065, + "year_id": 12068, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12069, + "make_id": 11790, + "model_id": 12065, + "year_id": 12069, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12070, + "make_id": 11790, + "model_id": 12065, + "year_id": 12070, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12071, + "make_id": 11790, + "model_id": 12065, + "year_id": 12071, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12072, + "make_id": 11790, + "model_id": 12065, + "year_id": 12072, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12073, + "make_id": 11790, + "model_id": 12065, + "year_id": 12073, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12074, + "make_id": 11790, + "model_id": 12065, + "year_id": 12074, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12075, + "make_id": 11790, + "model_id": 12065, + "year_id": 12075, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12076, + "make_id": 11790, + "model_id": 12065, + "year_id": 12076, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12077, + "make_id": 11790, + "model_id": 12065, + "year_id": 12077, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12078, + "make_id": 11790, + "model_id": 12065, + "year_id": 12078, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12079, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12080, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12081, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12082, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12083, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12084, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12085, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12086, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12087, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12088, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12089, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12090, + "make_id": 11790, + "model_id": 12079, + "year_id": 12079, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12091, + "make_id": 11790, + "model_id": 12079, + "year_id": 12091, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12092, + "make_id": 11790, + "model_id": 12079, + "year_id": 12091, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12093, + "make_id": 11790, + "model_id": 12079, + "year_id": 12091, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12094, + "make_id": 11790, + "model_id": 12079, + "year_id": 12091, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12095, + "make_id": 11790, + "model_id": 12079, + "year_id": 12091, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12096, + "make_id": 11790, + "model_id": 12079, + "year_id": 12091, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12097, + "make_id": 11790, + "model_id": 12079, + "year_id": 12091, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12098, + "make_id": 11790, + "model_id": 12079, + "year_id": 12091, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12099, + "make_id": 11790, + "model_id": 12079, + "year_id": 12099, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12100, + "make_id": 11790, + "model_id": 12079, + "year_id": 12099, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12101, + "make_id": 11790, + "model_id": 12079, + "year_id": 12099, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12102, + "make_id": 11790, + "model_id": 12079, + "year_id": 12099, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12103, + "make_id": 11790, + "model_id": 12079, + "year_id": 12099, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12104, + "make_id": 11790, + "model_id": 12079, + "year_id": 12104, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12105, + "make_id": 11790, + "model_id": 12079, + "year_id": 12104, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12106, + "make_id": 11790, + "model_id": 12079, + "year_id": 12104, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12107, + "make_id": 11790, + "model_id": 12079, + "year_id": 12104, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12108, + "make_id": 11790, + "model_id": 12079, + "year_id": 12104, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12109, + "make_id": 11790, + "model_id": 12079, + "year_id": 12104, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12110, + "make_id": 11790, + "model_id": 12079, + "year_id": 12104, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12111, + "make_id": 11790, + "model_id": 12079, + "year_id": 12111, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12112, + "make_id": 11790, + "model_id": 12079, + "year_id": 12111, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12113, + "make_id": 11790, + "model_id": 12079, + "year_id": 12111, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12114, + "make_id": 11790, + "model_id": 12079, + "year_id": 12111, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12115, + "make_id": 11790, + "model_id": 12079, + "year_id": 12115, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12116, + "make_id": 11790, + "model_id": 12079, + "year_id": 12115, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12117, + "make_id": 11790, + "model_id": 12079, + "year_id": 12115, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12118, + "make_id": 11790, + "model_id": 12079, + "year_id": 12115, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12119, + "make_id": 11790, + "model_id": 12079, + "year_id": 12119, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12120, + "make_id": 11790, + "model_id": 12079, + "year_id": 12119, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12121, + "make_id": 11790, + "model_id": 12079, + "year_id": 12119, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12122, + "make_id": 11790, + "model_id": 12079, + "year_id": 12122, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12123, + "make_id": 11790, + "model_id": 12079, + "year_id": 12122, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12124, + "make_id": 11790, + "model_id": 12079, + "year_id": 12122, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12125, + "make_id": 11790, + "model_id": 12079, + "year_id": 12125, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12126, + "make_id": 11790, + "model_id": 12079, + "year_id": 12125, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12127, + "make_id": 11790, + "model_id": 12079, + "year_id": 12125, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12128, + "make_id": 11790, + "model_id": 12079, + "year_id": 12128, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12129, + "make_id": 11790, + "model_id": 12079, + "year_id": 12128, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12130, + "make_id": 11790, + "model_id": 12079, + "year_id": 12128, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12131, + "make_id": 11790, + "model_id": 12079, + "year_id": 12128, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12132, + "make_id": 11790, + "model_id": 12079, + "year_id": 12132, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12133, + "make_id": 11790, + "model_id": 12079, + "year_id": 12132, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12134, + "make_id": 11790, + "model_id": 12079, + "year_id": 12132, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12135, + "make_id": 11790, + "model_id": 12079, + "year_id": 12135, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12136, + "make_id": 11790, + "model_id": 12079, + "year_id": 12135, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12137, + "make_id": 11790, + "model_id": 12079, + "year_id": 12135, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12138, + "make_id": 11790, + "model_id": 12079, + "year_id": 12138, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12139, + "make_id": 11790, + "model_id": 12079, + "year_id": 12138, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12140, + "make_id": 11790, + "model_id": 12079, + "year_id": 12138, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12141, + "make_id": 11790, + "model_id": 12079, + "year_id": 12141, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12142, + "make_id": 11790, + "model_id": 12079, + "year_id": 12141, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12143, + "make_id": 11790, + "model_id": 12079, + "year_id": 12141, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12144, + "make_id": 11790, + "model_id": 12079, + "year_id": 12144, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12145, + "make_id": 11790, + "model_id": 12079, + "year_id": 12144, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12146, + "make_id": 11790, + "model_id": 12079, + "year_id": 12144, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12147, + "make_id": 11790, + "model_id": 12079, + "year_id": 12147, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12148, + "make_id": 11790, + "model_id": 12079, + "year_id": 12147, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12149, + "make_id": 11790, + "model_id": 12079, + "year_id": 12147, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12150, + "make_id": 11790, + "model_id": 12079, + "year_id": 12150, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12151, + "make_id": 11790, + "model_id": 12079, + "year_id": 12150, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12152, + "make_id": 11790, + "model_id": 12079, + "year_id": 12150, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12153, + "make_id": 11790, + "model_id": 12079, + "year_id": 12153, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12154, + "make_id": 11790, + "model_id": 12079, + "year_id": 12153, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12155, + "make_id": 11790, + "model_id": 12079, + "year_id": 12153, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12156, + "make_id": 11790, + "model_id": 12079, + "year_id": 12156, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12157, + "make_id": 11790, + "model_id": 12079, + "year_id": 12156, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12158, + "make_id": 11790, + "model_id": 12079, + "year_id": 12156, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12159, + "make_id": 11790, + "model_id": 12079, + "year_id": 12159, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12160, + "make_id": 11790, + "model_id": 12079, + "year_id": 12159, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12161, + "make_id": 11790, + "model_id": 12079, + "year_id": 12159, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12162, + "make_id": 11790, + "model_id": 12079, + "year_id": 12162, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12163, + "make_id": 11790, + "model_id": 12079, + "year_id": 12162, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12164, + "make_id": 11790, + "model_id": 12079, + "year_id": 12164, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12165, + "make_id": 11790, + "model_id": 12079, + "year_id": 12164, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12166, + "make_id": 11790, + "model_id": 12079, + "year_id": 12166, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12167, + "make_id": 11790, + "model_id": 12079, + "year_id": 12166, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12168, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12169, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12170, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 12171, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12172, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12173, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12174, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12175, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12176, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12177, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12178, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12179, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 12180, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12181, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12182, + "make_id": 11790, + "model_id": 12168, + "year_id": 12168, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12183, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12184, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12185, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 12186, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12187, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12188, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12189, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12190, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12191, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 12192, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12193, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12194, + "make_id": 11790, + "model_id": 12168, + "year_id": 12183, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12195, + "make_id": 11790, + "model_id": 12168, + "year_id": 12195, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12196, + "make_id": 11790, + "model_id": 12168, + "year_id": 12195, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12197, + "make_id": 11790, + "model_id": 12168, + "year_id": 12195, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 12198, + "make_id": 11790, + "model_id": 12168, + "year_id": 12195, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12199, + "make_id": 11790, + "model_id": 12168, + "year_id": 12195, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12200, + "make_id": 11790, + "model_id": 12168, + "year_id": 12195, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12201, + "make_id": 11790, + "model_id": 12168, + "year_id": 12201, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12202, + "make_id": 11790, + "model_id": 12168, + "year_id": 12201, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12203, + "make_id": 11790, + "model_id": 12168, + "year_id": 12201, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12204, + "make_id": 11790, + "model_id": 12168, + "year_id": 12201, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12205, + "make_id": 11790, + "model_id": 12168, + "year_id": 12201, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12206, + "make_id": 11790, + "model_id": 12168, + "year_id": 12201, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12207, + "make_id": 11790, + "model_id": 12168, + "year_id": 12207, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12208, + "make_id": 11790, + "model_id": 12168, + "year_id": 12207, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12209, + "make_id": 11790, + "model_id": 12168, + "year_id": 12207, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12210, + "make_id": 11790, + "model_id": 12168, + "year_id": 12207, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12211, + "make_id": 11790, + "model_id": 12168, + "year_id": 12207, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12212, + "make_id": 11790, + "model_id": 12168, + "year_id": 12212, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12213, + "make_id": 11790, + "model_id": 12168, + "year_id": 12212, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12214, + "make_id": 11790, + "model_id": 12168, + "year_id": 12212, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12215, + "make_id": 11790, + "model_id": 12168, + "year_id": 12212, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12216, + "make_id": 11790, + "model_id": 12168, + "year_id": 12212, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12217, + "make_id": 11790, + "model_id": 12168, + "year_id": 12217, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12218, + "make_id": 11790, + "model_id": 12168, + "year_id": 12217, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12219, + "make_id": 11790, + "model_id": 12168, + "year_id": 12217, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12220, + "make_id": 11790, + "model_id": 12168, + "year_id": 12217, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12221, + "make_id": 11790, + "model_id": 12168, + "year_id": 12221, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12222, + "make_id": 11790, + "model_id": 12168, + "year_id": 12221, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12223, + "make_id": 11790, + "model_id": 12168, + "year_id": 12221, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12224, + "make_id": 11790, + "model_id": 12168, + "year_id": 12221, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12225, + "make_id": 11790, + "model_id": 12168, + "year_id": 12225, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12226, + "make_id": 11790, + "model_id": 12168, + "year_id": 12225, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12227, + "make_id": 11790, + "model_id": 12168, + "year_id": 12225, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12228, + "make_id": 11790, + "model_id": 12168, + "year_id": 12225, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12229, + "make_id": 11790, + "model_id": 12168, + "year_id": 12229, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12230, + "make_id": 11790, + "model_id": 12168, + "year_id": 12229, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12231, + "make_id": 11790, + "model_id": 12168, + "year_id": 12229, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12232, + "make_id": 11790, + "model_id": 12168, + "year_id": 12229, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12233, + "make_id": 11790, + "model_id": 12168, + "year_id": 12229, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12234, + "make_id": 11790, + "model_id": 12168, + "year_id": 12234, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12235, + "make_id": 11790, + "model_id": 12168, + "year_id": 12234, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12236, + "make_id": 11790, + "model_id": 12168, + "year_id": 12234, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12237, + "make_id": 11790, + "model_id": 12168, + "year_id": 12234, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12238, + "make_id": 11790, + "model_id": 12168, + "year_id": 12238, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12239, + "make_id": 11790, + "model_id": 12168, + "year_id": 12238, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12240, + "make_id": 11790, + "model_id": 12168, + "year_id": 12238, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12241, + "make_id": 11790, + "model_id": 12168, + "year_id": 12238, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12242, + "make_id": 11790, + "model_id": 12168, + "year_id": 12242, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12243, + "make_id": 11790, + "model_id": 12168, + "year_id": 12242, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12244, + "make_id": 11790, + "model_id": 12168, + "year_id": 12242, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12245, + "make_id": 11790, + "model_id": 12168, + "year_id": 12242, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12246, + "make_id": 11790, + "model_id": 12168, + "year_id": 12246, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12247, + "make_id": 11790, + "model_id": 12168, + "year_id": 12246, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12248, + "make_id": 11790, + "model_id": 12168, + "year_id": 12246, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12249, + "make_id": 11790, + "model_id": 12168, + "year_id": 12249, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12250, + "make_id": 11790, + "model_id": 12168, + "year_id": 12249, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12251, + "make_id": 11790, + "model_id": 12168, + "year_id": 12249, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12252, + "make_id": 11790, + "model_id": 12168, + "year_id": 12252, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12253, + "make_id": 11790, + "model_id": 12168, + "year_id": 12252, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12254, + "make_id": 11790, + "model_id": 12168, + "year_id": 12252, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12255, + "make_id": 11790, + "model_id": 12168, + "year_id": 12255, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12256, + "make_id": 11790, + "model_id": 12168, + "year_id": 12255, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12257, + "make_id": 11790, + "model_id": 12168, + "year_id": 12255, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12258, + "make_id": 11790, + "model_id": 12168, + "year_id": 12258, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12259, + "make_id": 11790, + "model_id": 12168, + "year_id": 12258, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12260, + "make_id": 11790, + "model_id": 12168, + "year_id": 12258, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12261, + "make_id": 11790, + "model_id": 12168, + "year_id": 12261, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12262, + "make_id": 11790, + "model_id": 12168, + "year_id": 12261, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12263, + "make_id": 11790, + "model_id": 12168, + "year_id": 12261, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12264, + "make_id": 11790, + "model_id": 12168, + "year_id": 12264, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12265, + "make_id": 11790, + "model_id": 12168, + "year_id": 12264, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12266, + "make_id": 11790, + "model_id": 12168, + "year_id": 12264, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12267, + "make_id": 11790, + "model_id": 12168, + "year_id": 12267, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12268, + "make_id": 11790, + "model_id": 12168, + "year_id": 12267, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12269, + "make_id": 11790, + "model_id": 12168, + "year_id": 12269, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12270, + "make_id": 11790, + "model_id": 12168, + "year_id": 12269, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12271, + "make_id": 11790, + "model_id": 12168, + "year_id": 12271, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12272, + "make_id": 11790, + "model_id": 12168, + "year_id": 12271, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12273, + "make_id": 11790, + "model_id": 12273, + "year_id": 12273, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12274, + "make_id": 11790, + "model_id": 12273, + "year_id": 12273, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12275, + "make_id": 11790, + "model_id": 12273, + "year_id": 12275, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12276, + "make_id": 11790, + "model_id": 12273, + "year_id": 12275, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12277, + "make_id": 11790, + "model_id": 12273, + "year_id": 12277, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12278, + "make_id": 11790, + "model_id": 12273, + "year_id": 12277, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12279, + "make_id": 11790, + "model_id": 12273, + "year_id": 12279, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12280, + "make_id": 11790, + "model_id": 12273, + "year_id": 12279, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12281, + "make_id": 11790, + "model_id": 12281, + "year_id": 12281, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12282, + "make_id": 11790, + "model_id": 12281, + "year_id": 12281, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12283, + "make_id": 11790, + "model_id": 12281, + "year_id": 12283, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12284, + "make_id": 11790, + "model_id": 12281, + "year_id": 12283, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12285, + "make_id": 11790, + "model_id": 12281, + "year_id": 12285, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12286, + "make_id": 11790, + "model_id": 12281, + "year_id": 12285, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12287, + "make_id": 11790, + "model_id": 12281, + "year_id": 12287, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12288, + "make_id": 11790, + "model_id": 12281, + "year_id": 12287, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12289, + "make_id": 11790, + "model_id": 12289, + "year_id": 12289, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12290, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12291, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12292, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 12293, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12294, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12295, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12296, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12297, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12298, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 12299, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12300, + "make_id": 11790, + "model_id": 12290, + "year_id": 12290, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12301, + "make_id": 11790, + "model_id": 12290, + "year_id": 12301, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12302, + "make_id": 11790, + "model_id": 12290, + "year_id": 12301, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12303, + "make_id": 11790, + "model_id": 12290, + "year_id": 12301, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12304, + "make_id": 11790, + "model_id": 12290, + "year_id": 12301, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12305, + "make_id": 11790, + "model_id": 12290, + "year_id": 12301, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12306, + "make_id": 11790, + "model_id": 12290, + "year_id": 12301, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12307, + "make_id": 11790, + "model_id": 12290, + "year_id": 12307, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12308, + "make_id": 11790, + "model_id": 12290, + "year_id": 12307, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12309, + "make_id": 11790, + "model_id": 12290, + "year_id": 12307, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12310, + "make_id": 11790, + "model_id": 12290, + "year_id": 12310, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12311, + "make_id": 11790, + "model_id": 12290, + "year_id": 12310, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12312, + "make_id": 11790, + "model_id": 12290, + "year_id": 12310, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12313, + "make_id": 11790, + "model_id": 12290, + "year_id": 12310, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12314, + "make_id": 11790, + "model_id": 12290, + "year_id": 12314, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12315, + "make_id": 11790, + "model_id": 12290, + "year_id": 12314, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12316, + "make_id": 11790, + "model_id": 12290, + "year_id": 12314, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12317, + "make_id": 11790, + "model_id": 12290, + "year_id": 12317, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12318, + "make_id": 11790, + "model_id": 12290, + "year_id": 12317, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12319, + "make_id": 11790, + "model_id": 12290, + "year_id": 12317, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12320, + "make_id": 11790, + "model_id": 12290, + "year_id": 12320, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12321, + "make_id": 11790, + "model_id": 12290, + "year_id": 12320, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12322, + "make_id": 11790, + "model_id": 12290, + "year_id": 12320, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12323, + "make_id": 11790, + "model_id": 12290, + "year_id": 12320, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12324, + "make_id": 11790, + "model_id": 12290, + "year_id": 12320, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12325, + "make_id": 11790, + "model_id": 12290, + "year_id": 12325, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12326, + "make_id": 11790, + "model_id": 12290, + "year_id": 12325, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12327, + "make_id": 11790, + "model_id": 12290, + "year_id": 12325, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12328, + "make_id": 11790, + "model_id": 12290, + "year_id": 12325, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12329, + "make_id": 11790, + "model_id": 12290, + "year_id": 12329, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12330, + "make_id": 11790, + "model_id": 12290, + "year_id": 12329, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12331, + "make_id": 11790, + "model_id": 12290, + "year_id": 12329, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12332, + "make_id": 11790, + "model_id": 12290, + "year_id": 12332, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12333, + "make_id": 11790, + "model_id": 12290, + "year_id": 12332, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12334, + "make_id": 11790, + "model_id": 12290, + "year_id": 12332, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12335, + "make_id": 11790, + "model_id": 12290, + "year_id": 12335, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12336, + "make_id": 11790, + "model_id": 12290, + "year_id": 12335, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12337, + "make_id": 11790, + "model_id": 12290, + "year_id": 12335, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12338, + "make_id": 11790, + "model_id": 12290, + "year_id": 12338, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12339, + "make_id": 11790, + "model_id": 12290, + "year_id": 12338, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12340, + "make_id": 11790, + "model_id": 12290, + "year_id": 12338, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12341, + "make_id": 11790, + "model_id": 12290, + "year_id": 12341, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12342, + "make_id": 11790, + "model_id": 12290, + "year_id": 12341, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12343, + "make_id": 11790, + "model_id": 12290, + "year_id": 12341, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12344, + "make_id": 11790, + "model_id": 12290, + "year_id": 12344, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12345, + "make_id": 11790, + "model_id": 12290, + "year_id": 12344, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12346, + "make_id": 11790, + "model_id": 12290, + "year_id": 12346, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12347, + "make_id": 11790, + "model_id": 12290, + "year_id": 12346, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12348, + "make_id": 11790, + "model_id": 12290, + "year_id": 12348, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12349, + "make_id": 11790, + "model_id": 12290, + "year_id": 12348, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12350, + "make_id": 11790, + "model_id": 12290, + "year_id": 12350, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12351, + "make_id": 11790, + "model_id": 12290, + "year_id": 12350, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12352, + "make_id": 11790, + "model_id": 12290, + "year_id": 12352, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12353, + "make_id": 11790, + "model_id": 12290, + "year_id": 12352, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12354, + "make_id": 11790, + "model_id": 12290, + "year_id": 12354, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12355, + "make_id": 11790, + "model_id": 12290, + "year_id": 12354, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12356, + "make_id": 11790, + "model_id": 12290, + "year_id": 12356, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12357, + "make_id": 11790, + "model_id": 12290, + "year_id": 12356, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12358, + "make_id": 11790, + "model_id": 12290, + "year_id": 12356, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12359, + "make_id": 11790, + "model_id": 12290, + "year_id": 12359, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12360, + "make_id": 11790, + "model_id": 12290, + "year_id": 12360, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12361, + "make_id": 11790, + "model_id": 12361, + "year_id": 12361, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12362, + "make_id": 11790, + "model_id": 12361, + "year_id": 12362, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12363, + "make_id": 11790, + "model_id": 12361, + "year_id": 12363, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12364, + "make_id": 11790, + "model_id": 12364, + "year_id": 12364, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12365, + "make_id": 11790, + "model_id": 12364, + "year_id": 12364, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12366, + "make_id": 11790, + "model_id": 12364, + "year_id": 12366, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12367, + "make_id": 11790, + "model_id": 12364, + "year_id": 12366, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12368, + "make_id": 11790, + "model_id": 12364, + "year_id": 12368, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12369, + "make_id": 11790, + "model_id": 12364, + "year_id": 12368, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12370, + "make_id": 11790, + "model_id": 12364, + "year_id": 12370, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12371, + "make_id": 11790, + "model_id": 12364, + "year_id": 12370, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12372, + "make_id": 11790, + "model_id": 12372, + "year_id": 12372, + "cylinders": 10, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12373, + "make_id": 11790, + "model_id": 12372, + "year_id": 12372, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12374, + "make_id": 11790, + "model_id": 12372, + "year_id": 12374, + "cylinders": 10, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12375, + "make_id": 11790, + "model_id": 12372, + "year_id": 12374, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12376, + "make_id": 11790, + "model_id": 12372, + "year_id": 12376, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12377, + "make_id": 11790, + "model_id": 12372, + "year_id": 12376, + "cylinders": 10, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12378, + "make_id": 11790, + "model_id": 12372, + "year_id": 12378, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12379, + "make_id": 11790, + "model_id": 12372, + "year_id": 12378, + "cylinders": 10, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12380, + "make_id": 11790, + "model_id": 12380, + "year_id": 12380, + "cylinders": 10, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12381, + "make_id": 11790, + "model_id": 12380, + "year_id": 12380, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12382, + "make_id": 11790, + "model_id": 12380, + "year_id": 12382, + "cylinders": 10, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12383, + "make_id": 11790, + "model_id": 12380, + "year_id": 12382, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12384, + "make_id": 11790, + "model_id": 12380, + "year_id": 12384, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12385, + "make_id": 11790, + "model_id": 12380, + "year_id": 12384, + "cylinders": 10, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12386, + "make_id": 11790, + "model_id": 12380, + "year_id": 12386, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12387, + "make_id": 11790, + "model_id": 12380, + "year_id": 12386, + "cylinders": 10, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12388, + "make_id": 11790, + "model_id": 12388, + "year_id": 12388, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12389, + "make_id": 11790, + "model_id": 12388, + "year_id": 12388, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12390, + "make_id": 11790, + "model_id": 12388, + "year_id": 12390, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12391, + "make_id": 11790, + "model_id": 12388, + "year_id": 12390, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12392, + "make_id": 11790, + "model_id": 12388, + "year_id": 12392, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12393, + "make_id": 11790, + "model_id": 12388, + "year_id": 12392, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12394, + "make_id": 11790, + "model_id": 12388, + "year_id": 12394, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12395, + "make_id": 11790, + "model_id": 12388, + "year_id": 12394, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12396, + "make_id": 11790, + "model_id": 12388, + "year_id": 12396, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12397, + "make_id": 11790, + "model_id": 12388, + "year_id": 12396, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12398, + "make_id": 11790, + "model_id": 12388, + "year_id": 12396, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12399, + "make_id": 11790, + "model_id": 12388, + "year_id": 12396, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12400, + "make_id": 11790, + "model_id": 12388, + "year_id": 12396, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12401, + "make_id": 11790, + "model_id": 12388, + "year_id": 12396, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12402, + "make_id": 11790, + "model_id": 12388, + "year_id": 12402, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12403, + "make_id": 11790, + "model_id": 12388, + "year_id": 12402, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12404, + "make_id": 11790, + "model_id": 12388, + "year_id": 12402, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12405, + "make_id": 11790, + "model_id": 12388, + "year_id": 12402, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12406, + "make_id": 11790, + "model_id": 12388, + "year_id": 12402, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12407, + "make_id": 11790, + "model_id": 12388, + "year_id": 12407, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12408, + "make_id": 11790, + "model_id": 12388, + "year_id": 12407, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12409, + "make_id": 11790, + "model_id": 12388, + "year_id": 12407, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12410, + "make_id": 11790, + "model_id": 12388, + "year_id": 12407, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12411, + "make_id": 11790, + "model_id": 12388, + "year_id": 12407, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12412, + "make_id": 11790, + "model_id": 12388, + "year_id": 12407, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12413, + "make_id": 11790, + "model_id": 12388, + "year_id": 12413, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12414, + "make_id": 11790, + "model_id": 12388, + "year_id": 12413, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12415, + "make_id": 11790, + "model_id": 12388, + "year_id": 12413, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12416, + "make_id": 11790, + "model_id": 12388, + "year_id": 12413, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12417, + "make_id": 11790, + "model_id": 12388, + "year_id": 12413, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12418, + "make_id": 11790, + "model_id": 12388, + "year_id": 12418, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12419, + "make_id": 11790, + "model_id": 12388, + "year_id": 12418, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12420, + "make_id": 11790, + "model_id": 12388, + "year_id": 12418, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12421, + "make_id": 11790, + "model_id": 12388, + "year_id": 12418, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12422, + "make_id": 11790, + "model_id": 12388, + "year_id": 12418, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12423, + "make_id": 11790, + "model_id": 12388, + "year_id": 12418, + "cylinders": 6, + "displacement": 2.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12424, + "make_id": 11790, + "model_id": 12388, + "year_id": 12418, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12425, + "make_id": 11790, + "model_id": 12388, + "year_id": 12425, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12426, + "make_id": 11790, + "model_id": 12388, + "year_id": 12425, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12427, + "make_id": 11790, + "model_id": 12388, + "year_id": 12425, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12428, + "make_id": 11790, + "model_id": 12388, + "year_id": 12425, + "cylinders": 6, + "displacement": 2.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12429, + "make_id": 11790, + "model_id": 12388, + "year_id": 12425, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12430, + "make_id": 11790, + "model_id": 12388, + "year_id": 12425, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12431, + "make_id": 11790, + "model_id": 12431, + "year_id": 12431, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12432, + "make_id": 11790, + "model_id": 12431, + "year_id": 12431, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12433, + "make_id": 11790, + "model_id": 12431, + "year_id": 12431, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12434, + "make_id": 11790, + "model_id": 12431, + "year_id": 12431, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12435, + "make_id": 11790, + "model_id": 12431, + "year_id": 12435, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12436, + "make_id": 11790, + "model_id": 12431, + "year_id": 12435, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12437, + "make_id": 11790, + "model_id": 12431, + "year_id": 12435, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12438, + "make_id": 11790, + "model_id": 12431, + "year_id": 12435, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12439, + "make_id": 11790, + "model_id": 12431, + "year_id": 12439, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12440, + "make_id": 11790, + "model_id": 12431, + "year_id": 12439, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12441, + "make_id": 11790, + "model_id": 12431, + "year_id": 12439, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12442, + "make_id": 11790, + "model_id": 12431, + "year_id": 12439, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12443, + "make_id": 11790, + "model_id": 12431, + "year_id": 12443, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12444, + "make_id": 11790, + "model_id": 12431, + "year_id": 12443, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12445, + "make_id": 11790, + "model_id": 12431, + "year_id": 12443, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12446, + "make_id": 11790, + "model_id": 12431, + "year_id": 12446, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12447, + "make_id": 11790, + "model_id": 12431, + "year_id": 12446, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12448, + "make_id": 11790, + "model_id": 12431, + "year_id": 12446, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12449, + "make_id": 11790, + "model_id": 12431, + "year_id": 12446, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12450, + "make_id": 11790, + "model_id": 12431, + "year_id": 12446, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12451, + "make_id": 11790, + "model_id": 12431, + "year_id": 12446, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12452, + "make_id": 11790, + "model_id": 12431, + "year_id": 12452, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12453, + "make_id": 11790, + "model_id": 12431, + "year_id": 12452, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12454, + "make_id": 11790, + "model_id": 12431, + "year_id": 12452, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12455, + "make_id": 11790, + "model_id": 12431, + "year_id": 12452, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12456, + "make_id": 11790, + "model_id": 12431, + "year_id": 12452, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12457, + "make_id": 11790, + "model_id": 12431, + "year_id": 12452, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12458, + "make_id": 11790, + "model_id": 12431, + "year_id": 12458, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12459, + "make_id": 11790, + "model_id": 12431, + "year_id": 12458, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12460, + "make_id": 11790, + "model_id": 12431, + "year_id": 12458, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12461, + "make_id": 11790, + "model_id": 12431, + "year_id": 12458, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12462, + "make_id": 11790, + "model_id": 12431, + "year_id": 12458, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12463, + "make_id": 11790, + "model_id": 12431, + "year_id": 12458, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12464, + "make_id": 11790, + "model_id": 12431, + "year_id": 12464, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12465, + "make_id": 11790, + "model_id": 12431, + "year_id": 12464, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12466, + "make_id": 11790, + "model_id": 12431, + "year_id": 12464, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12467, + "make_id": 11790, + "model_id": 12431, + "year_id": 12464, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12468, + "make_id": 11790, + "model_id": 12431, + "year_id": 12464, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12469, + "make_id": 11790, + "model_id": 12431, + "year_id": 12469, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12470, + "make_id": 11790, + "model_id": 12431, + "year_id": 12469, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12471, + "make_id": 11790, + "model_id": 12431, + "year_id": 12469, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12472, + "make_id": 11790, + "model_id": 12431, + "year_id": 12469, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12473, + "make_id": 11790, + "model_id": 12431, + "year_id": 12469, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12474, + "make_id": 11790, + "model_id": 12431, + "year_id": 12474, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12475, + "make_id": 11790, + "model_id": 12431, + "year_id": 12474, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12476, + "make_id": 11790, + "model_id": 12431, + "year_id": 12474, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12477, + "make_id": 11790, + "model_id": 12431, + "year_id": 12474, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12478, + "make_id": 11790, + "model_id": 12431, + "year_id": 12474, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12479, + "make_id": 11790, + "model_id": 12431, + "year_id": 12479, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12480, + "make_id": 11790, + "model_id": 12431, + "year_id": 12479, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12481, + "make_id": 11790, + "model_id": 12431, + "year_id": 12479, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12482, + "make_id": 11790, + "model_id": 12431, + "year_id": 12479, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12483, + "make_id": 11790, + "model_id": 12431, + "year_id": 12479, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12484, + "make_id": 11790, + "model_id": 12431, + "year_id": 12484, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12485, + "make_id": 11790, + "model_id": 12431, + "year_id": 12484, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12486, + "make_id": 11790, + "model_id": 12431, + "year_id": 12484, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12487, + "make_id": 11790, + "model_id": 12431, + "year_id": 12484, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12488, + "make_id": 11790, + "model_id": 12431, + "year_id": 12484, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12489, + "make_id": 11790, + "model_id": 12431, + "year_id": 12489, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12490, + "make_id": 11790, + "model_id": 12431, + "year_id": 12489, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12491, + "make_id": 11790, + "model_id": 12431, + "year_id": 12489, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12492, + "make_id": 11790, + "model_id": 12431, + "year_id": 12489, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12493, + "make_id": 11790, + "model_id": 12431, + "year_id": 12489, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12494, + "make_id": 11790, + "model_id": 12431, + "year_id": 12494, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12495, + "make_id": 11790, + "model_id": 12431, + "year_id": 12494, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12496, + "make_id": 11790, + "model_id": 12431, + "year_id": 12494, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12497, + "make_id": 11790, + "model_id": 12431, + "year_id": 12494, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12498, + "make_id": 11790, + "model_id": 12431, + "year_id": 12494, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12499, + "make_id": 11790, + "model_id": 12431, + "year_id": 12499, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12500, + "make_id": 11790, + "model_id": 12431, + "year_id": 12499, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12501, + "make_id": 11790, + "model_id": 12431, + "year_id": 12499, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12502, + "make_id": 11790, + "model_id": 12431, + "year_id": 12499, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12503, + "make_id": 11790, + "model_id": 12431, + "year_id": 12499, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12504, + "make_id": 11790, + "model_id": 12431, + "year_id": 12504, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12505, + "make_id": 11790, + "model_id": 12431, + "year_id": 12504, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12506, + "make_id": 11790, + "model_id": 12431, + "year_id": 12504, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12507, + "make_id": 11790, + "model_id": 12431, + "year_id": 12504, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12508, + "make_id": 11790, + "model_id": 12431, + "year_id": 12504, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12509, + "make_id": 11790, + "model_id": 12431, + "year_id": 12509, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12510, + "make_id": 11790, + "model_id": 12431, + "year_id": 12509, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12511, + "make_id": 11790, + "model_id": 12431, + "year_id": 12509, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12512, + "make_id": 11790, + "model_id": 12431, + "year_id": 12509, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12513, + "make_id": 11790, + "model_id": 12431, + "year_id": 12509, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12514, + "make_id": 11790, + "model_id": 12431, + "year_id": 12509, + "cylinders": 4, + "displacement": 1.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12515, + "make_id": 11790, + "model_id": 12515, + "year_id": 12515, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12516, + "make_id": 11790, + "model_id": 12515, + "year_id": 12515, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12517, + "make_id": 11790, + "model_id": 12515, + "year_id": 12517, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12518, + "make_id": 11790, + "model_id": 12515, + "year_id": 12517, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12519, + "make_id": 11790, + "model_id": 12515, + "year_id": 12519, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12520, + "make_id": 11790, + "model_id": 12515, + "year_id": 12519, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12521, + "make_id": 11790, + "model_id": 12515, + "year_id": 12521, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12522, + "make_id": 11790, + "model_id": 12515, + "year_id": 12521, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12523, + "make_id": 11790, + "model_id": 12515, + "year_id": 12523, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12524, + "make_id": 11790, + "model_id": 12515, + "year_id": 12523, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12525, + "make_id": 11790, + "model_id": 12515, + "year_id": 12525, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12526, + "make_id": 11790, + "model_id": 12515, + "year_id": 12525, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12527, + "make_id": 11790, + "model_id": 12515, + "year_id": 12527, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12528, + "make_id": 11790, + "model_id": 12515, + "year_id": 12527, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12529, + "make_id": 11790, + "model_id": 12515, + "year_id": 12529, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12530, + "make_id": 11790, + "model_id": 12515, + "year_id": 12529, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 12531, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 12532, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 12533, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 12534, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12535, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 12536, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12537, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12538, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12539, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12540, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 12541, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 12542, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12543, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 12544, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12545, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12546, + "make_id": 11790, + "model_id": 12531, + "year_id": 12531, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12547, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12548, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12549, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12550, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12551, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12552, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12553, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12554, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12555, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12556, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12557, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12558, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12559, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12560, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12561, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12562, + "make_id": 11790, + "model_id": 12531, + "year_id": 12547, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12563, + "make_id": 11790, + "model_id": 12531, + "year_id": 12563, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12564, + "make_id": 11790, + "model_id": 12531, + "year_id": 12563, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12565, + "make_id": 11790, + "model_id": 12531, + "year_id": 12563, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12566, + "make_id": 11790, + "model_id": 12531, + "year_id": 12563, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12567, + "make_id": 11790, + "model_id": 12531, + "year_id": 12563, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12568, + "make_id": 11790, + "model_id": 12531, + "year_id": 12563, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12569, + "make_id": 11790, + "model_id": 12531, + "year_id": 12569, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12570, + "make_id": 11790, + "model_id": 12531, + "year_id": 12569, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12571, + "make_id": 11790, + "model_id": 12531, + "year_id": 12569, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12572, + "make_id": 11790, + "model_id": 12531, + "year_id": 12569, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12573, + "make_id": 11790, + "model_id": 12531, + "year_id": 12569, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12574, + "make_id": 11790, + "model_id": 12531, + "year_id": 12574, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12575, + "make_id": 11790, + "model_id": 12531, + "year_id": 12574, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12576, + "make_id": 11790, + "model_id": 12531, + "year_id": 12574, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12577, + "make_id": 11790, + "model_id": 12531, + "year_id": 12574, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12578, + "make_id": 11790, + "model_id": 12531, + "year_id": 12578, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12579, + "make_id": 11790, + "model_id": 12531, + "year_id": 12578, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12580, + "make_id": 11790, + "model_id": 12531, + "year_id": 12578, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12581, + "make_id": 11790, + "model_id": 12531, + "year_id": 12578, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12582, + "make_id": 11790, + "model_id": 12531, + "year_id": 12582, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12583, + "make_id": 11790, + "model_id": 12531, + "year_id": 12582, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12584, + "make_id": 11790, + "model_id": 12531, + "year_id": 12582, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12585, + "make_id": 11790, + "model_id": 12531, + "year_id": 12582, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12586, + "make_id": 11790, + "model_id": 12531, + "year_id": 12586, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12587, + "make_id": 11790, + "model_id": 12531, + "year_id": 12586, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12588, + "make_id": 11790, + "model_id": 12531, + "year_id": 12586, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12589, + "make_id": 11790, + "model_id": 12531, + "year_id": 12586, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12590, + "make_id": 11790, + "model_id": 12531, + "year_id": 12590, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12591, + "make_id": 11790, + "model_id": 12531, + "year_id": 12590, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12592, + "make_id": 11790, + "model_id": 12531, + "year_id": 12590, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12593, + "make_id": 11790, + "model_id": 12531, + "year_id": 12590, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12594, + "make_id": 11790, + "model_id": 12531, + "year_id": 12594, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12595, + "make_id": 11790, + "model_id": 12531, + "year_id": 12594, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12596, + "make_id": 11790, + "model_id": 12531, + "year_id": 12594, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12597, + "make_id": 11790, + "model_id": 12531, + "year_id": 12594, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12598, + "make_id": 11790, + "model_id": 12531, + "year_id": 12598, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12599, + "make_id": 11790, + "model_id": 12531, + "year_id": 12598, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12600, + "make_id": 11790, + "model_id": 12531, + "year_id": 12598, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12601, + "make_id": 11790, + "model_id": 12531, + "year_id": 12598, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12602, + "make_id": 11790, + "model_id": 12531, + "year_id": 12602, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12603, + "make_id": 11790, + "model_id": 12531, + "year_id": 12602, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12604, + "make_id": 11790, + "model_id": 12531, + "year_id": 12602, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12605, + "make_id": 11790, + "model_id": 12531, + "year_id": 12602, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12606, + "make_id": 11790, + "model_id": 12531, + "year_id": 12606, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12607, + "make_id": 11790, + "model_id": 12531, + "year_id": 12606, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12608, + "make_id": 11790, + "model_id": 12531, + "year_id": 12606, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12609, + "make_id": 11790, + "model_id": 12531, + "year_id": 12606, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12610, + "make_id": 11790, + "model_id": 12531, + "year_id": 12610, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12611, + "make_id": 11790, + "model_id": 12531, + "year_id": 12610, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12612, + "make_id": 11790, + "model_id": 12531, + "year_id": 12612, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12613, + "make_id": 11790, + "model_id": 12531, + "year_id": 12612, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12614, + "make_id": 11790, + "model_id": 12531, + "year_id": 12614, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12615, + "make_id": 11790, + "model_id": 12531, + "year_id": 12614, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12616, + "make_id": 11790, + "model_id": 12531, + "year_id": 12616, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12617, + "make_id": 11790, + "model_id": 12531, + "year_id": 12616, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12618, + "make_id": 11790, + "model_id": 12531, + "year_id": 12618, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12619, + "make_id": 11790, + "model_id": 12531, + "year_id": 12619, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12620, + "make_id": 11790, + "model_id": 12620, + "year_id": 12620, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12621, + "make_id": 11790, + "model_id": 12620, + "year_id": 12621, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12622, + "make_id": 11790, + "model_id": 12620, + "year_id": 12622, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12623, + "make_id": 11790, + "model_id": 12620, + "year_id": 12623, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12624, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 12625, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 12626, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12627, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 12628, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12629, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12630, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 12631, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 12632, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12633, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 12634, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12635, + "make_id": 11790, + "model_id": 12624, + "year_id": 12624, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12636, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12637, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12638, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12639, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12640, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12641, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12642, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12643, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12644, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12645, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12646, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12647, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12648, + "make_id": 11790, + "model_id": 12624, + "year_id": 12636, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12649, + "make_id": 11790, + "model_id": 12624, + "year_id": 12649, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12650, + "make_id": 11790, + "model_id": 12624, + "year_id": 12649, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12651, + "make_id": 11790, + "model_id": 12624, + "year_id": 12649, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12652, + "make_id": 11790, + "model_id": 12624, + "year_id": 12649, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12653, + "make_id": 11790, + "model_id": 12624, + "year_id": 12653, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12654, + "make_id": 11790, + "model_id": 12624, + "year_id": 12653, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12655, + "make_id": 11790, + "model_id": 12624, + "year_id": 12653, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12656, + "make_id": 11790, + "model_id": 12624, + "year_id": 12656, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12657, + "make_id": 11790, + "model_id": 12624, + "year_id": 12656, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 12658, + "make_id": 11790, + "model_id": 12624, + "year_id": 12656, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12659, + "make_id": 11790, + "model_id": 12624, + "year_id": 12659, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12660, + "make_id": 11790, + "model_id": 12624, + "year_id": 12659, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12661, + "make_id": 11790, + "model_id": 12624, + "year_id": 12661, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12662, + "make_id": 11790, + "model_id": 12624, + "year_id": 12661, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12663, + "make_id": 11790, + "model_id": 12624, + "year_id": 12663, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12664, + "make_id": 11790, + "model_id": 12624, + "year_id": 12663, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12665, + "make_id": 11790, + "model_id": 12624, + "year_id": 12665, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12666, + "make_id": 11790, + "model_id": 12624, + "year_id": 12665, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12667, + "make_id": 11790, + "model_id": 12624, + "year_id": 12667, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12668, + "make_id": 11790, + "model_id": 12624, + "year_id": 12667, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12669, + "make_id": 11790, + "model_id": 12624, + "year_id": 12669, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12670, + "make_id": 11790, + "model_id": 12624, + "year_id": 12669, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12671, + "make_id": 11790, + "model_id": 12624, + "year_id": 12671, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12672, + "make_id": 11790, + "model_id": 12624, + "year_id": 12671, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12673, + "make_id": 11790, + "model_id": 12624, + "year_id": 12673, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12674, + "make_id": 11790, + "model_id": 12624, + "year_id": 12673, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12675, + "make_id": 11790, + "model_id": 12624, + "year_id": 12675, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12676, + "make_id": 11790, + "model_id": 12624, + "year_id": 12675, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12677, + "make_id": 11790, + "model_id": 12624, + "year_id": 12677, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12678, + "make_id": 11790, + "model_id": 12624, + "year_id": 12677, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12679, + "make_id": 11790, + "model_id": 12624, + "year_id": 12679, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12680, + "make_id": 11790, + "model_id": 12624, + "year_id": 12679, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12681, + "make_id": 11790, + "model_id": 12681, + "year_id": 12681, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12682, + "make_id": 11790, + "model_id": 12681, + "year_id": 12681, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12683, + "make_id": 11790, + "model_id": 12681, + "year_id": 12683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12684, + "make_id": 11790, + "model_id": 12681, + "year_id": 12683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12685, + "make_id": 11790, + "model_id": 12681, + "year_id": 12685, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12686, + "make_id": 11790, + "model_id": 12681, + "year_id": 12685, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12687, + "make_id": 11790, + "model_id": 12681, + "year_id": 12687, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12688, + "make_id": 11790, + "model_id": 12681, + "year_id": 12687, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12689, + "make_id": 11790, + "model_id": 12681, + "year_id": 12689, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12690, + "make_id": 11790, + "model_id": 12681, + "year_id": 12689, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12691, + "make_id": 11790, + "model_id": 12681, + "year_id": 12691, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12692, + "make_id": 11790, + "model_id": 12681, + "year_id": 12691, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12693, + "make_id": 11790, + "model_id": 12693, + "year_id": 12693, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 12694, + "make_id": 11790, + "model_id": 12693, + "year_id": 12693, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12695, + "make_id": 11790, + "model_id": 12693, + "year_id": 12693, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12696, + "make_id": 11790, + "model_id": 12693, + "year_id": 12693, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 12697, + "make_id": 11790, + "model_id": 12693, + "year_id": 12693, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12698, + "make_id": 11790, + "model_id": 12693, + "year_id": 12693, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 12699, + "make_id": 11790, + "model_id": 12693, + "year_id": 12699, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12700, + "make_id": 11790, + "model_id": 12693, + "year_id": 12699, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12701, + "make_id": 11790, + "model_id": 12693, + "year_id": 12699, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12702, + "make_id": 11790, + "model_id": 12693, + "year_id": 12702, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12703, + "make_id": 11790, + "model_id": 12693, + "year_id": 12702, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12704, + "make_id": 11790, + "model_id": 12693, + "year_id": 12702, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12705, + "make_id": 11790, + "model_id": 12693, + "year_id": 12702, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12706, + "make_id": 11790, + "model_id": 12693, + "year_id": 12706, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12707, + "make_id": 11790, + "model_id": 12693, + "year_id": 12706, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12708, + "make_id": 11790, + "model_id": 12693, + "year_id": 12706, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12709, + "make_id": 11790, + "model_id": 12693, + "year_id": 12709, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12710, + "make_id": 11790, + "model_id": 12693, + "year_id": 12709, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12711, + "make_id": 11790, + "model_id": 12693, + "year_id": 12709, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12712, + "make_id": 11790, + "model_id": 12712, + "year_id": 12712, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12713, + "make_id": 11790, + "model_id": 12712, + "year_id": 12712, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12714, + "make_id": 11790, + "model_id": 12712, + "year_id": 12712, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12715, + "make_id": 11790, + "model_id": 12712, + "year_id": 12712, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12716, + "make_id": 11790, + "model_id": 12712, + "year_id": 12716, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12717, + "make_id": 11790, + "model_id": 12712, + "year_id": 12716, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12718, + "make_id": 11790, + "model_id": 12712, + "year_id": 12716, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12719, + "make_id": 11790, + "model_id": 12712, + "year_id": 12716, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12720, + "make_id": 11790, + "model_id": 12712, + "year_id": 12720, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12721, + "make_id": 11790, + "model_id": 12712, + "year_id": 12720, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12722, + "make_id": 11790, + "model_id": 12712, + "year_id": 12720, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12723, + "make_id": 11790, + "model_id": 12712, + "year_id": 12720, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12724, + "make_id": 11790, + "model_id": 12712, + "year_id": 12724, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12725, + "make_id": 11790, + "model_id": 12712, + "year_id": 12724, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12726, + "make_id": 11790, + "model_id": 12712, + "year_id": 12724, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12727, + "make_id": 11790, + "model_id": 12712, + "year_id": 12724, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12728, + "make_id": 11790, + "model_id": 12712, + "year_id": 12728, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12729, + "make_id": 11790, + "model_id": 12712, + "year_id": 12728, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12730, + "make_id": 11790, + "model_id": 12712, + "year_id": 12728, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12731, + "make_id": 11790, + "model_id": 12712, + "year_id": 12728, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12732, + "make_id": 11790, + "model_id": 12712, + "year_id": 12732, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12733, + "make_id": 11790, + "model_id": 12712, + "year_id": 12732, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12734, + "make_id": 11790, + "model_id": 12712, + "year_id": 12732, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12735, + "make_id": 11790, + "model_id": 12712, + "year_id": 12732, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12736, + "make_id": 11790, + "model_id": 12712, + "year_id": 12736, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12737, + "make_id": 11790, + "model_id": 12712, + "year_id": 12736, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12738, + "make_id": 11790, + "model_id": 12712, + "year_id": 12736, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12739, + "make_id": 11790, + "model_id": 12712, + "year_id": 12736, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12740, + "make_id": 11790, + "model_id": 12712, + "year_id": 12740, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12741, + "make_id": 11790, + "model_id": 12712, + "year_id": 12740, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12742, + "make_id": 11790, + "model_id": 12712, + "year_id": 12740, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12743, + "make_id": 11790, + "model_id": 12712, + "year_id": 12740, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12744, + "make_id": 11790, + "model_id": 12712, + "year_id": 12744, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12745, + "make_id": 11790, + "model_id": 12712, + "year_id": 12744, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12746, + "make_id": 11790, + "model_id": 12712, + "year_id": 12746, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12747, + "make_id": 11790, + "model_id": 12712, + "year_id": 12746, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12748, + "make_id": 11790, + "model_id": 12712, + "year_id": 12748, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12749, + "make_id": 11790, + "model_id": 12712, + "year_id": 12749, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12750, + "make_id": 11790, + "model_id": 12712, + "year_id": 12750, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12751, + "make_id": 11790, + "model_id": 12712, + "year_id": 12751, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12752, + "make_id": 11790, + "model_id": 12712, + "year_id": 12751, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12753, + "make_id": 11790, + "model_id": 12712, + "year_id": 12753, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12754, + "make_id": 11790, + "model_id": 12712, + "year_id": 12753, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12755, + "make_id": 11790, + "model_id": 12712, + "year_id": 12755, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12756, + "make_id": 11790, + "model_id": 12712, + "year_id": 12755, + "cylinders": 8, + "displacement": 5.4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12757, + "make_id": 11790, + "model_id": 12712, + "year_id": 12757, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12758, + "make_id": 11790, + "model_id": 12712, + "year_id": 12757, + "cylinders": 8, + "displacement": 5.4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12759, + "make_id": 11790, + "model_id": 12712, + "year_id": 12759, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12760, + "make_id": 11790, + "model_id": 12712, + "year_id": 12759, + "cylinders": 8, + "displacement": 5.4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12761, + "make_id": 11790, + "model_id": 12712, + "year_id": 12761, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12762, + "make_id": 11790, + "model_id": 12712, + "year_id": 12761, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12763, + "make_id": 11790, + "model_id": 12712, + "year_id": 12763, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12764, + "make_id": 11790, + "model_id": 12712, + "year_id": 12763, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12765, + "make_id": 11790, + "model_id": 12712, + "year_id": 12765, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12766, + "make_id": 11790, + "model_id": 12712, + "year_id": 12765, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12767, + "make_id": 11790, + "model_id": 12767, + "year_id": 12767, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12768, + "make_id": 11790, + "model_id": 12767, + "year_id": 12767, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12769, + "make_id": 11790, + "model_id": 12767, + "year_id": 12769, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12770, + "make_id": 11790, + "model_id": 12767, + "year_id": 12769, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12771, + "make_id": 11790, + "model_id": 12767, + "year_id": 12771, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12772, + "make_id": 11790, + "model_id": 12767, + "year_id": 12771, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12773, + "make_id": 11790, + "model_id": 12773, + "year_id": 12773, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12774, + "make_id": 11790, + "model_id": 12774, + "year_id": 12774, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12775, + "make_id": 11790, + "model_id": 12774, + "year_id": 12774, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12776, + "make_id": 11790, + "model_id": 12774, + "year_id": 12774, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12777, + "make_id": 11790, + "model_id": 12774, + "year_id": 12774, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12778, + "make_id": 11790, + "model_id": 12774, + "year_id": 12778, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12779, + "make_id": 11790, + "model_id": 12774, + "year_id": 12778, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12780, + "make_id": 11790, + "model_id": 12774, + "year_id": 12778, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12781, + "make_id": 11790, + "model_id": 12774, + "year_id": 12778, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12782, + "make_id": 11790, + "model_id": 12774, + "year_id": 12782, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12783, + "make_id": 11790, + "model_id": 12774, + "year_id": 12782, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12784, + "make_id": 11790, + "model_id": 12774, + "year_id": 12782, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12785, + "make_id": 11790, + "model_id": 12774, + "year_id": 12782, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12786, + "make_id": 11790, + "model_id": 12774, + "year_id": 12786, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12787, + "make_id": 11790, + "model_id": 12774, + "year_id": 12786, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12788, + "make_id": 11790, + "model_id": 12774, + "year_id": 12786, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12789, + "make_id": 11790, + "model_id": 12774, + "year_id": 12786, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12790, + "make_id": 11790, + "model_id": 12774, + "year_id": 12790, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12791, + "make_id": 11790, + "model_id": 12774, + "year_id": 12790, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12792, + "make_id": 11790, + "model_id": 12774, + "year_id": 12790, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12793, + "make_id": 11790, + "model_id": 12774, + "year_id": 12790, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12794, + "make_id": 11790, + "model_id": 12774, + "year_id": 12794, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12795, + "make_id": 11790, + "model_id": 12774, + "year_id": 12794, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12796, + "make_id": 11790, + "model_id": 12774, + "year_id": 12794, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12797, + "make_id": 11790, + "model_id": 12774, + "year_id": 12794, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12798, + "make_id": 11790, + "model_id": 12774, + "year_id": 12794, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12799, + "make_id": 11790, + "model_id": 12774, + "year_id": 12794, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12800, + "make_id": 11790, + "model_id": 12774, + "year_id": 12800, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12801, + "make_id": 11790, + "model_id": 12774, + "year_id": 12800, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12802, + "make_id": 11790, + "model_id": 12774, + "year_id": 12800, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12803, + "make_id": 11790, + "model_id": 12774, + "year_id": 12800, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12804, + "make_id": 11790, + "model_id": 12774, + "year_id": 12800, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12805, + "make_id": 11790, + "model_id": 12774, + "year_id": 12800, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12806, + "make_id": 11790, + "model_id": 12774, + "year_id": 12800, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12807, + "make_id": 11790, + "model_id": 12774, + "year_id": 12800, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12808, + "make_id": 11790, + "model_id": 12774, + "year_id": 12808, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12809, + "make_id": 11790, + "model_id": 12774, + "year_id": 12808, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12810, + "make_id": 11790, + "model_id": 12774, + "year_id": 12808, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12811, + "make_id": 11790, + "model_id": 12774, + "year_id": 12808, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12812, + "make_id": 11790, + "model_id": 12774, + "year_id": 12808, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12813, + "make_id": 11790, + "model_id": 12774, + "year_id": 12808, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12814, + "make_id": 11790, + "model_id": 12774, + "year_id": 12808, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12815, + "make_id": 11790, + "model_id": 12774, + "year_id": 12808, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12816, + "make_id": 11790, + "model_id": 12774, + "year_id": 12816, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12817, + "make_id": 11790, + "model_id": 12774, + "year_id": 12816, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12818, + "make_id": 11790, + "model_id": 12774, + "year_id": 12816, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12819, + "make_id": 11790, + "model_id": 12774, + "year_id": 12816, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12820, + "make_id": 11790, + "model_id": 12774, + "year_id": 12816, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12821, + "make_id": 11790, + "model_id": 12774, + "year_id": 12816, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12822, + "make_id": 11790, + "model_id": 12774, + "year_id": 12816, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12823, + "make_id": 11790, + "model_id": 12774, + "year_id": 12816, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12824, + "make_id": 11790, + "model_id": 12774, + "year_id": 12824, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12825, + "make_id": 11790, + "model_id": 12774, + "year_id": 12824, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12826, + "make_id": 11790, + "model_id": 12774, + "year_id": 12824, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12827, + "make_id": 11790, + "model_id": 12774, + "year_id": 12824, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12828, + "make_id": 11790, + "model_id": 12774, + "year_id": 12824, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12829, + "make_id": 11790, + "model_id": 12774, + "year_id": 12824, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12830, + "make_id": 11790, + "model_id": 12774, + "year_id": 12824, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12831, + "make_id": 11790, + "model_id": 12774, + "year_id": 12824, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12832, + "make_id": 11790, + "model_id": 12774, + "year_id": 12824, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12833, + "make_id": 11790, + "model_id": 12774, + "year_id": 12833, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12834, + "make_id": 11790, + "model_id": 12774, + "year_id": 12833, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12835, + "make_id": 11790, + "model_id": 12774, + "year_id": 12833, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12836, + "make_id": 11790, + "model_id": 12774, + "year_id": 12833, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12837, + "make_id": 11790, + "model_id": 12774, + "year_id": 12837, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12838, + "make_id": 11790, + "model_id": 12774, + "year_id": 12837, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12839, + "make_id": 11790, + "model_id": 12774, + "year_id": 12837, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12840, + "make_id": 11790, + "model_id": 12774, + "year_id": 12837, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12841, + "make_id": 11790, + "model_id": 12774, + "year_id": 12837, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12842, + "make_id": 11790, + "model_id": 12774, + "year_id": 12837, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12843, + "make_id": 11790, + "model_id": 12774, + "year_id": 12837, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12844, + "make_id": 11790, + "model_id": 12774, + "year_id": 12837, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12845, + "make_id": 11790, + "model_id": 12774, + "year_id": 12845, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12846, + "make_id": 11790, + "model_id": 12774, + "year_id": 12845, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12847, + "make_id": 11790, + "model_id": 12774, + "year_id": 12845, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12848, + "make_id": 11790, + "model_id": 12774, + "year_id": 12845, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12849, + "make_id": 11790, + "model_id": 12774, + "year_id": 12849, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12850, + "make_id": 11790, + "model_id": 12774, + "year_id": 12849, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12851, + "make_id": 11790, + "model_id": 12774, + "year_id": 12849, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12852, + "make_id": 11790, + "model_id": 12774, + "year_id": 12849, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12853, + "make_id": 11790, + "model_id": 12774, + "year_id": 12849, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12854, + "make_id": 11790, + "model_id": 12774, + "year_id": 12849, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12855, + "make_id": 11790, + "model_id": 12774, + "year_id": 12855, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12856, + "make_id": 11790, + "model_id": 12774, + "year_id": 12855, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12857, + "make_id": 11790, + "model_id": 12774, + "year_id": 12855, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12858, + "make_id": 11790, + "model_id": 12774, + "year_id": 12855, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12859, + "make_id": 11790, + "model_id": 12774, + "year_id": 12855, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12860, + "make_id": 11790, + "model_id": 12774, + "year_id": 12855, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12861, + "make_id": 11790, + "model_id": 12774, + "year_id": 12861, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12862, + "make_id": 11790, + "model_id": 12774, + "year_id": 12861, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12863, + "make_id": 11790, + "model_id": 12774, + "year_id": 12861, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12864, + "make_id": 11790, + "model_id": 12774, + "year_id": 12861, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12865, + "make_id": 11790, + "model_id": 12774, + "year_id": 12865, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12866, + "make_id": 11790, + "model_id": 12774, + "year_id": 12865, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12867, + "make_id": 11790, + "model_id": 12774, + "year_id": 12865, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12868, + "make_id": 11790, + "model_id": 12774, + "year_id": 12865, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12869, + "make_id": 11790, + "model_id": 12774, + "year_id": 12869, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12870, + "make_id": 11790, + "model_id": 12774, + "year_id": 12869, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12871, + "make_id": 11790, + "model_id": 12774, + "year_id": 12869, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12872, + "make_id": 11790, + "model_id": 12774, + "year_id": 12869, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12873, + "make_id": 11790, + "model_id": 12774, + "year_id": 12873, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12874, + "make_id": 11790, + "model_id": 12774, + "year_id": 12873, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12875, + "make_id": 11790, + "model_id": 12774, + "year_id": 12873, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12876, + "make_id": 11790, + "model_id": 12774, + "year_id": 12873, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12877, + "make_id": 11790, + "model_id": 12774, + "year_id": 12877, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12878, + "make_id": 11790, + "model_id": 12774, + "year_id": 12877, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12879, + "make_id": 11790, + "model_id": 12774, + "year_id": 12877, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12880, + "make_id": 11790, + "model_id": 12774, + "year_id": 12877, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12881, + "make_id": 11790, + "model_id": 12774, + "year_id": 12881, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12882, + "make_id": 11790, + "model_id": 12774, + "year_id": 12881, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12883, + "make_id": 11790, + "model_id": 12774, + "year_id": 12881, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12884, + "make_id": 11790, + "model_id": 12774, + "year_id": 12881, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12885, + "make_id": 11790, + "model_id": 12774, + "year_id": 12885, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12886, + "make_id": 11790, + "model_id": 12774, + "year_id": 12885, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12887, + "make_id": 11790, + "model_id": 12774, + "year_id": 12885, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12888, + "make_id": 11790, + "model_id": 12774, + "year_id": 12888, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12889, + "make_id": 11790, + "model_id": 12774, + "year_id": 12888, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12890, + "make_id": 11790, + "model_id": 12774, + "year_id": 12888, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12891, + "make_id": 11790, + "model_id": 12774, + "year_id": 12888, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12892, + "make_id": 11790, + "model_id": 12774, + "year_id": 12888, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12893, + "make_id": 11790, + "model_id": 12774, + "year_id": 12888, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12894, + "make_id": 11790, + "model_id": 12774, + "year_id": 12894, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12895, + "make_id": 11790, + "model_id": 12774, + "year_id": 12894, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12896, + "make_id": 11790, + "model_id": 12774, + "year_id": 12894, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12897, + "make_id": 11790, + "model_id": 12774, + "year_id": 12894, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12898, + "make_id": 11790, + "model_id": 12774, + "year_id": 12894, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12899, + "make_id": 11790, + "model_id": 12774, + "year_id": 12894, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12900, + "make_id": 11790, + "model_id": 12774, + "year_id": 12900, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12901, + "make_id": 11790, + "model_id": 12774, + "year_id": 12900, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12902, + "make_id": 11790, + "model_id": 12774, + "year_id": 12900, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12903, + "make_id": 11790, + "model_id": 12774, + "year_id": 12900, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12904, + "make_id": 11790, + "model_id": 12774, + "year_id": 12900, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12905, + "make_id": 11790, + "model_id": 12774, + "year_id": 12900, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12906, + "make_id": 11790, + "model_id": 12774, + "year_id": 12906, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12907, + "make_id": 11790, + "model_id": 12774, + "year_id": 12906, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12908, + "make_id": 11790, + "model_id": 12774, + "year_id": 12906, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12909, + "make_id": 11790, + "model_id": 12774, + "year_id": 12906, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12910, + "make_id": 11790, + "model_id": 12774, + "year_id": 12906, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12911, + "make_id": 11790, + "model_id": 12774, + "year_id": 12906, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12912, + "make_id": 11790, + "model_id": 12774, + "year_id": 12906, + "cylinders": 4, + "displacement": 2.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12913, + "make_id": 11790, + "model_id": 12774, + "year_id": 12913, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12914, + "make_id": 11790, + "model_id": 12774, + "year_id": 12913, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12915, + "make_id": 11790, + "model_id": 12774, + "year_id": 12913, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12916, + "make_id": 11790, + "model_id": 12774, + "year_id": 12913, + "cylinders": 4, + "displacement": 2.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12917, + "make_id": 11790, + "model_id": 12774, + "year_id": 12913, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12918, + "make_id": 11790, + "model_id": 12774, + "year_id": 12913, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12919, + "make_id": 11790, + "model_id": 12774, + "year_id": 12913, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12920, + "make_id": 11790, + "model_id": 12920, + "year_id": 12920, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12921, + "make_id": 11790, + "model_id": 12920, + "year_id": 12920, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12922, + "make_id": 11790, + "model_id": 12920, + "year_id": 12920, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12923, + "make_id": 11790, + "model_id": 12920, + "year_id": 12920, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12924, + "make_id": 11790, + "model_id": 12920, + "year_id": 12920, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12925, + "make_id": 11790, + "model_id": 12920, + "year_id": 12920, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12926, + "make_id": 11790, + "model_id": 12920, + "year_id": 12926, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12927, + "make_id": 11790, + "model_id": 12920, + "year_id": 12926, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12928, + "make_id": 11790, + "model_id": 12920, + "year_id": 12926, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12929, + "make_id": 11790, + "model_id": 12920, + "year_id": 12926, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12930, + "make_id": 11790, + "model_id": 12920, + "year_id": 12930, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12931, + "make_id": 11790, + "model_id": 12920, + "year_id": 12930, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12932, + "make_id": 11790, + "model_id": 12920, + "year_id": 12930, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12933, + "make_id": 11790, + "model_id": 12920, + "year_id": 12930, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12934, + "make_id": 11790, + "model_id": 12934, + "year_id": 12934, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12935, + "make_id": 11790, + "model_id": 12934, + "year_id": 12934, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12936, + "make_id": 11790, + "model_id": 12934, + "year_id": 12934, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12937, + "make_id": 11790, + "model_id": 12934, + "year_id": 12934, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12938, + "make_id": 11790, + "model_id": 12934, + "year_id": 12938, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12939, + "make_id": 11790, + "model_id": 12934, + "year_id": 12938, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12940, + "make_id": 11790, + "model_id": 12934, + "year_id": 12938, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12941, + "make_id": 11790, + "model_id": 12934, + "year_id": 12938, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12942, + "make_id": 11790, + "model_id": 12934, + "year_id": 12942, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12943, + "make_id": 11790, + "model_id": 12934, + "year_id": 12942, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12944, + "make_id": 11790, + "model_id": 12934, + "year_id": 12942, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12945, + "make_id": 11790, + "model_id": 12934, + "year_id": 12942, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 12946, + "make_id": 11790, + "model_id": 12934, + "year_id": 12946, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12947, + "make_id": 11790, + "model_id": 12934, + "year_id": 12946, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12948, + "make_id": 11790, + "model_id": 12934, + "year_id": 12948, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12949, + "make_id": 11790, + "model_id": 12934, + "year_id": 12948, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12950, + "make_id": 11790, + "model_id": 12934, + "year_id": 12950, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12951, + "make_id": 11790, + "model_id": 12934, + "year_id": 12950, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12952, + "make_id": 11790, + "model_id": 12934, + "year_id": 12950, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12953, + "make_id": 11790, + "model_id": 12934, + "year_id": 12950, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12954, + "make_id": 11790, + "model_id": 12934, + "year_id": 12954, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12955, + "make_id": 11790, + "model_id": 12934, + "year_id": 12954, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12956, + "make_id": 11790, + "model_id": 12934, + "year_id": 12954, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12957, + "make_id": 11790, + "model_id": 12934, + "year_id": 12954, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12958, + "make_id": 11790, + "model_id": 12934, + "year_id": 12958, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12959, + "make_id": 11790, + "model_id": 12934, + "year_id": 12958, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12960, + "make_id": 11790, + "model_id": 12934, + "year_id": 12958, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12961, + "make_id": 11790, + "model_id": 12934, + "year_id": 12958, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12962, + "make_id": 11790, + "model_id": 12934, + "year_id": 12962, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12963, + "make_id": 11790, + "model_id": 12934, + "year_id": 12962, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12964, + "make_id": 11790, + "model_id": 12934, + "year_id": 12962, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12965, + "make_id": 11790, + "model_id": 12934, + "year_id": 12962, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12966, + "make_id": 11790, + "model_id": 12966, + "year_id": 12966, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12967, + "make_id": 11790, + "model_id": 12966, + "year_id": 12966, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12968, + "make_id": 11790, + "model_id": 12966, + "year_id": 12966, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12969, + "make_id": 11790, + "model_id": 12966, + "year_id": 12966, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 12970, + "make_id": 11790, + "model_id": 12970, + "year_id": 12970, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "" + }, + { + "id": 12971, + "make_id": 11790, + "model_id": 12970, + "year_id": 12971, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "" + }, + { + "id": 12972, + "make_id": 11790, + "model_id": 12972, + "year_id": 12972, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12973, + "make_id": 11790, + "model_id": 12973, + "year_id": 12973, + "cylinders": 6, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12974, + "make_id": 11790, + "model_id": 12974, + "year_id": 12974, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12975, + "make_id": 11790, + "model_id": 12974, + "year_id": 12974, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12976, + "make_id": 11790, + "model_id": 12976, + "year_id": 12976, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12977, + "make_id": 11790, + "model_id": 12976, + "year_id": 12976, + "cylinders": 8, + "displacement": 5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 12978, + "make_id": 11790, + "model_id": 12978, + "year_id": 12978, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12979, + "make_id": 11790, + "model_id": 12978, + "year_id": 12979, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12980, + "make_id": 11790, + "model_id": 12978, + "year_id": 12980, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12981, + "make_id": 11790, + "model_id": 12978, + "year_id": 12981, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12982, + "make_id": 11790, + "model_id": 12982, + "year_id": 12982, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12983, + "make_id": 11790, + "model_id": 12982, + "year_id": 12982, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12984, + "make_id": 11790, + "model_id": 12982, + "year_id": 12984, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12985, + "make_id": 11790, + "model_id": 12982, + "year_id": 12984, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12986, + "make_id": 11790, + "model_id": 12982, + "year_id": 12986, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12987, + "make_id": 11790, + "model_id": 12982, + "year_id": 12986, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12988, + "make_id": 11790, + "model_id": 12982, + "year_id": 12988, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12989, + "make_id": 11790, + "model_id": 12982, + "year_id": 12988, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12990, + "make_id": 11790, + "model_id": 12990, + "year_id": 12990, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12991, + "make_id": 11790, + "model_id": 12990, + "year_id": 12990, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12992, + "make_id": 11790, + "model_id": 12990, + "year_id": 12992, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12993, + "make_id": 11790, + "model_id": 12990, + "year_id": 12992, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12994, + "make_id": 11790, + "model_id": 12990, + "year_id": 12994, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12995, + "make_id": 11790, + "model_id": 12990, + "year_id": 12994, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12996, + "make_id": 11790, + "model_id": 12990, + "year_id": 12996, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12997, + "make_id": 11790, + "model_id": 12990, + "year_id": 12996, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 12998, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 12999, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13000, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 13001, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13002, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13003, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13004, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 13005, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13006, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13007, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13008, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "" + }, + { + "id": 13009, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13010, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13011, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13012, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13013, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13014, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13015, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13016, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13017, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13018, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13019, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13020, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13021, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13022, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 13023, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13024, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13025, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13026, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13027, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13028, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13029, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13030, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13031, + "make_id": 11790, + "model_id": 12998, + "year_id": 12998, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13032, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13033, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13034, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 13035, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13036, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13037, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13038, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13039, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13040, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13041, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13042, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13043, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13044, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13045, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13046, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13047, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13048, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13049, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13050, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13051, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13052, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 13053, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13054, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13055, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13056, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13057, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13058, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13059, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13060, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13061, + "make_id": 11790, + "model_id": 12998, + "year_id": 13032, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13062, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13063, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13064, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 13065, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13066, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13067, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13068, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13069, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13070, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13071, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13072, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13073, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13074, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13075, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13076, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13077, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13078, + "make_id": 11790, + "model_id": 12998, + "year_id": 13062, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13079, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13080, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13081, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13082, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13083, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13084, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13085, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13086, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13087, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13088, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13089, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13090, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13091, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13092, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13093, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13094, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13095, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13096, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13097, + "make_id": 11790, + "model_id": 12998, + "year_id": 13079, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13098, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13099, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13100, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13101, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13102, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13103, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13104, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13105, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13106, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13107, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13108, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13109, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13110, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13111, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13112, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13113, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13114, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13115, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13116, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13117, + "make_id": 11790, + "model_id": 12998, + "year_id": 13098, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13118, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13119, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13120, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13121, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13122, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13123, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13124, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13125, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13126, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13127, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13128, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13129, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13130, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13131, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13132, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13133, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13134, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13135, + "make_id": 11790, + "model_id": 12998, + "year_id": 13118, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13136, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13137, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13138, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13139, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13140, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13141, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13142, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13143, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13144, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13145, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13146, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13147, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13148, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13149, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13150, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13151, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13152, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13153, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13154, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13155, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13156, + "make_id": 11790, + "model_id": 12998, + "year_id": 13136, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13157, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13158, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13159, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13160, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13161, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13162, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13163, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13164, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13165, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13166, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13167, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13168, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13169, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13170, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13171, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13172, + "make_id": 11790, + "model_id": 12998, + "year_id": 13157, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13173, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13174, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13175, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13176, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13177, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13178, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13179, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13180, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13181, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13182, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13183, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13184, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13185, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13186, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13187, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13188, + "make_id": 11790, + "model_id": 12998, + "year_id": 13173, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13189, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13190, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13191, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13192, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13193, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13194, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13195, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13196, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13197, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13198, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13199, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13200, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13201, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13202, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13203, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13204, + "make_id": 11790, + "model_id": 12998, + "year_id": 13189, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13205, + "make_id": 11790, + "model_id": 12998, + "year_id": 13205, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13206, + "make_id": 11790, + "model_id": 12998, + "year_id": 13205, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13207, + "make_id": 11790, + "model_id": 12998, + "year_id": 13205, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13208, + "make_id": 11790, + "model_id": 12998, + "year_id": 13205, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13209, + "make_id": 11790, + "model_id": 12998, + "year_id": 13205, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13210, + "make_id": 11790, + "model_id": 12998, + "year_id": 13205, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13211, + "make_id": 11790, + "model_id": 12998, + "year_id": 13205, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13212, + "make_id": 11790, + "model_id": 12998, + "year_id": 13205, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13213, + "make_id": 11790, + "model_id": 12998, + "year_id": 13205, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13214, + "make_id": 11790, + "model_id": 12998, + "year_id": 13205, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13215, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13216, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13217, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13218, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13219, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13220, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13221, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13222, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13223, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13224, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13225, + "make_id": 11790, + "model_id": 12998, + "year_id": 13215, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13226, + "make_id": 11790, + "model_id": 12998, + "year_id": 13226, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13227, + "make_id": 11790, + "model_id": 12998, + "year_id": 13226, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13228, + "make_id": 11790, + "model_id": 12998, + "year_id": 13226, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13229, + "make_id": 11790, + "model_id": 12998, + "year_id": 13226, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13230, + "make_id": 11790, + "model_id": 12998, + "year_id": 13226, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13231, + "make_id": 11790, + "model_id": 12998, + "year_id": 13226, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13232, + "make_id": 11790, + "model_id": 12998, + "year_id": 13226, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13233, + "make_id": 11790, + "model_id": 12998, + "year_id": 13226, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13234, + "make_id": 11790, + "model_id": 12998, + "year_id": 13226, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13235, + "make_id": 11790, + "model_id": 12998, + "year_id": 13226, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13236, + "make_id": 11790, + "model_id": 12998, + "year_id": 13236, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13237, + "make_id": 11790, + "model_id": 12998, + "year_id": 13236, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13238, + "make_id": 11790, + "model_id": 12998, + "year_id": 13236, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13239, + "make_id": 11790, + "model_id": 12998, + "year_id": 13236, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13240, + "make_id": 11790, + "model_id": 12998, + "year_id": 13236, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13241, + "make_id": 11790, + "model_id": 12998, + "year_id": 13236, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13242, + "make_id": 11790, + "model_id": 12998, + "year_id": 13236, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13243, + "make_id": 11790, + "model_id": 12998, + "year_id": 13236, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13244, + "make_id": 11790, + "model_id": 12998, + "year_id": 13236, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13245, + "make_id": 11790, + "model_id": 12998, + "year_id": 13236, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13246, + "make_id": 11790, + "model_id": 12998, + "year_id": 13246, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13247, + "make_id": 11790, + "model_id": 12998, + "year_id": 13246, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13248, + "make_id": 11790, + "model_id": 12998, + "year_id": 13246, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13249, + "make_id": 11790, + "model_id": 12998, + "year_id": 13246, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13250, + "make_id": 11790, + "model_id": 12998, + "year_id": 13246, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13251, + "make_id": 11790, + "model_id": 12998, + "year_id": 13246, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13252, + "make_id": 11790, + "model_id": 12998, + "year_id": 13246, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13253, + "make_id": 11790, + "model_id": 12998, + "year_id": 13246, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13254, + "make_id": 11790, + "model_id": 12998, + "year_id": 13246, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13255, + "make_id": 11790, + "model_id": 12998, + "year_id": 13246, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13256, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13257, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13258, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13259, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13260, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13261, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13262, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13263, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13264, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13265, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13266, + "make_id": 11790, + "model_id": 12998, + "year_id": 13256, + "cylinders": 8, + "displacement": 5.4, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13267, + "make_id": 11790, + "model_id": 12998, + "year_id": 13267, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13268, + "make_id": 11790, + "model_id": 12998, + "year_id": 13267, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13269, + "make_id": 11790, + "model_id": 12998, + "year_id": 13267, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13270, + "make_id": 11790, + "model_id": 12998, + "year_id": 13267, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13271, + "make_id": 11790, + "model_id": 12998, + "year_id": 13267, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13272, + "make_id": 11790, + "model_id": 12998, + "year_id": 13267, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13273, + "make_id": 11790, + "model_id": 12998, + "year_id": 13267, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13274, + "make_id": 11790, + "model_id": 12998, + "year_id": 13267, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13275, + "make_id": 11790, + "model_id": 12998, + "year_id": 13267, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13276, + "make_id": 11790, + "model_id": 12998, + "year_id": 13267, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13277, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13278, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13279, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13280, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13281, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13282, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13283, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13284, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13285, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13286, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13287, + "make_id": 11790, + "model_id": 12998, + "year_id": 13277, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13288, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13289, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13290, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13291, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13292, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13293, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13294, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13295, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13296, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13297, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13298, + "make_id": 11790, + "model_id": 12998, + "year_id": 13288, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13299, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13300, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13301, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13302, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13303, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13304, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13305, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13306, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13307, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13308, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13309, + "make_id": 11790, + "model_id": 12998, + "year_id": 13299, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13310, + "make_id": 11790, + "model_id": 12998, + "year_id": 13310, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13311, + "make_id": 11790, + "model_id": 12998, + "year_id": 13310, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13312, + "make_id": 11790, + "model_id": 12998, + "year_id": 13310, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13313, + "make_id": 11790, + "model_id": 12998, + "year_id": 13310, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13314, + "make_id": 11790, + "model_id": 12998, + "year_id": 13310, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13315, + "make_id": 11790, + "model_id": 12998, + "year_id": 13310, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13316, + "make_id": 11790, + "model_id": 12998, + "year_id": 13310, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13317, + "make_id": 11790, + "model_id": 12998, + "year_id": 13310, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13318, + "make_id": 11790, + "model_id": 12998, + "year_id": 13310, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13319, + "make_id": 11790, + "model_id": 12998, + "year_id": 13310, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13320, + "make_id": 11790, + "model_id": 12998, + "year_id": 13320, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13321, + "make_id": 11790, + "model_id": 12998, + "year_id": 13320, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13322, + "make_id": 11790, + "model_id": 12998, + "year_id": 13320, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13323, + "make_id": 11790, + "model_id": 12998, + "year_id": 13320, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13324, + "make_id": 11790, + "model_id": 12998, + "year_id": 13320, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13325, + "make_id": 11790, + "model_id": 12998, + "year_id": 13320, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13326, + "make_id": 11790, + "model_id": 12998, + "year_id": 13326, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13327, + "make_id": 11790, + "model_id": 12998, + "year_id": 13326, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13328, + "make_id": 11790, + "model_id": 12998, + "year_id": 13326, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13329, + "make_id": 11790, + "model_id": 12998, + "year_id": 13326, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13330, + "make_id": 11790, + "model_id": 12998, + "year_id": 13326, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13331, + "make_id": 11790, + "model_id": 12998, + "year_id": 13326, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13332, + "make_id": 11790, + "model_id": 12998, + "year_id": 13326, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13333, + "make_id": 11790, + "model_id": 12998, + "year_id": 13326, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13334, + "make_id": 11790, + "model_id": 12998, + "year_id": 13334, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13335, + "make_id": 11790, + "model_id": 12998, + "year_id": 13334, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13336, + "make_id": 11790, + "model_id": 12998, + "year_id": 13334, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13337, + "make_id": 11790, + "model_id": 12998, + "year_id": 13334, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13338, + "make_id": 11790, + "model_id": 12998, + "year_id": 13334, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13339, + "make_id": 11790, + "model_id": 12998, + "year_id": 13334, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13340, + "make_id": 11790, + "model_id": 12998, + "year_id": 13334, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13341, + "make_id": 11790, + "model_id": 12998, + "year_id": 13334, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13342, + "make_id": 11790, + "model_id": 12998, + "year_id": 13342, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13343, + "make_id": 11790, + "model_id": 12998, + "year_id": 13342, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13344, + "make_id": 11790, + "model_id": 12998, + "year_id": 13342, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13345, + "make_id": 11790, + "model_id": 12998, + "year_id": 13342, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13346, + "make_id": 11790, + "model_id": 12998, + "year_id": 13342, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13347, + "make_id": 11790, + "model_id": 12998, + "year_id": 13342, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13348, + "make_id": 11790, + "model_id": 12998, + "year_id": 13342, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13349, + "make_id": 11790, + "model_id": 12998, + "year_id": 13342, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13350, + "make_id": 11790, + "model_id": 12998, + "year_id": 13350, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13351, + "make_id": 11790, + "model_id": 12998, + "year_id": 13350, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13352, + "make_id": 11790, + "model_id": 12998, + "year_id": 13350, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13353, + "make_id": 11790, + "model_id": 12998, + "year_id": 13350, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13354, + "make_id": 11790, + "model_id": 12998, + "year_id": 13350, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13355, + "make_id": 11790, + "model_id": 12998, + "year_id": 13350, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13356, + "make_id": 11790, + "model_id": 12998, + "year_id": 13356, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13357, + "make_id": 11790, + "model_id": 12998, + "year_id": 13356, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13358, + "make_id": 11790, + "model_id": 12998, + "year_id": 13356, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13359, + "make_id": 11790, + "model_id": 12998, + "year_id": 13356, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13360, + "make_id": 11790, + "model_id": 12998, + "year_id": 13356, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13361, + "make_id": 11790, + "model_id": 12998, + "year_id": 13356, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13362, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13363, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13364, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13365, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13366, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13367, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13368, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13369, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 8, + "displacement": 6.2, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13370, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13371, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13372, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13373, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13374, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13375, + "make_id": 11790, + "model_id": 12998, + "year_id": 13362, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13376, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13377, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13378, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13379, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13380, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13381, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13382, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13383, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 8, + "displacement": 6.2, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13384, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 6, + "displacement": 3.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13385, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 6, + "displacement": 3.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13386, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13387, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13388, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 8, + "displacement": 5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13389, + "make_id": 11790, + "model_id": 12998, + "year_id": 13376, + "cylinders": 8, + "displacement": 5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13390, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13391, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13392, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13393, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13394, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13395, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13396, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13397, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 8, + "displacement": 6.2, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13398, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 8, + "displacement": 5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13399, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 8, + "displacement": 5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13400, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 6, + "displacement": 3.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13401, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 6, + "displacement": 3.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13402, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13403, + "make_id": 11790, + "model_id": 12998, + "year_id": 13390, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13404, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13405, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13406, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13407, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13408, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13409, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13410, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13411, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13412, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13413, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 8, + "displacement": 6.2, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13414, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 6, + "displacement": 3.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13415, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 6, + "displacement": 3.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13416, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 8, + "displacement": 5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13417, + "make_id": 11790, + "model_id": 12998, + "year_id": 13404, + "cylinders": 8, + "displacement": 5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13418, + "make_id": 11790, + "model_id": 12998, + "year_id": 13418, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13419, + "make_id": 11790, + "model_id": 12998, + "year_id": 13418, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13420, + "make_id": 11790, + "model_id": 12998, + "year_id": 13418, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13421, + "make_id": 11790, + "model_id": 12998, + "year_id": 13418, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13422, + "make_id": 11790, + "model_id": 12998, + "year_id": 13418, + "cylinders": 6, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13423, + "make_id": 11790, + "model_id": 12998, + "year_id": 13418, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13424, + "make_id": 11790, + "model_id": 12998, + "year_id": 13418, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13425, + "make_id": 11790, + "model_id": 12998, + "year_id": 13418, + "cylinders": 8, + "displacement": 5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13426, + "make_id": 11790, + "model_id": 12998, + "year_id": 13426, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13427, + "make_id": 11790, + "model_id": 12998, + "year_id": 13426, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13428, + "make_id": 11790, + "model_id": 12998, + "year_id": 13426, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13429, + "make_id": 11790, + "model_id": 12998, + "year_id": 13426, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13430, + "make_id": 11790, + "model_id": 12998, + "year_id": 13426, + "cylinders": 6, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13431, + "make_id": 11790, + "model_id": 12998, + "year_id": 13426, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13432, + "make_id": 11790, + "model_id": 12998, + "year_id": 13426, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13433, + "make_id": 11790, + "model_id": 12998, + "year_id": 13426, + "cylinders": 8, + "displacement": 5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13434, + "make_id": 11790, + "model_id": 13434, + "year_id": 13434, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13435, + "make_id": 11790, + "model_id": 13435, + "year_id": 13435, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13436, + "make_id": 11790, + "model_id": 13435, + "year_id": 13436, + "cylinders": 8, + "displacement": 6.2, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13437, + "make_id": 11790, + "model_id": 13435, + "year_id": 13437, + "cylinders": 8, + "displacement": 6.2, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13438, + "make_id": 11790, + "model_id": 13435, + "year_id": 13438, + "cylinders": 8, + "displacement": 6.2, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13439, + "make_id": 11790, + "model_id": 13439, + "year_id": 13439, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13440, + "make_id": 11790, + "model_id": 13440, + "year_id": 13440, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13441, + "make_id": 11790, + "model_id": 13440, + "year_id": 13440, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13442, + "make_id": 11790, + "model_id": 13440, + "year_id": 13442, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13443, + "make_id": 11790, + "model_id": 13440, + "year_id": 13442, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13444, + "make_id": 11790, + "model_id": 13444, + "year_id": 13444, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13445, + "make_id": 11790, + "model_id": 13444, + "year_id": 13444, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13446, + "make_id": 11790, + "model_id": 13444, + "year_id": 13444, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13447, + "make_id": 11790, + "model_id": 13444, + "year_id": 13444, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13448, + "make_id": 11790, + "model_id": 13444, + "year_id": 13444, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13449, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13450, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 13451, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13452, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13453, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13454, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13455, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13456, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13457, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13458, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13459, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13460, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13461, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13462, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13463, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13464, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13465, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13466, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13467, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13468, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13469, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13470, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13471, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13472, + "make_id": 11790, + "model_id": 13449, + "year_id": 13449, + "cylinders": 6, + "displacement": 4.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13473, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13474, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 13475, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13476, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13477, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13478, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 13479, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13480, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13481, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13482, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13483, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13484, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13485, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13486, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13487, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 13488, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13489, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13490, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13491, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13492, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13493, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13494, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13495, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13496, + "make_id": 11790, + "model_id": 13449, + "year_id": 13473, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13497, + "make_id": 11790, + "model_id": 13449, + "year_id": 13497, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13498, + "make_id": 11790, + "model_id": 13449, + "year_id": 13497, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13499, + "make_id": 11790, + "model_id": 13449, + "year_id": 13497, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13500, + "make_id": 11790, + "model_id": 13449, + "year_id": 13497, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13501, + "make_id": 11790, + "model_id": 13449, + "year_id": 13497, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13502, + "make_id": 11790, + "model_id": 13449, + "year_id": 13497, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13503, + "make_id": 11790, + "model_id": 13449, + "year_id": 13497, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13504, + "make_id": 11790, + "model_id": 13449, + "year_id": 13497, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13505, + "make_id": 11790, + "model_id": 13449, + "year_id": 13497, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13506, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13507, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13508, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13509, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13510, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13511, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13512, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13513, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13514, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13515, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13516, + "make_id": 11790, + "model_id": 13449, + "year_id": 13506, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13517, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13518, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13519, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13520, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13521, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13522, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13523, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13524, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13525, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13526, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13527, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13528, + "make_id": 11790, + "model_id": 13449, + "year_id": 13517, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13529, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13530, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13531, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13532, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13533, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13534, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13535, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13536, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13537, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13538, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13539, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13540, + "make_id": 11790, + "model_id": 13449, + "year_id": 13529, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13541, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13542, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13543, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13544, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13545, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13546, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13547, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13548, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13549, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13550, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13551, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13552, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13553, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13554, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13555, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13556, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13557, + "make_id": 11790, + "model_id": 13449, + "year_id": 13541, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13558, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13559, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13560, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13561, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13562, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13563, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13564, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13565, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 6, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13566, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13567, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13568, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13569, + "make_id": 11790, + "model_id": 13449, + "year_id": 13558, + "cylinders": 8, + "displacement": 5.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13570, + "make_id": 11790, + "model_id": 13449, + "year_id": 13570, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13571, + "make_id": 11790, + "model_id": 13449, + "year_id": 13570, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13572, + "make_id": 11790, + "model_id": 13449, + "year_id": 13570, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13573, + "make_id": 11790, + "model_id": 13449, + "year_id": 13570, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13574, + "make_id": 11790, + "model_id": 13449, + "year_id": 13570, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13575, + "make_id": 11790, + "model_id": 13449, + "year_id": 13570, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13576, + "make_id": 11790, + "model_id": 13449, + "year_id": 13570, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13577, + "make_id": 11790, + "model_id": 13449, + "year_id": 13577, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13578, + "make_id": 11790, + "model_id": 13449, + "year_id": 13577, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13579, + "make_id": 11790, + "model_id": 13449, + "year_id": 13577, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13580, + "make_id": 11790, + "model_id": 13449, + "year_id": 13577, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13581, + "make_id": 11790, + "model_id": 13449, + "year_id": 13577, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13582, + "make_id": 11790, + "model_id": 13449, + "year_id": 13577, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13583, + "make_id": 11790, + "model_id": 13449, + "year_id": 13577, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13584, + "make_id": 11790, + "model_id": 13449, + "year_id": 13584, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13585, + "make_id": 11790, + "model_id": 13449, + "year_id": 13584, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13586, + "make_id": 11790, + "model_id": 13449, + "year_id": 13584, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13587, + "make_id": 11790, + "model_id": 13449, + "year_id": 13584, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13588, + "make_id": 11790, + "model_id": 13449, + "year_id": 13584, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13589, + "make_id": 11790, + "model_id": 13449, + "year_id": 13589, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13590, + "make_id": 11790, + "model_id": 13449, + "year_id": 13589, + "cylinders": 6, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13591, + "make_id": 11790, + "model_id": 13449, + "year_id": 13589, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13592, + "make_id": 11790, + "model_id": 13449, + "year_id": 13589, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13593, + "make_id": 11790, + "model_id": 13449, + "year_id": 13589, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13594, + "make_id": 11790, + "model_id": 13449, + "year_id": 13594, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13595, + "make_id": 11790, + "model_id": 13449, + "year_id": 13594, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13596, + "make_id": 11790, + "model_id": 13449, + "year_id": 13594, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13597, + "make_id": 11790, + "model_id": 13449, + "year_id": 13594, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13598, + "make_id": 11790, + "model_id": 13449, + "year_id": 13594, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13599, + "make_id": 11790, + "model_id": 13449, + "year_id": 13594, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13600, + "make_id": 11790, + "model_id": 13449, + "year_id": 13600, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13601, + "make_id": 11790, + "model_id": 13449, + "year_id": 13600, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13602, + "make_id": 11790, + "model_id": 13449, + "year_id": 13600, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13603, + "make_id": 11790, + "model_id": 13449, + "year_id": 13600, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13604, + "make_id": 11790, + "model_id": 13449, + "year_id": 13600, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13605, + "make_id": 11790, + "model_id": 13449, + "year_id": 13600, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13606, + "make_id": 11790, + "model_id": 13449, + "year_id": 13606, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13607, + "make_id": 11790, + "model_id": 13449, + "year_id": 13606, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13608, + "make_id": 11790, + "model_id": 13449, + "year_id": 13606, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13609, + "make_id": 11790, + "model_id": 13449, + "year_id": 13606, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13610, + "make_id": 11790, + "model_id": 13449, + "year_id": 13606, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13611, + "make_id": 11790, + "model_id": 13449, + "year_id": 13606, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13612, + "make_id": 11790, + "model_id": 13612, + "year_id": 13612, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13613, + "make_id": 11790, + "model_id": 13612, + "year_id": 13612, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13614, + "make_id": 11790, + "model_id": 13612, + "year_id": 13612, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13615, + "make_id": 11790, + "model_id": 13615, + "year_id": 13615, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13616, + "make_id": 11790, + "model_id": 13615, + "year_id": 13616, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13617, + "make_id": 11790, + "model_id": 13617, + "year_id": 13617, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13618, + "make_id": 11790, + "model_id": 13617, + "year_id": 13617, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13619, + "make_id": 11790, + "model_id": 13617, + "year_id": 13619, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13620, + "make_id": 11790, + "model_id": 13617, + "year_id": 13619, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13621, + "make_id": 11790, + "model_id": 13617, + "year_id": 13619, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13622, + "make_id": 11790, + "model_id": 13617, + "year_id": 13622, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13623, + "make_id": 11790, + "model_id": 13617, + "year_id": 13622, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13624, + "make_id": 11790, + "model_id": 13617, + "year_id": 13624, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13625, + "make_id": 11790, + "model_id": 13617, + "year_id": 13624, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13626, + "make_id": 11790, + "model_id": 13617, + "year_id": 13626, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13627, + "make_id": 11790, + "model_id": 13617, + "year_id": 13626, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13628, + "make_id": 11790, + "model_id": 13617, + "year_id": 13628, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13629, + "make_id": 11790, + "model_id": 13617, + "year_id": 13628, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13630, + "make_id": 11790, + "model_id": 13630, + "year_id": 13630, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13631, + "make_id": 11790, + "model_id": 13630, + "year_id": 13630, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13632, + "make_id": 11790, + "model_id": 13630, + "year_id": 13632, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13633, + "make_id": 11790, + "model_id": 13630, + "year_id": 13632, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13634, + "make_id": 11790, + "model_id": 13630, + "year_id": 13634, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13635, + "make_id": 11790, + "model_id": 13630, + "year_id": 13634, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13636, + "make_id": 11790, + "model_id": 13630, + "year_id": 13636, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13637, + "make_id": 11790, + "model_id": 13630, + "year_id": 13636, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13638, + "make_id": 11790, + "model_id": 13630, + "year_id": 13638, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13639, + "make_id": 11790, + "model_id": 13630, + "year_id": 13638, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13640, + "make_id": 11790, + "model_id": 13630, + "year_id": 13640, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13641, + "make_id": 11790, + "model_id": 13630, + "year_id": 13640, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13642, + "make_id": 11790, + "model_id": 13642, + "year_id": 13642, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13643, + "make_id": 11790, + "model_id": 13642, + "year_id": 13643, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13644, + "make_id": 11790, + "model_id": 13642, + "year_id": 13644, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13645, + "make_id": 11790, + "model_id": 13642, + "year_id": 13645, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13646, + "make_id": 11790, + "model_id": 13642, + "year_id": 13645, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13647, + "make_id": 11790, + "model_id": 13642, + "year_id": 13647, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13648, + "make_id": 11790, + "model_id": 13642, + "year_id": 13648, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13649, + "make_id": 11790, + "model_id": 13649, + "year_id": 13649, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13650, + "make_id": 11790, + "model_id": 13649, + "year_id": 13650, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13651, + "make_id": 11790, + "model_id": 13649, + "year_id": 13651, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13652, + "make_id": 11790, + "model_id": 13652, + "year_id": 13652, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13653, + "make_id": 11790, + "model_id": 13652, + "year_id": 13652, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13654, + "make_id": 11790, + "model_id": 13652, + "year_id": 13652, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13655, + "make_id": 11790, + "model_id": 13652, + "year_id": 13655, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13656, + "make_id": 11790, + "model_id": 13652, + "year_id": 13655, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13657, + "make_id": 11790, + "model_id": 13652, + "year_id": 13655, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13658, + "make_id": 11790, + "model_id": 13652, + "year_id": 13658, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13659, + "make_id": 11790, + "model_id": 13652, + "year_id": 13658, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13660, + "make_id": 11790, + "model_id": 13660, + "year_id": 13660, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13661, + "make_id": 11790, + "model_id": 13660, + "year_id": 13660, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13662, + "make_id": 11790, + "model_id": 13660, + "year_id": 13662, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13663, + "make_id": 11790, + "model_id": 13660, + "year_id": 13662, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13664, + "make_id": 11790, + "model_id": 13660, + "year_id": 13662, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13665, + "make_id": 11790, + "model_id": 13660, + "year_id": 13665, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13666, + "make_id": 11790, + "model_id": 13660, + "year_id": 13665, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13667, + "make_id": 11790, + "model_id": 13660, + "year_id": 13665, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13668, + "make_id": 11790, + "model_id": 13660, + "year_id": 13668, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13669, + "make_id": 11790, + "model_id": 13660, + "year_id": 13668, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13670, + "make_id": 11790, + "model_id": 13660, + "year_id": 13668, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13671, + "make_id": 11790, + "model_id": 13660, + "year_id": 13671, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13672, + "make_id": 11790, + "model_id": 13660, + "year_id": 13671, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13673, + "make_id": 11790, + "model_id": 13660, + "year_id": 13671, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13674, + "make_id": 11790, + "model_id": 13660, + "year_id": 13674, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13675, + "make_id": 11790, + "model_id": 13660, + "year_id": 13674, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13676, + "make_id": 11790, + "model_id": 13660, + "year_id": 13674, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13677, + "make_id": 11790, + "model_id": 13660, + "year_id": 13677, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13678, + "make_id": 11790, + "model_id": 13660, + "year_id": 13677, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13679, + "make_id": 11790, + "model_id": 13660, + "year_id": 13677, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13680, + "make_id": 11790, + "model_id": 13660, + "year_id": 13680, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13681, + "make_id": 11790, + "model_id": 13660, + "year_id": 13680, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13682, + "make_id": 11790, + "model_id": 13660, + "year_id": 13680, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13683, + "make_id": 11790, + "model_id": 13683, + "year_id": 13683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13684, + "make_id": 11790, + "model_id": 13683, + "year_id": 13683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13685, + "make_id": 11790, + "model_id": 13683, + "year_id": 13683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13686, + "make_id": 11790, + "model_id": 13683, + "year_id": 13683, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13687, + "make_id": 11790, + "model_id": 13683, + "year_id": 13687, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13688, + "make_id": 11790, + "model_id": 13683, + "year_id": 13687, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13689, + "make_id": 11790, + "model_id": 13683, + "year_id": 13687, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13690, + "make_id": 11790, + "model_id": 13683, + "year_id": 13687, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13691, + "make_id": 11790, + "model_id": 13683, + "year_id": 13691, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13692, + "make_id": 11790, + "model_id": 13683, + "year_id": 13691, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13693, + "make_id": 11790, + "model_id": 13683, + "year_id": 13691, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13694, + "make_id": 11790, + "model_id": 13683, + "year_id": 13691, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13695, + "make_id": 11790, + "model_id": 13683, + "year_id": 13691, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13696, + "make_id": 11790, + "model_id": 13683, + "year_id": 13696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13697, + "make_id": 11790, + "model_id": 13683, + "year_id": 13696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13698, + "make_id": 11790, + "model_id": 13683, + "year_id": 13696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13699, + "make_id": 11790, + "model_id": 13683, + "year_id": 13696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13700, + "make_id": 11790, + "model_id": 13683, + "year_id": 13696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13701, + "make_id": 11790, + "model_id": 13683, + "year_id": 13696, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13702, + "make_id": 11790, + "model_id": 13683, + "year_id": 13696, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13703, + "make_id": 11790, + "model_id": 13683, + "year_id": 13703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13704, + "make_id": 11790, + "model_id": 13683, + "year_id": 13703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13705, + "make_id": 11790, + "model_id": 13683, + "year_id": 13703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13706, + "make_id": 11790, + "model_id": 13683, + "year_id": 13703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13707, + "make_id": 11790, + "model_id": 13683, + "year_id": 13703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13708, + "make_id": 11790, + "model_id": 13683, + "year_id": 13703, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13709, + "make_id": 11790, + "model_id": 13683, + "year_id": 13703, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13710, + "make_id": 11790, + "model_id": 13683, + "year_id": 13710, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13711, + "make_id": 11790, + "model_id": 13683, + "year_id": 13710, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13712, + "make_id": 11790, + "model_id": 13683, + "year_id": 13710, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13713, + "make_id": 11790, + "model_id": 13683, + "year_id": 13713, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13714, + "make_id": 11790, + "model_id": 13683, + "year_id": 13713, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13715, + "make_id": 11790, + "model_id": 13683, + "year_id": 13713, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13716, + "make_id": 11790, + "model_id": 13683, + "year_id": 13716, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13717, + "make_id": 11790, + "model_id": 13683, + "year_id": 13716, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13718, + "make_id": 11790, + "model_id": 13683, + "year_id": 13716, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13719, + "make_id": 11790, + "model_id": 13683, + "year_id": 13719, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13720, + "make_id": 11790, + "model_id": 13683, + "year_id": 13719, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13721, + "make_id": 11790, + "model_id": 13683, + "year_id": 13721, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13722, + "make_id": 11790, + "model_id": 13683, + "year_id": 13721, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13723, + "make_id": 11790, + "model_id": 13683, + "year_id": 13723, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13724, + "make_id": 11790, + "model_id": 13683, + "year_id": 13723, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13725, + "make_id": 11790, + "model_id": 13683, + "year_id": 13725, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13726, + "make_id": 11790, + "model_id": 13683, + "year_id": 13725, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13727, + "make_id": 11790, + "model_id": 13683, + "year_id": 13727, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13728, + "make_id": 11790, + "model_id": 13683, + "year_id": 13727, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13729, + "make_id": 11790, + "model_id": 13683, + "year_id": 13727, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13730, + "make_id": 11790, + "model_id": 13683, + "year_id": 13727, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13731, + "make_id": 11790, + "model_id": 13683, + "year_id": 13727, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13732, + "make_id": 11790, + "model_id": 13683, + "year_id": 13727, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13733, + "make_id": 11790, + "model_id": 13683, + "year_id": 13733, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13734, + "make_id": 11790, + "model_id": 13683, + "year_id": 13733, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13735, + "make_id": 11790, + "model_id": 13683, + "year_id": 13733, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13736, + "make_id": 11790, + "model_id": 13683, + "year_id": 13733, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13737, + "make_id": 11790, + "model_id": 13683, + "year_id": 13733, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13738, + "make_id": 11790, + "model_id": 13683, + "year_id": 13733, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13739, + "make_id": 11790, + "model_id": 13683, + "year_id": 13733, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13740, + "make_id": 11790, + "model_id": 13683, + "year_id": 13740, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13741, + "make_id": 11790, + "model_id": 13683, + "year_id": 13740, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13742, + "make_id": 11790, + "model_id": 13683, + "year_id": 13740, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13743, + "make_id": 11790, + "model_id": 13683, + "year_id": 13740, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13744, + "make_id": 11790, + "model_id": 13683, + "year_id": 13740, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13745, + "make_id": 11790, + "model_id": 13683, + "year_id": 13740, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13746, + "make_id": 11790, + "model_id": 13683, + "year_id": 13740, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13747, + "make_id": 11790, + "model_id": 13683, + "year_id": 13747, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13748, + "make_id": 11790, + "model_id": 13683, + "year_id": 13747, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13749, + "make_id": 11790, + "model_id": 13683, + "year_id": 13747, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13750, + "make_id": 11790, + "model_id": 13683, + "year_id": 13747, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13751, + "make_id": 11790, + "model_id": 13683, + "year_id": 13747, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13752, + "make_id": 11790, + "model_id": 13683, + "year_id": 13747, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13753, + "make_id": 11790, + "model_id": 13683, + "year_id": 13747, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13754, + "make_id": 11790, + "model_id": 13683, + "year_id": 13747, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13755, + "make_id": 11790, + "model_id": 13683, + "year_id": 13755, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13756, + "make_id": 11790, + "model_id": 13683, + "year_id": 13755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13757, + "make_id": 11790, + "model_id": 13683, + "year_id": 13755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13758, + "make_id": 11790, + "model_id": 13683, + "year_id": 13755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13759, + "make_id": 11790, + "model_id": 13683, + "year_id": 13755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13760, + "make_id": 11790, + "model_id": 13683, + "year_id": 13755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13761, + "make_id": 11790, + "model_id": 13683, + "year_id": 13755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13762, + "make_id": 11790, + "model_id": 13683, + "year_id": 13755, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13763, + "make_id": 11790, + "model_id": 13763, + "year_id": 13763, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13764, + "make_id": 11790, + "model_id": 13763, + "year_id": 13764, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 13765, + "make_id": 11790, + "model_id": 13763, + "year_id": 13765, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 13766, + "make_id": 11790, + "model_id": 13763, + "year_id": 13766, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 13767, + "make_id": 11790, + "model_id": 13763, + "year_id": 13767, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 13768, + "make_id": 11790, + "model_id": 13768, + "year_id": 13768, + "cylinders": 4, + "displacement": 2.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13769, + "make_id": 11790, + "model_id": 13769, + "year_id": 13769, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13770, + "make_id": 11790, + "model_id": 13769, + "year_id": 13769, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13771, + "make_id": 11790, + "model_id": 13769, + "year_id": 13771, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13772, + "make_id": 11790, + "model_id": 13769, + "year_id": 13772, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 13773, + "make_id": 11790, + "model_id": 13769, + "year_id": 13773, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13774, + "make_id": 11790, + "model_id": 13774, + "year_id": 13774, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13775, + "make_id": 11790, + "model_id": 13775, + "year_id": 13775, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13776, + "make_id": 11790, + "model_id": 13775, + "year_id": 13775, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13777, + "make_id": 11790, + "model_id": 13775, + "year_id": 13777, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13778, + "make_id": 11790, + "model_id": 13775, + "year_id": 13777, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13779, + "make_id": 11790, + "model_id": 13775, + "year_id": 13777, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13780, + "make_id": 11790, + "model_id": 13775, + "year_id": 13777, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13781, + "make_id": 11790, + "model_id": 13775, + "year_id": 13781, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13782, + "make_id": 11790, + "model_id": 13775, + "year_id": 13781, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13783, + "make_id": 11790, + "model_id": 13775, + "year_id": 13781, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13784, + "make_id": 11790, + "model_id": 13775, + "year_id": 13781, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13785, + "make_id": 11790, + "model_id": 13775, + "year_id": 13785, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13786, + "make_id": 11790, + "model_id": 13775, + "year_id": 13785, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13787, + "make_id": 11790, + "model_id": 13775, + "year_id": 13785, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13788, + "make_id": 11790, + "model_id": 13775, + "year_id": 13785, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13789, + "make_id": 11790, + "model_id": 13775, + "year_id": 13785, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13790, + "make_id": 11790, + "model_id": 13775, + "year_id": 13785, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13791, + "make_id": 11790, + "model_id": 13775, + "year_id": 13791, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13792, + "make_id": 11790, + "model_id": 13775, + "year_id": 13791, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13793, + "make_id": 11790, + "model_id": 13775, + "year_id": 13791, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13794, + "make_id": 11790, + "model_id": 13775, + "year_id": 13791, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13795, + "make_id": 11790, + "model_id": 13775, + "year_id": 13791, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13796, + "make_id": 11790, + "model_id": 13775, + "year_id": 13796, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13797, + "make_id": 11790, + "model_id": 13775, + "year_id": 13796, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13798, + "make_id": 11790, + "model_id": 13775, + "year_id": 13798, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13799, + "make_id": 11790, + "model_id": 13775, + "year_id": 13798, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13800, + "make_id": 11790, + "model_id": 13775, + "year_id": 13800, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13801, + "make_id": 11790, + "model_id": 13775, + "year_id": 13800, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13802, + "make_id": 11790, + "model_id": 13802, + "year_id": 13802, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13803, + "make_id": 11790, + "model_id": 13802, + "year_id": 13803, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13804, + "make_id": 11790, + "model_id": 13802, + "year_id": 13803, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13805, + "make_id": 11790, + "model_id": 13802, + "year_id": 13805, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13806, + "make_id": 11790, + "model_id": 13802, + "year_id": 13805, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13807, + "make_id": 11790, + "model_id": 13802, + "year_id": 13807, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13808, + "make_id": 11790, + "model_id": 13802, + "year_id": 13807, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13809, + "make_id": 11790, + "model_id": 13809, + "year_id": 13809, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13810, + "make_id": 11790, + "model_id": 13809, + "year_id": 13809, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13811, + "make_id": 11790, + "model_id": 13809, + "year_id": 13811, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13812, + "make_id": 11790, + "model_id": 13809, + "year_id": 13811, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13813, + "make_id": 11790, + "model_id": 13809, + "year_id": 13813, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13814, + "make_id": 11790, + "model_id": 13809, + "year_id": 13813, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13815, + "make_id": 11790, + "model_id": 13809, + "year_id": 13815, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13816, + "make_id": 11790, + "model_id": 13809, + "year_id": 13815, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13817, + "make_id": 11790, + "model_id": 13817, + "year_id": 13817, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13818, + "make_id": 11790, + "model_id": 13817, + "year_id": 13817, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13819, + "make_id": 11790, + "model_id": 13817, + "year_id": 13819, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13820, + "make_id": 11790, + "model_id": 13817, + "year_id": 13819, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13821, + "make_id": 11790, + "model_id": 13817, + "year_id": 13821, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13822, + "make_id": 11790, + "model_id": 13817, + "year_id": 13821, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13823, + "make_id": 11790, + "model_id": 13823, + "year_id": 13823, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 13824, + "make_id": 11790, + "model_id": 13823, + "year_id": 13823, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13825, + "make_id": 11790, + "model_id": 13823, + "year_id": 13823, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13826, + "make_id": 11790, + "model_id": 13823, + "year_id": 13826, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 13827, + "make_id": 11790, + "model_id": 13823, + "year_id": 13826, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13828, + "make_id": 11790, + "model_id": 13823, + "year_id": 13826, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13829, + "make_id": 11790, + "model_id": 13823, + "year_id": 13826, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13830, + "make_id": 11790, + "model_id": 13823, + "year_id": 13830, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 13831, + "make_id": 11790, + "model_id": 13823, + "year_id": 13830, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13832, + "make_id": 11790, + "model_id": 13823, + "year_id": 13830, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13833, + "make_id": 11790, + "model_id": 13823, + "year_id": 13830, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13834, + "make_id": 11790, + "model_id": 13823, + "year_id": 13834, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13835, + "make_id": 11790, + "model_id": 13823, + "year_id": 13834, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13836, + "make_id": 11790, + "model_id": 13823, + "year_id": 13834, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 13837, + "make_id": 11790, + "model_id": 13823, + "year_id": 13834, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13838, + "make_id": 11790, + "model_id": 13823, + "year_id": 13838, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13839, + "make_id": 11790, + "model_id": 13823, + "year_id": 13838, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13840, + "make_id": 11790, + "model_id": 13823, + "year_id": 13838, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13841, + "make_id": 11790, + "model_id": 13823, + "year_id": 13838, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13842, + "make_id": 11790, + "model_id": 13823, + "year_id": 13838, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13843, + "make_id": 11790, + "model_id": 13823, + "year_id": 13838, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13844, + "make_id": 11790, + "model_id": 13823, + "year_id": 13844, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13845, + "make_id": 11790, + "model_id": 13823, + "year_id": 13844, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13846, + "make_id": 11790, + "model_id": 13823, + "year_id": 13844, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13847, + "make_id": 11790, + "model_id": 13823, + "year_id": 13844, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13848, + "make_id": 11790, + "model_id": 13823, + "year_id": 13844, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13849, + "make_id": 11790, + "model_id": 13823, + "year_id": 13844, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13850, + "make_id": 11790, + "model_id": 13823, + "year_id": 13844, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13851, + "make_id": 11790, + "model_id": 13823, + "year_id": 13851, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13852, + "make_id": 11790, + "model_id": 13823, + "year_id": 13851, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13853, + "make_id": 11790, + "model_id": 13823, + "year_id": 13851, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13854, + "make_id": 11790, + "model_id": 13823, + "year_id": 13851, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13855, + "make_id": 11790, + "model_id": 13823, + "year_id": 13851, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13856, + "make_id": 11790, + "model_id": 13823, + "year_id": 13851, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13857, + "make_id": 11790, + "model_id": 13823, + "year_id": 13851, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13858, + "make_id": 11790, + "model_id": 13823, + "year_id": 13858, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13859, + "make_id": 11790, + "model_id": 13823, + "year_id": 13858, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13860, + "make_id": 11790, + "model_id": 13823, + "year_id": 13858, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13861, + "make_id": 11790, + "model_id": 13823, + "year_id": 13858, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13862, + "make_id": 11790, + "model_id": 13823, + "year_id": 13858, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13863, + "make_id": 11790, + "model_id": 13823, + "year_id": 13858, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13864, + "make_id": 11790, + "model_id": 13823, + "year_id": 13864, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13865, + "make_id": 11790, + "model_id": 13823, + "year_id": 13864, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13866, + "make_id": 11790, + "model_id": 13823, + "year_id": 13864, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13867, + "make_id": 11790, + "model_id": 13823, + "year_id": 13864, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13868, + "make_id": 11790, + "model_id": 13823, + "year_id": 13864, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13869, + "make_id": 11790, + "model_id": 13823, + "year_id": 13864, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13870, + "make_id": 11790, + "model_id": 13823, + "year_id": 13870, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13871, + "make_id": 11790, + "model_id": 13823, + "year_id": 13870, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13872, + "make_id": 11790, + "model_id": 13823, + "year_id": 13870, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13873, + "make_id": 11790, + "model_id": 13823, + "year_id": 13870, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13874, + "make_id": 11790, + "model_id": 13823, + "year_id": 13870, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13875, + "make_id": 11790, + "model_id": 13823, + "year_id": 13875, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13876, + "make_id": 11790, + "model_id": 13823, + "year_id": 13875, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13877, + "make_id": 11790, + "model_id": 13823, + "year_id": 13875, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13878, + "make_id": 11790, + "model_id": 13823, + "year_id": 13875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13879, + "make_id": 11790, + "model_id": 13823, + "year_id": 13875, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13880, + "make_id": 11790, + "model_id": 13823, + "year_id": 13880, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13881, + "make_id": 11790, + "model_id": 13823, + "year_id": 13880, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13882, + "make_id": 11790, + "model_id": 13823, + "year_id": 13880, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13883, + "make_id": 11790, + "model_id": 13823, + "year_id": 13880, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13884, + "make_id": 11790, + "model_id": 13884, + "year_id": 13884, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13885, + "make_id": 11790, + "model_id": 13884, + "year_id": 13885, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13886, + "make_id": 11790, + "model_id": 13884, + "year_id": 13886, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13887, + "make_id": 11790, + "model_id": 13884, + "year_id": 13887, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13888, + "make_id": 11790, + "model_id": 13884, + "year_id": 13888, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13889, + "make_id": 11790, + "model_id": 13889, + "year_id": 13889, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13890, + "make_id": 11790, + "model_id": 13889, + "year_id": 13890, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13891, + "make_id": 11790, + "model_id": 13889, + "year_id": 13891, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13892, + "make_id": 11790, + "model_id": 13889, + "year_id": 13892, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13893, + "make_id": 11790, + "model_id": 13889, + "year_id": 13893, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13894, + "make_id": 11790, + "model_id": 13889, + "year_id": 13894, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13895, + "make_id": 11790, + "model_id": 13889, + "year_id": 13895, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13896, + "make_id": 11790, + "model_id": 13889, + "year_id": 13896, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 13897, + "make_id": 11790, + "model_id": 13897, + "year_id": 13897, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 13898, + "make_id": 11790, + "model_id": 13897, + "year_id": 13897, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13899, + "make_id": 11790, + "model_id": 13897, + "year_id": 13899, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13900, + "make_id": 11790, + "model_id": 13897, + "year_id": 13900, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13901, + "make_id": 11790, + "model_id": 13901, + "year_id": 13901, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13902, + "make_id": 11790, + "model_id": 13901, + "year_id": 13902, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 13903, + "make_id": 11790, + "model_id": 13903, + "year_id": 13903, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13904, + "make_id": 11790, + "model_id": 13903, + "year_id": 13903, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 13905, + "make_id": 11790, + "model_id": 13903, + "year_id": 13905, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13906, + "make_id": 11790, + "model_id": 13903, + "year_id": 13905, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13907, + "make_id": 11790, + "model_id": 13903, + "year_id": 13905, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13908, + "make_id": 11790, + "model_id": 13903, + "year_id": 13908, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13909, + "make_id": 11790, + "model_id": 13903, + "year_id": 13908, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13910, + "make_id": 11790, + "model_id": 13903, + "year_id": 13910, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13911, + "make_id": 11790, + "model_id": 13903, + "year_id": 13910, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13912, + "make_id": 11790, + "model_id": 13903, + "year_id": 13912, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13913, + "make_id": 11790, + "model_id": 13903, + "year_id": 13912, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13914, + "make_id": 11790, + "model_id": 13903, + "year_id": 13914, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13915, + "make_id": 11790, + "model_id": 13903, + "year_id": 13914, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13916, + "make_id": 11790, + "model_id": 13916, + "year_id": 13916, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13917, + "make_id": 11790, + "model_id": 13916, + "year_id": 13917, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13918, + "make_id": 11790, + "model_id": 13918, + "year_id": 13918, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13919, + "make_id": 11790, + "model_id": 13919, + "year_id": 13919, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13920, + "make_id": 11790, + "model_id": 13919, + "year_id": 13919, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13921, + "make_id": 11790, + "model_id": 13919, + "year_id": 13919, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13922, + "make_id": 11790, + "model_id": 13919, + "year_id": 13919, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13923, + "make_id": 11790, + "model_id": 13919, + "year_id": 13919, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13924, + "make_id": 11790, + "model_id": 13919, + "year_id": 13919, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13925, + "make_id": 11790, + "model_id": 13919, + "year_id": 13919, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13926, + "make_id": 11790, + "model_id": 13919, + "year_id": 13919, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13927, + "make_id": 11790, + "model_id": 13919, + "year_id": 13919, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13928, + "make_id": 11790, + "model_id": 13919, + "year_id": 13928, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13929, + "make_id": 11790, + "model_id": 13919, + "year_id": 13928, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13930, + "make_id": 11790, + "model_id": 13919, + "year_id": 13928, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13931, + "make_id": 11790, + "model_id": 13919, + "year_id": 13928, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13932, + "make_id": 11790, + "model_id": 13919, + "year_id": 13928, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13933, + "make_id": 11790, + "model_id": 13919, + "year_id": 13933, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13934, + "make_id": 11790, + "model_id": 13919, + "year_id": 13933, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13935, + "make_id": 11790, + "model_id": 13935, + "year_id": 13935, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13936, + "make_id": 11790, + "model_id": 13935, + "year_id": 13935, + "cylinders": 8, + "displacement": 5.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13937, + "make_id": 11790, + "model_id": 13935, + "year_id": 13935, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13938, + "make_id": 11790, + "model_id": 13935, + "year_id": 13938, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13939, + "make_id": 11790, + "model_id": 13935, + "year_id": 13938, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13940, + "make_id": 11790, + "model_id": 13935, + "year_id": 13940, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13941, + "make_id": 11790, + "model_id": 13935, + "year_id": 13940, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13942, + "make_id": 11790, + "model_id": 13935, + "year_id": 13940, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13943, + "make_id": 11790, + "model_id": 13935, + "year_id": 13943, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13944, + "make_id": 11790, + "model_id": 13935, + "year_id": 13943, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13945, + "make_id": 11790, + "model_id": 13935, + "year_id": 13945, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13946, + "make_id": 11790, + "model_id": 13935, + "year_id": 13945, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13947, + "make_id": 11790, + "model_id": 13935, + "year_id": 13947, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13948, + "make_id": 11790, + "model_id": 13935, + "year_id": 13947, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13949, + "make_id": 11790, + "model_id": 13935, + "year_id": 13949, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13950, + "make_id": 11790, + "model_id": 13935, + "year_id": 13949, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13951, + "make_id": 11790, + "model_id": 13935, + "year_id": 13951, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13952, + "make_id": 11790, + "model_id": 13935, + "year_id": 13951, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13953, + "make_id": 11790, + "model_id": 13935, + "year_id": 13953, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13954, + "make_id": 11790, + "model_id": 13935, + "year_id": 13953, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13955, + "make_id": 11790, + "model_id": 13935, + "year_id": 13955, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13956, + "make_id": 11790, + "model_id": 13935, + "year_id": 13956, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13957, + "make_id": 11790, + "model_id": 13957, + "year_id": 13957, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13958, + "make_id": 11790, + "model_id": 13957, + "year_id": 13957, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13959, + "make_id": 11790, + "model_id": 13957, + "year_id": 13959, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13960, + "make_id": 11790, + "model_id": 13957, + "year_id": 13960, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13961, + "make_id": 11790, + "model_id": 13957, + "year_id": 13961, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13962, + "make_id": 11790, + "model_id": 13957, + "year_id": 13962, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13963, + "make_id": 11790, + "model_id": 13957, + "year_id": 13963, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13964, + "make_id": 11790, + "model_id": 13957, + "year_id": 13964, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13965, + "make_id": 11790, + "model_id": 13965, + "year_id": 13965, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13966, + "make_id": 11790, + "model_id": 13966, + "year_id": 13966, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13967, + "make_id": 11790, + "model_id": 13966, + "year_id": 13966, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13968, + "make_id": 11790, + "model_id": 13966, + "year_id": 13966, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13969, + "make_id": 11790, + "model_id": 13966, + "year_id": 13966, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13970, + "make_id": 11790, + "model_id": 13966, + "year_id": 13966, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13971, + "make_id": 11790, + "model_id": 13966, + "year_id": 13971, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13972, + "make_id": 11790, + "model_id": 13966, + "year_id": 13971, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13973, + "make_id": 11790, + "model_id": 13966, + "year_id": 13973, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13974, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13975, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 13976, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 13977, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13978, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 13979, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13980, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13981, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 13982, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 13983, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 13984, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 13985, + "make_id": 11790, + "model_id": 13974, + "year_id": 13974, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 13986, + "make_id": 11790, + "model_id": 13974, + "year_id": 13986, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13987, + "make_id": 11790, + "model_id": 13974, + "year_id": 13986, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13988, + "make_id": 11790, + "model_id": 13974, + "year_id": 13986, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13989, + "make_id": 11790, + "model_id": 13974, + "year_id": 13986, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13990, + "make_id": 11790, + "model_id": 13974, + "year_id": 13986, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13991, + "make_id": 11790, + "model_id": 13974, + "year_id": 13986, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 13992, + "make_id": 11790, + "model_id": 13974, + "year_id": 13986, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13993, + "make_id": 11790, + "model_id": 13974, + "year_id": 13986, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13994, + "make_id": 11790, + "model_id": 13974, + "year_id": 13986, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13995, + "make_id": 11790, + "model_id": 13974, + "year_id": 13986, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13996, + "make_id": 11790, + "model_id": 13974, + "year_id": 13996, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 13997, + "make_id": 11790, + "model_id": 13974, + "year_id": 13996, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 13998, + "make_id": 11790, + "model_id": 13974, + "year_id": 13996, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 13999, + "make_id": 11790, + "model_id": 13974, + "year_id": 13996, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14000, + "make_id": 11790, + "model_id": 13974, + "year_id": 13996, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14001, + "make_id": 11790, + "model_id": 13974, + "year_id": 13996, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14002, + "make_id": 11790, + "model_id": 13974, + "year_id": 14002, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14003, + "make_id": 11790, + "model_id": 13974, + "year_id": 14002, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14004, + "make_id": 11790, + "model_id": 13974, + "year_id": 14002, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14005, + "make_id": 11790, + "model_id": 13974, + "year_id": 14002, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14006, + "make_id": 11790, + "model_id": 13974, + "year_id": 14002, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14007, + "make_id": 11790, + "model_id": 13974, + "year_id": 14007, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14008, + "make_id": 11790, + "model_id": 13974, + "year_id": 14007, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14009, + "make_id": 11790, + "model_id": 13974, + "year_id": 14007, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14010, + "make_id": 11790, + "model_id": 13974, + "year_id": 14007, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14011, + "make_id": 11790, + "model_id": 13974, + "year_id": 14011, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14012, + "make_id": 11790, + "model_id": 13974, + "year_id": 14011, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14013, + "make_id": 11790, + "model_id": 13974, + "year_id": 14011, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14014, + "make_id": 11790, + "model_id": 13974, + "year_id": 14011, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14015, + "make_id": 11790, + "model_id": 13974, + "year_id": 14015, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14016, + "make_id": 11790, + "model_id": 13974, + "year_id": 14015, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14017, + "make_id": 11790, + "model_id": 13974, + "year_id": 14015, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14018, + "make_id": 11790, + "model_id": 13974, + "year_id": 14015, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14019, + "make_id": 11790, + "model_id": 13974, + "year_id": 14019, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14020, + "make_id": 11790, + "model_id": 13974, + "year_id": 14019, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14021, + "make_id": 11790, + "model_id": 13974, + "year_id": 14019, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14022, + "make_id": 11790, + "model_id": 13974, + "year_id": 14019, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14023, + "make_id": 11790, + "model_id": 13974, + "year_id": 14023, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14024, + "make_id": 11790, + "model_id": 13974, + "year_id": 14023, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14025, + "make_id": 11790, + "model_id": 13974, + "year_id": 14023, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14026, + "make_id": 11790, + "model_id": 13974, + "year_id": 14023, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14027, + "make_id": 11790, + "model_id": 13974, + "year_id": 14027, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14028, + "make_id": 11790, + "model_id": 13974, + "year_id": 14027, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14029, + "make_id": 11790, + "model_id": 13974, + "year_id": 14027, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14030, + "make_id": 11790, + "model_id": 13974, + "year_id": 14027, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14031, + "make_id": 11790, + "model_id": 13974, + "year_id": 14031, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14032, + "make_id": 11790, + "model_id": 13974, + "year_id": 14031, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14033, + "make_id": 11790, + "model_id": 13974, + "year_id": 14031, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14034, + "make_id": 11790, + "model_id": 13974, + "year_id": 14031, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14035, + "make_id": 11790, + "model_id": 13974, + "year_id": 14035, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14036, + "make_id": 11790, + "model_id": 13974, + "year_id": 14035, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14037, + "make_id": 11790, + "model_id": 13974, + "year_id": 14035, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14038, + "make_id": 11790, + "model_id": 13974, + "year_id": 14035, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14039, + "make_id": 11790, + "model_id": 13974, + "year_id": 14035, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14040, + "make_id": 11790, + "model_id": 13974, + "year_id": 14040, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14041, + "make_id": 11790, + "model_id": 13974, + "year_id": 14040, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14042, + "make_id": 11790, + "model_id": 13974, + "year_id": 14040, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14043, + "make_id": 11790, + "model_id": 13974, + "year_id": 14040, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14044, + "make_id": 11790, + "model_id": 13974, + "year_id": 14040, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14045, + "make_id": 11790, + "model_id": 13974, + "year_id": 14045, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14046, + "make_id": 11790, + "model_id": 13974, + "year_id": 14045, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14047, + "make_id": 11790, + "model_id": 13974, + "year_id": 14045, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14048, + "make_id": 11790, + "model_id": 13974, + "year_id": 14045, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14049, + "make_id": 11790, + "model_id": 13974, + "year_id": 14045, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14050, + "make_id": 11790, + "model_id": 13974, + "year_id": 14050, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14051, + "make_id": 11790, + "model_id": 13974, + "year_id": 14050, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14052, + "make_id": 11790, + "model_id": 13974, + "year_id": 14050, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14053, + "make_id": 11790, + "model_id": 13974, + "year_id": 14050, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14054, + "make_id": 11790, + "model_id": 13974, + "year_id": 14050, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14055, + "make_id": 11790, + "model_id": 13974, + "year_id": 14055, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14056, + "make_id": 11790, + "model_id": 13974, + "year_id": 14055, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14057, + "make_id": 11790, + "model_id": 13974, + "year_id": 14055, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14058, + "make_id": 11790, + "model_id": 13974, + "year_id": 14055, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14059, + "make_id": 11790, + "model_id": 13974, + "year_id": 14055, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14060, + "make_id": 11790, + "model_id": 13974, + "year_id": 14060, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14061, + "make_id": 11790, + "model_id": 13974, + "year_id": 14060, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14062, + "make_id": 11790, + "model_id": 13974, + "year_id": 14060, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14063, + "make_id": 11790, + "model_id": 13974, + "year_id": 14060, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14064, + "make_id": 11790, + "model_id": 13974, + "year_id": 14060, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14065, + "make_id": 11790, + "model_id": 13974, + "year_id": 14060, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14066, + "make_id": 11790, + "model_id": 13974, + "year_id": 14066, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14067, + "make_id": 11790, + "model_id": 13974, + "year_id": 14066, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14068, + "make_id": 11790, + "model_id": 13974, + "year_id": 14066, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14069, + "make_id": 11790, + "model_id": 13974, + "year_id": 14066, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14070, + "make_id": 11790, + "model_id": 13974, + "year_id": 14066, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14071, + "make_id": 11790, + "model_id": 13974, + "year_id": 14071, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14072, + "make_id": 11790, + "model_id": 13974, + "year_id": 14071, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14073, + "make_id": 11790, + "model_id": 13974, + "year_id": 14071, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14074, + "make_id": 11790, + "model_id": 13974, + "year_id": 14071, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14075, + "make_id": 11790, + "model_id": 13974, + "year_id": 14075, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14076, + "make_id": 11790, + "model_id": 13974, + "year_id": 14075, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14077, + "make_id": 11790, + "model_id": 13974, + "year_id": 14075, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14078, + "make_id": 11790, + "model_id": 13974, + "year_id": 14075, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14079, + "make_id": 11790, + "model_id": 13974, + "year_id": 14075, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14080, + "make_id": 11790, + "model_id": 13974, + "year_id": 14075, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14081, + "make_id": 11790, + "model_id": 13974, + "year_id": 14075, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14082, + "make_id": 11790, + "model_id": 13974, + "year_id": 14082, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14083, + "make_id": 11790, + "model_id": 13974, + "year_id": 14082, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14084, + "make_id": 11790, + "model_id": 13974, + "year_id": 14082, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14085, + "make_id": 11790, + "model_id": 13974, + "year_id": 14082, + "cylinders": 6, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14086, + "make_id": 11790, + "model_id": 13974, + "year_id": 14082, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14087, + "make_id": 11790, + "model_id": 13974, + "year_id": 14082, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14088, + "make_id": 11790, + "model_id": 13974, + "year_id": 14082, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14089, + "make_id": 11790, + "model_id": 13974, + "year_id": 14082, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14090, + "make_id": 11790, + "model_id": 13974, + "year_id": 14082, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14091, + "make_id": 11790, + "model_id": 13974, + "year_id": 14091, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14092, + "make_id": 11790, + "model_id": 13974, + "year_id": 14091, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14093, + "make_id": 11790, + "model_id": 13974, + "year_id": 14091, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14094, + "make_id": 11790, + "model_id": 13974, + "year_id": 14091, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14095, + "make_id": 11790, + "model_id": 13974, + "year_id": 14095, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14096, + "make_id": 11790, + "model_id": 13974, + "year_id": 14095, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14097, + "make_id": 11790, + "model_id": 13974, + "year_id": 14095, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14098, + "make_id": 11790, + "model_id": 13974, + "year_id": 14095, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14099, + "make_id": 11790, + "model_id": 13974, + "year_id": 14099, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14100, + "make_id": 11790, + "model_id": 13974, + "year_id": 14099, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14101, + "make_id": 11790, + "model_id": 13974, + "year_id": 14099, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14102, + "make_id": 11790, + "model_id": 13974, + "year_id": 14099, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14103, + "make_id": 11790, + "model_id": 13974, + "year_id": 14099, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14104, + "make_id": 11790, + "model_id": 13974, + "year_id": 14104, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14105, + "make_id": 11790, + "model_id": 13974, + "year_id": 14104, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14106, + "make_id": 11790, + "model_id": 13974, + "year_id": 14104, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14107, + "make_id": 11790, + "model_id": 13974, + "year_id": 14104, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14108, + "make_id": 11790, + "model_id": 13974, + "year_id": 14104, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14109, + "make_id": 11790, + "model_id": 13974, + "year_id": 14109, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14110, + "make_id": 11790, + "model_id": 13974, + "year_id": 14109, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14111, + "make_id": 11790, + "model_id": 13974, + "year_id": 14109, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14112, + "make_id": 11790, + "model_id": 13974, + "year_id": 14109, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14113, + "make_id": 11790, + "model_id": 13974, + "year_id": 14109, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14114, + "make_id": 11790, + "model_id": 13974, + "year_id": 14114, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14115, + "make_id": 11790, + "model_id": 13974, + "year_id": 14114, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14116, + "make_id": 11790, + "model_id": 13974, + "year_id": 14114, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14117, + "make_id": 11790, + "model_id": 13974, + "year_id": 14114, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14118, + "make_id": 11790, + "model_id": 13974, + "year_id": 14114, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14119, + "make_id": 11790, + "model_id": 13974, + "year_id": 14119, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14120, + "make_id": 11790, + "model_id": 13974, + "year_id": 14119, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14121, + "make_id": 11790, + "model_id": 13974, + "year_id": 14119, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14122, + "make_id": 11790, + "model_id": 13974, + "year_id": 14119, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14123, + "make_id": 11790, + "model_id": 13974, + "year_id": 14119, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14124, + "make_id": 11790, + "model_id": 13974, + "year_id": 14124, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14125, + "make_id": 11790, + "model_id": 13974, + "year_id": 14124, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14126, + "make_id": 11790, + "model_id": 13974, + "year_id": 14124, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14127, + "make_id": 11790, + "model_id": 13974, + "year_id": 14124, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14128, + "make_id": 11790, + "model_id": 13974, + "year_id": 14124, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14129, + "make_id": 11790, + "model_id": 13974, + "year_id": 14129, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14130, + "make_id": 11790, + "model_id": 13974, + "year_id": 14129, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14131, + "make_id": 11790, + "model_id": 13974, + "year_id": 14129, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14132, + "make_id": 11790, + "model_id": 13974, + "year_id": 14129, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14133, + "make_id": 11790, + "model_id": 13974, + "year_id": 14129, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14134, + "make_id": 11790, + "model_id": 13974, + "year_id": 14134, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14135, + "make_id": 11790, + "model_id": 13974, + "year_id": 14134, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14136, + "make_id": 11790, + "model_id": 13974, + "year_id": 14134, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14137, + "make_id": 11790, + "model_id": 13974, + "year_id": 14134, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14138, + "make_id": 11790, + "model_id": 13974, + "year_id": 14134, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14139, + "make_id": 11790, + "model_id": 13974, + "year_id": 14139, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14140, + "make_id": 11790, + "model_id": 13974, + "year_id": 14139, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14141, + "make_id": 11790, + "model_id": 13974, + "year_id": 14139, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14142, + "make_id": 11790, + "model_id": 13974, + "year_id": 14139, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14143, + "make_id": 11790, + "model_id": 13974, + "year_id": 14139, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14144, + "make_id": 11790, + "model_id": 13974, + "year_id": 14139, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14145, + "make_id": 11790, + "model_id": 13974, + "year_id": 14145, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14146, + "make_id": 11790, + "model_id": 13974, + "year_id": 14145, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14147, + "make_id": 11790, + "model_id": 13974, + "year_id": 14145, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14148, + "make_id": 11790, + "model_id": 13974, + "year_id": 14145, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14149, + "make_id": 11790, + "model_id": 13974, + "year_id": 14145, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14150, + "make_id": 11790, + "model_id": 13974, + "year_id": 14145, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14151, + "make_id": 11790, + "model_id": 13974, + "year_id": 14151, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14152, + "make_id": 11790, + "model_id": 13974, + "year_id": 14151, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14153, + "make_id": 11790, + "model_id": 13974, + "year_id": 14151, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14154, + "make_id": 11790, + "model_id": 13974, + "year_id": 14151, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14155, + "make_id": 11790, + "model_id": 13974, + "year_id": 14151, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14156, + "make_id": 11790, + "model_id": 13974, + "year_id": 14151, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14157, + "make_id": 11790, + "model_id": 14157, + "year_id": 14157, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14158, + "make_id": 11790, + "model_id": 14157, + "year_id": 14158, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14159, + "make_id": 11790, + "model_id": 14157, + "year_id": 14159, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14160, + "make_id": 11790, + "model_id": 14157, + "year_id": 14160, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14161, + "make_id": 11790, + "model_id": 14157, + "year_id": 14161, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14162, + "make_id": 11790, + "model_id": 14157, + "year_id": 14161, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14163, + "make_id": 11790, + "model_id": 14157, + "year_id": 14163, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14164, + "make_id": 11790, + "model_id": 14157, + "year_id": 14163, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14165, + "make_id": 11790, + "model_id": 14157, + "year_id": 14165, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14166, + "make_id": 11790, + "model_id": 14157, + "year_id": 14165, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14167, + "make_id": 11790, + "model_id": 14157, + "year_id": 14165, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14168, + "make_id": 11790, + "model_id": 14157, + "year_id": 14165, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14169, + "make_id": 11790, + "model_id": 14169, + "year_id": 14169, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14170, + "make_id": 11790, + "model_id": 14169, + "year_id": 14169, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14171, + "make_id": 11790, + "model_id": 14169, + "year_id": 14169, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14172, + "make_id": 11790, + "model_id": 14172, + "year_id": 14172, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14173, + "make_id": 11790, + "model_id": 14173, + "year_id": 14173, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14174, + "make_id": 11790, + "model_id": 14173, + "year_id": 14173, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14175, + "make_id": 11790, + "model_id": 14173, + "year_id": 14173, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14176, + "make_id": 11790, + "model_id": 14173, + "year_id": 14176, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14177, + "make_id": 11790, + "model_id": 14173, + "year_id": 14176, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14178, + "make_id": 11790, + "model_id": 14173, + "year_id": 14176, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14179, + "make_id": 11790, + "model_id": 14173, + "year_id": 14176, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14180, + "make_id": 11790, + "model_id": 14173, + "year_id": 14176, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14181, + "make_id": 11790, + "model_id": 14173, + "year_id": 14176, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14182, + "make_id": 11790, + "model_id": 14173, + "year_id": 14182, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14183, + "make_id": 11790, + "model_id": 14173, + "year_id": 14182, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14184, + "make_id": 11790, + "model_id": 14173, + "year_id": 14182, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14185, + "make_id": 11790, + "model_id": 14173, + "year_id": 14182, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14186, + "make_id": 11790, + "model_id": 14173, + "year_id": 14182, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14187, + "make_id": 11790, + "model_id": 14173, + "year_id": 14182, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14188, + "make_id": 11790, + "model_id": 14173, + "year_id": 14188, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14189, + "make_id": 11790, + "model_id": 14173, + "year_id": 14188, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14190, + "make_id": 11790, + "model_id": 14173, + "year_id": 14188, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14191, + "make_id": 11790, + "model_id": 14173, + "year_id": 14188, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14192, + "make_id": 11790, + "model_id": 14173, + "year_id": 14188, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14193, + "make_id": 11790, + "model_id": 14173, + "year_id": 14188, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14194, + "make_id": 11790, + "model_id": 14173, + "year_id": 14194, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14195, + "make_id": 11790, + "model_id": 14173, + "year_id": 14194, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14196, + "make_id": 11790, + "model_id": 14173, + "year_id": 14194, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14197, + "make_id": 11790, + "model_id": 14173, + "year_id": 14194, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14198, + "make_id": 11790, + "model_id": 14173, + "year_id": 14198, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14199, + "make_id": 11790, + "model_id": 14173, + "year_id": 14198, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14200, + "make_id": 11790, + "model_id": 14173, + "year_id": 14198, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14201, + "make_id": 11790, + "model_id": 14173, + "year_id": 14198, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14202, + "make_id": 11790, + "model_id": 14173, + "year_id": 14202, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14203, + "make_id": 11790, + "model_id": 14173, + "year_id": 14202, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14204, + "make_id": 11790, + "model_id": 14173, + "year_id": 14202, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14205, + "make_id": 11790, + "model_id": 14173, + "year_id": 14202, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14206, + "make_id": 11790, + "model_id": 14173, + "year_id": 14206, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14207, + "make_id": 11790, + "model_id": 14173, + "year_id": 14206, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14208, + "make_id": 11790, + "model_id": 14173, + "year_id": 14206, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14209, + "make_id": 11790, + "model_id": 14173, + "year_id": 14206, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14210, + "make_id": 11790, + "model_id": 14173, + "year_id": 14210, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14211, + "make_id": 11790, + "model_id": 14173, + "year_id": 14210, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14212, + "make_id": 11790, + "model_id": 14173, + "year_id": 14210, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14213, + "make_id": 11790, + "model_id": 14173, + "year_id": 14210, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14214, + "make_id": 11790, + "model_id": 14214, + "year_id": 14214, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14215, + "make_id": 11790, + "model_id": 14214, + "year_id": 14214, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14216, + "make_id": 11790, + "model_id": 14214, + "year_id": 14214, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14217, + "make_id": 11790, + "model_id": 14214, + "year_id": 14217, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14218, + "make_id": 11790, + "model_id": 14214, + "year_id": 14217, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14219, + "make_id": 11790, + "model_id": 14214, + "year_id": 14217, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14220, + "make_id": 11790, + "model_id": 14214, + "year_id": 14217, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14221, + "make_id": 11790, + "model_id": 14214, + "year_id": 14221, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14222, + "make_id": 11790, + "model_id": 14214, + "year_id": 14222, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14223, + "make_id": 11790, + "model_id": 14214, + "year_id": 14223, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14224, + "make_id": 11790, + "model_id": 14214, + "year_id": 14224, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14225, + "make_id": 11790, + "model_id": 14214, + "year_id": 14224, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14226, + "make_id": 11790, + "model_id": 14214, + "year_id": 14224, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14227, + "make_id": 11790, + "model_id": 14214, + "year_id": 14224, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14228, + "make_id": 11790, + "model_id": 14214, + "year_id": 14224, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14229, + "make_id": 11790, + "model_id": 14214, + "year_id": 14224, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14230, + "make_id": 11790, + "model_id": 14214, + "year_id": 14230, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14231, + "make_id": 11790, + "model_id": 14214, + "year_id": 14230, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14232, + "make_id": 11790, + "model_id": 14214, + "year_id": 14230, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14233, + "make_id": 11790, + "model_id": 14214, + "year_id": 14230, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14234, + "make_id": 11790, + "model_id": 14214, + "year_id": 14230, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14235, + "make_id": 11790, + "model_id": 14214, + "year_id": 14230, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14236, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14237, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14238, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14239, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14240, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14241, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14242, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14243, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14244, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14245, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14246, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14247, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14248, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14249, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14250, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14251, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14252, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14253, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14254, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14255, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14256, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14257, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14258, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14259, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14260, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14261, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14262, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14263, + "make_id": 11790, + "model_id": 14236, + "year_id": 14236, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14264, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14265, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14266, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14267, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14268, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14269, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14270, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14271, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14272, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14273, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14274, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14275, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14276, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14277, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14278, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14279, + "make_id": 11790, + "model_id": 14236, + "year_id": 14264, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14280, + "make_id": 11790, + "model_id": 14236, + "year_id": 14280, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14281, + "make_id": 11790, + "model_id": 14236, + "year_id": 14280, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14282, + "make_id": 11790, + "model_id": 14236, + "year_id": 14280, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14283, + "make_id": 11790, + "model_id": 14236, + "year_id": 14280, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14284, + "make_id": 11790, + "model_id": 14236, + "year_id": 14280, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14285, + "make_id": 11790, + "model_id": 14236, + "year_id": 14280, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14286, + "make_id": 11790, + "model_id": 14236, + "year_id": 14280, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14287, + "make_id": 11790, + "model_id": 14236, + "year_id": 14280, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14288, + "make_id": 11790, + "model_id": 14236, + "year_id": 14280, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14289, + "make_id": 11790, + "model_id": 14236, + "year_id": 14280, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14290, + "make_id": 11790, + "model_id": 14236, + "year_id": 14290, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14291, + "make_id": 11790, + "model_id": 14236, + "year_id": 14290, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14292, + "make_id": 11790, + "model_id": 14236, + "year_id": 14290, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14293, + "make_id": 11790, + "model_id": 14236, + "year_id": 14290, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14294, + "make_id": 11790, + "model_id": 14236, + "year_id": 14290, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14295, + "make_id": 11790, + "model_id": 14236, + "year_id": 14290, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14296, + "make_id": 11790, + "model_id": 14236, + "year_id": 14290, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14297, + "make_id": 11790, + "model_id": 14236, + "year_id": 14290, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14298, + "make_id": 11790, + "model_id": 14236, + "year_id": 14290, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14299, + "make_id": 11790, + "model_id": 14236, + "year_id": 14290, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14300, + "make_id": 11790, + "model_id": 14236, + "year_id": 14300, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14301, + "make_id": 11790, + "model_id": 14236, + "year_id": 14300, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14302, + "make_id": 11790, + "model_id": 14236, + "year_id": 14300, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14303, + "make_id": 11790, + "model_id": 14236, + "year_id": 14300, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14304, + "make_id": 11790, + "model_id": 14236, + "year_id": 14300, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14305, + "make_id": 11790, + "model_id": 14236, + "year_id": 14300, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14306, + "make_id": 11790, + "model_id": 14236, + "year_id": 14300, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14307, + "make_id": 11790, + "model_id": 14236, + "year_id": 14300, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14308, + "make_id": 11790, + "model_id": 14236, + "year_id": 14308, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14309, + "make_id": 11790, + "model_id": 14236, + "year_id": 14308, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14310, + "make_id": 11790, + "model_id": 14236, + "year_id": 14308, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14311, + "make_id": 11790, + "model_id": 14236, + "year_id": 14308, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14312, + "make_id": 11790, + "model_id": 14236, + "year_id": 14308, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14313, + "make_id": 11790, + "model_id": 14236, + "year_id": 14308, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14314, + "make_id": 11790, + "model_id": 14236, + "year_id": 14308, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14315, + "make_id": 11790, + "model_id": 14236, + "year_id": 14308, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14316, + "make_id": 11790, + "model_id": 14236, + "year_id": 14308, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14317, + "make_id": 11790, + "model_id": 14236, + "year_id": 14317, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14318, + "make_id": 11790, + "model_id": 14236, + "year_id": 14317, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14319, + "make_id": 11790, + "model_id": 14236, + "year_id": 14317, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14320, + "make_id": 11790, + "model_id": 14236, + "year_id": 14317, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14321, + "make_id": 11790, + "model_id": 14236, + "year_id": 14317, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14322, + "make_id": 11790, + "model_id": 14236, + "year_id": 14317, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14323, + "make_id": 11790, + "model_id": 14236, + "year_id": 14317, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14324, + "make_id": 11790, + "model_id": 14236, + "year_id": 14317, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14325, + "make_id": 11790, + "model_id": 14236, + "year_id": 14317, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14326, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14327, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14328, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14329, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14330, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14331, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14332, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14333, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14334, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14335, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14336, + "make_id": 11790, + "model_id": 14236, + "year_id": 14326, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14337, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14338, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14339, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14340, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14341, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14342, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14343, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14344, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14345, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14346, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14347, + "make_id": 11790, + "model_id": 14236, + "year_id": 14337, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14348, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14349, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14350, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14351, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14352, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14353, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14354, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14355, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14356, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14357, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14358, + "make_id": 11790, + "model_id": 14236, + "year_id": 14348, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14359, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14360, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14361, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14362, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14363, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14364, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14365, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14366, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14367, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14368, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14369, + "make_id": 11790, + "model_id": 14236, + "year_id": 14359, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14370, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14371, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14372, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14373, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14374, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14375, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14376, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14377, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14378, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14379, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14380, + "make_id": 11790, + "model_id": 14236, + "year_id": 14370, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14381, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14382, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14383, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14384, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14385, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14386, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14387, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14388, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14389, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14390, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14391, + "make_id": 11790, + "model_id": 14236, + "year_id": 14381, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14392, + "make_id": 11790, + "model_id": 14236, + "year_id": 14392, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14393, + "make_id": 11790, + "model_id": 14236, + "year_id": 14392, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14394, + "make_id": 11790, + "model_id": 14236, + "year_id": 14392, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14395, + "make_id": 11790, + "model_id": 14236, + "year_id": 14392, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14396, + "make_id": 11790, + "model_id": 14236, + "year_id": 14392, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14397, + "make_id": 11790, + "model_id": 14236, + "year_id": 14392, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14398, + "make_id": 11790, + "model_id": 14236, + "year_id": 14392, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14399, + "make_id": 11790, + "model_id": 14236, + "year_id": 14392, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14400, + "make_id": 11790, + "model_id": 14236, + "year_id": 14392, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14401, + "make_id": 11790, + "model_id": 14236, + "year_id": 14392, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14402, + "make_id": 11790, + "model_id": 14236, + "year_id": 14402, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14403, + "make_id": 11790, + "model_id": 14236, + "year_id": 14402, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14404, + "make_id": 11790, + "model_id": 14236, + "year_id": 14402, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14405, + "make_id": 11790, + "model_id": 14236, + "year_id": 14402, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14406, + "make_id": 11790, + "model_id": 14236, + "year_id": 14402, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14407, + "make_id": 11790, + "model_id": 14236, + "year_id": 14402, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14408, + "make_id": 11790, + "model_id": 14236, + "year_id": 14402, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14409, + "make_id": 11790, + "model_id": 14236, + "year_id": 14402, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14410, + "make_id": 11790, + "model_id": 14236, + "year_id": 14402, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14411, + "make_id": 11790, + "model_id": 14236, + "year_id": 14402, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14412, + "make_id": 11790, + "model_id": 14236, + "year_id": 14412, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14413, + "make_id": 11790, + "model_id": 14236, + "year_id": 14412, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14414, + "make_id": 11790, + "model_id": 14236, + "year_id": 14412, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14415, + "make_id": 11790, + "model_id": 14236, + "year_id": 14412, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14416, + "make_id": 11790, + "model_id": 14236, + "year_id": 14412, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14417, + "make_id": 11790, + "model_id": 14236, + "year_id": 14412, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14418, + "make_id": 11790, + "model_id": 14236, + "year_id": 14412, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 14419, + "make_id": 11790, + "model_id": 14236, + "year_id": 14412, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 14420, + "make_id": 11790, + "model_id": 14236, + "year_id": 14420, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14421, + "make_id": 11790, + "model_id": 14236, + "year_id": 14420, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14422, + "make_id": 11790, + "model_id": 14236, + "year_id": 14420, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14423, + "make_id": 11790, + "model_id": 14236, + "year_id": 14420, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14424, + "make_id": 11790, + "model_id": 14236, + "year_id": 14420, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14425, + "make_id": 11790, + "model_id": 14236, + "year_id": 14420, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14426, + "make_id": 11790, + "model_id": 14236, + "year_id": 14420, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 14427, + "make_id": 11790, + "model_id": 14236, + "year_id": 14420, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 14428, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14429, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14430, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14431, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14432, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14433, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14434, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14435, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14436, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14437, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14438, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14439, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14440, + "make_id": 11790, + "model_id": 14236, + "year_id": 14428, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 14441, + "make_id": 11790, + "model_id": 14236, + "year_id": 14441, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14442, + "make_id": 11790, + "model_id": 14236, + "year_id": 14441, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14443, + "make_id": 11790, + "model_id": 14236, + "year_id": 14441, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14444, + "make_id": 11790, + "model_id": 14236, + "year_id": 14441, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14445, + "make_id": 11790, + "model_id": 14236, + "year_id": 14441, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14446, + "make_id": 11790, + "model_id": 14236, + "year_id": 14441, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14447, + "make_id": 11790, + "model_id": 14236, + "year_id": 14441, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14448, + "make_id": 11790, + "model_id": 14236, + "year_id": 14441, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14449, + "make_id": 11790, + "model_id": 14236, + "year_id": 14441, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14450, + "make_id": 11790, + "model_id": 14236, + "year_id": 14441, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14451, + "make_id": 11790, + "model_id": 14236, + "year_id": 14451, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14452, + "make_id": 11790, + "model_id": 14236, + "year_id": 14451, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14453, + "make_id": 11790, + "model_id": 14236, + "year_id": 14451, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14454, + "make_id": 11790, + "model_id": 14236, + "year_id": 14451, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14455, + "make_id": 11790, + "model_id": 14236, + "year_id": 14451, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14456, + "make_id": 11790, + "model_id": 14236, + "year_id": 14451, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14457, + "make_id": 11790, + "model_id": 14236, + "year_id": 14451, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14458, + "make_id": 11790, + "model_id": 14236, + "year_id": 14451, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14459, + "make_id": 11790, + "model_id": 14236, + "year_id": 14451, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14460, + "make_id": 11790, + "model_id": 14236, + "year_id": 14451, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14461, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14462, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14463, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14464, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14465, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14466, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14467, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14468, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14469, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14470, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14471, + "make_id": 11790, + "model_id": 14236, + "year_id": 14461, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14472, + "make_id": 11790, + "model_id": 14236, + "year_id": 14472, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14473, + "make_id": 11790, + "model_id": 14236, + "year_id": 14472, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14474, + "make_id": 11790, + "model_id": 14236, + "year_id": 14472, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14475, + "make_id": 11790, + "model_id": 14236, + "year_id": 14472, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14476, + "make_id": 11790, + "model_id": 14236, + "year_id": 14472, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14477, + "make_id": 11790, + "model_id": 14236, + "year_id": 14472, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14478, + "make_id": 11790, + "model_id": 14236, + "year_id": 14472, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14479, + "make_id": 11790, + "model_id": 14236, + "year_id": 14472, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14480, + "make_id": 11790, + "model_id": 14236, + "year_id": 14472, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14481, + "make_id": 11790, + "model_id": 14236, + "year_id": 14472, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14482, + "make_id": 11790, + "model_id": 14236, + "year_id": 14482, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14483, + "make_id": 11790, + "model_id": 14236, + "year_id": 14482, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14484, + "make_id": 11790, + "model_id": 14236, + "year_id": 14482, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14485, + "make_id": 11790, + "model_id": 14236, + "year_id": 14482, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14486, + "make_id": 11790, + "model_id": 14236, + "year_id": 14482, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14487, + "make_id": 11790, + "model_id": 14236, + "year_id": 14482, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14488, + "make_id": 11790, + "model_id": 14236, + "year_id": 14482, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14489, + "make_id": 11790, + "model_id": 14236, + "year_id": 14482, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14490, + "make_id": 11790, + "model_id": 14236, + "year_id": 14482, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14491, + "make_id": 11790, + "model_id": 14236, + "year_id": 14482, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14492, + "make_id": 11790, + "model_id": 14236, + "year_id": 14492, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14493, + "make_id": 11790, + "model_id": 14236, + "year_id": 14492, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14494, + "make_id": 11790, + "model_id": 14236, + "year_id": 14492, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14495, + "make_id": 11790, + "model_id": 14236, + "year_id": 14492, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14496, + "make_id": 11790, + "model_id": 14236, + "year_id": 14492, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14497, + "make_id": 11790, + "model_id": 14236, + "year_id": 14492, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14498, + "make_id": 11790, + "model_id": 14236, + "year_id": 14492, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14499, + "make_id": 11790, + "model_id": 14236, + "year_id": 14492, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14500, + "make_id": 11790, + "model_id": 14236, + "year_id": 14492, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14501, + "make_id": 11790, + "model_id": 14236, + "year_id": 14492, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14502, + "make_id": 11790, + "model_id": 14236, + "year_id": 14502, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14503, + "make_id": 11790, + "model_id": 14236, + "year_id": 14502, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14504, + "make_id": 11790, + "model_id": 14236, + "year_id": 14502, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14505, + "make_id": 11790, + "model_id": 14236, + "year_id": 14502, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14506, + "make_id": 11790, + "model_id": 14236, + "year_id": 14502, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14507, + "make_id": 11790, + "model_id": 14236, + "year_id": 14502, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14508, + "make_id": 11790, + "model_id": 14236, + "year_id": 14502, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14509, + "make_id": 11790, + "model_id": 14236, + "year_id": 14502, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14510, + "make_id": 11790, + "model_id": 14236, + "year_id": 14502, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14511, + "make_id": 11790, + "model_id": 14236, + "year_id": 14502, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14512, + "make_id": 11790, + "model_id": 14236, + "year_id": 14512, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14513, + "make_id": 11790, + "model_id": 14236, + "year_id": 14512, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14514, + "make_id": 11790, + "model_id": 14236, + "year_id": 14512, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14515, + "make_id": 11790, + "model_id": 14236, + "year_id": 14512, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14516, + "make_id": 11790, + "model_id": 14236, + "year_id": 14512, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14517, + "make_id": 11790, + "model_id": 14236, + "year_id": 14512, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14518, + "make_id": 11790, + "model_id": 14518, + "year_id": 14518, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14519, + "make_id": 11790, + "model_id": 14518, + "year_id": 14518, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14520, + "make_id": 11790, + "model_id": 14518, + "year_id": 14518, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 14521, + "make_id": 11790, + "model_id": 14518, + "year_id": 14521, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14522, + "make_id": 11790, + "model_id": 14518, + "year_id": 14521, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14523, + "make_id": 11790, + "model_id": 14518, + "year_id": 14521, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14524, + "make_id": 11790, + "model_id": 14518, + "year_id": 14521, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14525, + "make_id": 11790, + "model_id": 14518, + "year_id": 14521, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14526, + "make_id": 11790, + "model_id": 14518, + "year_id": 14526, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14527, + "make_id": 11790, + "model_id": 14518, + "year_id": 14526, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14528, + "make_id": 11790, + "model_id": 14528, + "year_id": 14528, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14529, + "make_id": 11790, + "model_id": 14529, + "year_id": 14529, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14530, + "make_id": 11790, + "model_id": 14529, + "year_id": 14530, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 14531, + "make_id": 11790, + "model_id": 14531, + "year_id": 14531, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14532, + "make_id": 11790, + "model_id": 14531, + "year_id": 14532, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14533, + "make_id": 11790, + "model_id": 14531, + "year_id": 14533, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14534, + "make_id": 11790, + "model_id": 14534, + "year_id": 14534, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14535, + "make_id": 11790, + "model_id": 14534, + "year_id": 14534, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14536, + "make_id": 11790, + "model_id": 14534, + "year_id": 14534, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14537, + "make_id": 11790, + "model_id": 14534, + "year_id": 14537, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14538, + "make_id": 11790, + "model_id": 14534, + "year_id": 14537, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14539, + "make_id": 11790, + "model_id": 14534, + "year_id": 14537, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14540, + "make_id": 11790, + "model_id": 14534, + "year_id": 14540, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14541, + "make_id": 11790, + "model_id": 14534, + "year_id": 14540, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14542, + "make_id": 11790, + "model_id": 14534, + "year_id": 14540, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14543, + "make_id": 11790, + "model_id": 14534, + "year_id": 14540, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14544, + "make_id": 11790, + "model_id": 14534, + "year_id": 14544, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14545, + "make_id": 11790, + "model_id": 14534, + "year_id": 14544, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14546, + "make_id": 11790, + "model_id": 14534, + "year_id": 14544, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14547, + "make_id": 11790, + "model_id": 14534, + "year_id": 14544, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14548, + "make_id": 11790, + "model_id": 14534, + "year_id": 14548, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14549, + "make_id": 11790, + "model_id": 14534, + "year_id": 14548, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14550, + "make_id": 11790, + "model_id": 14534, + "year_id": 14548, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14551, + "make_id": 11790, + "model_id": 14534, + "year_id": 14551, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14552, + "make_id": 11790, + "model_id": 14534, + "year_id": 14551, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14553, + "make_id": 11790, + "model_id": 14534, + "year_id": 14553, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14554, + "make_id": 11790, + "model_id": 14534, + "year_id": 14553, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14555, + "make_id": 11790, + "model_id": 14534, + "year_id": 14555, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14556, + "make_id": 11790, + "model_id": 14534, + "year_id": 14555, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14557, + "make_id": 11790, + "model_id": 14534, + "year_id": 14555, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14558, + "make_id": 11790, + "model_id": 14534, + "year_id": 14558, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14559, + "make_id": 11790, + "model_id": 14534, + "year_id": 14558, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14560, + "make_id": 11790, + "model_id": 14534, + "year_id": 14558, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14561, + "make_id": 11790, + "model_id": 14534, + "year_id": 14561, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14562, + "make_id": 11790, + "model_id": 14534, + "year_id": 14561, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14563, + "make_id": 11790, + "model_id": 14534, + "year_id": 14561, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14564, + "make_id": 11790, + "model_id": 14534, + "year_id": 14564, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14565, + "make_id": 11790, + "model_id": 14534, + "year_id": 14564, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14566, + "make_id": 11790, + "model_id": 14534, + "year_id": 14564, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14567, + "make_id": 11790, + "model_id": 14534, + "year_id": 14567, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14568, + "make_id": 11790, + "model_id": 14534, + "year_id": 14567, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14569, + "make_id": 11790, + "model_id": 14534, + "year_id": 14569, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14570, + "make_id": 11790, + "model_id": 14534, + "year_id": 14569, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14571, + "make_id": 11790, + "model_id": 14534, + "year_id": 14569, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14572, + "make_id": 11790, + "model_id": 14534, + "year_id": 14569, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14573, + "make_id": 11790, + "model_id": 14534, + "year_id": 14573, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14574, + "make_id": 11790, + "model_id": 14534, + "year_id": 14573, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14575, + "make_id": 11790, + "model_id": 14534, + "year_id": 14573, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14576, + "make_id": 11790, + "model_id": 14534, + "year_id": 14576, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14577, + "make_id": 11790, + "model_id": 14534, + "year_id": 14576, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14578, + "make_id": 11790, + "model_id": 14534, + "year_id": 14576, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14579, + "make_id": 11790, + "model_id": 14534, + "year_id": 14579, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14580, + "make_id": 11790, + "model_id": 14534, + "year_id": 14579, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14581, + "make_id": 11790, + "model_id": 14534, + "year_id": 14579, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14582, + "make_id": 11790, + "model_id": 14534, + "year_id": 14582, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14583, + "make_id": 11790, + "model_id": 14534, + "year_id": 14582, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14584, + "make_id": 11790, + "model_id": 14534, + "year_id": 14582, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14585, + "make_id": 11790, + "model_id": 14534, + "year_id": 14585, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14586, + "make_id": 11790, + "model_id": 14534, + "year_id": 14585, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14587, + "make_id": 11790, + "model_id": 14534, + "year_id": 14585, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14588, + "make_id": 11790, + "model_id": 14534, + "year_id": 14588, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14589, + "make_id": 11790, + "model_id": 14534, + "year_id": 14588, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14590, + "make_id": 11790, + "model_id": 14534, + "year_id": 14588, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14591, + "make_id": 11790, + "model_id": 14534, + "year_id": 14591, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14592, + "make_id": 11790, + "model_id": 14534, + "year_id": 14591, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14593, + "make_id": 11790, + "model_id": 14534, + "year_id": 14591, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14594, + "make_id": 11790, + "model_id": 14534, + "year_id": 14594, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14595, + "make_id": 11790, + "model_id": 14534, + "year_id": 14594, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14596, + "make_id": 11790, + "model_id": 14534, + "year_id": 14596, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14597, + "make_id": 11790, + "model_id": 14534, + "year_id": 14597, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14598, + "make_id": 11790, + "model_id": 14534, + "year_id": 14597, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14599, + "make_id": 11790, + "model_id": 14534, + "year_id": 14599, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14600, + "make_id": 11790, + "model_id": 14534, + "year_id": 14599, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14601, + "make_id": 11790, + "model_id": 14534, + "year_id": 14601, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14602, + "make_id": 11790, + "model_id": 14534, + "year_id": 14601, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14603, + "make_id": 11790, + "model_id": 14534, + "year_id": 14601, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14604, + "make_id": 11790, + "model_id": 14534, + "year_id": 14601, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14605, + "make_id": 11790, + "model_id": 14534, + "year_id": 14605, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14606, + "make_id": 11790, + "model_id": 14534, + "year_id": 14605, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14607, + "make_id": 11790, + "model_id": 14534, + "year_id": 14605, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14608, + "make_id": 11790, + "model_id": 14534, + "year_id": 14605, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14609, + "make_id": 11790, + "model_id": 14534, + "year_id": 14609, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14610, + "make_id": 11790, + "model_id": 14534, + "year_id": 14609, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14611, + "make_id": 11790, + "model_id": 14534, + "year_id": 14609, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14612, + "make_id": 11790, + "model_id": 14534, + "year_id": 14609, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14613, + "make_id": 11790, + "model_id": 14534, + "year_id": 14613, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14614, + "make_id": 11790, + "model_id": 14534, + "year_id": 14613, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14615, + "make_id": 11790, + "model_id": 14534, + "year_id": 14613, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14616, + "make_id": 11790, + "model_id": 14534, + "year_id": 14613, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14617, + "make_id": 11790, + "model_id": 14534, + "year_id": 14613, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14618, + "make_id": 11790, + "model_id": 14534, + "year_id": 14613, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14619, + "make_id": 11790, + "model_id": 14534, + "year_id": 14619, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14620, + "make_id": 11790, + "model_id": 14534, + "year_id": 14619, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14621, + "make_id": 11790, + "model_id": 14534, + "year_id": 14619, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14622, + "make_id": 11790, + "model_id": 14534, + "year_id": 14619, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14623, + "make_id": 11790, + "model_id": 14534, + "year_id": 14619, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14624, + "make_id": 11790, + "model_id": 14534, + "year_id": 14619, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14625, + "make_id": 11790, + "model_id": 14534, + "year_id": 14625, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14626, + "make_id": 11790, + "model_id": 14534, + "year_id": 14625, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14627, + "make_id": 11790, + "model_id": 14534, + "year_id": 14625, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14628, + "make_id": 11790, + "model_id": 14534, + "year_id": 14625, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14629, + "make_id": 11790, + "model_id": 14534, + "year_id": 14625, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14630, + "make_id": 11790, + "model_id": 14534, + "year_id": 14625, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14631, + "make_id": 11790, + "model_id": 14534, + "year_id": 14631, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14632, + "make_id": 11790, + "model_id": 14534, + "year_id": 14631, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14633, + "make_id": 11790, + "model_id": 14534, + "year_id": 14631, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14634, + "make_id": 11790, + "model_id": 14534, + "year_id": 14631, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14635, + "make_id": 11790, + "model_id": 14534, + "year_id": 14631, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14636, + "make_id": 11790, + "model_id": 14534, + "year_id": 14631, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14637, + "make_id": 11790, + "model_id": 14637, + "year_id": 14637, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14638, + "make_id": 11790, + "model_id": 14637, + "year_id": 14638, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14639, + "make_id": 11790, + "model_id": 14637, + "year_id": 14639, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14640, + "make_id": 11790, + "model_id": 14637, + "year_id": 14640, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14641, + "make_id": 11790, + "model_id": 14637, + "year_id": 14640, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14642, + "make_id": 11790, + "model_id": 14637, + "year_id": 14642, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14643, + "make_id": 11790, + "model_id": 14637, + "year_id": 14642, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14644, + "make_id": 11790, + "model_id": 14637, + "year_id": 14644, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14645, + "make_id": 11790, + "model_id": 14637, + "year_id": 14644, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14646, + "make_id": 11790, + "model_id": 14637, + "year_id": 14646, + "cylinders": 8, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14647, + "make_id": 11790, + "model_id": 14637, + "year_id": 14647, + "cylinders": 8, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14648, + "make_id": 11790, + "model_id": 14637, + "year_id": 14648, + "cylinders": 8, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14649, + "make_id": 11790, + "model_id": 14637, + "year_id": 14649, + "cylinders": 8, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14650, + "make_id": 11790, + "model_id": 14650, + "year_id": 14650, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14651, + "make_id": 11790, + "model_id": 14650, + "year_id": 14650, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14652, + "make_id": 11790, + "model_id": 14650, + "year_id": 14650, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14653, + "make_id": 11790, + "model_id": 14650, + "year_id": 14653, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14654, + "make_id": 11790, + "model_id": 14650, + "year_id": 14653, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14655, + "make_id": 11790, + "model_id": 14650, + "year_id": 14655, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14656, + "make_id": 11790, + "model_id": 14650, + "year_id": 14655, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14657, + "make_id": 11790, + "model_id": 14650, + "year_id": 14657, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14658, + "make_id": 11790, + "model_id": 14650, + "year_id": 14657, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14659, + "make_id": 11790, + "model_id": 14650, + "year_id": 14659, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14660, + "make_id": 11790, + "model_id": 14650, + "year_id": 14659, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14661, + "make_id": 11790, + "model_id": 14650, + "year_id": 14661, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14662, + "make_id": 11790, + "model_id": 14650, + "year_id": 14661, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14663, + "make_id": 11790, + "model_id": 14650, + "year_id": 14663, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14664, + "make_id": 11790, + "model_id": 14650, + "year_id": 14663, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14665, + "make_id": 11790, + "model_id": 14650, + "year_id": 14665, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14666, + "make_id": 11790, + "model_id": 14650, + "year_id": 14665, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14667, + "make_id": 11790, + "model_id": 14650, + "year_id": 14667, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14668, + "make_id": 11790, + "model_id": 14650, + "year_id": 14667, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14669, + "make_id": 11790, + "model_id": 14650, + "year_id": 14669, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14670, + "make_id": 11790, + "model_id": 14650, + "year_id": 14669, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14671, + "make_id": 11790, + "model_id": 14650, + "year_id": 14671, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14672, + "make_id": 11790, + "model_id": 14650, + "year_id": 14671, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14673, + "make_id": 11790, + "model_id": 14650, + "year_id": 14673, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14674, + "make_id": 11790, + "model_id": 14650, + "year_id": 14673, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14675, + "make_id": 11790, + "model_id": 14650, + "year_id": 14675, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14676, + "make_id": 11790, + "model_id": 14650, + "year_id": 14675, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14677, + "make_id": 11790, + "model_id": 14650, + "year_id": 14677, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14678, + "make_id": 11790, + "model_id": 14650, + "year_id": 14677, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14679, + "make_id": 11790, + "model_id": 14650, + "year_id": 14679, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14680, + "make_id": 11790, + "model_id": 14650, + "year_id": 14679, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14681, + "make_id": 11790, + "model_id": 14650, + "year_id": 14679, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14682, + "make_id": 11790, + "model_id": 14650, + "year_id": 14682, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14683, + "make_id": 11790, + "model_id": 14650, + "year_id": 14682, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14684, + "make_id": 11790, + "model_id": 14650, + "year_id": 14682, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14685, + "make_id": 11790, + "model_id": 14650, + "year_id": 14685, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14686, + "make_id": 11790, + "model_id": 14650, + "year_id": 14685, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14687, + "make_id": 11790, + "model_id": 14650, + "year_id": 14685, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14688, + "make_id": 11790, + "model_id": 14650, + "year_id": 14688, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14689, + "make_id": 11790, + "model_id": 14650, + "year_id": 14688, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14690, + "make_id": 11790, + "model_id": 14650, + "year_id": 14688, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14691, + "make_id": 11790, + "model_id": 14650, + "year_id": 14691, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14692, + "make_id": 11790, + "model_id": 14650, + "year_id": 14691, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14693, + "make_id": 11790, + "model_id": 14650, + "year_id": 14691, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14694, + "make_id": 11790, + "model_id": 14650, + "year_id": 14694, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14695, + "make_id": 11790, + "model_id": 14650, + "year_id": 14694, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14696, + "make_id": 11790, + "model_id": 14650, + "year_id": 14694, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14697, + "make_id": 11790, + "model_id": 14697, + "year_id": 14697, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14698, + "make_id": 11790, + "model_id": 14698, + "year_id": 14698, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14699, + "make_id": 11790, + "model_id": 14698, + "year_id": 14698, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14700, + "make_id": 11790, + "model_id": 14698, + "year_id": 14698, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14701, + "make_id": 11790, + "model_id": 14698, + "year_id": 14701, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14702, + "make_id": 11790, + "model_id": 14698, + "year_id": 14701, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14703, + "make_id": 11790, + "model_id": 14698, + "year_id": 14703, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14704, + "make_id": 11790, + "model_id": 14704, + "year_id": 14704, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14705, + "make_id": 11790, + "model_id": 14704, + "year_id": 14704, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14706, + "make_id": 11790, + "model_id": 14704, + "year_id": 14706, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14707, + "make_id": 11790, + "model_id": 14704, + "year_id": 14706, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14708, + "make_id": 11790, + "model_id": 14708, + "year_id": 14708, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 14709, + "make_id": 11790, + "model_id": 14708, + "year_id": 14708, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 14710, + "make_id": 11790, + "model_id": 14708, + "year_id": 14708, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 14711, + "make_id": 11790, + "model_id": 14708, + "year_id": 14708, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 14712, + "make_id": 11790, + "model_id": 14708, + "year_id": 14708, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 14713, + "make_id": 11790, + "model_id": 14708, + "year_id": 14708, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 14714, + "make_id": 11790, + "model_id": 14708, + "year_id": 14708, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 14715, + "make_id": 11790, + "model_id": 14708, + "year_id": 14715, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14716, + "make_id": 11790, + "model_id": 14708, + "year_id": 14715, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14717, + "make_id": 11790, + "model_id": 14708, + "year_id": 14715, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14718, + "make_id": 11790, + "model_id": 14708, + "year_id": 14715, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14719, + "make_id": 11790, + "model_id": 14708, + "year_id": 14715, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14720, + "make_id": 11790, + "model_id": 14708, + "year_id": 14715, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14721, + "make_id": 11790, + "model_id": 14708, + "year_id": 14715, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14722, + "make_id": 11790, + "model_id": 14708, + "year_id": 14722, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14723, + "make_id": 11790, + "model_id": 14708, + "year_id": 14722, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14724, + "make_id": 11790, + "model_id": 14708, + "year_id": 14722, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14725, + "make_id": 11790, + "model_id": 14708, + "year_id": 14722, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14726, + "make_id": 11790, + "model_id": 14708, + "year_id": 14726, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14727, + "make_id": 11790, + "model_id": 14708, + "year_id": 14726, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14728, + "make_id": 11790, + "model_id": 14708, + "year_id": 14726, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14729, + "make_id": 11790, + "model_id": 14708, + "year_id": 14726, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14730, + "make_id": 11790, + "model_id": 14708, + "year_id": 14730, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14731, + "make_id": 11790, + "model_id": 14708, + "year_id": 14730, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14732, + "make_id": 11790, + "model_id": 14708, + "year_id": 14730, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14733, + "make_id": 11790, + "model_id": 14708, + "year_id": 14730, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14734, + "make_id": 11790, + "model_id": 14708, + "year_id": 14734, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14735, + "make_id": 11790, + "model_id": 14708, + "year_id": 14734, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14736, + "make_id": 11790, + "model_id": 14708, + "year_id": 14734, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14737, + "make_id": 11790, + "model_id": 14708, + "year_id": 14734, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14738, + "make_id": 11790, + "model_id": 14708, + "year_id": 14738, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14739, + "make_id": 11790, + "model_id": 14708, + "year_id": 14738, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14740, + "make_id": 11790, + "model_id": 14708, + "year_id": 14738, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14741, + "make_id": 11790, + "model_id": 14708, + "year_id": 14738, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14742, + "make_id": 11790, + "model_id": 14708, + "year_id": 14742, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14743, + "make_id": 11790, + "model_id": 14708, + "year_id": 14742, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14744, + "make_id": 11790, + "model_id": 14708, + "year_id": 14742, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14745, + "make_id": 11790, + "model_id": 14708, + "year_id": 14742, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14746, + "make_id": 11790, + "model_id": 14708, + "year_id": 14746, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14747, + "make_id": 11790, + "model_id": 14708, + "year_id": 14746, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14748, + "make_id": 11790, + "model_id": 14708, + "year_id": 14746, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14749, + "make_id": 11790, + "model_id": 14708, + "year_id": 14746, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14750, + "make_id": 11790, + "model_id": 14708, + "year_id": 14750, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14751, + "make_id": 11790, + "model_id": 14708, + "year_id": 14750, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14752, + "make_id": 11790, + "model_id": 14708, + "year_id": 14750, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14753, + "make_id": 11790, + "model_id": 14708, + "year_id": 14750, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14754, + "make_id": 11790, + "model_id": 14708, + "year_id": 14754, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14755, + "make_id": 11790, + "model_id": 14708, + "year_id": 14754, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14756, + "make_id": 11790, + "model_id": 14708, + "year_id": 14754, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14757, + "make_id": 11790, + "model_id": 14708, + "year_id": 14754, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14758, + "make_id": 11790, + "model_id": 14758, + "year_id": 14758, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14759, + "make_id": 11790, + "model_id": 14759, + "year_id": 14759, + "cylinders": 0, + "displacement": 0, + "drive": "", + "transmission": "" + }, + { + "id": 14760, + "make_id": 11790, + "model_id": 14760, + "year_id": 14760, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 14761, + "make_id": 11790, + "model_id": 14760, + "year_id": 14760, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 14762, + "make_id": 11790, + "model_id": 14760, + "year_id": 14760, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 14763, + "make_id": 11790, + "model_id": 14760, + "year_id": 14760, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 14764, + "make_id": 11790, + "model_id": 14760, + "year_id": 14760, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 14765, + "make_id": 11790, + "model_id": 14760, + "year_id": 14760, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 14766, + "make_id": 11790, + "model_id": 14760, + "year_id": 14760, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 14767, + "make_id": 11790, + "model_id": 14760, + "year_id": 14760, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 14768, + "make_id": 11790, + "model_id": 14760, + "year_id": 14760, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 14769, + "make_id": 11790, + "model_id": 14760, + "year_id": 14760, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 14770, + "make_id": 11790, + "model_id": 14760, + "year_id": 14770, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14771, + "make_id": 11790, + "model_id": 14760, + "year_id": 14770, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14772, + "make_id": 11790, + "model_id": 14760, + "year_id": 14770, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14773, + "make_id": 11790, + "model_id": 14760, + "year_id": 14770, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14774, + "make_id": 11790, + "model_id": 14760, + "year_id": 14770, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14775, + "make_id": 11790, + "model_id": 14760, + "year_id": 14770, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14776, + "make_id": 11790, + "model_id": 14760, + "year_id": 14770, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14777, + "make_id": 11790, + "model_id": 14760, + "year_id": 14770, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14778, + "make_id": 11790, + "model_id": 14760, + "year_id": 14778, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14779, + "make_id": 11790, + "model_id": 14760, + "year_id": 14778, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14780, + "make_id": 11790, + "model_id": 14760, + "year_id": 14778, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14781, + "make_id": 11790, + "model_id": 14760, + "year_id": 14778, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14782, + "make_id": 11790, + "model_id": 14760, + "year_id": 14778, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14783, + "make_id": 11790, + "model_id": 14760, + "year_id": 14783, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14784, + "make_id": 11790, + "model_id": 14760, + "year_id": 14783, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14785, + "make_id": 11790, + "model_id": 14760, + "year_id": 14783, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14786, + "make_id": 11790, + "model_id": 14760, + "year_id": 14783, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14787, + "make_id": 11790, + "model_id": 14760, + "year_id": 14787, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14788, + "make_id": 11790, + "model_id": 14760, + "year_id": 14787, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14789, + "make_id": 11790, + "model_id": 14760, + "year_id": 14787, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14790, + "make_id": 11790, + "model_id": 14760, + "year_id": 14787, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14791, + "make_id": 11790, + "model_id": 14760, + "year_id": 14791, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14792, + "make_id": 11790, + "model_id": 14760, + "year_id": 14791, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14793, + "make_id": 11790, + "model_id": 14760, + "year_id": 14791, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14794, + "make_id": 11790, + "model_id": 14760, + "year_id": 14794, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14795, + "make_id": 11790, + "model_id": 14760, + "year_id": 14794, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14796, + "make_id": 11790, + "model_id": 14760, + "year_id": 14794, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14797, + "make_id": 11790, + "model_id": 14760, + "year_id": 14797, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14798, + "make_id": 11790, + "model_id": 14760, + "year_id": 14797, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14799, + "make_id": 11790, + "model_id": 14760, + "year_id": 14797, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14800, + "make_id": 11790, + "model_id": 14760, + "year_id": 14797, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14801, + "make_id": 11790, + "model_id": 14760, + "year_id": 14801, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14802, + "make_id": 11790, + "model_id": 14760, + "year_id": 14801, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14803, + "make_id": 11790, + "model_id": 14760, + "year_id": 14801, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14804, + "make_id": 11790, + "model_id": 14760, + "year_id": 14801, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14805, + "make_id": 11790, + "model_id": 14760, + "year_id": 14805, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14806, + "make_id": 11790, + "model_id": 14760, + "year_id": 14805, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14807, + "make_id": 11790, + "model_id": 14760, + "year_id": 14805, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14808, + "make_id": 11790, + "model_id": 14760, + "year_id": 14805, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14809, + "make_id": 11790, + "model_id": 14760, + "year_id": 14809, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14810, + "make_id": 11790, + "model_id": 14760, + "year_id": 14809, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14811, + "make_id": 11790, + "model_id": 14760, + "year_id": 14809, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14812, + "make_id": 11790, + "model_id": 14760, + "year_id": 14809, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14813, + "make_id": 11790, + "model_id": 14760, + "year_id": 14813, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14814, + "make_id": 11790, + "model_id": 14760, + "year_id": 14813, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14815, + "make_id": 11790, + "model_id": 14760, + "year_id": 14813, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14816, + "make_id": 11790, + "model_id": 14760, + "year_id": 14813, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14817, + "make_id": 11790, + "model_id": 14760, + "year_id": 14817, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14818, + "make_id": 11790, + "model_id": 14760, + "year_id": 14817, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14819, + "make_id": 11790, + "model_id": 14760, + "year_id": 14819, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14820, + "make_id": 11790, + "model_id": 14760, + "year_id": 14819, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14821, + "make_id": 11790, + "model_id": 14760, + "year_id": 14821, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14822, + "make_id": 11790, + "model_id": 14760, + "year_id": 14822, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14823, + "make_id": 11790, + "model_id": 14760, + "year_id": 14822, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14824, + "make_id": 11790, + "model_id": 14760, + "year_id": 14824, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14825, + "make_id": 11790, + "model_id": 14760, + "year_id": 14824, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14826, + "make_id": 11790, + "model_id": 14760, + "year_id": 14826, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14827, + "make_id": 11790, + "model_id": 14760, + "year_id": 14826, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 14828, + "make_id": 11790, + "model_id": 14828, + "year_id": 14828, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14829, + "make_id": 11790, + "model_id": 14828, + "year_id": 14829, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14830, + "make_id": 11790, + "model_id": 14830, + "year_id": 14830, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14831, + "make_id": 11790, + "model_id": 14830, + "year_id": 14831, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14832, + "make_id": 11790, + "model_id": 14830, + "year_id": 14832, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14833, + "make_id": 11790, + "model_id": 14830, + "year_id": 14832, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14834, + "make_id": 11790, + "model_id": 14830, + "year_id": 14834, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14835, + "make_id": 11790, + "model_id": 14830, + "year_id": 14834, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14836, + "make_id": 11790, + "model_id": 14830, + "year_id": 14836, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14837, + "make_id": 11790, + "model_id": 14830, + "year_id": 14836, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14838, + "make_id": 11790, + "model_id": 14830, + "year_id": 14836, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14839, + "make_id": 11790, + "model_id": 14839, + "year_id": 14839, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14840, + "make_id": 11790, + "model_id": 14839, + "year_id": 14840, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14841, + "make_id": 11790, + "model_id": 14839, + "year_id": 14841, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14842, + "make_id": 11790, + "model_id": 14839, + "year_id": 14841, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14843, + "make_id": 11790, + "model_id": 14839, + "year_id": 14843, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14844, + "make_id": 11790, + "model_id": 14839, + "year_id": 14843, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14845, + "make_id": 11790, + "model_id": 14839, + "year_id": 14845, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14846, + "make_id": 11790, + "model_id": 14839, + "year_id": 14845, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14847, + "make_id": 11790, + "model_id": 14839, + "year_id": 14845, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14848, + "make_id": 11790, + "model_id": 14848, + "year_id": 14848, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14849, + "make_id": 11790, + "model_id": 14848, + "year_id": 14849, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14850, + "make_id": 11790, + "model_id": 14848, + "year_id": 14850, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14851, + "make_id": 11790, + "model_id": 14848, + "year_id": 14850, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14852, + "make_id": 11790, + "model_id": 14852, + "year_id": 14852, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14853, + "make_id": 11790, + "model_id": 14852, + "year_id": 14852, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14854, + "make_id": 11790, + "model_id": 14852, + "year_id": 14854, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14855, + "make_id": 11790, + "model_id": 14852, + "year_id": 14854, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 14856, + "make_id": 11790, + "model_id": 14856, + "year_id": 14856, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14857, + "make_id": 11790, + "model_id": 14856, + "year_id": 14856, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14858, + "make_id": 11790, + "model_id": 14856, + "year_id": 14858, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14859, + "make_id": 11790, + "model_id": 14856, + "year_id": 14859, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14860, + "make_id": 11790, + "model_id": 14860, + "year_id": 14860, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14861, + "make_id": 11790, + "model_id": 14860, + "year_id": 14860, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14862, + "make_id": 11790, + "model_id": 14860, + "year_id": 14862, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14863, + "make_id": 11790, + "model_id": 14860, + "year_id": 14862, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14864, + "make_id": 11790, + "model_id": 14860, + "year_id": 14864, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14865, + "make_id": 11790, + "model_id": 14860, + "year_id": 14864, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14866, + "make_id": 11790, + "model_id": 14860, + "year_id": 14866, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14867, + "make_id": 11790, + "model_id": 14860, + "year_id": 14866, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14868, + "make_id": 11790, + "model_id": 14860, + "year_id": 14868, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14869, + "make_id": 11790, + "model_id": 14860, + "year_id": 14868, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14870, + "make_id": 11790, + "model_id": 14860, + "year_id": 14870, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14871, + "make_id": 11790, + "model_id": 14871, + "year_id": 14871, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14872, + "make_id": 11790, + "model_id": 14871, + "year_id": 14871, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14873, + "make_id": 11790, + "model_id": 14871, + "year_id": 14873, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14874, + "make_id": 11790, + "model_id": 14871, + "year_id": 14873, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14875, + "make_id": 11790, + "model_id": 14871, + "year_id": 14875, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14876, + "make_id": 11790, + "model_id": 14871, + "year_id": 14875, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14877, + "make_id": 11790, + "model_id": 14871, + "year_id": 14877, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14878, + "make_id": 11790, + "model_id": 14871, + "year_id": 14877, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14879, + "make_id": 11790, + "model_id": 14871, + "year_id": 14879, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14880, + "make_id": 11790, + "model_id": 14871, + "year_id": 14879, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14881, + "make_id": 11790, + "model_id": 14871, + "year_id": 14881, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14882, + "make_id": 11790, + "model_id": 14871, + "year_id": 14881, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14883, + "make_id": 11790, + "model_id": 14871, + "year_id": 14883, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14884, + "make_id": 11790, + "model_id": 14871, + "year_id": 14884, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14885, + "make_id": 11790, + "model_id": 14871, + "year_id": 14885, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14886, + "make_id": 14886, + "model_id": 14886, + "year_id": 14886, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14887, + "make_id": 14887, + "model_id": 14887, + "year_id": 14887, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 14888, + "make_id": 14887, + "model_id": 14888, + "year_id": 14888, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 14889, + "make_id": 14887, + "model_id": 14888, + "year_id": 14888, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 14890, + "make_id": 14887, + "model_id": 14890, + "year_id": 14890, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 14891, + "make_id": 14887, + "model_id": 14890, + "year_id": 14890, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 14892, + "make_id": 14887, + "model_id": 14892, + "year_id": 14892, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 14893, + "make_id": 14887, + "model_id": 14892, + "year_id": 14892, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 14894, + "make_id": 14894, + "model_id": 14894, + "year_id": 14894, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14895, + "make_id": 14894, + "model_id": 14894, + "year_id": 14895, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14896, + "make_id": 14894, + "model_id": 14894, + "year_id": 14895, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14897, + "make_id": 14894, + "model_id": 14894, + "year_id": 14897, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14898, + "make_id": 14894, + "model_id": 14894, + "year_id": 14897, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14899, + "make_id": 14894, + "model_id": 14894, + "year_id": 14899, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14900, + "make_id": 14894, + "model_id": 14894, + "year_id": 14899, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14901, + "make_id": 14894, + "model_id": 14894, + "year_id": 14901, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14902, + "make_id": 14894, + "model_id": 14894, + "year_id": 14901, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14903, + "make_id": 14894, + "model_id": 14894, + "year_id": 14903, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14904, + "make_id": 14894, + "model_id": 14894, + "year_id": 14903, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14905, + "make_id": 14894, + "model_id": 14894, + "year_id": 14905, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14906, + "make_id": 14894, + "model_id": 14894, + "year_id": 14905, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14907, + "make_id": 14894, + "model_id": 14894, + "year_id": 14905, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14908, + "make_id": 14894, + "model_id": 14894, + "year_id": 14908, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14909, + "make_id": 14894, + "model_id": 14894, + "year_id": 14908, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14910, + "make_id": 14894, + "model_id": 14894, + "year_id": 14908, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14911, + "make_id": 14894, + "model_id": 14894, + "year_id": 14911, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14912, + "make_id": 14894, + "model_id": 14894, + "year_id": 14911, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14913, + "make_id": 14894, + "model_id": 14894, + "year_id": 14911, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14914, + "make_id": 14894, + "model_id": 14914, + "year_id": 14914, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14915, + "make_id": 14894, + "model_id": 14914, + "year_id": 14914, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14916, + "make_id": 14894, + "model_id": 14914, + "year_id": 14916, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14917, + "make_id": 14894, + "model_id": 14914, + "year_id": 14916, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14918, + "make_id": 14894, + "model_id": 14914, + "year_id": 14918, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14919, + "make_id": 14894, + "model_id": 14914, + "year_id": 14918, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14920, + "make_id": 14894, + "model_id": 14914, + "year_id": 14920, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14921, + "make_id": 14894, + "model_id": 14914, + "year_id": 14920, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14922, + "make_id": 14894, + "model_id": 14914, + "year_id": 14922, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14923, + "make_id": 14894, + "model_id": 14914, + "year_id": 14922, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14924, + "make_id": 14894, + "model_id": 14924, + "year_id": 14924, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14925, + "make_id": 14894, + "model_id": 14924, + "year_id": 14924, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14926, + "make_id": 14894, + "model_id": 14924, + "year_id": 14926, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14927, + "make_id": 14894, + "model_id": 14924, + "year_id": 14926, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14928, + "make_id": 14894, + "model_id": 14924, + "year_id": 14928, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14929, + "make_id": 14894, + "model_id": 14924, + "year_id": 14928, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14930, + "make_id": 14894, + "model_id": 14924, + "year_id": 14930, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14931, + "make_id": 14894, + "model_id": 14924, + "year_id": 14930, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14932, + "make_id": 14894, + "model_id": 14932, + "year_id": 14932, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14933, + "make_id": 14894, + "model_id": 14932, + "year_id": 14933, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14934, + "make_id": 14894, + "model_id": 14932, + "year_id": 14934, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14935, + "make_id": 14894, + "model_id": 14932, + "year_id": 14935, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14936, + "make_id": 14894, + "model_id": 14932, + "year_id": 14936, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14937, + "make_id": 14894, + "model_id": 14937, + "year_id": 14937, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14938, + "make_id": 14894, + "model_id": 14937, + "year_id": 14937, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14939, + "make_id": 14894, + "model_id": 14937, + "year_id": 14939, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14940, + "make_id": 14894, + "model_id": 14937, + "year_id": 14939, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14941, + "make_id": 14894, + "model_id": 14937, + "year_id": 14939, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14942, + "make_id": 14894, + "model_id": 14937, + "year_id": 14939, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14943, + "make_id": 14894, + "model_id": 14937, + "year_id": 14943, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14944, + "make_id": 14894, + "model_id": 14937, + "year_id": 14943, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14945, + "make_id": 14894, + "model_id": 14937, + "year_id": 14943, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14946, + "make_id": 14894, + "model_id": 14937, + "year_id": 14943, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14947, + "make_id": 14894, + "model_id": 14937, + "year_id": 14947, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14948, + "make_id": 14894, + "model_id": 14937, + "year_id": 14947, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14949, + "make_id": 14894, + "model_id": 14937, + "year_id": 14947, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14950, + "make_id": 14894, + "model_id": 14937, + "year_id": 14947, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14951, + "make_id": 14894, + "model_id": 14937, + "year_id": 14951, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14952, + "make_id": 14894, + "model_id": 14937, + "year_id": 14951, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14953, + "make_id": 14894, + "model_id": 14937, + "year_id": 14951, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14954, + "make_id": 14894, + "model_id": 14937, + "year_id": 14951, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14955, + "make_id": 14894, + "model_id": 14937, + "year_id": 14955, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14956, + "make_id": 14894, + "model_id": 14937, + "year_id": 14955, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14957, + "make_id": 14894, + "model_id": 14937, + "year_id": 14955, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14958, + "make_id": 14894, + "model_id": 14937, + "year_id": 14955, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14959, + "make_id": 14894, + "model_id": 14937, + "year_id": 14959, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14960, + "make_id": 14894, + "model_id": 14937, + "year_id": 14959, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14961, + "make_id": 14894, + "model_id": 14937, + "year_id": 14959, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14962, + "make_id": 14894, + "model_id": 14937, + "year_id": 14959, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14963, + "make_id": 14894, + "model_id": 14937, + "year_id": 14963, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14964, + "make_id": 14894, + "model_id": 14937, + "year_id": 14963, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14965, + "make_id": 14894, + "model_id": 14937, + "year_id": 14963, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14966, + "make_id": 14894, + "model_id": 14937, + "year_id": 14963, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14967, + "make_id": 14894, + "model_id": 14937, + "year_id": 14967, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14968, + "make_id": 14894, + "model_id": 14937, + "year_id": 14967, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14969, + "make_id": 14894, + "model_id": 14937, + "year_id": 14967, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14970, + "make_id": 14894, + "model_id": 14937, + "year_id": 14967, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14971, + "make_id": 14894, + "model_id": 14971, + "year_id": 14971, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14972, + "make_id": 14894, + "model_id": 14971, + "year_id": 14971, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14973, + "make_id": 14894, + "model_id": 14973, + "year_id": 14973, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14974, + "make_id": 14894, + "model_id": 14973, + "year_id": 14973, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14975, + "make_id": 14894, + "model_id": 14973, + "year_id": 14973, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14976, + "make_id": 14894, + "model_id": 14973, + "year_id": 14973, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14977, + "make_id": 14894, + "model_id": 14973, + "year_id": 14977, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14978, + "make_id": 14894, + "model_id": 14973, + "year_id": 14977, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14979, + "make_id": 14894, + "model_id": 14973, + "year_id": 14977, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14980, + "make_id": 14894, + "model_id": 14973, + "year_id": 14977, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14981, + "make_id": 14894, + "model_id": 14973, + "year_id": 14981, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14982, + "make_id": 14894, + "model_id": 14973, + "year_id": 14981, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14983, + "make_id": 14894, + "model_id": 14973, + "year_id": 14981, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14984, + "make_id": 14894, + "model_id": 14973, + "year_id": 14981, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14985, + "make_id": 14894, + "model_id": 14973, + "year_id": 14985, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14986, + "make_id": 14894, + "model_id": 14973, + "year_id": 14985, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14987, + "make_id": 14894, + "model_id": 14973, + "year_id": 14985, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 14988, + "make_id": 14894, + "model_id": 14973, + "year_id": 14985, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14989, + "make_id": 14894, + "model_id": 14989, + "year_id": 14989, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14990, + "make_id": 14894, + "model_id": 14989, + "year_id": 14989, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14991, + "make_id": 14894, + "model_id": 14989, + "year_id": 14991, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14992, + "make_id": 14894, + "model_id": 14989, + "year_id": 14991, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14993, + "make_id": 14894, + "model_id": 14993, + "year_id": 14993, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14994, + "make_id": 14894, + "model_id": 14993, + "year_id": 14994, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14995, + "make_id": 14894, + "model_id": 14993, + "year_id": 14994, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14996, + "make_id": 14894, + "model_id": 14993, + "year_id": 14996, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14997, + "make_id": 14894, + "model_id": 14993, + "year_id": 14996, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 14998, + "make_id": 14894, + "model_id": 14993, + "year_id": 14996, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 14999, + "make_id": 14894, + "model_id": 14993, + "year_id": 14999, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15000, + "make_id": 14894, + "model_id": 14993, + "year_id": 14999, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15001, + "make_id": 14894, + "model_id": 14993, + "year_id": 14999, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15002, + "make_id": 14894, + "model_id": 14993, + "year_id": 14999, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15003, + "make_id": 14894, + "model_id": 14993, + "year_id": 15003, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15004, + "make_id": 14894, + "model_id": 14993, + "year_id": 15003, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15005, + "make_id": 14894, + "model_id": 14993, + "year_id": 15003, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15006, + "make_id": 14894, + "model_id": 14993, + "year_id": 15003, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15007, + "make_id": 14894, + "model_id": 14993, + "year_id": 15007, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15008, + "make_id": 14894, + "model_id": 14993, + "year_id": 15007, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15009, + "make_id": 14894, + "model_id": 14993, + "year_id": 15007, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15010, + "make_id": 14894, + "model_id": 14993, + "year_id": 15007, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15011, + "make_id": 14894, + "model_id": 14993, + "year_id": 15007, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15012, + "make_id": 14894, + "model_id": 14993, + "year_id": 15007, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15013, + "make_id": 14894, + "model_id": 14993, + "year_id": 15007, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15014, + "make_id": 14894, + "model_id": 14993, + "year_id": 15007, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15015, + "make_id": 14894, + "model_id": 14993, + "year_id": 15015, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15016, + "make_id": 14894, + "model_id": 14993, + "year_id": 15015, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15017, + "make_id": 14894, + "model_id": 14993, + "year_id": 15017, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15018, + "make_id": 14894, + "model_id": 14993, + "year_id": 15017, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15019, + "make_id": 14894, + "model_id": 15019, + "year_id": 15019, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15020, + "make_id": 14894, + "model_id": 15019, + "year_id": 15019, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15021, + "make_id": 14894, + "model_id": 15019, + "year_id": 15021, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15022, + "make_id": 14894, + "model_id": 15019, + "year_id": 15021, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15023, + "make_id": 14894, + "model_id": 15023, + "year_id": 15023, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15024, + "make_id": 14894, + "model_id": 15023, + "year_id": 15023, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15025, + "make_id": 14894, + "model_id": 15025, + "year_id": 15025, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15026, + "make_id": 14894, + "model_id": 15025, + "year_id": 15025, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15027, + "make_id": 14894, + "model_id": 15025, + "year_id": 15027, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15028, + "make_id": 14894, + "model_id": 15025, + "year_id": 15027, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15029, + "make_id": 14894, + "model_id": 15025, + "year_id": 15029, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15030, + "make_id": 14894, + "model_id": 15025, + "year_id": 15029, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15031, + "make_id": 14894, + "model_id": 15025, + "year_id": 15029, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15032, + "make_id": 14894, + "model_id": 15025, + "year_id": 15029, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15033, + "make_id": 14894, + "model_id": 15025, + "year_id": 15033, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15034, + "make_id": 14894, + "model_id": 15025, + "year_id": 15033, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15035, + "make_id": 14894, + "model_id": 15025, + "year_id": 15035, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15036, + "make_id": 14894, + "model_id": 15025, + "year_id": 15035, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15037, + "make_id": 14894, + "model_id": 15037, + "year_id": 15037, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15038, + "make_id": 14894, + "model_id": 15037, + "year_id": 15037, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15039, + "make_id": 14894, + "model_id": 15037, + "year_id": 15039, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15040, + "make_id": 14894, + "model_id": 15037, + "year_id": 15039, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15041, + "make_id": 15041, + "model_id": 15041, + "year_id": 15041, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15042, + "make_id": 15041, + "model_id": 15041, + "year_id": 15041, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15043, + "make_id": 15041, + "model_id": 15041, + "year_id": 15043, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15044, + "make_id": 15041, + "model_id": 15041, + "year_id": 15043, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15045, + "make_id": 15041, + "model_id": 15041, + "year_id": 15045, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15046, + "make_id": 15041, + "model_id": 15041, + "year_id": 15045, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15047, + "make_id": 15041, + "model_id": 15041, + "year_id": 15047, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15048, + "make_id": 15041, + "model_id": 15041, + "year_id": 15047, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15049, + "make_id": 15041, + "model_id": 15041, + "year_id": 15049, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15050, + "make_id": 15041, + "model_id": 15041, + "year_id": 15049, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15051, + "make_id": 15041, + "model_id": 15041, + "year_id": 15051, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15052, + "make_id": 15041, + "model_id": 15041, + "year_id": 15051, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15053, + "make_id": 15041, + "model_id": 15041, + "year_id": 15053, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15054, + "make_id": 15041, + "model_id": 15041, + "year_id": 15053, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15055, + "make_id": 15041, + "model_id": 15041, + "year_id": 15055, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15056, + "make_id": 15041, + "model_id": 15041, + "year_id": 15055, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15057, + "make_id": 15041, + "model_id": 15041, + "year_id": 15057, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15058, + "make_id": 15041, + "model_id": 15041, + "year_id": 15057, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15059, + "make_id": 15041, + "model_id": 15041, + "year_id": 15059, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15060, + "make_id": 15041, + "model_id": 15041, + "year_id": 15059, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15061, + "make_id": 15041, + "model_id": 15041, + "year_id": 15061, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15062, + "make_id": 15041, + "model_id": 15041, + "year_id": 15061, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15063, + "make_id": 15041, + "model_id": 15041, + "year_id": 15061, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15064, + "make_id": 15041, + "model_id": 15041, + "year_id": 15061, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15065, + "make_id": 15041, + "model_id": 15065, + "year_id": 15065, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15066, + "make_id": 15041, + "model_id": 15065, + "year_id": 15065, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15067, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15068, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15069, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15070, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15071, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15072, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15073, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15074, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15075, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15076, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15077, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15078, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15079, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15080, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15081, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15082, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15083, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15084, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15085, + "make_id": 15041, + "model_id": 15067, + "year_id": 15067, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15086, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15087, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15088, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15089, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15090, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15091, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15092, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15093, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15094, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15095, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15096, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15097, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15098, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15099, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15100, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15101, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15102, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15103, + "make_id": 15041, + "model_id": 15067, + "year_id": 15086, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15104, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15105, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15106, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15107, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15108, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15109, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15110, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15111, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15112, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15113, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15114, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15115, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15116, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15117, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15118, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15119, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15120, + "make_id": 15041, + "model_id": 15067, + "year_id": 15104, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15121, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15122, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15123, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15124, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15125, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15126, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15127, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15128, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15129, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15130, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15131, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15132, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15133, + "make_id": 15041, + "model_id": 15067, + "year_id": 15121, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15134, + "make_id": 15041, + "model_id": 15134, + "year_id": 15134, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15135, + "make_id": 15041, + "model_id": 15134, + "year_id": 15134, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15136, + "make_id": 15041, + "model_id": 15134, + "year_id": 15134, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15137, + "make_id": 15041, + "model_id": 15134, + "year_id": 15134, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15138, + "make_id": 15041, + "model_id": 15134, + "year_id": 15134, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15139, + "make_id": 15041, + "model_id": 15134, + "year_id": 15139, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15140, + "make_id": 15041, + "model_id": 15134, + "year_id": 15139, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15141, + "make_id": 15041, + "model_id": 15134, + "year_id": 15139, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15142, + "make_id": 15041, + "model_id": 15134, + "year_id": 15139, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15143, + "make_id": 15041, + "model_id": 15134, + "year_id": 15139, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15144, + "make_id": 15041, + "model_id": 15134, + "year_id": 15144, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15145, + "make_id": 15041, + "model_id": 15134, + "year_id": 15144, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15146, + "make_id": 15041, + "model_id": 15134, + "year_id": 15144, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15147, + "make_id": 15041, + "model_id": 15134, + "year_id": 15144, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15148, + "make_id": 15041, + "model_id": 15148, + "year_id": 15148, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15149, + "make_id": 15041, + "model_id": 15148, + "year_id": 15148, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "" + }, + { + "id": 15150, + "make_id": 15041, + "model_id": 15148, + "year_id": 15148, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15151, + "make_id": 15041, + "model_id": 15148, + "year_id": 15148, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15152, + "make_id": 15041, + "model_id": 15148, + "year_id": 15148, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15153, + "make_id": 15041, + "model_id": 15148, + "year_id": 15148, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15154, + "make_id": 15041, + "model_id": 15148, + "year_id": 15148, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15155, + "make_id": 15041, + "model_id": 15148, + "year_id": 15148, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15156, + "make_id": 15041, + "model_id": 15148, + "year_id": 15148, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15157, + "make_id": 15041, + "model_id": 15148, + "year_id": 15148, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15158, + "make_id": 15041, + "model_id": 15148, + "year_id": 15158, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15159, + "make_id": 15041, + "model_id": 15148, + "year_id": 15158, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15160, + "make_id": 15041, + "model_id": 15148, + "year_id": 15158, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15161, + "make_id": 15041, + "model_id": 15148, + "year_id": 15158, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15162, + "make_id": 15041, + "model_id": 15148, + "year_id": 15158, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15163, + "make_id": 15041, + "model_id": 15148, + "year_id": 15158, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15164, + "make_id": 15041, + "model_id": 15148, + "year_id": 15158, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15165, + "make_id": 15041, + "model_id": 15148, + "year_id": 15158, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15166, + "make_id": 15041, + "model_id": 15148, + "year_id": 15166, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15167, + "make_id": 15041, + "model_id": 15148, + "year_id": 15166, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15168, + "make_id": 15041, + "model_id": 15148, + "year_id": 15166, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15169, + "make_id": 15041, + "model_id": 15148, + "year_id": 15166, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15170, + "make_id": 15041, + "model_id": 15148, + "year_id": 15166, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15171, + "make_id": 15041, + "model_id": 15148, + "year_id": 15166, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15172, + "make_id": 15041, + "model_id": 15148, + "year_id": 15166, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15173, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15174, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15175, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15176, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15177, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15178, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15179, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15180, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15181, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15182, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15183, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15184, + "make_id": 15041, + "model_id": 15148, + "year_id": 15173, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15185, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15186, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15187, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15188, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15189, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15190, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15191, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15192, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15193, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15194, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15195, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15196, + "make_id": 15041, + "model_id": 15185, + "year_id": 15185, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15197, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15198, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15199, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15200, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15201, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15202, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15203, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15204, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15205, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15206, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15207, + "make_id": 15041, + "model_id": 15185, + "year_id": 15197, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15208, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15209, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15210, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15211, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15212, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15213, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15214, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15215, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15216, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15217, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15218, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15219, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15220, + "make_id": 15041, + "model_id": 15185, + "year_id": 15208, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15221, + "make_id": 15041, + "model_id": 15185, + "year_id": 15221, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15222, + "make_id": 15041, + "model_id": 15185, + "year_id": 15221, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15223, + "make_id": 15041, + "model_id": 15185, + "year_id": 15221, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15224, + "make_id": 15041, + "model_id": 15185, + "year_id": 15221, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15225, + "make_id": 15041, + "model_id": 15185, + "year_id": 15221, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15226, + "make_id": 15041, + "model_id": 15185, + "year_id": 15221, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15227, + "make_id": 15041, + "model_id": 15185, + "year_id": 15221, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15228, + "make_id": 15041, + "model_id": 15185, + "year_id": 15221, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15229, + "make_id": 15041, + "model_id": 15185, + "year_id": 15221, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15230, + "make_id": 15041, + "model_id": 15185, + "year_id": 15221, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15231, + "make_id": 15041, + "model_id": 15231, + "year_id": 15231, + "cylinders": 6, + "displacement": 3.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15232, + "make_id": 15041, + "model_id": 15231, + "year_id": 15231, + "cylinders": 6, + "displacement": 3.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15233, + "make_id": 15041, + "model_id": 15231, + "year_id": 15231, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15234, + "make_id": 15041, + "model_id": 15231, + "year_id": 15231, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15235, + "make_id": 15041, + "model_id": 15231, + "year_id": 15231, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15236, + "make_id": 15041, + "model_id": 15231, + "year_id": 15231, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15237, + "make_id": 15041, + "model_id": 15231, + "year_id": 15231, + "cylinders": 6, + "displacement": 3.8, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15238, + "make_id": 15041, + "model_id": 15231, + "year_id": 15231, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15239, + "make_id": 15041, + "model_id": 15231, + "year_id": 15231, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15240, + "make_id": 15041, + "model_id": 15231, + "year_id": 15240, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15241, + "make_id": 15041, + "model_id": 15231, + "year_id": 15240, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15242, + "make_id": 15041, + "model_id": 15231, + "year_id": 15240, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15243, + "make_id": 15041, + "model_id": 15231, + "year_id": 15240, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15244, + "make_id": 15041, + "model_id": 15231, + "year_id": 15240, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15245, + "make_id": 15041, + "model_id": 15231, + "year_id": 15240, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15246, + "make_id": 15041, + "model_id": 15231, + "year_id": 15240, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15247, + "make_id": 15041, + "model_id": 15231, + "year_id": 15247, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15248, + "make_id": 15041, + "model_id": 15231, + "year_id": 15247, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15249, + "make_id": 15041, + "model_id": 15231, + "year_id": 15247, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15250, + "make_id": 15041, + "model_id": 15231, + "year_id": 15247, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15251, + "make_id": 15041, + "model_id": 15231, + "year_id": 15251, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15252, + "make_id": 15041, + "model_id": 15231, + "year_id": 15251, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15253, + "make_id": 15041, + "model_id": 15231, + "year_id": 15251, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15254, + "make_id": 15041, + "model_id": 15231, + "year_id": 15251, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15255, + "make_id": 15041, + "model_id": 15255, + "year_id": 15255, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15256, + "make_id": 15041, + "model_id": 15255, + "year_id": 15255, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15257, + "make_id": 15041, + "model_id": 15255, + "year_id": 15255, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15258, + "make_id": 15041, + "model_id": 15255, + "year_id": 15255, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15259, + "make_id": 15041, + "model_id": 15255, + "year_id": 15255, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15260, + "make_id": 15041, + "model_id": 15255, + "year_id": 15255, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15261, + "make_id": 15041, + "model_id": 15255, + "year_id": 15255, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15262, + "make_id": 15041, + "model_id": 15255, + "year_id": 15255, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15263, + "make_id": 15041, + "model_id": 15255, + "year_id": 15263, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15264, + "make_id": 15041, + "model_id": 15255, + "year_id": 15263, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15265, + "make_id": 15041, + "model_id": 15255, + "year_id": 15263, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15266, + "make_id": 15041, + "model_id": 15255, + "year_id": 15263, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15267, + "make_id": 15041, + "model_id": 15255, + "year_id": 15263, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15268, + "make_id": 15041, + "model_id": 15255, + "year_id": 15263, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15269, + "make_id": 15041, + "model_id": 15255, + "year_id": 15263, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15270, + "make_id": 15041, + "model_id": 15255, + "year_id": 15263, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15271, + "make_id": 15041, + "model_id": 15255, + "year_id": 15271, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15272, + "make_id": 15041, + "model_id": 15255, + "year_id": 15271, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15273, + "make_id": 15041, + "model_id": 15255, + "year_id": 15271, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15274, + "make_id": 15041, + "model_id": 15255, + "year_id": 15271, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15275, + "make_id": 15041, + "model_id": 15255, + "year_id": 15271, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15276, + "make_id": 15041, + "model_id": 15255, + "year_id": 15271, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15277, + "make_id": 15041, + "model_id": 15255, + "year_id": 15271, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15278, + "make_id": 15041, + "model_id": 15255, + "year_id": 15271, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15279, + "make_id": 15041, + "model_id": 15255, + "year_id": 15279, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15280, + "make_id": 15041, + "model_id": 15255, + "year_id": 15279, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15281, + "make_id": 15041, + "model_id": 15255, + "year_id": 15279, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15282, + "make_id": 15041, + "model_id": 15255, + "year_id": 15279, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15283, + "make_id": 15041, + "model_id": 15255, + "year_id": 15279, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15284, + "make_id": 15041, + "model_id": 15255, + "year_id": 15279, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15285, + "make_id": 15041, + "model_id": 15255, + "year_id": 15285, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15286, + "make_id": 15041, + "model_id": 15255, + "year_id": 15285, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15287, + "make_id": 15041, + "model_id": 15255, + "year_id": 15285, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15288, + "make_id": 15041, + "model_id": 15255, + "year_id": 15285, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15289, + "make_id": 15041, + "model_id": 15255, + "year_id": 15285, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15290, + "make_id": 15041, + "model_id": 15255, + "year_id": 15285, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15291, + "make_id": 15041, + "model_id": 15255, + "year_id": 15291, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15292, + "make_id": 15041, + "model_id": 15255, + "year_id": 15291, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15293, + "make_id": 15041, + "model_id": 15255, + "year_id": 15291, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15294, + "make_id": 15041, + "model_id": 15255, + "year_id": 15291, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15295, + "make_id": 15041, + "model_id": 15255, + "year_id": 15291, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15296, + "make_id": 15041, + "model_id": 15255, + "year_id": 15291, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15297, + "make_id": 15041, + "model_id": 15255, + "year_id": 15291, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15298, + "make_id": 15041, + "model_id": 15255, + "year_id": 15291, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15299, + "make_id": 15041, + "model_id": 15255, + "year_id": 15299, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15300, + "make_id": 15041, + "model_id": 15255, + "year_id": 15299, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15301, + "make_id": 15041, + "model_id": 15255, + "year_id": 15299, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15302, + "make_id": 15041, + "model_id": 15255, + "year_id": 15299, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15303, + "make_id": 15041, + "model_id": 15255, + "year_id": 15299, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15304, + "make_id": 15041, + "model_id": 15255, + "year_id": 15299, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15305, + "make_id": 15041, + "model_id": 15255, + "year_id": 15299, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15306, + "make_id": 15041, + "model_id": 15255, + "year_id": 15299, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15307, + "make_id": 15041, + "model_id": 15255, + "year_id": 15307, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15308, + "make_id": 15041, + "model_id": 15255, + "year_id": 15307, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15309, + "make_id": 15041, + "model_id": 15255, + "year_id": 15307, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15310, + "make_id": 15041, + "model_id": 15255, + "year_id": 15307, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15311, + "make_id": 15041, + "model_id": 15255, + "year_id": 15307, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15312, + "make_id": 15041, + "model_id": 15255, + "year_id": 15307, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15313, + "make_id": 15041, + "model_id": 15255, + "year_id": 15307, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15314, + "make_id": 15041, + "model_id": 15255, + "year_id": 15307, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15315, + "make_id": 15041, + "model_id": 15255, + "year_id": 15315, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15316, + "make_id": 15041, + "model_id": 15255, + "year_id": 15315, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15317, + "make_id": 15041, + "model_id": 15255, + "year_id": 15315, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15318, + "make_id": 15041, + "model_id": 15255, + "year_id": 15315, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15319, + "make_id": 15041, + "model_id": 15255, + "year_id": 15315, + "cylinders": 4, + "displacement": 2.9, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15320, + "make_id": 15041, + "model_id": 15255, + "year_id": 15315, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15321, + "make_id": 15041, + "model_id": 15255, + "year_id": 15315, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15322, + "make_id": 15041, + "model_id": 15255, + "year_id": 15315, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15323, + "make_id": 15041, + "model_id": 15255, + "year_id": 15323, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15324, + "make_id": 15041, + "model_id": 15255, + "year_id": 15323, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15325, + "make_id": 15041, + "model_id": 15255, + "year_id": 15323, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 15326, + "make_id": 15041, + "model_id": 15255, + "year_id": 15323, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15327, + "make_id": 15041, + "model_id": 15255, + "year_id": 15323, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15328, + "make_id": 15041, + "model_id": 15255, + "year_id": 15328, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 15329, + "make_id": 15041, + "model_id": 15255, + "year_id": 15328, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15330, + "make_id": 15041, + "model_id": 15255, + "year_id": 15328, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15331, + "make_id": 15041, + "model_id": 15255, + "year_id": 15328, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15332, + "make_id": 15041, + "model_id": 15255, + "year_id": 15328, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15333, + "make_id": 15041, + "model_id": 15255, + "year_id": 15328, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15334, + "make_id": 15041, + "model_id": 15255, + "year_id": 15328, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15335, + "make_id": 15041, + "model_id": 15335, + "year_id": 15335, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15336, + "make_id": 15041, + "model_id": 15335, + "year_id": 15336, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 15337, + "make_id": 15041, + "model_id": 15337, + "year_id": 15337, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15338, + "make_id": 15041, + "model_id": 15337, + "year_id": 15337, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15339, + "make_id": 15041, + "model_id": 15337, + "year_id": 15339, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15340, + "make_id": 15041, + "model_id": 15337, + "year_id": 15339, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15341, + "make_id": 15041, + "model_id": 15337, + "year_id": 15341, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15342, + "make_id": 15041, + "model_id": 15337, + "year_id": 15341, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15343, + "make_id": 15041, + "model_id": 15337, + "year_id": 15343, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15344, + "make_id": 15041, + "model_id": 15337, + "year_id": 15343, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15345, + "make_id": 15041, + "model_id": 15337, + "year_id": 15345, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15346, + "make_id": 15041, + "model_id": 15337, + "year_id": 15345, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15347, + "make_id": 15041, + "model_id": 15337, + "year_id": 15347, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15348, + "make_id": 15041, + "model_id": 15337, + "year_id": 15347, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15349, + "make_id": 15041, + "model_id": 15337, + "year_id": 15349, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15350, + "make_id": 15041, + "model_id": 15337, + "year_id": 15349, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15351, + "make_id": 15041, + "model_id": 15351, + "year_id": 15351, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15352, + "make_id": 15041, + "model_id": 15351, + "year_id": 15351, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15353, + "make_id": 15041, + "model_id": 15351, + "year_id": 15351, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15354, + "make_id": 15041, + "model_id": 15351, + "year_id": 15351, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15355, + "make_id": 15041, + "model_id": 15351, + "year_id": 15351, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15356, + "make_id": 15041, + "model_id": 15351, + "year_id": 15351, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15357, + "make_id": 15041, + "model_id": 15351, + "year_id": 15357, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15358, + "make_id": 15041, + "model_id": 15351, + "year_id": 15357, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15359, + "make_id": 15041, + "model_id": 15351, + "year_id": 15357, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15360, + "make_id": 15041, + "model_id": 15351, + "year_id": 15357, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15361, + "make_id": 15041, + "model_id": 15351, + "year_id": 15357, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15362, + "make_id": 15041, + "model_id": 15351, + "year_id": 15357, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15363, + "make_id": 15041, + "model_id": 15351, + "year_id": 15363, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15364, + "make_id": 15041, + "model_id": 15351, + "year_id": 15363, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15365, + "make_id": 15041, + "model_id": 15351, + "year_id": 15363, + "cylinders": 5, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15366, + "make_id": 15041, + "model_id": 15351, + "year_id": 15363, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15367, + "make_id": 15041, + "model_id": 15351, + "year_id": 15363, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15368, + "make_id": 15041, + "model_id": 15351, + "year_id": 15363, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15369, + "make_id": 15041, + "model_id": 15351, + "year_id": 15369, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15370, + "make_id": 15041, + "model_id": 15351, + "year_id": 15369, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15371, + "make_id": 15041, + "model_id": 15351, + "year_id": 15369, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15372, + "make_id": 15041, + "model_id": 15351, + "year_id": 15369, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15373, + "make_id": 15041, + "model_id": 15351, + "year_id": 15373, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15374, + "make_id": 15041, + "model_id": 15351, + "year_id": 15373, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15375, + "make_id": 15041, + "model_id": 15351, + "year_id": 15373, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15376, + "make_id": 15041, + "model_id": 15351, + "year_id": 15373, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15377, + "make_id": 15041, + "model_id": 15351, + "year_id": 15377, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15378, + "make_id": 15041, + "model_id": 15351, + "year_id": 15377, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15379, + "make_id": 15041, + "model_id": 15351, + "year_id": 15377, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15380, + "make_id": 15041, + "model_id": 15351, + "year_id": 15377, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15381, + "make_id": 15041, + "model_id": 15351, + "year_id": 15377, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15382, + "make_id": 15041, + "model_id": 15351, + "year_id": 15377, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15383, + "make_id": 15041, + "model_id": 15351, + "year_id": 15383, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15384, + "make_id": 15041, + "model_id": 15351, + "year_id": 15383, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15385, + "make_id": 15041, + "model_id": 15351, + "year_id": 15383, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15386, + "make_id": 15041, + "model_id": 15351, + "year_id": 15383, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15387, + "make_id": 15041, + "model_id": 15351, + "year_id": 15383, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15388, + "make_id": 15041, + "model_id": 15351, + "year_id": 15383, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15389, + "make_id": 15041, + "model_id": 15351, + "year_id": 15389, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15390, + "make_id": 15041, + "model_id": 15351, + "year_id": 15389, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15391, + "make_id": 15041, + "model_id": 15351, + "year_id": 15389, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15392, + "make_id": 15041, + "model_id": 15351, + "year_id": 15389, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15393, + "make_id": 15041, + "model_id": 15351, + "year_id": 15389, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15394, + "make_id": 15041, + "model_id": 15351, + "year_id": 15389, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15395, + "make_id": 15041, + "model_id": 15351, + "year_id": 15395, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15396, + "make_id": 15041, + "model_id": 15351, + "year_id": 15395, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15397, + "make_id": 15041, + "model_id": 15351, + "year_id": 15395, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15398, + "make_id": 15041, + "model_id": 15351, + "year_id": 15395, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15399, + "make_id": 15041, + "model_id": 15351, + "year_id": 15395, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15400, + "make_id": 15041, + "model_id": 15351, + "year_id": 15395, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15401, + "make_id": 15041, + "model_id": 15401, + "year_id": 15401, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15402, + "make_id": 15041, + "model_id": 15401, + "year_id": 15401, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15403, + "make_id": 15041, + "model_id": 15401, + "year_id": 15403, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15404, + "make_id": 15041, + "model_id": 15401, + "year_id": 15403, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15405, + "make_id": 15041, + "model_id": 15401, + "year_id": 15405, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15406, + "make_id": 15041, + "model_id": 15401, + "year_id": 15405, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15407, + "make_id": 15041, + "model_id": 15401, + "year_id": 15407, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15408, + "make_id": 15041, + "model_id": 15401, + "year_id": 15407, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15409, + "make_id": 15041, + "model_id": 15401, + "year_id": 15407, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15410, + "make_id": 15041, + "model_id": 15401, + "year_id": 15407, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15411, + "make_id": 15041, + "model_id": 15401, + "year_id": 15411, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15412, + "make_id": 15041, + "model_id": 15401, + "year_id": 15411, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15413, + "make_id": 15041, + "model_id": 15401, + "year_id": 15411, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15414, + "make_id": 15041, + "model_id": 15401, + "year_id": 15411, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15415, + "make_id": 15041, + "model_id": 15401, + "year_id": 15415, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15416, + "make_id": 15041, + "model_id": 15401, + "year_id": 15415, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15417, + "make_id": 15041, + "model_id": 15401, + "year_id": 15415, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15418, + "make_id": 15041, + "model_id": 15401, + "year_id": 15415, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15419, + "make_id": 15041, + "model_id": 15401, + "year_id": 15419, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15420, + "make_id": 15041, + "model_id": 15401, + "year_id": 15419, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15421, + "make_id": 15041, + "model_id": 15401, + "year_id": 15419, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15422, + "make_id": 15041, + "model_id": 15401, + "year_id": 15419, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15423, + "make_id": 15041, + "model_id": 15401, + "year_id": 15423, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15424, + "make_id": 15041, + "model_id": 15401, + "year_id": 15423, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15425, + "make_id": 15041, + "model_id": 15401, + "year_id": 15423, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15426, + "make_id": 15041, + "model_id": 15401, + "year_id": 15423, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15427, + "make_id": 15041, + "model_id": 15427, + "year_id": 15427, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15428, + "make_id": 15041, + "model_id": 15427, + "year_id": 15427, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15429, + "make_id": 15041, + "model_id": 15427, + "year_id": 15429, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15430, + "make_id": 15041, + "model_id": 15427, + "year_id": 15429, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15431, + "make_id": 15041, + "model_id": 15427, + "year_id": 15429, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15432, + "make_id": 15041, + "model_id": 15427, + "year_id": 15429, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15433, + "make_id": 15041, + "model_id": 15427, + "year_id": 15433, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15434, + "make_id": 15041, + "model_id": 15427, + "year_id": 15433, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15435, + "make_id": 15041, + "model_id": 15427, + "year_id": 15433, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15436, + "make_id": 15041, + "model_id": 15427, + "year_id": 15433, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15437, + "make_id": 15041, + "model_id": 15427, + "year_id": 15437, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15438, + "make_id": 15041, + "model_id": 15427, + "year_id": 15437, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15439, + "make_id": 15041, + "model_id": 15427, + "year_id": 15437, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15440, + "make_id": 15041, + "model_id": 15427, + "year_id": 15437, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15441, + "make_id": 15041, + "model_id": 15427, + "year_id": 15441, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15442, + "make_id": 15041, + "model_id": 15427, + "year_id": 15441, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15443, + "make_id": 15041, + "model_id": 15427, + "year_id": 15441, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15444, + "make_id": 15041, + "model_id": 15427, + "year_id": 15441, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15445, + "make_id": 15041, + "model_id": 15427, + "year_id": 15445, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15446, + "make_id": 15041, + "model_id": 15446, + "year_id": 15446, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15447, + "make_id": 15041, + "model_id": 15446, + "year_id": 15446, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15448, + "make_id": 15041, + "model_id": 15446, + "year_id": 15446, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15449, + "make_id": 15041, + "model_id": 15446, + "year_id": 15446, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15450, + "make_id": 15041, + "model_id": 15446, + "year_id": 15450, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15451, + "make_id": 15041, + "model_id": 15446, + "year_id": 15450, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15452, + "make_id": 15041, + "model_id": 15452, + "year_id": 15452, + "cylinders": 0, + "displacement": 0, + "drive": "", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 15453, + "make_id": 15041, + "model_id": 15452, + "year_id": 15452, + "cylinders": 0, + "displacement": 0, + "drive": "", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 15454, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15455, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15456, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15457, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15458, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15459, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15460, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15461, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15462, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15463, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15464, + "make_id": 15041, + "model_id": 15454, + "year_id": 15454, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15465, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15466, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15467, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15468, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15469, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15470, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15471, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15472, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15473, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15474, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15475, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15476, + "make_id": 15041, + "model_id": 15454, + "year_id": 15465, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15477, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15478, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15479, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15480, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15481, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15482, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15483, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15484, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15485, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15486, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15487, + "make_id": 15041, + "model_id": 15454, + "year_id": 15477, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15488, + "make_id": 15041, + "model_id": 15454, + "year_id": 15488, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15489, + "make_id": 15041, + "model_id": 15454, + "year_id": 15488, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15490, + "make_id": 15041, + "model_id": 15454, + "year_id": 15488, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15491, + "make_id": 15041, + "model_id": 15454, + "year_id": 15488, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15492, + "make_id": 15041, + "model_id": 15454, + "year_id": 15488, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15493, + "make_id": 15041, + "model_id": 15454, + "year_id": 15488, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15494, + "make_id": 15041, + "model_id": 15454, + "year_id": 15494, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15495, + "make_id": 15041, + "model_id": 15454, + "year_id": 15494, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15496, + "make_id": 15041, + "model_id": 15454, + "year_id": 15494, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15497, + "make_id": 15041, + "model_id": 15454, + "year_id": 15494, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15498, + "make_id": 15041, + "model_id": 15454, + "year_id": 15494, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15499, + "make_id": 15041, + "model_id": 15454, + "year_id": 15494, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15500, + "make_id": 15041, + "model_id": 15454, + "year_id": 15500, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15501, + "make_id": 15041, + "model_id": 15454, + "year_id": 15500, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15502, + "make_id": 15041, + "model_id": 15454, + "year_id": 15500, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15503, + "make_id": 15041, + "model_id": 15454, + "year_id": 15500, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15504, + "make_id": 15041, + "model_id": 15454, + "year_id": 15500, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15505, + "make_id": 15041, + "model_id": 15454, + "year_id": 15500, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15506, + "make_id": 15041, + "model_id": 15454, + "year_id": 15506, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15507, + "make_id": 15041, + "model_id": 15454, + "year_id": 15506, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15508, + "make_id": 15041, + "model_id": 15454, + "year_id": 15506, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15509, + "make_id": 15041, + "model_id": 15454, + "year_id": 15506, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15510, + "make_id": 15041, + "model_id": 15454, + "year_id": 15510, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15511, + "make_id": 15041, + "model_id": 15454, + "year_id": 15510, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15512, + "make_id": 15041, + "model_id": 15454, + "year_id": 15510, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15513, + "make_id": 15041, + "model_id": 15454, + "year_id": 15510, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15514, + "make_id": 15041, + "model_id": 15454, + "year_id": 15514, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15515, + "make_id": 15041, + "model_id": 15454, + "year_id": 15514, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15516, + "make_id": 15041, + "model_id": 15454, + "year_id": 15514, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15517, + "make_id": 15041, + "model_id": 15454, + "year_id": 15514, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15518, + "make_id": 15041, + "model_id": 15518, + "year_id": 15518, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15519, + "make_id": 15041, + "model_id": 15518, + "year_id": 15518, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15520, + "make_id": 15041, + "model_id": 15518, + "year_id": 15518, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15521, + "make_id": 15041, + "model_id": 15518, + "year_id": 15518, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15522, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15523, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15524, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15525, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15526, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15527, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15528, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15529, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15530, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15531, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15532, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15533, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15534, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15535, + "make_id": 15041, + "model_id": 15518, + "year_id": 15522, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15536, + "make_id": 15041, + "model_id": 15518, + "year_id": 15536, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15537, + "make_id": 15041, + "model_id": 15518, + "year_id": 15536, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15538, + "make_id": 15041, + "model_id": 15518, + "year_id": 15536, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15539, + "make_id": 15041, + "model_id": 15518, + "year_id": 15536, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15540, + "make_id": 15041, + "model_id": 15518, + "year_id": 15536, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15541, + "make_id": 15041, + "model_id": 15518, + "year_id": 15536, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15542, + "make_id": 15041, + "model_id": 15518, + "year_id": 15536, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15543, + "make_id": 15041, + "model_id": 15518, + "year_id": 15536, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15544, + "make_id": 15041, + "model_id": 15518, + "year_id": 15536, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15545, + "make_id": 15041, + "model_id": 15518, + "year_id": 15536, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15546, + "make_id": 15041, + "model_id": 15518, + "year_id": 15546, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15547, + "make_id": 15041, + "model_id": 15518, + "year_id": 15546, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15548, + "make_id": 15041, + "model_id": 15518, + "year_id": 15546, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15549, + "make_id": 15041, + "model_id": 15518, + "year_id": 15546, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15550, + "make_id": 15041, + "model_id": 15518, + "year_id": 15546, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15551, + "make_id": 15041, + "model_id": 15518, + "year_id": 15546, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15552, + "make_id": 15041, + "model_id": 15518, + "year_id": 15546, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15553, + "make_id": 15041, + "model_id": 15518, + "year_id": 15546, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15554, + "make_id": 15041, + "model_id": 15518, + "year_id": 15546, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15555, + "make_id": 15041, + "model_id": 15518, + "year_id": 15555, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15556, + "make_id": 15041, + "model_id": 15518, + "year_id": 15555, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15557, + "make_id": 15041, + "model_id": 15518, + "year_id": 15555, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15558, + "make_id": 15041, + "model_id": 15518, + "year_id": 15555, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15559, + "make_id": 15041, + "model_id": 15518, + "year_id": 15555, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15560, + "make_id": 15041, + "model_id": 15518, + "year_id": 15555, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15561, + "make_id": 15041, + "model_id": 15518, + "year_id": 15555, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15562, + "make_id": 15041, + "model_id": 15518, + "year_id": 15555, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15563, + "make_id": 15041, + "model_id": 15518, + "year_id": 15555, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15564, + "make_id": 15041, + "model_id": 15518, + "year_id": 15564, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15565, + "make_id": 15041, + "model_id": 15518, + "year_id": 15564, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15566, + "make_id": 15041, + "model_id": 15518, + "year_id": 15564, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15567, + "make_id": 15041, + "model_id": 15518, + "year_id": 15564, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15568, + "make_id": 15041, + "model_id": 15518, + "year_id": 15564, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15569, + "make_id": 15041, + "model_id": 15518, + "year_id": 15569, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15570, + "make_id": 15041, + "model_id": 15518, + "year_id": 15569, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15571, + "make_id": 15041, + "model_id": 15518, + "year_id": 15569, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15572, + "make_id": 15041, + "model_id": 15518, + "year_id": 15569, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15573, + "make_id": 15041, + "model_id": 15518, + "year_id": 15573, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15574, + "make_id": 15041, + "model_id": 15518, + "year_id": 15573, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15575, + "make_id": 15041, + "model_id": 15518, + "year_id": 15573, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15576, + "make_id": 15041, + "model_id": 15518, + "year_id": 15573, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15577, + "make_id": 15041, + "model_id": 15577, + "year_id": 15577, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15578, + "make_id": 15041, + "model_id": 15577, + "year_id": 15577, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15579, + "make_id": 15041, + "model_id": 15577, + "year_id": 15579, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15580, + "make_id": 15041, + "model_id": 15577, + "year_id": 15579, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15581, + "make_id": 15041, + "model_id": 15577, + "year_id": 15581, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15582, + "make_id": 15041, + "model_id": 15577, + "year_id": 15581, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15583, + "make_id": 15041, + "model_id": 15577, + "year_id": 15583, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15584, + "make_id": 15041, + "model_id": 15577, + "year_id": 15584, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15585, + "make_id": 15041, + "model_id": 15577, + "year_id": 15585, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15586, + "make_id": 15041, + "model_id": 15577, + "year_id": 15586, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15587, + "make_id": 15041, + "model_id": 15577, + "year_id": 15587, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15588, + "make_id": 15041, + "model_id": 15577, + "year_id": 15588, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15589, + "make_id": 15041, + "model_id": 15589, + "year_id": 15589, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15590, + "make_id": 15041, + "model_id": 15589, + "year_id": 15589, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15591, + "make_id": 15041, + "model_id": 15589, + "year_id": 15591, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15592, + "make_id": 15041, + "model_id": 15589, + "year_id": 15592, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15593, + "make_id": 15041, + "model_id": 15589, + "year_id": 15593, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15594, + "make_id": 15041, + "model_id": 15589, + "year_id": 15593, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15595, + "make_id": 15041, + "model_id": 15589, + "year_id": 15595, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15596, + "make_id": 15041, + "model_id": 15589, + "year_id": 15596, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15597, + "make_id": 15041, + "model_id": 15589, + "year_id": 15597, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15598, + "make_id": 15041, + "model_id": 15589, + "year_id": 15597, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15599, + "make_id": 15041, + "model_id": 15599, + "year_id": 15599, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15600, + "make_id": 15041, + "model_id": 15599, + "year_id": 15599, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15601, + "make_id": 15041, + "model_id": 15599, + "year_id": 15599, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15602, + "make_id": 15041, + "model_id": 15599, + "year_id": 15599, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15603, + "make_id": 15041, + "model_id": 15599, + "year_id": 15599, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15604, + "make_id": 15041, + "model_id": 15599, + "year_id": 15599, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15605, + "make_id": 15041, + "model_id": 15599, + "year_id": 15605, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15606, + "make_id": 15041, + "model_id": 15599, + "year_id": 15605, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15607, + "make_id": 15041, + "model_id": 15599, + "year_id": 15605, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15608, + "make_id": 15041, + "model_id": 15599, + "year_id": 15605, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15609, + "make_id": 15041, + "model_id": 15599, + "year_id": 15609, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15610, + "make_id": 15041, + "model_id": 15599, + "year_id": 15609, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15611, + "make_id": 15041, + "model_id": 15599, + "year_id": 15609, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15612, + "make_id": 15041, + "model_id": 15599, + "year_id": 15609, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15613, + "make_id": 15041, + "model_id": 15599, + "year_id": 15613, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15614, + "make_id": 15041, + "model_id": 15599, + "year_id": 15613, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15615, + "make_id": 15041, + "model_id": 15599, + "year_id": 15613, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15616, + "make_id": 15041, + "model_id": 15599, + "year_id": 15613, + "cylinders": 6, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15617, + "make_id": 15041, + "model_id": 15599, + "year_id": 15617, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15618, + "make_id": 15041, + "model_id": 15599, + "year_id": 15617, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15619, + "make_id": 15041, + "model_id": 15599, + "year_id": 15617, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15620, + "make_id": 15041, + "model_id": 15599, + "year_id": 15617, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15621, + "make_id": 15041, + "model_id": 15599, + "year_id": 15617, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15622, + "make_id": 15041, + "model_id": 15599, + "year_id": 15622, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15623, + "make_id": 15041, + "model_id": 15599, + "year_id": 15622, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15624, + "make_id": 15041, + "model_id": 15599, + "year_id": 15622, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15625, + "make_id": 15041, + "model_id": 15599, + "year_id": 15622, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15626, + "make_id": 15041, + "model_id": 15599, + "year_id": 15622, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15627, + "make_id": 15041, + "model_id": 15599, + "year_id": 15627, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15628, + "make_id": 15041, + "model_id": 15599, + "year_id": 15627, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15629, + "make_id": 15041, + "model_id": 15599, + "year_id": 15627, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15630, + "make_id": 15041, + "model_id": 15599, + "year_id": 15627, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15631, + "make_id": 15041, + "model_id": 15599, + "year_id": 15627, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15632, + "make_id": 15041, + "model_id": 15599, + "year_id": 15632, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15633, + "make_id": 15041, + "model_id": 15599, + "year_id": 15632, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15634, + "make_id": 15041, + "model_id": 15599, + "year_id": 15632, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15635, + "make_id": 15041, + "model_id": 15599, + "year_id": 15632, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15636, + "make_id": 15041, + "model_id": 15599, + "year_id": 15636, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15637, + "make_id": 15041, + "model_id": 15599, + "year_id": 15636, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15638, + "make_id": 15041, + "model_id": 15599, + "year_id": 15636, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15639, + "make_id": 15041, + "model_id": 15599, + "year_id": 15636, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15640, + "make_id": 15041, + "model_id": 15599, + "year_id": 15640, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15641, + "make_id": 15041, + "model_id": 15599, + "year_id": 15640, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15642, + "make_id": 15041, + "model_id": 15599, + "year_id": 15640, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15643, + "make_id": 15041, + "model_id": 15599, + "year_id": 15640, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15644, + "make_id": 15041, + "model_id": 15599, + "year_id": 15644, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15645, + "make_id": 15041, + "model_id": 15599, + "year_id": 15644, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15646, + "make_id": 15041, + "model_id": 15599, + "year_id": 15644, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15647, + "make_id": 15041, + "model_id": 15599, + "year_id": 15644, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15648, + "make_id": 15041, + "model_id": 15599, + "year_id": 15648, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15649, + "make_id": 15041, + "model_id": 15599, + "year_id": 15648, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15650, + "make_id": 15041, + "model_id": 15599, + "year_id": 15648, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15651, + "make_id": 15041, + "model_id": 15599, + "year_id": 15648, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15652, + "make_id": 15041, + "model_id": 15599, + "year_id": 15652, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15653, + "make_id": 15041, + "model_id": 15599, + "year_id": 15652, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15654, + "make_id": 15041, + "model_id": 15654, + "year_id": 15654, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15655, + "make_id": 15041, + "model_id": 15654, + "year_id": 15654, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15656, + "make_id": 15041, + "model_id": 15654, + "year_id": 15654, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15657, + "make_id": 15041, + "model_id": 15654, + "year_id": 15654, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15658, + "make_id": 15041, + "model_id": 15658, + "year_id": 15658, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15659, + "make_id": 15041, + "model_id": 15658, + "year_id": 15658, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15660, + "make_id": 15041, + "model_id": 15658, + "year_id": 15658, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15661, + "make_id": 15041, + "model_id": 15658, + "year_id": 15658, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15662, + "make_id": 15041, + "model_id": 15658, + "year_id": 15662, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15663, + "make_id": 15041, + "model_id": 15658, + "year_id": 15662, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15664, + "make_id": 15041, + "model_id": 15658, + "year_id": 15662, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15665, + "make_id": 15041, + "model_id": 15658, + "year_id": 15665, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15666, + "make_id": 15041, + "model_id": 15658, + "year_id": 15665, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15667, + "make_id": 15041, + "model_id": 15658, + "year_id": 15665, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15668, + "make_id": 15041, + "model_id": 15668, + "year_id": 15668, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15669, + "make_id": 15041, + "model_id": 15668, + "year_id": 15668, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15670, + "make_id": 15041, + "model_id": 15668, + "year_id": 15668, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15671, + "make_id": 15041, + "model_id": 15668, + "year_id": 15668, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15672, + "make_id": 15041, + "model_id": 15668, + "year_id": 15668, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15673, + "make_id": 15041, + "model_id": 15668, + "year_id": 15673, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15674, + "make_id": 15041, + "model_id": 15668, + "year_id": 15673, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15675, + "make_id": 15041, + "model_id": 15668, + "year_id": 15673, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15676, + "make_id": 15041, + "model_id": 15668, + "year_id": 15673, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15677, + "make_id": 15041, + "model_id": 15668, + "year_id": 15673, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15678, + "make_id": 15041, + "model_id": 15668, + "year_id": 15678, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15679, + "make_id": 15041, + "model_id": 15668, + "year_id": 15678, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15680, + "make_id": 15041, + "model_id": 15668, + "year_id": 15678, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15681, + "make_id": 15041, + "model_id": 15668, + "year_id": 15678, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15682, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 6, + "displacement": 4.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15683, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 6, + "displacement": 4.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15684, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 6, + "displacement": 4.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15685, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15686, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15687, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15688, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15689, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15690, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15691, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15692, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15693, + "make_id": 15041, + "model_id": 15682, + "year_id": 15682, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15694, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15695, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15696, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15697, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15698, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15699, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15700, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15701, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15702, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15703, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15704, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15705, + "make_id": 15041, + "model_id": 15682, + "year_id": 15694, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15706, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15707, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15708, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15709, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15710, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15711, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15712, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15713, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15714, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15715, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15716, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15717, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15718, + "make_id": 15041, + "model_id": 15682, + "year_id": 15706, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15719, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15720, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15721, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15722, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15723, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15724, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15725, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15726, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15727, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15728, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15729, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15730, + "make_id": 15041, + "model_id": 15682, + "year_id": 15719, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15731, + "make_id": 15041, + "model_id": 15731, + "year_id": 15731, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15732, + "make_id": 15041, + "model_id": 15731, + "year_id": 15731, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15733, + "make_id": 15041, + "model_id": 15731, + "year_id": 15731, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15734, + "make_id": 15041, + "model_id": 15731, + "year_id": 15731, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15735, + "make_id": 15041, + "model_id": 15731, + "year_id": 15731, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15736, + "make_id": 15041, + "model_id": 15731, + "year_id": 15736, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15737, + "make_id": 15041, + "model_id": 15731, + "year_id": 15736, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15738, + "make_id": 15041, + "model_id": 15731, + "year_id": 15736, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15739, + "make_id": 15041, + "model_id": 15731, + "year_id": 15736, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15740, + "make_id": 15041, + "model_id": 15731, + "year_id": 15736, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15741, + "make_id": 15041, + "model_id": 15731, + "year_id": 15741, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15742, + "make_id": 15041, + "model_id": 15731, + "year_id": 15741, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15743, + "make_id": 15041, + "model_id": 15731, + "year_id": 15741, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15744, + "make_id": 15041, + "model_id": 15731, + "year_id": 15741, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15745, + "make_id": 15041, + "model_id": 15745, + "year_id": 15745, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15746, + "make_id": 15041, + "model_id": 15745, + "year_id": 15745, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15747, + "make_id": 15041, + "model_id": 15745, + "year_id": 15745, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15748, + "make_id": 15041, + "model_id": 15745, + "year_id": 15745, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15749, + "make_id": 15041, + "model_id": 15745, + "year_id": 15745, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15750, + "make_id": 15041, + "model_id": 15745, + "year_id": 15750, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15751, + "make_id": 15041, + "model_id": 15745, + "year_id": 15750, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15752, + "make_id": 15041, + "model_id": 15745, + "year_id": 15750, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15753, + "make_id": 15041, + "model_id": 15745, + "year_id": 15750, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15754, + "make_id": 15041, + "model_id": 15745, + "year_id": 15754, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15755, + "make_id": 15041, + "model_id": 15745, + "year_id": 15754, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15756, + "make_id": 15041, + "model_id": 15745, + "year_id": 15754, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15757, + "make_id": 15041, + "model_id": 15745, + "year_id": 15754, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15758, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15759, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15760, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15761, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15762, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15763, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15764, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15765, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15766, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15767, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15768, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15769, + "make_id": 15041, + "model_id": 15745, + "year_id": 15758, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15770, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15771, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15772, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15773, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15774, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15775, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15776, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15777, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15778, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15779, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15780, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15781, + "make_id": 15041, + "model_id": 15770, + "year_id": 15770, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15782, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15783, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15784, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15785, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15786, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15787, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15788, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15789, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15790, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15791, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15792, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15793, + "make_id": 15041, + "model_id": 15770, + "year_id": 15782, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15794, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15795, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15796, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15797, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15798, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15799, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15800, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15801, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15802, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15803, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15804, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15805, + "make_id": 15041, + "model_id": 15770, + "year_id": 15794, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15806, + "make_id": 15041, + "model_id": 15770, + "year_id": 15806, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15807, + "make_id": 15041, + "model_id": 15770, + "year_id": 15806, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15808, + "make_id": 15041, + "model_id": 15770, + "year_id": 15806, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15809, + "make_id": 15041, + "model_id": 15770, + "year_id": 15806, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15810, + "make_id": 15041, + "model_id": 15770, + "year_id": 15806, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15811, + "make_id": 15041, + "model_id": 15770, + "year_id": 15806, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15812, + "make_id": 15041, + "model_id": 15770, + "year_id": 15806, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15813, + "make_id": 15041, + "model_id": 15770, + "year_id": 15806, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15814, + "make_id": 15041, + "model_id": 15770, + "year_id": 15806, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15815, + "make_id": 15041, + "model_id": 15770, + "year_id": 15806, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15816, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15817, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15818, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 15819, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15820, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15821, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15822, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15823, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15824, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15825, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15826, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15827, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15828, + "make_id": 15041, + "model_id": 15816, + "year_id": 15816, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15829, + "make_id": 15041, + "model_id": 15829, + "year_id": 15829, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15830, + "make_id": 15041, + "model_id": 15829, + "year_id": 15829, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15831, + "make_id": 15041, + "model_id": 15829, + "year_id": 15829, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15832, + "make_id": 15041, + "model_id": 15829, + "year_id": 15832, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15833, + "make_id": 15041, + "model_id": 15829, + "year_id": 15832, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15834, + "make_id": 15041, + "model_id": 15834, + "year_id": 15834, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15835, + "make_id": 15041, + "model_id": 15834, + "year_id": 15834, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15836, + "make_id": 15041, + "model_id": 15834, + "year_id": 15836, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15837, + "make_id": 15041, + "model_id": 15834, + "year_id": 15836, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15838, + "make_id": 15041, + "model_id": 15834, + "year_id": 15838, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15839, + "make_id": 15041, + "model_id": 15834, + "year_id": 15838, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15840, + "make_id": 15041, + "model_id": 15840, + "year_id": 15840, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15841, + "make_id": 15041, + "model_id": 15840, + "year_id": 15840, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15842, + "make_id": 15041, + "model_id": 15840, + "year_id": 15840, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15843, + "make_id": 15041, + "model_id": 15840, + "year_id": 15840, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15844, + "make_id": 15041, + "model_id": 15840, + "year_id": 15840, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15845, + "make_id": 15041, + "model_id": 15840, + "year_id": 15840, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15846, + "make_id": 15041, + "model_id": 15840, + "year_id": 15840, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15847, + "make_id": 15041, + "model_id": 15840, + "year_id": 15840, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15848, + "make_id": 15041, + "model_id": 15840, + "year_id": 15840, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15849, + "make_id": 15041, + "model_id": 15840, + "year_id": 15840, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15850, + "make_id": 15041, + "model_id": 15850, + "year_id": 15850, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15851, + "make_id": 15041, + "model_id": 15850, + "year_id": 15850, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15852, + "make_id": 15041, + "model_id": 15850, + "year_id": 15850, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15853, + "make_id": 15041, + "model_id": 15850, + "year_id": 15850, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15854, + "make_id": 15041, + "model_id": 15850, + "year_id": 15854, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15855, + "make_id": 15041, + "model_id": 15850, + "year_id": 15854, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15856, + "make_id": 15041, + "model_id": 15850, + "year_id": 15854, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15857, + "make_id": 15041, + "model_id": 15850, + "year_id": 15854, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15858, + "make_id": 15041, + "model_id": 15850, + "year_id": 15858, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15859, + "make_id": 15041, + "model_id": 15850, + "year_id": 15858, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15860, + "make_id": 15041, + "model_id": 15850, + "year_id": 15858, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15861, + "make_id": 15041, + "model_id": 15861, + "year_id": 15861, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15862, + "make_id": 15041, + "model_id": 15862, + "year_id": 15862, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15863, + "make_id": 15041, + "model_id": 15862, + "year_id": 15863, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15864, + "make_id": 15041, + "model_id": 15864, + "year_id": 15864, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15865, + "make_id": 15041, + "model_id": 15864, + "year_id": 15864, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15866, + "make_id": 15041, + "model_id": 15864, + "year_id": 15864, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15867, + "make_id": 15041, + "model_id": 15864, + "year_id": 15864, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15868, + "make_id": 15041, + "model_id": 15864, + "year_id": 15868, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15869, + "make_id": 15041, + "model_id": 15864, + "year_id": 15868, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15870, + "make_id": 15041, + "model_id": 15864, + "year_id": 15868, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15871, + "make_id": 15041, + "model_id": 15864, + "year_id": 15868, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15872, + "make_id": 15041, + "model_id": 15864, + "year_id": 15872, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15873, + "make_id": 15041, + "model_id": 15864, + "year_id": 15872, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15874, + "make_id": 15041, + "model_id": 15864, + "year_id": 15872, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15875, + "make_id": 15041, + "model_id": 15864, + "year_id": 15875, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15876, + "make_id": 15041, + "model_id": 15864, + "year_id": 15875, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15877, + "make_id": 15041, + "model_id": 15864, + "year_id": 15875, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15878, + "make_id": 15041, + "model_id": 15864, + "year_id": 15878, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15879, + "make_id": 15041, + "model_id": 15864, + "year_id": 15878, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15880, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15881, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15882, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15883, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15884, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15885, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15886, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15887, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15888, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15889, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15890, + "make_id": 15041, + "model_id": 15880, + "year_id": 15880, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15891, + "make_id": 15041, + "model_id": 15880, + "year_id": 15891, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15892, + "make_id": 15041, + "model_id": 15880, + "year_id": 15891, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15893, + "make_id": 15041, + "model_id": 15880, + "year_id": 15891, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15894, + "make_id": 15041, + "model_id": 15880, + "year_id": 15891, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15895, + "make_id": 15041, + "model_id": 15880, + "year_id": 15891, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15896, + "make_id": 15041, + "model_id": 15880, + "year_id": 15891, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15897, + "make_id": 15041, + "model_id": 15880, + "year_id": 15891, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15898, + "make_id": 15041, + "model_id": 15880, + "year_id": 15891, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15899, + "make_id": 15041, + "model_id": 15880, + "year_id": 15891, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15900, + "make_id": 15041, + "model_id": 15880, + "year_id": 15891, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15901, + "make_id": 15041, + "model_id": 15880, + "year_id": 15901, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15902, + "make_id": 15041, + "model_id": 15880, + "year_id": 15901, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15903, + "make_id": 15041, + "model_id": 15880, + "year_id": 15901, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15904, + "make_id": 15041, + "model_id": 15880, + "year_id": 15901, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15905, + "make_id": 15041, + "model_id": 15880, + "year_id": 15901, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15906, + "make_id": 15041, + "model_id": 15880, + "year_id": 15901, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15907, + "make_id": 15041, + "model_id": 15880, + "year_id": 15907, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15908, + "make_id": 15041, + "model_id": 15880, + "year_id": 15907, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15909, + "make_id": 15041, + "model_id": 15880, + "year_id": 15907, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15910, + "make_id": 15041, + "model_id": 15880, + "year_id": 15907, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15911, + "make_id": 15041, + "model_id": 15880, + "year_id": 15907, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15912, + "make_id": 15041, + "model_id": 15880, + "year_id": 15907, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15913, + "make_id": 15041, + "model_id": 15880, + "year_id": 15907, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15914, + "make_id": 15041, + "model_id": 15880, + "year_id": 15907, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15915, + "make_id": 15041, + "model_id": 15880, + "year_id": 15915, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15916, + "make_id": 15041, + "model_id": 15880, + "year_id": 15915, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15917, + "make_id": 15041, + "model_id": 15880, + "year_id": 15915, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15918, + "make_id": 15041, + "model_id": 15880, + "year_id": 15915, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15919, + "make_id": 15041, + "model_id": 15880, + "year_id": 15915, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15920, + "make_id": 15041, + "model_id": 15880, + "year_id": 15915, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15921, + "make_id": 15041, + "model_id": 15880, + "year_id": 15921, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15922, + "make_id": 15041, + "model_id": 15880, + "year_id": 15921, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15923, + "make_id": 15041, + "model_id": 15880, + "year_id": 15921, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15924, + "make_id": 15041, + "model_id": 15880, + "year_id": 15921, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15925, + "make_id": 15041, + "model_id": 15880, + "year_id": 15921, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15926, + "make_id": 15041, + "model_id": 15880, + "year_id": 15926, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15927, + "make_id": 15041, + "model_id": 15880, + "year_id": 15926, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15928, + "make_id": 15041, + "model_id": 15880, + "year_id": 15926, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15929, + "make_id": 15041, + "model_id": 15880, + "year_id": 15926, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15930, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15931, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15932, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15933, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15934, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15935, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15936, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15937, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15938, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15939, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15940, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15941, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15942, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15943, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15944, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15945, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15946, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15947, + "make_id": 15041, + "model_id": 15930, + "year_id": 15930, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15948, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15949, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15950, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15951, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15952, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15953, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15954, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15955, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15956, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15957, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15958, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15959, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15960, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15961, + "make_id": 15041, + "model_id": 15930, + "year_id": 15948, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15962, + "make_id": 15041, + "model_id": 15930, + "year_id": 15962, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15963, + "make_id": 15041, + "model_id": 15930, + "year_id": 15962, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15964, + "make_id": 15041, + "model_id": 15930, + "year_id": 15962, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15965, + "make_id": 15041, + "model_id": 15930, + "year_id": 15962, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15966, + "make_id": 15041, + "model_id": 15930, + "year_id": 15962, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15967, + "make_id": 15041, + "model_id": 15930, + "year_id": 15962, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15968, + "make_id": 15041, + "model_id": 15930, + "year_id": 15968, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15969, + "make_id": 15041, + "model_id": 15930, + "year_id": 15968, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15970, + "make_id": 15041, + "model_id": 15930, + "year_id": 15968, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15971, + "make_id": 15041, + "model_id": 15930, + "year_id": 15968, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15972, + "make_id": 15041, + "model_id": 15930, + "year_id": 15968, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 15973, + "make_id": 15041, + "model_id": 15930, + "year_id": 15968, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15974, + "make_id": 15041, + "model_id": 15930, + "year_id": 15968, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15975, + "make_id": 15041, + "model_id": 15930, + "year_id": 15968, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15976, + "make_id": 15041, + "model_id": 15930, + "year_id": 15976, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15977, + "make_id": 15041, + "model_id": 15930, + "year_id": 15976, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15978, + "make_id": 15041, + "model_id": 15930, + "year_id": 15976, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15979, + "make_id": 15041, + "model_id": 15930, + "year_id": 15976, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15980, + "make_id": 15041, + "model_id": 15930, + "year_id": 15976, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15981, + "make_id": 15041, + "model_id": 15930, + "year_id": 15976, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15982, + "make_id": 15041, + "model_id": 15930, + "year_id": 15982, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15983, + "make_id": 15041, + "model_id": 15930, + "year_id": 15982, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15984, + "make_id": 15041, + "model_id": 15930, + "year_id": 15982, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15985, + "make_id": 15041, + "model_id": 15930, + "year_id": 15982, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15986, + "make_id": 15041, + "model_id": 15930, + "year_id": 15982, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15987, + "make_id": 15041, + "model_id": 15930, + "year_id": 15982, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15988, + "make_id": 15041, + "model_id": 15930, + "year_id": 15982, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15989, + "make_id": 15041, + "model_id": 15930, + "year_id": 15989, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15990, + "make_id": 15041, + "model_id": 15930, + "year_id": 15989, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15991, + "make_id": 15041, + "model_id": 15930, + "year_id": 15989, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15992, + "make_id": 15041, + "model_id": 15930, + "year_id": 15989, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15993, + "make_id": 15041, + "model_id": 15930, + "year_id": 15989, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15994, + "make_id": 15041, + "model_id": 15930, + "year_id": 15989, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15995, + "make_id": 15041, + "model_id": 15930, + "year_id": 15989, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 15996, + "make_id": 15041, + "model_id": 15996, + "year_id": 15996, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15997, + "make_id": 15041, + "model_id": 15996, + "year_id": 15996, + "cylinders": 6, + "displacement": 2.8, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 15998, + "make_id": 15041, + "model_id": 15998, + "year_id": 15998, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 15999, + "make_id": 15041, + "model_id": 15998, + "year_id": 15998, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16000, + "make_id": 15041, + "model_id": 15998, + "year_id": 15998, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16001, + "make_id": 15041, + "model_id": 15998, + "year_id": 15998, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16002, + "make_id": 15041, + "model_id": 15998, + "year_id": 15998, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16003, + "make_id": 15041, + "model_id": 15998, + "year_id": 15998, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16004, + "make_id": 15041, + "model_id": 15998, + "year_id": 15998, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16005, + "make_id": 15041, + "model_id": 15998, + "year_id": 15998, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16006, + "make_id": 15041, + "model_id": 15998, + "year_id": 15998, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16007, + "make_id": 15041, + "model_id": 15998, + "year_id": 15998, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16008, + "make_id": 15041, + "model_id": 15998, + "year_id": 16008, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16009, + "make_id": 15041, + "model_id": 15998, + "year_id": 16008, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16010, + "make_id": 15041, + "model_id": 15998, + "year_id": 16008, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16011, + "make_id": 15041, + "model_id": 15998, + "year_id": 16008, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16012, + "make_id": 15041, + "model_id": 15998, + "year_id": 16008, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16013, + "make_id": 15041, + "model_id": 15998, + "year_id": 16008, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16014, + "make_id": 15041, + "model_id": 15998, + "year_id": 16014, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16015, + "make_id": 15041, + "model_id": 15998, + "year_id": 16014, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16016, + "make_id": 15041, + "model_id": 15998, + "year_id": 16014, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16017, + "make_id": 15041, + "model_id": 15998, + "year_id": 16014, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16018, + "make_id": 15041, + "model_id": 15998, + "year_id": 16014, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16019, + "make_id": 15041, + "model_id": 15998, + "year_id": 16019, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16020, + "make_id": 15041, + "model_id": 15998, + "year_id": 16019, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16021, + "make_id": 15041, + "model_id": 15998, + "year_id": 16019, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16022, + "make_id": 15041, + "model_id": 15998, + "year_id": 16019, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16023, + "make_id": 15041, + "model_id": 15998, + "year_id": 16023, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16024, + "make_id": 15041, + "model_id": 15998, + "year_id": 16023, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16025, + "make_id": 15041, + "model_id": 15998, + "year_id": 16023, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16026, + "make_id": 15041, + "model_id": 15998, + "year_id": 16023, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16027, + "make_id": 15041, + "model_id": 15998, + "year_id": 16027, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16028, + "make_id": 15041, + "model_id": 15998, + "year_id": 16027, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16029, + "make_id": 15041, + "model_id": 15998, + "year_id": 16027, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16030, + "make_id": 15041, + "model_id": 15998, + "year_id": 16027, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16031, + "make_id": 15041, + "model_id": 15998, + "year_id": 16031, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16032, + "make_id": 15041, + "model_id": 15998, + "year_id": 16031, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16033, + "make_id": 15041, + "model_id": 15998, + "year_id": 16033, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16034, + "make_id": 15041, + "model_id": 15998, + "year_id": 16033, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16035, + "make_id": 15041, + "model_id": 15998, + "year_id": 16033, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16036, + "make_id": 15041, + "model_id": 15998, + "year_id": 16033, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16037, + "make_id": 15041, + "model_id": 15998, + "year_id": 16037, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16038, + "make_id": 15041, + "model_id": 15998, + "year_id": 16037, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16039, + "make_id": 15041, + "model_id": 15998, + "year_id": 16037, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16040, + "make_id": 15041, + "model_id": 15998, + "year_id": 16040, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16041, + "make_id": 15041, + "model_id": 15998, + "year_id": 16040, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16042, + "make_id": 15041, + "model_id": 15998, + "year_id": 16040, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16043, + "make_id": 15041, + "model_id": 15998, + "year_id": 16043, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16044, + "make_id": 15041, + "model_id": 15998, + "year_id": 16043, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16045, + "make_id": 15041, + "model_id": 15998, + "year_id": 16045, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16046, + "make_id": 15041, + "model_id": 15998, + "year_id": 16045, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16047, + "make_id": 15041, + "model_id": 15998, + "year_id": 16047, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16048, + "make_id": 15041, + "model_id": 15998, + "year_id": 16047, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16049, + "make_id": 15041, + "model_id": 15998, + "year_id": 16049, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16050, + "make_id": 15041, + "model_id": 15998, + "year_id": 16049, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16051, + "make_id": 15041, + "model_id": 15998, + "year_id": 16051, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16052, + "make_id": 15041, + "model_id": 15998, + "year_id": 16051, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16053, + "make_id": 15041, + "model_id": 15998, + "year_id": 16053, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16054, + "make_id": 15041, + "model_id": 15998, + "year_id": 16053, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16055, + "make_id": 15041, + "model_id": 15998, + "year_id": 16055, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16056, + "make_id": 15041, + "model_id": 15998, + "year_id": 16055, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16057, + "make_id": 15041, + "model_id": 15998, + "year_id": 16057, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16058, + "make_id": 15041, + "model_id": 15998, + "year_id": 16057, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16059, + "make_id": 15041, + "model_id": 15998, + "year_id": 16059, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16060, + "make_id": 15041, + "model_id": 15998, + "year_id": 16059, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16061, + "make_id": 15041, + "model_id": 15998, + "year_id": 16061, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16062, + "make_id": 15041, + "model_id": 15998, + "year_id": 16061, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16063, + "make_id": 15041, + "model_id": 15998, + "year_id": 16063, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16064, + "make_id": 15041, + "model_id": 15998, + "year_id": 16063, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16065, + "make_id": 15041, + "model_id": 16065, + "year_id": 16065, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16066, + "make_id": 15041, + "model_id": 16065, + "year_id": 16065, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16067, + "make_id": 15041, + "model_id": 16065, + "year_id": 16065, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16068, + "make_id": 15041, + "model_id": 16065, + "year_id": 16065, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16069, + "make_id": 15041, + "model_id": 16065, + "year_id": 16065, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16070, + "make_id": 15041, + "model_id": 16065, + "year_id": 16065, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16071, + "make_id": 15041, + "model_id": 16065, + "year_id": 16065, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16072, + "make_id": 15041, + "model_id": 16065, + "year_id": 16065, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16073, + "make_id": 15041, + "model_id": 16065, + "year_id": 16065, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16074, + "make_id": 15041, + "model_id": 16065, + "year_id": 16065, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16075, + "make_id": 15041, + "model_id": 16065, + "year_id": 16075, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16076, + "make_id": 15041, + "model_id": 16065, + "year_id": 16075, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16077, + "make_id": 15041, + "model_id": 16065, + "year_id": 16075, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16078, + "make_id": 15041, + "model_id": 16065, + "year_id": 16075, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16079, + "make_id": 15041, + "model_id": 16065, + "year_id": 16075, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16080, + "make_id": 15041, + "model_id": 16065, + "year_id": 16075, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16081, + "make_id": 15041, + "model_id": 16065, + "year_id": 16081, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16082, + "make_id": 15041, + "model_id": 16065, + "year_id": 16081, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16083, + "make_id": 15041, + "model_id": 16065, + "year_id": 16083, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16084, + "make_id": 15041, + "model_id": 16065, + "year_id": 16083, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16085, + "make_id": 15041, + "model_id": 16065, + "year_id": 16085, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16086, + "make_id": 15041, + "model_id": 16065, + "year_id": 16085, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16087, + "make_id": 15041, + "model_id": 16065, + "year_id": 16087, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16088, + "make_id": 15041, + "model_id": 16065, + "year_id": 16087, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16089, + "make_id": 15041, + "model_id": 16065, + "year_id": 16089, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16090, + "make_id": 15041, + "model_id": 16065, + "year_id": 16089, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16091, + "make_id": 15041, + "model_id": 16065, + "year_id": 16091, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16092, + "make_id": 15041, + "model_id": 16065, + "year_id": 16091, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16093, + "make_id": 15041, + "model_id": 16065, + "year_id": 16091, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16094, + "make_id": 15041, + "model_id": 16065, + "year_id": 16091, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16095, + "make_id": 15041, + "model_id": 16065, + "year_id": 16095, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16096, + "make_id": 15041, + "model_id": 16065, + "year_id": 16095, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16097, + "make_id": 15041, + "model_id": 16065, + "year_id": 16095, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16098, + "make_id": 15041, + "model_id": 16065, + "year_id": 16098, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16099, + "make_id": 15041, + "model_id": 16065, + "year_id": 16098, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16100, + "make_id": 15041, + "model_id": 16065, + "year_id": 16098, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16101, + "make_id": 15041, + "model_id": 16065, + "year_id": 16101, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16102, + "make_id": 15041, + "model_id": 16065, + "year_id": 16101, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16103, + "make_id": 15041, + "model_id": 16065, + "year_id": 16103, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16104, + "make_id": 15041, + "model_id": 16065, + "year_id": 16103, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16105, + "make_id": 15041, + "model_id": 16065, + "year_id": 16105, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16106, + "make_id": 15041, + "model_id": 16065, + "year_id": 16105, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16107, + "make_id": 15041, + "model_id": 16065, + "year_id": 16107, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16108, + "make_id": 15041, + "model_id": 16065, + "year_id": 16107, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16109, + "make_id": 15041, + "model_id": 16065, + "year_id": 16109, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16110, + "make_id": 15041, + "model_id": 16065, + "year_id": 16109, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16111, + "make_id": 15041, + "model_id": 16111, + "year_id": 16111, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16112, + "make_id": 15041, + "model_id": 16111, + "year_id": 16111, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16113, + "make_id": 15041, + "model_id": 16111, + "year_id": 16113, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16114, + "make_id": 15041, + "model_id": 16111, + "year_id": 16113, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16115, + "make_id": 15041, + "model_id": 16111, + "year_id": 16115, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16116, + "make_id": 15041, + "model_id": 16111, + "year_id": 16115, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16117, + "make_id": 15041, + "model_id": 16111, + "year_id": 16117, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16118, + "make_id": 15041, + "model_id": 16111, + "year_id": 16117, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16119, + "make_id": 15041, + "model_id": 16111, + "year_id": 16119, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16120, + "make_id": 15041, + "model_id": 16111, + "year_id": 16119, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16121, + "make_id": 15041, + "model_id": 16111, + "year_id": 16121, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16122, + "make_id": 15041, + "model_id": 16111, + "year_id": 16121, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16123, + "make_id": 15041, + "model_id": 16123, + "year_id": 16123, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16124, + "make_id": 15041, + "model_id": 16123, + "year_id": 16123, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16125, + "make_id": 15041, + "model_id": 16123, + "year_id": 16125, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16126, + "make_id": 15041, + "model_id": 16123, + "year_id": 16125, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16127, + "make_id": 15041, + "model_id": 16123, + "year_id": 16127, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16128, + "make_id": 15041, + "model_id": 16123, + "year_id": 16127, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16129, + "make_id": 15041, + "model_id": 16129, + "year_id": 16129, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16130, + "make_id": 15041, + "model_id": 16130, + "year_id": 16130, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16131, + "make_id": 15041, + "model_id": 16130, + "year_id": 16130, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16132, + "make_id": 15041, + "model_id": 16130, + "year_id": 16130, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16133, + "make_id": 15041, + "model_id": 16130, + "year_id": 16133, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16134, + "make_id": 15041, + "model_id": 16130, + "year_id": 16133, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16135, + "make_id": 15041, + "model_id": 16130, + "year_id": 16133, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16136, + "make_id": 15041, + "model_id": 16130, + "year_id": 16136, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16137, + "make_id": 15041, + "model_id": 16130, + "year_id": 16136, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16138, + "make_id": 15041, + "model_id": 16130, + "year_id": 16136, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16139, + "make_id": 15041, + "model_id": 16130, + "year_id": 16139, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16140, + "make_id": 15041, + "model_id": 16130, + "year_id": 16139, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16141, + "make_id": 15041, + "model_id": 16130, + "year_id": 16141, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16142, + "make_id": 15041, + "model_id": 16130, + "year_id": 16141, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16143, + "make_id": 15041, + "model_id": 16130, + "year_id": 16143, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16144, + "make_id": 15041, + "model_id": 16130, + "year_id": 16143, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16145, + "make_id": 15041, + "model_id": 16145, + "year_id": 16145, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16146, + "make_id": 15041, + "model_id": 16145, + "year_id": 16146, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16147, + "make_id": 15041, + "model_id": 16145, + "year_id": 16147, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16148, + "make_id": 15041, + "model_id": 16145, + "year_id": 16148, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16149, + "make_id": 15041, + "model_id": 16145, + "year_id": 16149, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16150, + "make_id": 15041, + "model_id": 16145, + "year_id": 16150, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16151, + "make_id": 15041, + "model_id": 16151, + "year_id": 16151, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16152, + "make_id": 15041, + "model_id": 16151, + "year_id": 16152, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16153, + "make_id": 15041, + "model_id": 16151, + "year_id": 16152, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16154, + "make_id": 15041, + "model_id": 16151, + "year_id": 16154, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16155, + "make_id": 15041, + "model_id": 16151, + "year_id": 16154, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16156, + "make_id": 15041, + "model_id": 16151, + "year_id": 16156, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16157, + "make_id": 15041, + "model_id": 16151, + "year_id": 16157, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16158, + "make_id": 15041, + "model_id": 16151, + "year_id": 16158, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16159, + "make_id": 15041, + "model_id": 16151, + "year_id": 16159, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16160, + "make_id": 15041, + "model_id": 16151, + "year_id": 16160, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16161, + "make_id": 15041, + "model_id": 16151, + "year_id": 16160, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16162, + "make_id": 15041, + "model_id": 16151, + "year_id": 16162, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16163, + "make_id": 15041, + "model_id": 16163, + "year_id": 16163, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16164, + "make_id": 15041, + "model_id": 16163, + "year_id": 16163, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16165, + "make_id": 15041, + "model_id": 16163, + "year_id": 16163, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16166, + "make_id": 15041, + "model_id": 16163, + "year_id": 16163, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16167, + "make_id": 15041, + "model_id": 16163, + "year_id": 16167, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16168, + "make_id": 15041, + "model_id": 16163, + "year_id": 16167, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16169, + "make_id": 15041, + "model_id": 16163, + "year_id": 16169, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16170, + "make_id": 15041, + "model_id": 16163, + "year_id": 16169, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16171, + "make_id": 15041, + "model_id": 16163, + "year_id": 16171, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16172, + "make_id": 15041, + "model_id": 16163, + "year_id": 16171, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16173, + "make_id": 15041, + "model_id": 16163, + "year_id": 16173, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16174, + "make_id": 15041, + "model_id": 16163, + "year_id": 16173, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16175, + "make_id": 15041, + "model_id": 16163, + "year_id": 16175, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16176, + "make_id": 15041, + "model_id": 16163, + "year_id": 16175, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16177, + "make_id": 15041, + "model_id": 16177, + "year_id": 16177, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16178, + "make_id": 15041, + "model_id": 16177, + "year_id": 16178, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16179, + "make_id": 15041, + "model_id": 16177, + "year_id": 16179, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16180, + "make_id": 15041, + "model_id": 16177, + "year_id": 16180, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16181, + "make_id": 15041, + "model_id": 16177, + "year_id": 16181, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16182, + "make_id": 15041, + "model_id": 16177, + "year_id": 16181, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16183, + "make_id": 15041, + "model_id": 16177, + "year_id": 16183, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16184, + "make_id": 15041, + "model_id": 16177, + "year_id": 16183, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16185, + "make_id": 15041, + "model_id": 16177, + "year_id": 16185, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16186, + "make_id": 15041, + "model_id": 16177, + "year_id": 16185, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16187, + "make_id": 15041, + "model_id": 16177, + "year_id": 16185, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16188, + "make_id": 15041, + "model_id": 16177, + "year_id": 16185, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16189, + "make_id": 15041, + "model_id": 16177, + "year_id": 16189, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16190, + "make_id": 15041, + "model_id": 16177, + "year_id": 16189, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16191, + "make_id": 15041, + "model_id": 16177, + "year_id": 16191, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16192, + "make_id": 15041, + "model_id": 16177, + "year_id": 16191, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16193, + "make_id": 15041, + "model_id": 16177, + "year_id": 16191, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16194, + "make_id": 15041, + "model_id": 16177, + "year_id": 16194, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16195, + "make_id": 15041, + "model_id": 16177, + "year_id": 16194, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16196, + "make_id": 15041, + "model_id": 16177, + "year_id": 16196, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16197, + "make_id": 15041, + "model_id": 16177, + "year_id": 16196, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16198, + "make_id": 15041, + "model_id": 16177, + "year_id": 16198, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16199, + "make_id": 15041, + "model_id": 16177, + "year_id": 16198, + "cylinders": 8, + "displacement": 5.3, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16200, + "make_id": 15041, + "model_id": 16200, + "year_id": 16200, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16201, + "make_id": 15041, + "model_id": 16200, + "year_id": 16200, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16202, + "make_id": 15041, + "model_id": 16200, + "year_id": 16200, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16203, + "make_id": 15041, + "model_id": 16200, + "year_id": 16203, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16204, + "make_id": 15041, + "model_id": 16200, + "year_id": 16204, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16205, + "make_id": 15041, + "model_id": 16200, + "year_id": 16205, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16206, + "make_id": 15041, + "model_id": 16200, + "year_id": 16206, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16207, + "make_id": 15041, + "model_id": 16207, + "year_id": 16207, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16208, + "make_id": 15041, + "model_id": 16207, + "year_id": 16207, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16209, + "make_id": 15041, + "model_id": 16207, + "year_id": 16207, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16210, + "make_id": 15041, + "model_id": 16210, + "year_id": 16210, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16211, + "make_id": 15041, + "model_id": 16210, + "year_id": 16210, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16212, + "make_id": 15041, + "model_id": 16210, + "year_id": 16210, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16213, + "make_id": 15041, + "model_id": 16210, + "year_id": 16213, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16214, + "make_id": 15041, + "model_id": 16210, + "year_id": 16213, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16215, + "make_id": 15041, + "model_id": 16210, + "year_id": 16213, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16216, + "make_id": 15041, + "model_id": 16210, + "year_id": 16216, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16217, + "make_id": 15041, + "model_id": 16210, + "year_id": 16216, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16218, + "make_id": 15041, + "model_id": 16210, + "year_id": 16216, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16219, + "make_id": 15041, + "model_id": 16210, + "year_id": 16219, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16220, + "make_id": 15041, + "model_id": 16210, + "year_id": 16219, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16221, + "make_id": 15041, + "model_id": 16210, + "year_id": 16219, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16222, + "make_id": 15041, + "model_id": 16210, + "year_id": 16222, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16223, + "make_id": 15041, + "model_id": 16210, + "year_id": 16222, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16224, + "make_id": 15041, + "model_id": 16210, + "year_id": 16222, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16225, + "make_id": 15041, + "model_id": 16210, + "year_id": 16225, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16226, + "make_id": 15041, + "model_id": 16210, + "year_id": 16225, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16227, + "make_id": 15041, + "model_id": 16210, + "year_id": 16225, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16228, + "make_id": 15041, + "model_id": 16210, + "year_id": 16228, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16229, + "make_id": 15041, + "model_id": 16210, + "year_id": 16228, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16230, + "make_id": 15041, + "model_id": 16210, + "year_id": 16228, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16231, + "make_id": 15041, + "model_id": 16210, + "year_id": 16231, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16232, + "make_id": 15041, + "model_id": 16210, + "year_id": 16231, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16233, + "make_id": 15041, + "model_id": 16210, + "year_id": 16231, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16234, + "make_id": 15041, + "model_id": 16210, + "year_id": 16234, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16235, + "make_id": 15041, + "model_id": 16210, + "year_id": 16234, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16236, + "make_id": 15041, + "model_id": 16210, + "year_id": 16234, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16237, + "make_id": 15041, + "model_id": 16210, + "year_id": 16237, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16238, + "make_id": 15041, + "model_id": 16210, + "year_id": 16237, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16239, + "make_id": 15041, + "model_id": 16210, + "year_id": 16237, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16240, + "make_id": 15041, + "model_id": 16210, + "year_id": 16240, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16241, + "make_id": 15041, + "model_id": 16210, + "year_id": 16240, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16242, + "make_id": 15041, + "model_id": 16210, + "year_id": 16240, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16243, + "make_id": 15041, + "model_id": 16210, + "year_id": 16243, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16244, + "make_id": 15041, + "model_id": 16210, + "year_id": 16243, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16245, + "make_id": 15041, + "model_id": 16210, + "year_id": 16243, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16246, + "make_id": 15041, + "model_id": 16210, + "year_id": 16243, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16247, + "make_id": 15041, + "model_id": 16210, + "year_id": 16243, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16248, + "make_id": 15041, + "model_id": 16210, + "year_id": 16248, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16249, + "make_id": 15041, + "model_id": 16210, + "year_id": 16248, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16250, + "make_id": 15041, + "model_id": 16210, + "year_id": 16248, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16251, + "make_id": 15041, + "model_id": 16210, + "year_id": 16248, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16252, + "make_id": 15041, + "model_id": 16210, + "year_id": 16248, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16253, + "make_id": 15041, + "model_id": 16253, + "year_id": 16253, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16254, + "make_id": 15041, + "model_id": 16253, + "year_id": 16253, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16255, + "make_id": 15041, + "model_id": 16253, + "year_id": 16253, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16256, + "make_id": 15041, + "model_id": 16253, + "year_id": 16256, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16257, + "make_id": 15041, + "model_id": 16253, + "year_id": 16256, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16258, + "make_id": 15041, + "model_id": 16253, + "year_id": 16256, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16259, + "make_id": 15041, + "model_id": 16253, + "year_id": 16259, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16260, + "make_id": 15041, + "model_id": 16253, + "year_id": 16259, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16261, + "make_id": 15041, + "model_id": 16253, + "year_id": 16259, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16262, + "make_id": 15041, + "model_id": 16253, + "year_id": 16262, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16263, + "make_id": 15041, + "model_id": 16253, + "year_id": 16262, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16264, + "make_id": 15041, + "model_id": 16253, + "year_id": 16262, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16265, + "make_id": 15041, + "model_id": 16265, + "year_id": 16265, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16266, + "make_id": 15041, + "model_id": 16265, + "year_id": 16265, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16267, + "make_id": 15041, + "model_id": 16265, + "year_id": 16265, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16268, + "make_id": 15041, + "model_id": 16265, + "year_id": 16268, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16269, + "make_id": 15041, + "model_id": 16265, + "year_id": 16268, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16270, + "make_id": 15041, + "model_id": 16265, + "year_id": 16268, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16271, + "make_id": 15041, + "model_id": 16265, + "year_id": 16271, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16272, + "make_id": 15041, + "model_id": 16265, + "year_id": 16271, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16273, + "make_id": 15041, + "model_id": 16265, + "year_id": 16273, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16274, + "make_id": 15041, + "model_id": 16265, + "year_id": 16273, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16275, + "make_id": 15041, + "model_id": 16265, + "year_id": 16275, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16276, + "make_id": 15041, + "model_id": 16265, + "year_id": 16275, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16277, + "make_id": 15041, + "model_id": 16265, + "year_id": 16277, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16278, + "make_id": 15041, + "model_id": 16265, + "year_id": 16277, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16279, + "make_id": 15041, + "model_id": 16265, + "year_id": 16279, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16280, + "make_id": 15041, + "model_id": 16265, + "year_id": 16279, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16281, + "make_id": 15041, + "model_id": 16265, + "year_id": 16281, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16282, + "make_id": 15041, + "model_id": 16265, + "year_id": 16281, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16283, + "make_id": 15041, + "model_id": 16283, + "year_id": 16283, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16284, + "make_id": 15041, + "model_id": 16283, + "year_id": 16284, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16285, + "make_id": 15041, + "model_id": 16285, + "year_id": 16285, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16286, + "make_id": 15041, + "model_id": 16285, + "year_id": 16286, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16287, + "make_id": 15041, + "model_id": 16285, + "year_id": 16286, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16288, + "make_id": 15041, + "model_id": 16285, + "year_id": 16288, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16289, + "make_id": 15041, + "model_id": 16285, + "year_id": 16288, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16290, + "make_id": 15041, + "model_id": 16285, + "year_id": 16290, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16291, + "make_id": 15041, + "model_id": 16285, + "year_id": 16290, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16292, + "make_id": 15041, + "model_id": 16285, + "year_id": 16292, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16293, + "make_id": 15041, + "model_id": 16285, + "year_id": 16292, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16294, + "make_id": 15041, + "model_id": 16285, + "year_id": 16292, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16295, + "make_id": 15041, + "model_id": 16285, + "year_id": 16295, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16296, + "make_id": 15041, + "model_id": 16296, + "year_id": 16296, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16297, + "make_id": 15041, + "model_id": 16296, + "year_id": 16297, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16298, + "make_id": 15041, + "model_id": 16296, + "year_id": 16298, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16299, + "make_id": 15041, + "model_id": 16296, + "year_id": 16299, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16300, + "make_id": 15041, + "model_id": 16296, + "year_id": 16300, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16301, + "make_id": 15041, + "model_id": 16296, + "year_id": 16300, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16302, + "make_id": 15041, + "model_id": 16302, + "year_id": 16302, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16303, + "make_id": 15041, + "model_id": 16302, + "year_id": 16303, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16304, + "make_id": 15041, + "model_id": 16304, + "year_id": 16304, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16305, + "make_id": 15041, + "model_id": 16304, + "year_id": 16305, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16306, + "make_id": 15041, + "model_id": 16304, + "year_id": 16305, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16307, + "make_id": 15041, + "model_id": 16304, + "year_id": 16307, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16308, + "make_id": 15041, + "model_id": 16304, + "year_id": 16307, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16309, + "make_id": 15041, + "model_id": 16304, + "year_id": 16309, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16310, + "make_id": 15041, + "model_id": 16304, + "year_id": 16309, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16311, + "make_id": 15041, + "model_id": 16304, + "year_id": 16311, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16312, + "make_id": 15041, + "model_id": 16304, + "year_id": 16311, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16313, + "make_id": 15041, + "model_id": 16304, + "year_id": 16311, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16314, + "make_id": 15041, + "model_id": 16304, + "year_id": 16314, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16315, + "make_id": 15041, + "model_id": 16315, + "year_id": 16315, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16316, + "make_id": 15041, + "model_id": 16316, + "year_id": 16316, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16317, + "make_id": 15041, + "model_id": 16317, + "year_id": 16317, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16318, + "make_id": 15041, + "model_id": 16318, + "year_id": 16318, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16319, + "make_id": 15041, + "model_id": 16318, + "year_id": 16318, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16320, + "make_id": 15041, + "model_id": 16318, + "year_id": 16320, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16321, + "make_id": 15041, + "model_id": 16318, + "year_id": 16320, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16322, + "make_id": 15041, + "model_id": 16318, + "year_id": 16322, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16323, + "make_id": 15041, + "model_id": 16318, + "year_id": 16322, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16324, + "make_id": 15041, + "model_id": 16318, + "year_id": 16324, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 16325, + "make_id": 15041, + "model_id": 16318, + "year_id": 16324, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 16326, + "make_id": 15041, + "model_id": 16318, + "year_id": 16326, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 16327, + "make_id": 15041, + "model_id": 16318, + "year_id": 16326, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 16328, + "make_id": 15041, + "model_id": 16318, + "year_id": 16328, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 16329, + "make_id": 15041, + "model_id": 16318, + "year_id": 16328, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 16330, + "make_id": 15041, + "model_id": 16318, + "year_id": 16330, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 16331, + "make_id": 15041, + "model_id": 16318, + "year_id": 16330, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 16332, + "make_id": 15041, + "model_id": 16318, + "year_id": 16332, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 16333, + "make_id": 15041, + "model_id": 16318, + "year_id": 16332, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 16334, + "make_id": 15041, + "model_id": 16318, + "year_id": 16334, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 16335, + "make_id": 15041, + "model_id": 16318, + "year_id": 16334, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 16336, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 16337, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16338, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16339, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16340, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 16341, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16342, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16343, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16344, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16345, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16346, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16347, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16348, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 16349, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16350, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16351, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16352, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 16353, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16354, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16355, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16356, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16357, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16358, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16359, + "make_id": 15041, + "model_id": 16336, + "year_id": 16336, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16360, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 16361, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16362, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16363, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 16364, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16365, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16366, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16367, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16368, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16369, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16370, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16371, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 16372, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16373, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16374, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16375, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 16376, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16377, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16378, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16379, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16380, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16381, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16382, + "make_id": 15041, + "model_id": 16336, + "year_id": 16360, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16383, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16384, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16385, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16386, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16387, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16388, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16389, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16390, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16391, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16392, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16393, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16394, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16395, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16396, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16397, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16398, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16399, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16400, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16401, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16402, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16403, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16404, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16405, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16406, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16407, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16408, + "make_id": 15041, + "model_id": 16336, + "year_id": 16383, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16409, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16410, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16411, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16412, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16413, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16414, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16415, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16416, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16417, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16418, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16419, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16420, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16421, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16422, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16423, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16424, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16425, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16426, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16427, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16428, + "make_id": 15041, + "model_id": 16336, + "year_id": 16409, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16429, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16430, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16431, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16432, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16433, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16434, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16435, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16436, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16437, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16438, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16439, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16440, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16441, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16442, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16443, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16444, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16445, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16446, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16447, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16448, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16449, + "make_id": 15041, + "model_id": 16336, + "year_id": 16429, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16450, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16451, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16452, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16453, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16454, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16455, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16456, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16457, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16458, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16459, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16460, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16461, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16462, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16463, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16464, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16465, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16466, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16467, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16468, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16469, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16470, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16471, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16472, + "make_id": 15041, + "model_id": 16336, + "year_id": 16450, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16473, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16474, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16475, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16476, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16477, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16478, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16479, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16480, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16481, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16482, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16483, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16484, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16485, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16486, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16487, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16488, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16489, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16490, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16491, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16492, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16493, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16494, + "make_id": 15041, + "model_id": 16336, + "year_id": 16473, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16495, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16496, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16497, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16498, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16499, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16500, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16501, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16502, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16503, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16504, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16505, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16506, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16507, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16508, + "make_id": 15041, + "model_id": 16336, + "year_id": 16495, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16509, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16510, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16511, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16512, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16513, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16514, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16515, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16516, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16517, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16518, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16519, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16520, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16521, + "make_id": 15041, + "model_id": 16336, + "year_id": 16509, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16522, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16523, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16524, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16525, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16526, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16527, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16528, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16529, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16530, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16531, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16532, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16533, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16534, + "make_id": 15041, + "model_id": 16336, + "year_id": 16522, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16535, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16536, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16537, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16538, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16539, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16540, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16541, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16542, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16543, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16544, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16545, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16546, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16547, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16548, + "make_id": 15041, + "model_id": 16336, + "year_id": 16535, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16549, + "make_id": 15041, + "model_id": 16336, + "year_id": 16549, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16550, + "make_id": 15041, + "model_id": 16336, + "year_id": 16549, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16551, + "make_id": 15041, + "model_id": 16336, + "year_id": 16549, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16552, + "make_id": 15041, + "model_id": 16336, + "year_id": 16549, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16553, + "make_id": 15041, + "model_id": 16336, + "year_id": 16549, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16554, + "make_id": 15041, + "model_id": 16336, + "year_id": 16549, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16555, + "make_id": 15041, + "model_id": 16336, + "year_id": 16549, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16556, + "make_id": 15041, + "model_id": 16336, + "year_id": 16549, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16557, + "make_id": 15041, + "model_id": 16336, + "year_id": 16549, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16558, + "make_id": 15041, + "model_id": 16336, + "year_id": 16549, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16559, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16560, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16561, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16562, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16563, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16564, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16565, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16566, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16567, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16568, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16569, + "make_id": 15041, + "model_id": 16336, + "year_id": 16559, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16570, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16571, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16572, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16573, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16574, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16575, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16576, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16577, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16578, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16579, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16580, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16581, + "make_id": 15041, + "model_id": 16336, + "year_id": 16570, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16582, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16583, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16584, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16585, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16586, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16587, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16588, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16589, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16590, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16591, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16592, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16593, + "make_id": 15041, + "model_id": 16336, + "year_id": 16582, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16594, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16595, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16596, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16597, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16598, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16599, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16600, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16601, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16602, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16603, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16604, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16605, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16606, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16607, + "make_id": 15041, + "model_id": 16336, + "year_id": 16594, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16608, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16609, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16610, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16611, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16612, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16613, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16614, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16615, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16616, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16617, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16618, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16619, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16620, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16621, + "make_id": 15041, + "model_id": 16336, + "year_id": 16608, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16622, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16623, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16624, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16625, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16626, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16627, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16628, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16629, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16630, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16631, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16632, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16633, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16634, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16635, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16636, + "make_id": 15041, + "model_id": 16336, + "year_id": 16622, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16637, + "make_id": 15041, + "model_id": 16637, + "year_id": 16637, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16638, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16639, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16640, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16641, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16642, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16643, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16644, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16645, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16646, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16647, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16648, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16649, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16650, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16651, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16652, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16653, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16654, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16655, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16656, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16657, + "make_id": 15041, + "model_id": 16637, + "year_id": 16638, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16658, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16659, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16660, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16661, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16662, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16663, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16664, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16665, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16666, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16667, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16668, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16669, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16670, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16671, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16672, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16673, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16674, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16675, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16676, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16677, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16678, + "make_id": 15041, + "model_id": 16637, + "year_id": 16658, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16679, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16680, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16681, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16682, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16683, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16684, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16685, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16686, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16687, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16688, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16689, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16690, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16691, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16692, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16693, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16694, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16695, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16696, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16697, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16698, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16699, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16700, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16701, + "make_id": 15041, + "model_id": 16637, + "year_id": 16679, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16702, + "make_id": 15041, + "model_id": 16637, + "year_id": 16702, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16703, + "make_id": 15041, + "model_id": 16637, + "year_id": 16702, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16704, + "make_id": 15041, + "model_id": 16637, + "year_id": 16702, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16705, + "make_id": 15041, + "model_id": 16637, + "year_id": 16702, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16706, + "make_id": 15041, + "model_id": 16637, + "year_id": 16702, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16707, + "make_id": 15041, + "model_id": 16637, + "year_id": 16707, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16708, + "make_id": 15041, + "model_id": 16637, + "year_id": 16707, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16709, + "make_id": 15041, + "model_id": 16637, + "year_id": 16707, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16710, + "make_id": 15041, + "model_id": 16637, + "year_id": 16707, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16711, + "make_id": 15041, + "model_id": 16637, + "year_id": 16707, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16712, + "make_id": 15041, + "model_id": 16637, + "year_id": 16712, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16713, + "make_id": 15041, + "model_id": 16637, + "year_id": 16712, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16714, + "make_id": 15041, + "model_id": 16637, + "year_id": 16712, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16715, + "make_id": 15041, + "model_id": 16637, + "year_id": 16712, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16716, + "make_id": 15041, + "model_id": 16637, + "year_id": 16712, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16717, + "make_id": 15041, + "model_id": 16637, + "year_id": 16717, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16718, + "make_id": 15041, + "model_id": 16637, + "year_id": 16717, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16719, + "make_id": 15041, + "model_id": 16637, + "year_id": 16719, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16720, + "make_id": 15041, + "model_id": 16637, + "year_id": 16719, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16721, + "make_id": 15041, + "model_id": 16721, + "year_id": 16721, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16722, + "make_id": 15041, + "model_id": 16722, + "year_id": 16722, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16723, + "make_id": 15041, + "model_id": 16722, + "year_id": 16722, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16724, + "make_id": 15041, + "model_id": 16724, + "year_id": 16724, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16725, + "make_id": 15041, + "model_id": 16724, + "year_id": 16724, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16726, + "make_id": 15041, + "model_id": 16724, + "year_id": 16724, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16727, + "make_id": 15041, + "model_id": 16724, + "year_id": 16724, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16728, + "make_id": 15041, + "model_id": 16724, + "year_id": 16724, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16729, + "make_id": 15041, + "model_id": 16724, + "year_id": 16724, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16730, + "make_id": 15041, + "model_id": 16724, + "year_id": 16730, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16731, + "make_id": 15041, + "model_id": 16724, + "year_id": 16730, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16732, + "make_id": 15041, + "model_id": 16724, + "year_id": 16730, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16733, + "make_id": 15041, + "model_id": 16724, + "year_id": 16730, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16734, + "make_id": 15041, + "model_id": 16724, + "year_id": 16730, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16735, + "make_id": 15041, + "model_id": 16724, + "year_id": 16730, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16736, + "make_id": 15041, + "model_id": 16724, + "year_id": 16736, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16737, + "make_id": 15041, + "model_id": 16724, + "year_id": 16736, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16738, + "make_id": 15041, + "model_id": 16724, + "year_id": 16736, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16739, + "make_id": 15041, + "model_id": 16724, + "year_id": 16736, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16740, + "make_id": 15041, + "model_id": 16724, + "year_id": 16736, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16741, + "make_id": 15041, + "model_id": 16724, + "year_id": 16736, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16742, + "make_id": 15041, + "model_id": 16724, + "year_id": 16736, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16743, + "make_id": 15041, + "model_id": 16724, + "year_id": 16736, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16744, + "make_id": 15041, + "model_id": 16724, + "year_id": 16744, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16745, + "make_id": 15041, + "model_id": 16724, + "year_id": 16744, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16746, + "make_id": 15041, + "model_id": 16724, + "year_id": 16744, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16747, + "make_id": 15041, + "model_id": 16724, + "year_id": 16744, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16748, + "make_id": 15041, + "model_id": 16724, + "year_id": 16748, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16749, + "make_id": 15041, + "model_id": 16724, + "year_id": 16748, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16750, + "make_id": 15041, + "model_id": 16724, + "year_id": 16748, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16751, + "make_id": 15041, + "model_id": 16724, + "year_id": 16748, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16752, + "make_id": 15041, + "model_id": 16724, + "year_id": 16752, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16753, + "make_id": 15041, + "model_id": 16724, + "year_id": 16752, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16754, + "make_id": 15041, + "model_id": 16724, + "year_id": 16752, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16755, + "make_id": 15041, + "model_id": 16724, + "year_id": 16752, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16756, + "make_id": 15041, + "model_id": 16724, + "year_id": 16756, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16757, + "make_id": 15041, + "model_id": 16724, + "year_id": 16756, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16758, + "make_id": 15041, + "model_id": 16724, + "year_id": 16756, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16759, + "make_id": 15041, + "model_id": 16724, + "year_id": 16756, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16760, + "make_id": 15041, + "model_id": 16724, + "year_id": 16760, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16761, + "make_id": 15041, + "model_id": 16724, + "year_id": 16760, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16762, + "make_id": 15041, + "model_id": 16724, + "year_id": 16760, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16763, + "make_id": 15041, + "model_id": 16724, + "year_id": 16763, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16764, + "make_id": 15041, + "model_id": 16724, + "year_id": 16763, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16765, + "make_id": 15041, + "model_id": 16724, + "year_id": 16763, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16766, + "make_id": 15041, + "model_id": 16724, + "year_id": 16763, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 16767, + "make_id": 15041, + "model_id": 16724, + "year_id": 16767, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16768, + "make_id": 15041, + "model_id": 16724, + "year_id": 16767, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16769, + "make_id": 15041, + "model_id": 16724, + "year_id": 16767, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16770, + "make_id": 15041, + "model_id": 16724, + "year_id": 16767, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 16771, + "make_id": 15041, + "model_id": 16724, + "year_id": 16767, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 16772, + "make_id": 15041, + "model_id": 16772, + "year_id": 16772, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16773, + "make_id": 15041, + "model_id": 16772, + "year_id": 16772, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16774, + "make_id": 15041, + "model_id": 16772, + "year_id": 16772, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16775, + "make_id": 15041, + "model_id": 16772, + "year_id": 16775, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16776, + "make_id": 15041, + "model_id": 16776, + "year_id": 16776, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16777, + "make_id": 15041, + "model_id": 16776, + "year_id": 16777, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16778, + "make_id": 15041, + "model_id": 16776, + "year_id": 16778, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16779, + "make_id": 15041, + "model_id": 16776, + "year_id": 16779, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16780, + "make_id": 15041, + "model_id": 16776, + "year_id": 16780, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16781, + "make_id": 15041, + "model_id": 16781, + "year_id": 16781, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16782, + "make_id": 15041, + "model_id": 16781, + "year_id": 16781, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16783, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16784, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16785, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16786, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16787, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16788, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16789, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16790, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16791, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16792, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16793, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16794, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16795, + "make_id": 15041, + "model_id": 16783, + "year_id": 16783, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16796, + "make_id": 15041, + "model_id": 16796, + "year_id": 16796, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16797, + "make_id": 15041, + "model_id": 16796, + "year_id": 16797, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16798, + "make_id": 15041, + "model_id": 16798, + "year_id": 16798, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16799, + "make_id": 15041, + "model_id": 16798, + "year_id": 16798, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16800, + "make_id": 15041, + "model_id": 16798, + "year_id": 16798, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16801, + "make_id": 15041, + "model_id": 16798, + "year_id": 16798, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16802, + "make_id": 15041, + "model_id": 16798, + "year_id": 16798, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16803, + "make_id": 15041, + "model_id": 16798, + "year_id": 16798, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16804, + "make_id": 15041, + "model_id": 16798, + "year_id": 16804, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16805, + "make_id": 15041, + "model_id": 16798, + "year_id": 16804, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16806, + "make_id": 15041, + "model_id": 16798, + "year_id": 16804, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16807, + "make_id": 15041, + "model_id": 16798, + "year_id": 16804, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16808, + "make_id": 15041, + "model_id": 16798, + "year_id": 16804, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16809, + "make_id": 15041, + "model_id": 16798, + "year_id": 16804, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16810, + "make_id": 15041, + "model_id": 16798, + "year_id": 16810, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16811, + "make_id": 15041, + "model_id": 16798, + "year_id": 16810, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16812, + "make_id": 15041, + "model_id": 16798, + "year_id": 16810, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16813, + "make_id": 15041, + "model_id": 16798, + "year_id": 16810, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16814, + "make_id": 15041, + "model_id": 16798, + "year_id": 16810, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16815, + "make_id": 15041, + "model_id": 16798, + "year_id": 16810, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16816, + "make_id": 15041, + "model_id": 16798, + "year_id": 16810, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16817, + "make_id": 15041, + "model_id": 16798, + "year_id": 16810, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16818, + "make_id": 15041, + "model_id": 16798, + "year_id": 16810, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16819, + "make_id": 15041, + "model_id": 16798, + "year_id": 16819, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16820, + "make_id": 15041, + "model_id": 16798, + "year_id": 16819, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16821, + "make_id": 15041, + "model_id": 16798, + "year_id": 16819, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16822, + "make_id": 15041, + "model_id": 16798, + "year_id": 16819, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16823, + "make_id": 15041, + "model_id": 16798, + "year_id": 16819, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16824, + "make_id": 15041, + "model_id": 16798, + "year_id": 16824, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16825, + "make_id": 15041, + "model_id": 16798, + "year_id": 16824, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16826, + "make_id": 15041, + "model_id": 16798, + "year_id": 16824, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16827, + "make_id": 15041, + "model_id": 16798, + "year_id": 16824, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16828, + "make_id": 15041, + "model_id": 16798, + "year_id": 16824, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16829, + "make_id": 15041, + "model_id": 16798, + "year_id": 16829, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16830, + "make_id": 15041, + "model_id": 16798, + "year_id": 16829, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16831, + "make_id": 15041, + "model_id": 16798, + "year_id": 16829, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16832, + "make_id": 15041, + "model_id": 16798, + "year_id": 16829, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16833, + "make_id": 15041, + "model_id": 16798, + "year_id": 16829, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16834, + "make_id": 15041, + "model_id": 16798, + "year_id": 16834, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16835, + "make_id": 15041, + "model_id": 16798, + "year_id": 16834, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16836, + "make_id": 15041, + "model_id": 16798, + "year_id": 16834, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16837, + "make_id": 15041, + "model_id": 16798, + "year_id": 16834, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16838, + "make_id": 15041, + "model_id": 16798, + "year_id": 16834, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16839, + "make_id": 15041, + "model_id": 16798, + "year_id": 16839, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16840, + "make_id": 15041, + "model_id": 16798, + "year_id": 16839, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16841, + "make_id": 15041, + "model_id": 16798, + "year_id": 16839, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16842, + "make_id": 15041, + "model_id": 16798, + "year_id": 16842, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16843, + "make_id": 15041, + "model_id": 16798, + "year_id": 16842, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16844, + "make_id": 15041, + "model_id": 16798, + "year_id": 16842, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16845, + "make_id": 15041, + "model_id": 16798, + "year_id": 16842, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 16846, + "make_id": 15041, + "model_id": 16798, + "year_id": 16846, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16847, + "make_id": 15041, + "model_id": 16798, + "year_id": 16846, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16848, + "make_id": 15041, + "model_id": 16798, + "year_id": 16846, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 16849, + "make_id": 15041, + "model_id": 16798, + "year_id": 16846, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16850, + "make_id": 15041, + "model_id": 16798, + "year_id": 16846, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 16851, + "make_id": 15041, + "model_id": 16851, + "year_id": 16851, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16852, + "make_id": 15041, + "model_id": 16851, + "year_id": 16851, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16853, + "make_id": 15041, + "model_id": 16851, + "year_id": 16851, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16854, + "make_id": 15041, + "model_id": 16851, + "year_id": 16854, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 16855, + "make_id": 15041, + "model_id": 16855, + "year_id": 16855, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16856, + "make_id": 15041, + "model_id": 16855, + "year_id": 16855, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16857, + "make_id": 15041, + "model_id": 16855, + "year_id": 16855, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16858, + "make_id": 15041, + "model_id": 16855, + "year_id": 16855, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16859, + "make_id": 15041, + "model_id": 16855, + "year_id": 16855, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16860, + "make_id": 15041, + "model_id": 16855, + "year_id": 16855, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16861, + "make_id": 15041, + "model_id": 16855, + "year_id": 16855, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16862, + "make_id": 15041, + "model_id": 16855, + "year_id": 16862, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16863, + "make_id": 15041, + "model_id": 16855, + "year_id": 16862, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16864, + "make_id": 15041, + "model_id": 16855, + "year_id": 16862, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16865, + "make_id": 15041, + "model_id": 16855, + "year_id": 16862, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16866, + "make_id": 15041, + "model_id": 16855, + "year_id": 16862, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16867, + "make_id": 15041, + "model_id": 16855, + "year_id": 16862, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16868, + "make_id": 15041, + "model_id": 16855, + "year_id": 16862, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16869, + "make_id": 15041, + "model_id": 16855, + "year_id": 16862, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16870, + "make_id": 15041, + "model_id": 16855, + "year_id": 16862, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16871, + "make_id": 15041, + "model_id": 16855, + "year_id": 16871, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16872, + "make_id": 15041, + "model_id": 16855, + "year_id": 16871, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16873, + "make_id": 15041, + "model_id": 16855, + "year_id": 16871, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16874, + "make_id": 15041, + "model_id": 16855, + "year_id": 16871, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16875, + "make_id": 15041, + "model_id": 16855, + "year_id": 16871, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16876, + "make_id": 15041, + "model_id": 16855, + "year_id": 16871, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16877, + "make_id": 15041, + "model_id": 16855, + "year_id": 16871, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16878, + "make_id": 15041, + "model_id": 16855, + "year_id": 16871, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16879, + "make_id": 15041, + "model_id": 16855, + "year_id": 16871, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16880, + "make_id": 15041, + "model_id": 16855, + "year_id": 16880, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16881, + "make_id": 15041, + "model_id": 16855, + "year_id": 16880, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16882, + "make_id": 15041, + "model_id": 16855, + "year_id": 16880, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16883, + "make_id": 15041, + "model_id": 16855, + "year_id": 16880, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16884, + "make_id": 15041, + "model_id": 16855, + "year_id": 16880, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16885, + "make_id": 15041, + "model_id": 16855, + "year_id": 16880, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16886, + "make_id": 15041, + "model_id": 16855, + "year_id": 16880, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16887, + "make_id": 15041, + "model_id": 16855, + "year_id": 16880, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16888, + "make_id": 15041, + "model_id": 16855, + "year_id": 16880, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16889, + "make_id": 15041, + "model_id": 16855, + "year_id": 16880, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16890, + "make_id": 15041, + "model_id": 16855, + "year_id": 16890, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16891, + "make_id": 15041, + "model_id": 16855, + "year_id": 16890, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16892, + "make_id": 15041, + "model_id": 16855, + "year_id": 16890, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16893, + "make_id": 15041, + "model_id": 16855, + "year_id": 16890, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16894, + "make_id": 15041, + "model_id": 16855, + "year_id": 16890, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16895, + "make_id": 15041, + "model_id": 16855, + "year_id": 16890, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16896, + "make_id": 15041, + "model_id": 16855, + "year_id": 16890, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16897, + "make_id": 15041, + "model_id": 16855, + "year_id": 16890, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16898, + "make_id": 15041, + "model_id": 16855, + "year_id": 16890, + "cylinders": 6, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16899, + "make_id": 15041, + "model_id": 16855, + "year_id": 16899, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16900, + "make_id": 15041, + "model_id": 16855, + "year_id": 16899, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16901, + "make_id": 15041, + "model_id": 16855, + "year_id": 16899, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16902, + "make_id": 15041, + "model_id": 16855, + "year_id": 16899, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16903, + "make_id": 15041, + "model_id": 16855, + "year_id": 16899, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16904, + "make_id": 15041, + "model_id": 16855, + "year_id": 16899, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16905, + "make_id": 15041, + "model_id": 16855, + "year_id": 16905, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16906, + "make_id": 15041, + "model_id": 16855, + "year_id": 16905, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16907, + "make_id": 15041, + "model_id": 16855, + "year_id": 16905, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16908, + "make_id": 15041, + "model_id": 16855, + "year_id": 16905, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16909, + "make_id": 15041, + "model_id": 16855, + "year_id": 16905, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16910, + "make_id": 15041, + "model_id": 16855, + "year_id": 16905, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16911, + "make_id": 15041, + "model_id": 16855, + "year_id": 16911, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16912, + "make_id": 15041, + "model_id": 16855, + "year_id": 16911, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16913, + "make_id": 15041, + "model_id": 16855, + "year_id": 16911, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16914, + "make_id": 15041, + "model_id": 16855, + "year_id": 16911, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16915, + "make_id": 15041, + "model_id": 16855, + "year_id": 16911, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16916, + "make_id": 15041, + "model_id": 16855, + "year_id": 16911, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16917, + "make_id": 15041, + "model_id": 16855, + "year_id": 16917, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16918, + "make_id": 15041, + "model_id": 16855, + "year_id": 16917, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16919, + "make_id": 15041, + "model_id": 16855, + "year_id": 16917, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16920, + "make_id": 15041, + "model_id": 16855, + "year_id": 16917, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16921, + "make_id": 15041, + "model_id": 16855, + "year_id": 16917, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16922, + "make_id": 15041, + "model_id": 16855, + "year_id": 16917, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16923, + "make_id": 15041, + "model_id": 16855, + "year_id": 16923, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16924, + "make_id": 15041, + "model_id": 16855, + "year_id": 16923, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16925, + "make_id": 15041, + "model_id": 16855, + "year_id": 16923, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16926, + "make_id": 15041, + "model_id": 16855, + "year_id": 16923, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16927, + "make_id": 15041, + "model_id": 16855, + "year_id": 16923, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16928, + "make_id": 15041, + "model_id": 16855, + "year_id": 16923, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16929, + "make_id": 15041, + "model_id": 16855, + "year_id": 16923, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16930, + "make_id": 15041, + "model_id": 16855, + "year_id": 16923, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16931, + "make_id": 15041, + "model_id": 16855, + "year_id": 16931, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16932, + "make_id": 15041, + "model_id": 16855, + "year_id": 16931, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16933, + "make_id": 15041, + "model_id": 16855, + "year_id": 16931, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16934, + "make_id": 15041, + "model_id": 16855, + "year_id": 16931, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16935, + "make_id": 15041, + "model_id": 16855, + "year_id": 16935, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16936, + "make_id": 15041, + "model_id": 16855, + "year_id": 16935, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16937, + "make_id": 15041, + "model_id": 16855, + "year_id": 16935, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16938, + "make_id": 15041, + "model_id": 16855, + "year_id": 16935, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16939, + "make_id": 15041, + "model_id": 16855, + "year_id": 16939, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16940, + "make_id": 15041, + "model_id": 16855, + "year_id": 16939, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16941, + "make_id": 15041, + "model_id": 16855, + "year_id": 16939, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16942, + "make_id": 15041, + "model_id": 16855, + "year_id": 16939, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16943, + "make_id": 15041, + "model_id": 16855, + "year_id": 16939, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16944, + "make_id": 15041, + "model_id": 16855, + "year_id": 16939, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16945, + "make_id": 15041, + "model_id": 16855, + "year_id": 16945, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16946, + "make_id": 15041, + "model_id": 16946, + "year_id": 16946, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16947, + "make_id": 15041, + "model_id": 16946, + "year_id": 16946, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16948, + "make_id": 15041, + "model_id": 16946, + "year_id": 16948, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16949, + "make_id": 15041, + "model_id": 16946, + "year_id": 16948, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16950, + "make_id": 15041, + "model_id": 16950, + "year_id": 16950, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16951, + "make_id": 15041, + "model_id": 16950, + "year_id": 16950, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16952, + "make_id": 15041, + "model_id": 16950, + "year_id": 16952, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16953, + "make_id": 15041, + "model_id": 16950, + "year_id": 16952, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16954, + "make_id": 15041, + "model_id": 16950, + "year_id": 16954, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16955, + "make_id": 15041, + "model_id": 16950, + "year_id": 16954, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16956, + "make_id": 15041, + "model_id": 16950, + "year_id": 16956, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16957, + "make_id": 15041, + "model_id": 16950, + "year_id": 16956, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16958, + "make_id": 15041, + "model_id": 16950, + "year_id": 16958, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16959, + "make_id": 15041, + "model_id": 16950, + "year_id": 16958, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16960, + "make_id": 15041, + "model_id": 16950, + "year_id": 16960, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16961, + "make_id": 15041, + "model_id": 16950, + "year_id": 16960, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16962, + "make_id": 15041, + "model_id": 16950, + "year_id": 16962, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16963, + "make_id": 15041, + "model_id": 16950, + "year_id": 16963, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16964, + "make_id": 15041, + "model_id": 16964, + "year_id": 16964, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16965, + "make_id": 15041, + "model_id": 16964, + "year_id": 16964, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16966, + "make_id": 15041, + "model_id": 16964, + "year_id": 16964, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16967, + "make_id": 15041, + "model_id": 16964, + "year_id": 16964, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16968, + "make_id": 15041, + "model_id": 16964, + "year_id": 16968, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16969, + "make_id": 15041, + "model_id": 16964, + "year_id": 16968, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16970, + "make_id": 15041, + "model_id": 16964, + "year_id": 16968, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16971, + "make_id": 15041, + "model_id": 16964, + "year_id": 16971, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16972, + "make_id": 15041, + "model_id": 16964, + "year_id": 16971, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16973, + "make_id": 15041, + "model_id": 16973, + "year_id": 16973, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16974, + "make_id": 15041, + "model_id": 16973, + "year_id": 16973, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16975, + "make_id": 15041, + "model_id": 16973, + "year_id": 16973, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16976, + "make_id": 15041, + "model_id": 16973, + "year_id": 16973, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16977, + "make_id": 15041, + "model_id": 16973, + "year_id": 16973, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16978, + "make_id": 15041, + "model_id": 16973, + "year_id": 16973, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16979, + "make_id": 15041, + "model_id": 16973, + "year_id": 16973, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16980, + "make_id": 15041, + "model_id": 16973, + "year_id": 16973, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16981, + "make_id": 15041, + "model_id": 16973, + "year_id": 16973, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16982, + "make_id": 15041, + "model_id": 16973, + "year_id": 16973, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16983, + "make_id": 15041, + "model_id": 16973, + "year_id": 16983, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16984, + "make_id": 15041, + "model_id": 16973, + "year_id": 16983, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16985, + "make_id": 15041, + "model_id": 16973, + "year_id": 16983, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16986, + "make_id": 15041, + "model_id": 16973, + "year_id": 16983, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16987, + "make_id": 15041, + "model_id": 16973, + "year_id": 16983, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16988, + "make_id": 15041, + "model_id": 16973, + "year_id": 16983, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16989, + "make_id": 15041, + "model_id": 16973, + "year_id": 16983, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16990, + "make_id": 15041, + "model_id": 16973, + "year_id": 16983, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16991, + "make_id": 15041, + "model_id": 16973, + "year_id": 16983, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16992, + "make_id": 15041, + "model_id": 16973, + "year_id": 16992, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16993, + "make_id": 15041, + "model_id": 16973, + "year_id": 16992, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16994, + "make_id": 15041, + "model_id": 16973, + "year_id": 16992, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16995, + "make_id": 15041, + "model_id": 16973, + "year_id": 16992, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16996, + "make_id": 15041, + "model_id": 16973, + "year_id": 16992, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 16997, + "make_id": 15041, + "model_id": 16973, + "year_id": 16992, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 16998, + "make_id": 15041, + "model_id": 16973, + "year_id": 16998, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 16999, + "make_id": 15041, + "model_id": 16973, + "year_id": 16998, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17000, + "make_id": 15041, + "model_id": 16973, + "year_id": 16998, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17001, + "make_id": 15041, + "model_id": 16973, + "year_id": 16998, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17002, + "make_id": 15041, + "model_id": 16973, + "year_id": 16998, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17003, + "make_id": 15041, + "model_id": 16973, + "year_id": 16998, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17004, + "make_id": 15041, + "model_id": 16973, + "year_id": 17004, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17005, + "make_id": 15041, + "model_id": 16973, + "year_id": 17004, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17006, + "make_id": 15041, + "model_id": 16973, + "year_id": 17004, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17007, + "make_id": 15041, + "model_id": 16973, + "year_id": 17004, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17008, + "make_id": 15041, + "model_id": 17008, + "year_id": 17008, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17009, + "make_id": 15041, + "model_id": 17008, + "year_id": 17008, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17010, + "make_id": 15041, + "model_id": 17008, + "year_id": 17008, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17011, + "make_id": 15041, + "model_id": 17008, + "year_id": 17008, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17012, + "make_id": 15041, + "model_id": 17008, + "year_id": 17008, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17013, + "make_id": 15041, + "model_id": 17008, + "year_id": 17008, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17014, + "make_id": 15041, + "model_id": 17008, + "year_id": 17008, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17015, + "make_id": 15041, + "model_id": 17008, + "year_id": 17008, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17016, + "make_id": 15041, + "model_id": 17008, + "year_id": 17008, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17017, + "make_id": 15041, + "model_id": 17008, + "year_id": 17008, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17018, + "make_id": 15041, + "model_id": 17008, + "year_id": 17018, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17019, + "make_id": 15041, + "model_id": 17008, + "year_id": 17018, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17020, + "make_id": 15041, + "model_id": 17008, + "year_id": 17018, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17021, + "make_id": 15041, + "model_id": 17008, + "year_id": 17018, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17022, + "make_id": 15041, + "model_id": 17008, + "year_id": 17018, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17023, + "make_id": 15041, + "model_id": 17008, + "year_id": 17018, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17024, + "make_id": 15041, + "model_id": 17008, + "year_id": 17018, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17025, + "make_id": 15041, + "model_id": 17008, + "year_id": 17018, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17026, + "make_id": 15041, + "model_id": 17008, + "year_id": 17018, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17027, + "make_id": 15041, + "model_id": 17008, + "year_id": 17027, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17028, + "make_id": 15041, + "model_id": 17008, + "year_id": 17027, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17029, + "make_id": 15041, + "model_id": 17008, + "year_id": 17027, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17030, + "make_id": 15041, + "model_id": 17008, + "year_id": 17027, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17031, + "make_id": 15041, + "model_id": 17008, + "year_id": 17027, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17032, + "make_id": 15041, + "model_id": 17008, + "year_id": 17027, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17033, + "make_id": 15041, + "model_id": 17008, + "year_id": 17033, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17034, + "make_id": 15041, + "model_id": 17008, + "year_id": 17033, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17035, + "make_id": 15041, + "model_id": 17008, + "year_id": 17033, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17036, + "make_id": 15041, + "model_id": 17008, + "year_id": 17033, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17037, + "make_id": 15041, + "model_id": 17008, + "year_id": 17033, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17038, + "make_id": 15041, + "model_id": 17008, + "year_id": 17033, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17039, + "make_id": 15041, + "model_id": 17008, + "year_id": 17039, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17040, + "make_id": 15041, + "model_id": 17008, + "year_id": 17039, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17041, + "make_id": 15041, + "model_id": 17008, + "year_id": 17039, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17042, + "make_id": 15041, + "model_id": 17008, + "year_id": 17039, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17043, + "make_id": 15041, + "model_id": 17008, + "year_id": 17039, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17044, + "make_id": 15041, + "model_id": 17008, + "year_id": 17039, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17045, + "make_id": 15041, + "model_id": 17045, + "year_id": 17045, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17046, + "make_id": 15041, + "model_id": 17045, + "year_id": 17045, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17047, + "make_id": 15041, + "model_id": 17045, + "year_id": 17045, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17048, + "make_id": 15041, + "model_id": 17045, + "year_id": 17045, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17049, + "make_id": 15041, + "model_id": 17045, + "year_id": 17049, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17050, + "make_id": 15041, + "model_id": 17045, + "year_id": 17049, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17051, + "make_id": 15041, + "model_id": 17045, + "year_id": 17049, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17052, + "make_id": 15041, + "model_id": 17045, + "year_id": 17049, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17053, + "make_id": 15041, + "model_id": 17045, + "year_id": 17049, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17054, + "make_id": 15041, + "model_id": 17045, + "year_id": 17049, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17055, + "make_id": 15041, + "model_id": 17045, + "year_id": 17055, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17056, + "make_id": 15041, + "model_id": 17045, + "year_id": 17055, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17057, + "make_id": 15041, + "model_id": 17045, + "year_id": 17055, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17058, + "make_id": 15041, + "model_id": 17045, + "year_id": 17055, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17059, + "make_id": 15041, + "model_id": 17045, + "year_id": 17055, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17060, + "make_id": 15041, + "model_id": 17045, + "year_id": 17055, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17061, + "make_id": 15041, + "model_id": 17045, + "year_id": 17055, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17062, + "make_id": 15041, + "model_id": 17045, + "year_id": 17055, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17063, + "make_id": 15041, + "model_id": 17045, + "year_id": 17063, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17064, + "make_id": 15041, + "model_id": 17045, + "year_id": 17063, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17065, + "make_id": 15041, + "model_id": 17045, + "year_id": 17063, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17066, + "make_id": 15041, + "model_id": 17045, + "year_id": 17063, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17067, + "make_id": 15041, + "model_id": 17045, + "year_id": 17063, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17068, + "make_id": 15041, + "model_id": 17045, + "year_id": 17063, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17069, + "make_id": 15041, + "model_id": 17045, + "year_id": 17063, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17070, + "make_id": 15041, + "model_id": 17045, + "year_id": 17063, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17071, + "make_id": 15041, + "model_id": 17045, + "year_id": 17071, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17072, + "make_id": 15041, + "model_id": 17045, + "year_id": 17071, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17073, + "make_id": 15041, + "model_id": 17045, + "year_id": 17071, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17074, + "make_id": 15041, + "model_id": 17045, + "year_id": 17071, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17075, + "make_id": 15041, + "model_id": 17045, + "year_id": 17071, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17076, + "make_id": 15041, + "model_id": 17045, + "year_id": 17071, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17077, + "make_id": 15041, + "model_id": 17045, + "year_id": 17071, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17078, + "make_id": 15041, + "model_id": 17045, + "year_id": 17071, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17079, + "make_id": 15041, + "model_id": 17045, + "year_id": 17079, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17080, + "make_id": 15041, + "model_id": 17045, + "year_id": 17079, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17081, + "make_id": 15041, + "model_id": 17045, + "year_id": 17079, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17082, + "make_id": 15041, + "model_id": 17045, + "year_id": 17079, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17083, + "make_id": 15041, + "model_id": 17045, + "year_id": 17079, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17084, + "make_id": 15041, + "model_id": 17045, + "year_id": 17084, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17085, + "make_id": 15041, + "model_id": 17045, + "year_id": 17084, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17086, + "make_id": 15041, + "model_id": 17045, + "year_id": 17084, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17087, + "make_id": 15041, + "model_id": 17045, + "year_id": 17084, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17088, + "make_id": 15041, + "model_id": 17045, + "year_id": 17084, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17089, + "make_id": 15041, + "model_id": 17045, + "year_id": 17089, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17090, + "make_id": 15041, + "model_id": 17045, + "year_id": 17089, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17091, + "make_id": 15041, + "model_id": 17045, + "year_id": 17089, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17092, + "make_id": 15041, + "model_id": 17045, + "year_id": 17089, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17093, + "make_id": 15041, + "model_id": 17045, + "year_id": 17089, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17094, + "make_id": 15041, + "model_id": 17094, + "year_id": 17094, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17095, + "make_id": 15041, + "model_id": 17094, + "year_id": 17094, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17096, + "make_id": 15041, + "model_id": 17094, + "year_id": 17094, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17097, + "make_id": 15041, + "model_id": 17094, + "year_id": 17094, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17098, + "make_id": 15041, + "model_id": 17094, + "year_id": 17094, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17099, + "make_id": 15041, + "model_id": 17094, + "year_id": 17099, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17100, + "make_id": 15041, + "model_id": 17094, + "year_id": 17099, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17101, + "make_id": 15041, + "model_id": 17094, + "year_id": 17099, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17102, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17103, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17104, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17105, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17106, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17107, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17108, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17109, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17110, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17111, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17112, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17113, + "make_id": 15041, + "model_id": 17102, + "year_id": 17102, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17114, + "make_id": 15041, + "model_id": 17114, + "year_id": 17114, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17115, + "make_id": 15041, + "model_id": 17114, + "year_id": 17114, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17116, + "make_id": 15041, + "model_id": 17114, + "year_id": 17114, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17117, + "make_id": 15041, + "model_id": 17114, + "year_id": 17114, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17118, + "make_id": 15041, + "model_id": 17114, + "year_id": 17118, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17119, + "make_id": 15041, + "model_id": 17114, + "year_id": 17118, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17120, + "make_id": 15041, + "model_id": 17114, + "year_id": 17118, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17121, + "make_id": 15041, + "model_id": 17121, + "year_id": 17121, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17122, + "make_id": 15041, + "model_id": 17121, + "year_id": 17121, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17123, + "make_id": 15041, + "model_id": 17121, + "year_id": 17121, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17124, + "make_id": 15041, + "model_id": 17121, + "year_id": 17121, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17125, + "make_id": 15041, + "model_id": 17125, + "year_id": 17125, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17126, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17127, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17128, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 17129, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17130, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17131, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17132, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 17133, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17134, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17135, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17136, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17137, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 17138, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17139, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 8, + "displacement": 5, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17140, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17141, + "make_id": 15041, + "model_id": 17126, + "year_id": 17126, + "cylinders": 8, + "displacement": 6.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17142, + "make_id": 15041, + "model_id": 17126, + "year_id": 17142, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17143, + "make_id": 15041, + "model_id": 17126, + "year_id": 17142, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17144, + "make_id": 15041, + "model_id": 17126, + "year_id": 17142, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 17145, + "make_id": 15041, + "model_id": 17126, + "year_id": 17142, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17146, + "make_id": 15041, + "model_id": 17126, + "year_id": 17142, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17147, + "make_id": 15041, + "model_id": 17126, + "year_id": 17142, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17148, + "make_id": 15041, + "model_id": 17126, + "year_id": 17142, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 17149, + "make_id": 15041, + "model_id": 17126, + "year_id": 17142, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17150, + "make_id": 15041, + "model_id": 17126, + "year_id": 17142, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17151, + "make_id": 15041, + "model_id": 17126, + "year_id": 17142, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17152, + "make_id": 15041, + "model_id": 17126, + "year_id": 17152, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17153, + "make_id": 15041, + "model_id": 17126, + "year_id": 17152, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17154, + "make_id": 15041, + "model_id": 17126, + "year_id": 17152, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17155, + "make_id": 15041, + "model_id": 17126, + "year_id": 17152, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17156, + "make_id": 15041, + "model_id": 17126, + "year_id": 17156, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17157, + "make_id": 15041, + "model_id": 17126, + "year_id": 17156, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17158, + "make_id": 15041, + "model_id": 17126, + "year_id": 17156, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17159, + "make_id": 15041, + "model_id": 17126, + "year_id": 17156, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17160, + "make_id": 15041, + "model_id": 17126, + "year_id": 17160, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17161, + "make_id": 15041, + "model_id": 17126, + "year_id": 17160, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17162, + "make_id": 15041, + "model_id": 17126, + "year_id": 17160, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17163, + "make_id": 15041, + "model_id": 17163, + "year_id": 17163, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17164, + "make_id": 15041, + "model_id": 17164, + "year_id": 17164, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17165, + "make_id": 15041, + "model_id": 17164, + "year_id": 17164, + "cylinders": 6, + "displacement": 4.1, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 17166, + "make_id": 15041, + "model_id": 17164, + "year_id": 17166, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17167, + "make_id": 15041, + "model_id": 17164, + "year_id": 17166, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Manual" + }, + { + "id": 17168, + "make_id": 15041, + "model_id": 17164, + "year_id": 17168, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17169, + "make_id": 15041, + "model_id": 17164, + "year_id": 17168, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17170, + "make_id": 15041, + "model_id": 17164, + "year_id": 17170, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17171, + "make_id": 15041, + "model_id": 17171, + "year_id": 17171, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17172, + "make_id": 15041, + "model_id": 17171, + "year_id": 17171, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17173, + "make_id": 15041, + "model_id": 17173, + "year_id": 17173, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17174, + "make_id": 15041, + "model_id": 17174, + "year_id": 17174, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17175, + "make_id": 15041, + "model_id": 17174, + "year_id": 17174, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17176, + "make_id": 15041, + "model_id": 17174, + "year_id": 17176, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17177, + "make_id": 15041, + "model_id": 17174, + "year_id": 17176, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17178, + "make_id": 15041, + "model_id": 17174, + "year_id": 17178, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17179, + "make_id": 15041, + "model_id": 17174, + "year_id": 17178, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17180, + "make_id": 15041, + "model_id": 17174, + "year_id": 17178, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17181, + "make_id": 15041, + "model_id": 17174, + "year_id": 17178, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17182, + "make_id": 15041, + "model_id": 17174, + "year_id": 17182, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17183, + "make_id": 15041, + "model_id": 17174, + "year_id": 17182, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17184, + "make_id": 15041, + "model_id": 17174, + "year_id": 17182, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17185, + "make_id": 15041, + "model_id": 17174, + "year_id": 17185, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17186, + "make_id": 15041, + "model_id": 17174, + "year_id": 17185, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17187, + "make_id": 15041, + "model_id": 17174, + "year_id": 17185, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17188, + "make_id": 15041, + "model_id": 17174, + "year_id": 17188, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17189, + "make_id": 15041, + "model_id": 17174, + "year_id": 17188, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17190, + "make_id": 15041, + "model_id": 17174, + "year_id": 17188, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17191, + "make_id": 15041, + "model_id": 17174, + "year_id": 17188, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17192, + "make_id": 15041, + "model_id": 17174, + "year_id": 17192, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17193, + "make_id": 15041, + "model_id": 17174, + "year_id": 17192, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17194, + "make_id": 15041, + "model_id": 17174, + "year_id": 17192, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17195, + "make_id": 15041, + "model_id": 17174, + "year_id": 17192, + "cylinders": 8, + "displacement": 5.7, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17196, + "make_id": 15041, + "model_id": 17174, + "year_id": 17196, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17197, + "make_id": 15041, + "model_id": 17174, + "year_id": 17196, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17198, + "make_id": 15041, + "model_id": 17174, + "year_id": 17196, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17199, + "make_id": 15041, + "model_id": 17174, + "year_id": 17196, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17200, + "make_id": 15041, + "model_id": 17174, + "year_id": 17196, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17201, + "make_id": 15041, + "model_id": 17174, + "year_id": 17196, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17202, + "make_id": 15041, + "model_id": 17174, + "year_id": 17202, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17203, + "make_id": 15041, + "model_id": 17174, + "year_id": 17202, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17204, + "make_id": 15041, + "model_id": 17174, + "year_id": 17202, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17205, + "make_id": 15041, + "model_id": 17174, + "year_id": 17202, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17206, + "make_id": 15041, + "model_id": 17174, + "year_id": 17202, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17207, + "make_id": 15041, + "model_id": 17174, + "year_id": 17207, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17208, + "make_id": 15041, + "model_id": 17174, + "year_id": 17207, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17209, + "make_id": 15041, + "model_id": 17174, + "year_id": 17207, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17210, + "make_id": 15041, + "model_id": 17174, + "year_id": 17207, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17211, + "make_id": 15041, + "model_id": 17174, + "year_id": 17207, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17212, + "make_id": 15041, + "model_id": 17174, + "year_id": 17207, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17213, + "make_id": 15041, + "model_id": 17174, + "year_id": 17213, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17214, + "make_id": 15041, + "model_id": 17174, + "year_id": 17213, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17215, + "make_id": 15041, + "model_id": 17174, + "year_id": 17213, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17216, + "make_id": 15041, + "model_id": 17174, + "year_id": 17213, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17217, + "make_id": 15041, + "model_id": 17174, + "year_id": 17213, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17218, + "make_id": 15041, + "model_id": 17174, + "year_id": 17213, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17219, + "make_id": 15041, + "model_id": 17174, + "year_id": 17213, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17220, + "make_id": 15041, + "model_id": 17174, + "year_id": 17213, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17221, + "make_id": 15041, + "model_id": 17174, + "year_id": 17213, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17222, + "make_id": 15041, + "model_id": 17174, + "year_id": 17222, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17223, + "make_id": 15041, + "model_id": 17174, + "year_id": 17222, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17224, + "make_id": 15041, + "model_id": 17174, + "year_id": 17222, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17225, + "make_id": 15041, + "model_id": 17174, + "year_id": 17222, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17226, + "make_id": 15041, + "model_id": 17174, + "year_id": 17222, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17227, + "make_id": 15041, + "model_id": 17174, + "year_id": 17222, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17228, + "make_id": 15041, + "model_id": 17174, + "year_id": 17222, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17229, + "make_id": 15041, + "model_id": 17174, + "year_id": 17222, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17230, + "make_id": 15041, + "model_id": 17174, + "year_id": 17222, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17231, + "make_id": 15041, + "model_id": 17174, + "year_id": 17231, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17232, + "make_id": 15041, + "model_id": 17174, + "year_id": 17231, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17233, + "make_id": 15041, + "model_id": 17174, + "year_id": 17231, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17234, + "make_id": 15041, + "model_id": 17174, + "year_id": 17231, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17235, + "make_id": 15041, + "model_id": 17174, + "year_id": 17231, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17236, + "make_id": 15041, + "model_id": 17174, + "year_id": 17231, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17237, + "make_id": 15041, + "model_id": 17174, + "year_id": 17231, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17238, + "make_id": 15041, + "model_id": 17174, + "year_id": 17231, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17239, + "make_id": 15041, + "model_id": 17174, + "year_id": 17231, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17240, + "make_id": 15041, + "model_id": 17174, + "year_id": 17240, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17241, + "make_id": 15041, + "model_id": 17174, + "year_id": 17240, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17242, + "make_id": 15041, + "model_id": 17174, + "year_id": 17240, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17243, + "make_id": 15041, + "model_id": 17174, + "year_id": 17240, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17244, + "make_id": 15041, + "model_id": 17174, + "year_id": 17240, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17245, + "make_id": 15041, + "model_id": 17174, + "year_id": 17240, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17246, + "make_id": 15041, + "model_id": 17174, + "year_id": 17246, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17247, + "make_id": 15041, + "model_id": 17174, + "year_id": 17246, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17248, + "make_id": 15041, + "model_id": 17174, + "year_id": 17246, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17249, + "make_id": 15041, + "model_id": 17174, + "year_id": 17246, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17250, + "make_id": 15041, + "model_id": 17174, + "year_id": 17250, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17251, + "make_id": 15041, + "model_id": 17174, + "year_id": 17250, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17252, + "make_id": 15041, + "model_id": 17174, + "year_id": 17250, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17253, + "make_id": 15041, + "model_id": 17174, + "year_id": 17250, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17254, + "make_id": 15041, + "model_id": 17174, + "year_id": 17250, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17255, + "make_id": 15041, + "model_id": 17174, + "year_id": 17255, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17256, + "make_id": 15041, + "model_id": 17174, + "year_id": 17255, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17257, + "make_id": 15041, + "model_id": 17174, + "year_id": 17255, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17258, + "make_id": 15041, + "model_id": 17174, + "year_id": 17255, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17259, + "make_id": 15041, + "model_id": 17174, + "year_id": 17255, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17260, + "make_id": 15041, + "model_id": 17174, + "year_id": 17255, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17261, + "make_id": 15041, + "model_id": 17174, + "year_id": 17261, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17262, + "make_id": 15041, + "model_id": 17174, + "year_id": 17261, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17263, + "make_id": 15041, + "model_id": 17174, + "year_id": 17261, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17264, + "make_id": 15041, + "model_id": 17174, + "year_id": 17264, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17265, + "make_id": 15041, + "model_id": 17174, + "year_id": 17264, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17266, + "make_id": 15041, + "model_id": 17174, + "year_id": 17264, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17267, + "make_id": 15041, + "model_id": 17174, + "year_id": 17267, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17268, + "make_id": 15041, + "model_id": 17174, + "year_id": 17267, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17269, + "make_id": 15041, + "model_id": 17174, + "year_id": 17267, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17270, + "make_id": 15041, + "model_id": 17174, + "year_id": 17270, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17271, + "make_id": 15041, + "model_id": 17174, + "year_id": 17270, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17272, + "make_id": 15041, + "model_id": 17174, + "year_id": 17270, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17273, + "make_id": 15041, + "model_id": 17273, + "year_id": 17273, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17274, + "make_id": 15041, + "model_id": 17273, + "year_id": 17273, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17275, + "make_id": 15041, + "model_id": 17273, + "year_id": 17275, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17276, + "make_id": 15041, + "model_id": 17273, + "year_id": 17275, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17277, + "make_id": 15041, + "model_id": 17273, + "year_id": 17277, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17278, + "make_id": 15041, + "model_id": 17273, + "year_id": 17277, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17279, + "make_id": 15041, + "model_id": 17273, + "year_id": 17279, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17280, + "make_id": 15041, + "model_id": 17273, + "year_id": 17279, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17281, + "make_id": 15041, + "model_id": 17273, + "year_id": 17281, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17282, + "make_id": 15041, + "model_id": 17273, + "year_id": 17281, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17283, + "make_id": 15041, + "model_id": 17273, + "year_id": 17283, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17284, + "make_id": 15041, + "model_id": 17273, + "year_id": 17283, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17285, + "make_id": 15041, + "model_id": 17285, + "year_id": 17285, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17286, + "make_id": 15041, + "model_id": 17286, + "year_id": 17286, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17287, + "make_id": 15041, + "model_id": 17286, + "year_id": 17286, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17288, + "make_id": 15041, + "model_id": 17288, + "year_id": 17288, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17289, + "make_id": 15041, + "model_id": 17288, + "year_id": 17288, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17290, + "make_id": 15041, + "model_id": 17288, + "year_id": 17288, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17291, + "make_id": 15041, + "model_id": 17288, + "year_id": 17288, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 17292, + "make_id": 15041, + "model_id": 17288, + "year_id": 17292, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17293, + "make_id": 15041, + "model_id": 17288, + "year_id": 17292, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17294, + "make_id": 15041, + "model_id": 17288, + "year_id": 17292, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 17295, + "make_id": 15041, + "model_id": 17295, + "year_id": 17295, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17296, + "make_id": 15041, + "model_id": 17295, + "year_id": 17295, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17297, + "make_id": 15041, + "model_id": 17295, + "year_id": 17295, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17298, + "make_id": 15041, + "model_id": 17295, + "year_id": 17295, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 17299, + "make_id": 15041, + "model_id": 17295, + "year_id": 17299, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17300, + "make_id": 15041, + "model_id": 17295, + "year_id": 17299, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17301, + "make_id": 15041, + "model_id": 17295, + "year_id": 17299, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 17302, + "make_id": 15041, + "model_id": 17302, + "year_id": 17302, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17303, + "make_id": 15041, + "model_id": 17302, + "year_id": 17303, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17304, + "make_id": 15041, + "model_id": 17302, + "year_id": 17304, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17305, + "make_id": 15041, + "model_id": 17302, + "year_id": 17305, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17306, + "make_id": 15041, + "model_id": 17302, + "year_id": 17306, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17307, + "make_id": 15041, + "model_id": 17302, + "year_id": 17307, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17308, + "make_id": 15041, + "model_id": 17302, + "year_id": 17308, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17309, + "make_id": 15041, + "model_id": 17302, + "year_id": 17309, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17310, + "make_id": 15041, + "model_id": 17310, + "year_id": 17310, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17311, + "make_id": 15041, + "model_id": 17310, + "year_id": 17311, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17312, + "make_id": 15041, + "model_id": 17310, + "year_id": 17312, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17313, + "make_id": 15041, + "model_id": 17313, + "year_id": 17313, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17314, + "make_id": 15041, + "model_id": 17314, + "year_id": 17314, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17315, + "make_id": 15041, + "model_id": 17315, + "year_id": 17315, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17316, + "make_id": 15041, + "model_id": 17316, + "year_id": 17316, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17317, + "make_id": 15041, + "model_id": 17316, + "year_id": 17316, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17318, + "make_id": 15041, + "model_id": 17316, + "year_id": 17316, + "cylinders": 8, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17319, + "make_id": 15041, + "model_id": 17316, + "year_id": 17319, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17320, + "make_id": 15041, + "model_id": 17316, + "year_id": 17319, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17321, + "make_id": 15041, + "model_id": 17316, + "year_id": 17319, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17322, + "make_id": 15041, + "model_id": 17316, + "year_id": 17319, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 17323, + "make_id": 15041, + "model_id": 17316, + "year_id": 17323, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17324, + "make_id": 15041, + "model_id": 17316, + "year_id": 17323, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17325, + "make_id": 15041, + "model_id": 17316, + "year_id": 17323, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 17326, + "make_id": 15041, + "model_id": 17326, + "year_id": 17326, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17327, + "make_id": 15041, + "model_id": 17326, + "year_id": 17326, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17328, + "make_id": 15041, + "model_id": 17326, + "year_id": 17326, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17329, + "make_id": 15041, + "model_id": 17326, + "year_id": 17326, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 17330, + "make_id": 15041, + "model_id": 17326, + "year_id": 17330, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17331, + "make_id": 15041, + "model_id": 17326, + "year_id": 17330, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17332, + "make_id": 15041, + "model_id": 17326, + "year_id": 17330, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 17333, + "make_id": 15041, + "model_id": 17333, + "year_id": 17333, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17334, + "make_id": 15041, + "model_id": 17333, + "year_id": 17333, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17335, + "make_id": 15041, + "model_id": 17333, + "year_id": 17335, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17336, + "make_id": 15041, + "model_id": 17333, + "year_id": 17335, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17337, + "make_id": 15041, + "model_id": 17333, + "year_id": 17335, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17338, + "make_id": 15041, + "model_id": 17333, + "year_id": 17338, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17339, + "make_id": 15041, + "model_id": 17333, + "year_id": 17338, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17340, + "make_id": 15041, + "model_id": 17333, + "year_id": 17338, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17341, + "make_id": 15041, + "model_id": 17333, + "year_id": 17338, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17342, + "make_id": 15041, + "model_id": 17333, + "year_id": 17342, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17343, + "make_id": 15041, + "model_id": 17333, + "year_id": 17342, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17344, + "make_id": 15041, + "model_id": 17333, + "year_id": 17342, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17345, + "make_id": 15041, + "model_id": 17333, + "year_id": 17342, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17346, + "make_id": 15041, + "model_id": 17333, + "year_id": 17342, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17347, + "make_id": 15041, + "model_id": 17333, + "year_id": 17342, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17348, + "make_id": 15041, + "model_id": 17333, + "year_id": 17342, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17349, + "make_id": 15041, + "model_id": 17333, + "year_id": 17349, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17350, + "make_id": 15041, + "model_id": 17333, + "year_id": 17349, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17351, + "make_id": 15041, + "model_id": 17333, + "year_id": 17349, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17352, + "make_id": 15041, + "model_id": 17333, + "year_id": 17349, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17353, + "make_id": 15041, + "model_id": 17333, + "year_id": 17349, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17354, + "make_id": 15041, + "model_id": 17333, + "year_id": 17349, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17355, + "make_id": 15041, + "model_id": 17333, + "year_id": 17349, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17356, + "make_id": 15041, + "model_id": 17333, + "year_id": 17356, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17357, + "make_id": 15041, + "model_id": 17333, + "year_id": 17356, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17358, + "make_id": 15041, + "model_id": 17333, + "year_id": 17356, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17359, + "make_id": 15041, + "model_id": 17333, + "year_id": 17356, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17360, + "make_id": 15041, + "model_id": 17333, + "year_id": 17360, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17361, + "make_id": 15041, + "model_id": 17333, + "year_id": 17360, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17362, + "make_id": 15041, + "model_id": 17333, + "year_id": 17360, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17363, + "make_id": 15041, + "model_id": 17333, + "year_id": 17363, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17364, + "make_id": 15041, + "model_id": 17333, + "year_id": 17363, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17365, + "make_id": 15041, + "model_id": 17333, + "year_id": 17363, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17366, + "make_id": 15041, + "model_id": 17333, + "year_id": 17363, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17367, + "make_id": 15041, + "model_id": 17333, + "year_id": 17363, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17368, + "make_id": 15041, + "model_id": 17333, + "year_id": 17368, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17369, + "make_id": 15041, + "model_id": 17333, + "year_id": 17368, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17370, + "make_id": 15041, + "model_id": 17333, + "year_id": 17368, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17371, + "make_id": 15041, + "model_id": 17333, + "year_id": 17368, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17372, + "make_id": 15041, + "model_id": 17333, + "year_id": 17368, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17373, + "make_id": 15041, + "model_id": 17333, + "year_id": 17368, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17374, + "make_id": 15041, + "model_id": 17333, + "year_id": 17374, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17375, + "make_id": 15041, + "model_id": 17333, + "year_id": 17374, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17376, + "make_id": 15041, + "model_id": 17333, + "year_id": 17374, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17377, + "make_id": 15041, + "model_id": 17333, + "year_id": 17374, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17378, + "make_id": 15041, + "model_id": 17333, + "year_id": 17378, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17379, + "make_id": 15041, + "model_id": 17333, + "year_id": 17378, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17380, + "make_id": 15041, + "model_id": 17333, + "year_id": 17378, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17381, + "make_id": 15041, + "model_id": 17333, + "year_id": 17381, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17382, + "make_id": 15041, + "model_id": 17333, + "year_id": 17381, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17383, + "make_id": 15041, + "model_id": 17333, + "year_id": 17381, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17384, + "make_id": 15041, + "model_id": 17333, + "year_id": 17381, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17385, + "make_id": 15041, + "model_id": 17333, + "year_id": 17385, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17386, + "make_id": 15041, + "model_id": 17333, + "year_id": 17385, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17387, + "make_id": 15041, + "model_id": 17333, + "year_id": 17385, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17388, + "make_id": 15041, + "model_id": 17333, + "year_id": 17385, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17389, + "make_id": 15041, + "model_id": 17333, + "year_id": 17389, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17390, + "make_id": 15041, + "model_id": 17333, + "year_id": 17389, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17391, + "make_id": 15041, + "model_id": 17333, + "year_id": 17389, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17392, + "make_id": 15041, + "model_id": 17333, + "year_id": 17389, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17393, + "make_id": 15041, + "model_id": 17393, + "year_id": 17393, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17394, + "make_id": 15041, + "model_id": 17393, + "year_id": 17393, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17395, + "make_id": 15041, + "model_id": 17393, + "year_id": 17395, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17396, + "make_id": 15041, + "model_id": 17393, + "year_id": 17395, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17397, + "make_id": 15041, + "model_id": 17393, + "year_id": 17397, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17398, + "make_id": 15041, + "model_id": 17393, + "year_id": 17397, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17399, + "make_id": 15041, + "model_id": 17399, + "year_id": 17399, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17400, + "make_id": 15041, + "model_id": 17399, + "year_id": 17399, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17401, + "make_id": 15041, + "model_id": 17401, + "year_id": 17401, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17402, + "make_id": 15041, + "model_id": 17401, + "year_id": 17401, + "cylinders": 8, + "displacement": 6.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17403, + "make_id": 17403, + "model_id": 17403, + "year_id": 17403, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17404, + "make_id": 17404, + "model_id": 17404, + "year_id": 17404, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17405, + "make_id": 17405, + "model_id": 17405, + "year_id": 17405, + "cylinders": 4, + "displacement": 1.6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17406, + "make_id": 17405, + "model_id": 17405, + "year_id": 17405, + "cylinders": 4, + "displacement": 1.6, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17407, + "make_id": 17405, + "model_id": 17405, + "year_id": 17407, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17408, + "make_id": 17405, + "model_id": 17405, + "year_id": 17407, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17409, + "make_id": 17409, + "model_id": 17409, + "year_id": 17409, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 17410, + "make_id": 17409, + "model_id": 17409, + "year_id": 17409, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 17411, + "make_id": 17409, + "model_id": 17409, + "year_id": 17409, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 17412, + "make_id": 17409, + "model_id": 17409, + "year_id": 17409, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 17413, + "make_id": 17409, + "model_id": 17409, + "year_id": 17413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17414, + "make_id": 17409, + "model_id": 17409, + "year_id": 17413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17415, + "make_id": 17409, + "model_id": 17409, + "year_id": 17413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17416, + "make_id": 17409, + "model_id": 17409, + "year_id": 17413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17417, + "make_id": 17409, + "model_id": 17409, + "year_id": 17413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17418, + "make_id": 17409, + "model_id": 17409, + "year_id": 17413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17419, + "make_id": 17409, + "model_id": 17409, + "year_id": 17413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17420, + "make_id": 17409, + "model_id": 17409, + "year_id": 17413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17421, + "make_id": 17409, + "model_id": 17409, + "year_id": 17413, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17422, + "make_id": 17409, + "model_id": 17409, + "year_id": 17422, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17423, + "make_id": 17409, + "model_id": 17409, + "year_id": 17422, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17424, + "make_id": 17409, + "model_id": 17409, + "year_id": 17422, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17425, + "make_id": 17409, + "model_id": 17409, + "year_id": 17422, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17426, + "make_id": 17409, + "model_id": 17409, + "year_id": 17426, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17427, + "make_id": 17409, + "model_id": 17409, + "year_id": 17426, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17428, + "make_id": 17409, + "model_id": 17409, + "year_id": 17426, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17429, + "make_id": 17409, + "model_id": 17409, + "year_id": 17426, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17430, + "make_id": 17409, + "model_id": 17409, + "year_id": 17430, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17431, + "make_id": 17409, + "model_id": 17409, + "year_id": 17430, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17432, + "make_id": 17409, + "model_id": 17409, + "year_id": 17430, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17433, + "make_id": 17409, + "model_id": 17409, + "year_id": 17430, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17434, + "make_id": 17409, + "model_id": 17409, + "year_id": 17434, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17435, + "make_id": 17409, + "model_id": 17409, + "year_id": 17434, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17436, + "make_id": 17409, + "model_id": 17409, + "year_id": 17434, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17437, + "make_id": 17409, + "model_id": 17409, + "year_id": 17437, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17438, + "make_id": 17409, + "model_id": 17409, + "year_id": 17437, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17439, + "make_id": 17409, + "model_id": 17409, + "year_id": 17439, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17440, + "make_id": 17409, + "model_id": 17409, + "year_id": 17439, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17441, + "make_id": 17409, + "model_id": 17409, + "year_id": 17441, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17442, + "make_id": 17409, + "model_id": 17409, + "year_id": 17441, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17443, + "make_id": 17409, + "model_id": 17409, + "year_id": 17441, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17444, + "make_id": 17409, + "model_id": 17409, + "year_id": 17441, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17445, + "make_id": 17409, + "model_id": 17409, + "year_id": 17445, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17446, + "make_id": 17409, + "model_id": 17409, + "year_id": 17445, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17447, + "make_id": 17409, + "model_id": 17409, + "year_id": 17447, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17448, + "make_id": 17409, + "model_id": 17409, + "year_id": 17447, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17449, + "make_id": 17409, + "model_id": 17409, + "year_id": 17447, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17450, + "make_id": 17409, + "model_id": 17409, + "year_id": 17447, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17451, + "make_id": 17409, + "model_id": 17409, + "year_id": 17451, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17452, + "make_id": 17409, + "model_id": 17409, + "year_id": 17451, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17453, + "make_id": 17409, + "model_id": 17409, + "year_id": 17451, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17454, + "make_id": 17409, + "model_id": 17409, + "year_id": 17451, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17455, + "make_id": 17409, + "model_id": 17409, + "year_id": 17451, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17456, + "make_id": 17409, + "model_id": 17409, + "year_id": 17456, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17457, + "make_id": 17409, + "model_id": 17409, + "year_id": 17456, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17458, + "make_id": 17409, + "model_id": 17409, + "year_id": 17456, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17459, + "make_id": 17409, + "model_id": 17409, + "year_id": 17456, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17460, + "make_id": 17409, + "model_id": 17409, + "year_id": 17456, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17461, + "make_id": 17409, + "model_id": 17409, + "year_id": 17461, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17462, + "make_id": 17409, + "model_id": 17409, + "year_id": 17461, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17463, + "make_id": 17409, + "model_id": 17409, + "year_id": 17461, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17464, + "make_id": 17409, + "model_id": 17409, + "year_id": 17461, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17465, + "make_id": 17409, + "model_id": 17409, + "year_id": 17461, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17466, + "make_id": 17409, + "model_id": 17409, + "year_id": 17466, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17467, + "make_id": 17409, + "model_id": 17409, + "year_id": 17466, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17468, + "make_id": 17409, + "model_id": 17409, + "year_id": 17466, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17469, + "make_id": 17409, + "model_id": 17409, + "year_id": 17466, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17470, + "make_id": 17409, + "model_id": 17409, + "year_id": 17466, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17471, + "make_id": 17409, + "model_id": 17409, + "year_id": 17471, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17472, + "make_id": 17409, + "model_id": 17409, + "year_id": 17471, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17473, + "make_id": 17409, + "model_id": 17409, + "year_id": 17471, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17474, + "make_id": 17409, + "model_id": 17409, + "year_id": 17471, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17475, + "make_id": 17409, + "model_id": 17409, + "year_id": 17471, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17476, + "make_id": 17409, + "model_id": 17409, + "year_id": 17476, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17477, + "make_id": 17409, + "model_id": 17409, + "year_id": 17476, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17478, + "make_id": 17409, + "model_id": 17409, + "year_id": 17476, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17479, + "make_id": 17409, + "model_id": 17409, + "year_id": 17476, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17480, + "make_id": 17409, + "model_id": 17409, + "year_id": 17476, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17481, + "make_id": 17409, + "model_id": 17409, + "year_id": 17481, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17482, + "make_id": 17409, + "model_id": 17409, + "year_id": 17481, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17483, + "make_id": 17409, + "model_id": 17409, + "year_id": 17481, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17484, + "make_id": 17409, + "model_id": 17409, + "year_id": 17481, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17485, + "make_id": 17409, + "model_id": 17409, + "year_id": 17481, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17486, + "make_id": 17409, + "model_id": 17409, + "year_id": 17486, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17487, + "make_id": 17409, + "model_id": 17409, + "year_id": 17486, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17488, + "make_id": 17409, + "model_id": 17409, + "year_id": 17486, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17489, + "make_id": 17409, + "model_id": 17409, + "year_id": 17486, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17490, + "make_id": 17409, + "model_id": 17409, + "year_id": 17486, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17491, + "make_id": 17409, + "model_id": 17409, + "year_id": 17491, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17492, + "make_id": 17409, + "model_id": 17409, + "year_id": 17491, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17493, + "make_id": 17409, + "model_id": 17409, + "year_id": 17491, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17494, + "make_id": 17409, + "model_id": 17409, + "year_id": 17491, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17495, + "make_id": 17409, + "model_id": 17409, + "year_id": 17495, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17496, + "make_id": 17409, + "model_id": 17409, + "year_id": 17495, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17497, + "make_id": 17409, + "model_id": 17409, + "year_id": 17495, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17498, + "make_id": 17409, + "model_id": 17409, + "year_id": 17495, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17499, + "make_id": 17409, + "model_id": 17409, + "year_id": 17499, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17500, + "make_id": 17409, + "model_id": 17409, + "year_id": 17499, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17501, + "make_id": 17409, + "model_id": 17409, + "year_id": 17499, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17502, + "make_id": 17409, + "model_id": 17409, + "year_id": 17499, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17503, + "make_id": 17409, + "model_id": 17409, + "year_id": 17503, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17504, + "make_id": 17409, + "model_id": 17409, + "year_id": 17503, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17505, + "make_id": 17409, + "model_id": 17409, + "year_id": 17503, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17506, + "make_id": 17409, + "model_id": 17409, + "year_id": 17503, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17507, + "make_id": 17409, + "model_id": 17409, + "year_id": 17507, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17508, + "make_id": 17409, + "model_id": 17409, + "year_id": 17507, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17509, + "make_id": 17409, + "model_id": 17409, + "year_id": 17507, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17510, + "make_id": 17409, + "model_id": 17409, + "year_id": 17507, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17511, + "make_id": 17409, + "model_id": 17409, + "year_id": 17511, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17512, + "make_id": 17409, + "model_id": 17409, + "year_id": 17511, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17513, + "make_id": 17409, + "model_id": 17409, + "year_id": 17511, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17514, + "make_id": 17409, + "model_id": 17409, + "year_id": 17514, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17515, + "make_id": 17409, + "model_id": 17409, + "year_id": 17514, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17516, + "make_id": 17409, + "model_id": 17409, + "year_id": 17514, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17517, + "make_id": 17409, + "model_id": 17409, + "year_id": 17517, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17518, + "make_id": 17409, + "model_id": 17409, + "year_id": 17517, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17519, + "make_id": 17409, + "model_id": 17409, + "year_id": 17517, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17520, + "make_id": 17409, + "model_id": 17409, + "year_id": 17520, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17521, + "make_id": 17409, + "model_id": 17409, + "year_id": 17520, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17522, + "make_id": 17409, + "model_id": 17409, + "year_id": 17520, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17523, + "make_id": 17409, + "model_id": 17409, + "year_id": 17523, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17524, + "make_id": 17409, + "model_id": 17409, + "year_id": 17523, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17525, + "make_id": 17409, + "model_id": 17409, + "year_id": 17523, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17526, + "make_id": 17409, + "model_id": 17409, + "year_id": 17526, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17527, + "make_id": 17409, + "model_id": 17409, + "year_id": 17526, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17528, + "make_id": 17409, + "model_id": 17409, + "year_id": 17526, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17529, + "make_id": 17409, + "model_id": 17409, + "year_id": 17526, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17530, + "make_id": 17409, + "model_id": 17409, + "year_id": 17526, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17531, + "make_id": 17409, + "model_id": 17409, + "year_id": 17526, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17532, + "make_id": 17409, + "model_id": 17409, + "year_id": 17532, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17533, + "make_id": 17409, + "model_id": 17409, + "year_id": 17532, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17534, + "make_id": 17409, + "model_id": 17409, + "year_id": 17532, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17535, + "make_id": 17409, + "model_id": 17409, + "year_id": 17532, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17536, + "make_id": 17409, + "model_id": 17409, + "year_id": 17532, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17537, + "make_id": 17409, + "model_id": 17409, + "year_id": 17532, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17538, + "make_id": 17409, + "model_id": 17409, + "year_id": 17538, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17539, + "make_id": 17409, + "model_id": 17409, + "year_id": 17538, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17540, + "make_id": 17409, + "model_id": 17409, + "year_id": 17538, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17541, + "make_id": 17409, + "model_id": 17409, + "year_id": 17538, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17542, + "make_id": 17409, + "model_id": 17409, + "year_id": 17538, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17543, + "make_id": 17409, + "model_id": 17409, + "year_id": 17538, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17544, + "make_id": 17409, + "model_id": 17409, + "year_id": 17544, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17545, + "make_id": 17409, + "model_id": 17409, + "year_id": 17544, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17546, + "make_id": 17409, + "model_id": 17409, + "year_id": 17544, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17547, + "make_id": 17409, + "model_id": 17409, + "year_id": 17544, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17548, + "make_id": 17409, + "model_id": 17409, + "year_id": 17544, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17549, + "make_id": 17409, + "model_id": 17409, + "year_id": 17544, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17550, + "make_id": 17409, + "model_id": 17550, + "year_id": 17550, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17551, + "make_id": 17409, + "model_id": 17550, + "year_id": 17550, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17552, + "make_id": 17409, + "model_id": 17550, + "year_id": 17550, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17553, + "make_id": 17409, + "model_id": 17550, + "year_id": 17550, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17554, + "make_id": 17409, + "model_id": 17550, + "year_id": 17554, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17555, + "make_id": 17409, + "model_id": 17550, + "year_id": 17554, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17556, + "make_id": 17409, + "model_id": 17550, + "year_id": 17554, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17557, + "make_id": 17409, + "model_id": 17550, + "year_id": 17554, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17558, + "make_id": 17409, + "model_id": 17550, + "year_id": 17558, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17559, + "make_id": 17409, + "model_id": 17550, + "year_id": 17558, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17560, + "make_id": 17409, + "model_id": 17550, + "year_id": 17558, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17561, + "make_id": 17409, + "model_id": 17550, + "year_id": 17558, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17562, + "make_id": 17409, + "model_id": 17550, + "year_id": 17562, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17563, + "make_id": 17409, + "model_id": 17550, + "year_id": 17562, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17564, + "make_id": 17409, + "model_id": 17550, + "year_id": 17562, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17565, + "make_id": 17409, + "model_id": 17550, + "year_id": 17562, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17566, + "make_id": 17409, + "model_id": 17550, + "year_id": 17566, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17567, + "make_id": 17409, + "model_id": 17550, + "year_id": 17566, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17568, + "make_id": 17409, + "model_id": 17550, + "year_id": 17566, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17569, + "make_id": 17409, + "model_id": 17550, + "year_id": 17566, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17570, + "make_id": 17409, + "model_id": 17570, + "year_id": 17570, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17571, + "make_id": 17409, + "model_id": 17570, + "year_id": 17570, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17572, + "make_id": 17409, + "model_id": 17570, + "year_id": 17572, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17573, + "make_id": 17409, + "model_id": 17570, + "year_id": 17572, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17574, + "make_id": 17409, + "model_id": 17574, + "year_id": 17574, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17575, + "make_id": 17409, + "model_id": 17574, + "year_id": 17575, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17576, + "make_id": 17409, + "model_id": 17574, + "year_id": 17576, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17577, + "make_id": 17409, + "model_id": 17574, + "year_id": 17577, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17578, + "make_id": 17409, + "model_id": 17574, + "year_id": 17578, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17579, + "make_id": 17409, + "model_id": 17579, + "year_id": 17579, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17580, + "make_id": 17409, + "model_id": 17580, + "year_id": 17580, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17581, + "make_id": 17409, + "model_id": 17580, + "year_id": 17580, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17582, + "make_id": 17409, + "model_id": 17580, + "year_id": 17582, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17583, + "make_id": 17409, + "model_id": 17580, + "year_id": 17582, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17584, + "make_id": 17409, + "model_id": 17580, + "year_id": 17584, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17585, + "make_id": 17409, + "model_id": 17580, + "year_id": 17584, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17586, + "make_id": 17409, + "model_id": 17580, + "year_id": 17586, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17587, + "make_id": 17409, + "model_id": 17580, + "year_id": 17586, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17588, + "make_id": 17409, + "model_id": 17580, + "year_id": 17586, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17589, + "make_id": 17409, + "model_id": 17580, + "year_id": 17586, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17590, + "make_id": 17409, + "model_id": 17580, + "year_id": 17590, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17591, + "make_id": 17409, + "model_id": 17580, + "year_id": 17590, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17592, + "make_id": 17409, + "model_id": 17580, + "year_id": 17590, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17593, + "make_id": 17409, + "model_id": 17580, + "year_id": 17590, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17594, + "make_id": 17409, + "model_id": 17580, + "year_id": 17594, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17595, + "make_id": 17409, + "model_id": 17580, + "year_id": 17594, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17596, + "make_id": 17409, + "model_id": 17580, + "year_id": 17594, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17597, + "make_id": 17409, + "model_id": 17580, + "year_id": 17597, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17598, + "make_id": 17409, + "model_id": 17580, + "year_id": 17597, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17599, + "make_id": 17409, + "model_id": 17580, + "year_id": 17597, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17600, + "make_id": 17409, + "model_id": 17600, + "year_id": 17600, + "cylinders": 4, + "displacement": 1.3, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 17601, + "make_id": 17409, + "model_id": 17600, + "year_id": 17600, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 17602, + "make_id": 17409, + "model_id": 17600, + "year_id": 17600, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 17603, + "make_id": 17409, + "model_id": 17600, + "year_id": 17600, + "cylinders": 4, + "displacement": 1.3, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 17604, + "make_id": 17409, + "model_id": 17600, + "year_id": 17600, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 17605, + "make_id": 17409, + "model_id": 17600, + "year_id": 17600, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 17606, + "make_id": 17409, + "model_id": 17600, + "year_id": 17606, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17607, + "make_id": 17409, + "model_id": 17600, + "year_id": 17606, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17608, + "make_id": 17409, + "model_id": 17600, + "year_id": 17606, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17609, + "make_id": 17409, + "model_id": 17600, + "year_id": 17606, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17610, + "make_id": 17409, + "model_id": 17600, + "year_id": 17606, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17611, + "make_id": 17409, + "model_id": 17600, + "year_id": 17606, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17612, + "make_id": 17409, + "model_id": 17600, + "year_id": 17612, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17613, + "make_id": 17409, + "model_id": 17600, + "year_id": 17612, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17614, + "make_id": 17409, + "model_id": 17600, + "year_id": 17612, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17615, + "make_id": 17409, + "model_id": 17600, + "year_id": 17612, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17616, + "make_id": 17409, + "model_id": 17600, + "year_id": 17616, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17617, + "make_id": 17409, + "model_id": 17600, + "year_id": 17616, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17618, + "make_id": 17409, + "model_id": 17600, + "year_id": 17616, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17619, + "make_id": 17409, + "model_id": 17600, + "year_id": 17616, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17620, + "make_id": 17409, + "model_id": 17600, + "year_id": 17620, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17621, + "make_id": 17409, + "model_id": 17600, + "year_id": 17620, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17622, + "make_id": 17409, + "model_id": 17600, + "year_id": 17620, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17623, + "make_id": 17409, + "model_id": 17600, + "year_id": 17620, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17624, + "make_id": 17409, + "model_id": 17600, + "year_id": 17620, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17625, + "make_id": 17409, + "model_id": 17600, + "year_id": 17620, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17626, + "make_id": 17409, + "model_id": 17600, + "year_id": 17620, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17627, + "make_id": 17409, + "model_id": 17600, + "year_id": 17627, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17628, + "make_id": 17409, + "model_id": 17600, + "year_id": 17627, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17629, + "make_id": 17409, + "model_id": 17600, + "year_id": 17627, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17630, + "make_id": 17409, + "model_id": 17600, + "year_id": 17627, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17631, + "make_id": 17409, + "model_id": 17600, + "year_id": 17631, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17632, + "make_id": 17409, + "model_id": 17600, + "year_id": 17631, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17633, + "make_id": 17409, + "model_id": 17600, + "year_id": 17631, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17634, + "make_id": 17409, + "model_id": 17600, + "year_id": 17631, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17635, + "make_id": 17409, + "model_id": 17600, + "year_id": 17631, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17636, + "make_id": 17409, + "model_id": 17600, + "year_id": 17636, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17637, + "make_id": 17409, + "model_id": 17600, + "year_id": 17636, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 17638, + "make_id": 17409, + "model_id": 17600, + "year_id": 17636, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17639, + "make_id": 17409, + "model_id": 17600, + "year_id": 17636, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17640, + "make_id": 17409, + "model_id": 17600, + "year_id": 17636, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17641, + "make_id": 17409, + "model_id": 17600, + "year_id": 17641, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17642, + "make_id": 17409, + "model_id": 17600, + "year_id": 17641, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17643, + "make_id": 17409, + "model_id": 17600, + "year_id": 17641, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17644, + "make_id": 17409, + "model_id": 17600, + "year_id": 17641, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17645, + "make_id": 17409, + "model_id": 17600, + "year_id": 17641, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17646, + "make_id": 17409, + "model_id": 17600, + "year_id": 17641, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17647, + "make_id": 17409, + "model_id": 17600, + "year_id": 17647, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17648, + "make_id": 17409, + "model_id": 17600, + "year_id": 17647, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17649, + "make_id": 17409, + "model_id": 17600, + "year_id": 17647, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17650, + "make_id": 17409, + "model_id": 17600, + "year_id": 17647, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17651, + "make_id": 17409, + "model_id": 17600, + "year_id": 17647, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17652, + "make_id": 17409, + "model_id": 17600, + "year_id": 17647, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17653, + "make_id": 17409, + "model_id": 17600, + "year_id": 17653, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17654, + "make_id": 17409, + "model_id": 17600, + "year_id": 17653, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17655, + "make_id": 17409, + "model_id": 17600, + "year_id": 17653, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17656, + "make_id": 17409, + "model_id": 17600, + "year_id": 17653, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17657, + "make_id": 17409, + "model_id": 17600, + "year_id": 17653, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17658, + "make_id": 17409, + "model_id": 17600, + "year_id": 17653, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17659, + "make_id": 17409, + "model_id": 17600, + "year_id": 17659, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17660, + "make_id": 17409, + "model_id": 17600, + "year_id": 17659, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17661, + "make_id": 17409, + "model_id": 17600, + "year_id": 17659, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17662, + "make_id": 17409, + "model_id": 17600, + "year_id": 17659, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17663, + "make_id": 17409, + "model_id": 17600, + "year_id": 17659, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17664, + "make_id": 17409, + "model_id": 17600, + "year_id": 17659, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17665, + "make_id": 17409, + "model_id": 17600, + "year_id": 17665, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17666, + "make_id": 17409, + "model_id": 17600, + "year_id": 17665, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17667, + "make_id": 17409, + "model_id": 17600, + "year_id": 17665, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17668, + "make_id": 17409, + "model_id": 17600, + "year_id": 17665, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17669, + "make_id": 17409, + "model_id": 17600, + "year_id": 17669, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17670, + "make_id": 17409, + "model_id": 17600, + "year_id": 17669, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17671, + "make_id": 17409, + "model_id": 17600, + "year_id": 17669, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17672, + "make_id": 17409, + "model_id": 17600, + "year_id": 17669, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17673, + "make_id": 17409, + "model_id": 17600, + "year_id": 17669, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17674, + "make_id": 17409, + "model_id": 17600, + "year_id": 17669, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17675, + "make_id": 17409, + "model_id": 17600, + "year_id": 17675, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17676, + "make_id": 17409, + "model_id": 17600, + "year_id": 17675, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17677, + "make_id": 17409, + "model_id": 17600, + "year_id": 17675, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17678, + "make_id": 17409, + "model_id": 17600, + "year_id": 17675, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17679, + "make_id": 17409, + "model_id": 17600, + "year_id": 17679, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17680, + "make_id": 17409, + "model_id": 17600, + "year_id": 17679, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17681, + "make_id": 17409, + "model_id": 17600, + "year_id": 17679, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17682, + "make_id": 17409, + "model_id": 17600, + "year_id": 17679, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17683, + "make_id": 17409, + "model_id": 17600, + "year_id": 17679, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17684, + "make_id": 17409, + "model_id": 17600, + "year_id": 17679, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17685, + "make_id": 17409, + "model_id": 17600, + "year_id": 17685, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17686, + "make_id": 17409, + "model_id": 17600, + "year_id": 17685, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17687, + "make_id": 17409, + "model_id": 17600, + "year_id": 17685, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17688, + "make_id": 17409, + "model_id": 17600, + "year_id": 17685, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17689, + "make_id": 17409, + "model_id": 17600, + "year_id": 17685, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17690, + "make_id": 17409, + "model_id": 17600, + "year_id": 17690, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17691, + "make_id": 17409, + "model_id": 17600, + "year_id": 17690, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17692, + "make_id": 17409, + "model_id": 17600, + "year_id": 17690, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17693, + "make_id": 17409, + "model_id": 17600, + "year_id": 17690, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17694, + "make_id": 17409, + "model_id": 17600, + "year_id": 17694, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17695, + "make_id": 17409, + "model_id": 17600, + "year_id": 17694, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17696, + "make_id": 17409, + "model_id": 17600, + "year_id": 17694, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17697, + "make_id": 17409, + "model_id": 17600, + "year_id": 17694, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17698, + "make_id": 17409, + "model_id": 17600, + "year_id": 17694, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17699, + "make_id": 17409, + "model_id": 17600, + "year_id": 17699, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17700, + "make_id": 17409, + "model_id": 17600, + "year_id": 17699, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17701, + "make_id": 17409, + "model_id": 17600, + "year_id": 17699, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17702, + "make_id": 17409, + "model_id": 17600, + "year_id": 17699, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17703, + "make_id": 17409, + "model_id": 17600, + "year_id": 17699, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17704, + "make_id": 17409, + "model_id": 17600, + "year_id": 17699, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17705, + "make_id": 17409, + "model_id": 17600, + "year_id": 17699, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17706, + "make_id": 17409, + "model_id": 17600, + "year_id": 17706, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17707, + "make_id": 17409, + "model_id": 17600, + "year_id": 17706, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17708, + "make_id": 17409, + "model_id": 17600, + "year_id": 17706, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17709, + "make_id": 17409, + "model_id": 17600, + "year_id": 17706, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17710, + "make_id": 17409, + "model_id": 17600, + "year_id": 17706, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17711, + "make_id": 17409, + "model_id": 17600, + "year_id": 17706, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17712, + "make_id": 17409, + "model_id": 17600, + "year_id": 17706, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17713, + "make_id": 17409, + "model_id": 17600, + "year_id": 17713, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17714, + "make_id": 17409, + "model_id": 17600, + "year_id": 17713, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17715, + "make_id": 17409, + "model_id": 17600, + "year_id": 17713, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17716, + "make_id": 17409, + "model_id": 17600, + "year_id": 17713, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17717, + "make_id": 17409, + "model_id": 17600, + "year_id": 17713, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17718, + "make_id": 17409, + "model_id": 17600, + "year_id": 17713, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17719, + "make_id": 17409, + "model_id": 17600, + "year_id": 17713, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17720, + "make_id": 17409, + "model_id": 17600, + "year_id": 17720, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17721, + "make_id": 17409, + "model_id": 17600, + "year_id": 17720, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17722, + "make_id": 17409, + "model_id": 17600, + "year_id": 17720, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17723, + "make_id": 17409, + "model_id": 17600, + "year_id": 17723, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17724, + "make_id": 17409, + "model_id": 17600, + "year_id": 17723, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17725, + "make_id": 17409, + "model_id": 17600, + "year_id": 17723, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17726, + "make_id": 17409, + "model_id": 17600, + "year_id": 17726, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17727, + "make_id": 17409, + "model_id": 17600, + "year_id": 17726, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17728, + "make_id": 17409, + "model_id": 17600, + "year_id": 17726, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17729, + "make_id": 17409, + "model_id": 17600, + "year_id": 17729, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17730, + "make_id": 17409, + "model_id": 17600, + "year_id": 17729, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17731, + "make_id": 17409, + "model_id": 17600, + "year_id": 17729, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17732, + "make_id": 17409, + "model_id": 17600, + "year_id": 17732, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17733, + "make_id": 17409, + "model_id": 17600, + "year_id": 17732, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17734, + "make_id": 17409, + "model_id": 17600, + "year_id": 17732, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17735, + "make_id": 17409, + "model_id": 17600, + "year_id": 17735, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17736, + "make_id": 17409, + "model_id": 17600, + "year_id": 17735, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17737, + "make_id": 17409, + "model_id": 17600, + "year_id": 17735, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17738, + "make_id": 17409, + "model_id": 17600, + "year_id": 17738, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17739, + "make_id": 17409, + "model_id": 17600, + "year_id": 17738, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17740, + "make_id": 17409, + "model_id": 17600, + "year_id": 17738, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17741, + "make_id": 17409, + "model_id": 17600, + "year_id": 17741, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17742, + "make_id": 17409, + "model_id": 17600, + "year_id": 17741, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17743, + "make_id": 17409, + "model_id": 17600, + "year_id": 17741, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17744, + "make_id": 17409, + "model_id": 17600, + "year_id": 17744, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17745, + "make_id": 17409, + "model_id": 17600, + "year_id": 17744, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17746, + "make_id": 17409, + "model_id": 17600, + "year_id": 17744, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17747, + "make_id": 17409, + "model_id": 17600, + "year_id": 17744, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17748, + "make_id": 17409, + "model_id": 17600, + "year_id": 17748, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17749, + "make_id": 17409, + "model_id": 17600, + "year_id": 17748, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17750, + "make_id": 17409, + "model_id": 17600, + "year_id": 17748, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17751, + "make_id": 17409, + "model_id": 17600, + "year_id": 17748, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17752, + "make_id": 17409, + "model_id": 17752, + "year_id": 17752, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17753, + "make_id": 17409, + "model_id": 17752, + "year_id": 17752, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17754, + "make_id": 17409, + "model_id": 17752, + "year_id": 17752, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17755, + "make_id": 17409, + "model_id": 17755, + "year_id": 17755, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17756, + "make_id": 17409, + "model_id": 17755, + "year_id": 17755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17757, + "make_id": 17409, + "model_id": 17755, + "year_id": 17755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17758, + "make_id": 17409, + "model_id": 17758, + "year_id": 17758, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17759, + "make_id": 17409, + "model_id": 17758, + "year_id": 17759, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17760, + "make_id": 17409, + "model_id": 17758, + "year_id": 17760, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17761, + "make_id": 17409, + "model_id": 17758, + "year_id": 17761, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17762, + "make_id": 17409, + "model_id": 17758, + "year_id": 17762, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17763, + "make_id": 17409, + "model_id": 17758, + "year_id": 17763, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17764, + "make_id": 17409, + "model_id": 17758, + "year_id": 17764, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17765, + "make_id": 17409, + "model_id": 17758, + "year_id": 17765, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17766, + "make_id": 17409, + "model_id": 17758, + "year_id": 17766, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17767, + "make_id": 17409, + "model_id": 17758, + "year_id": 17767, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17768, + "make_id": 17409, + "model_id": 17758, + "year_id": 17768, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17769, + "make_id": 17409, + "model_id": 17758, + "year_id": 17769, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17770, + "make_id": 17409, + "model_id": 17758, + "year_id": 17770, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17771, + "make_id": 17409, + "model_id": 17771, + "year_id": 17771, + "cylinders": 4, + "displacement": 1.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 17772, + "make_id": 17409, + "model_id": 17771, + "year_id": 17771, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 17773, + "make_id": 17409, + "model_id": 17771, + "year_id": 17771, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 17774, + "make_id": 17409, + "model_id": 17771, + "year_id": 17771, + "cylinders": 4, + "displacement": 1.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 17775, + "make_id": 17409, + "model_id": 17771, + "year_id": 17771, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 17776, + "make_id": 17409, + "model_id": 17771, + "year_id": 17771, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 17777, + "make_id": 17409, + "model_id": 17771, + "year_id": 17777, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17778, + "make_id": 17409, + "model_id": 17771, + "year_id": 17777, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17779, + "make_id": 17409, + "model_id": 17771, + "year_id": 17777, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17780, + "make_id": 17409, + "model_id": 17771, + "year_id": 17777, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17781, + "make_id": 17409, + "model_id": 17771, + "year_id": 17777, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17782, + "make_id": 17409, + "model_id": 17771, + "year_id": 17782, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17783, + "make_id": 17409, + "model_id": 17771, + "year_id": 17782, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17784, + "make_id": 17409, + "model_id": 17771, + "year_id": 17782, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17785, + "make_id": 17409, + "model_id": 17771, + "year_id": 17785, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17786, + "make_id": 17409, + "model_id": 17771, + "year_id": 17785, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17787, + "make_id": 17409, + "model_id": 17771, + "year_id": 17785, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17788, + "make_id": 17409, + "model_id": 17771, + "year_id": 17788, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17789, + "make_id": 17409, + "model_id": 17771, + "year_id": 17788, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17790, + "make_id": 17409, + "model_id": 17771, + "year_id": 17788, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17791, + "make_id": 17409, + "model_id": 17771, + "year_id": 17791, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17792, + "make_id": 17409, + "model_id": 17771, + "year_id": 17791, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17793, + "make_id": 17409, + "model_id": 17771, + "year_id": 17791, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17794, + "make_id": 17409, + "model_id": 17771, + "year_id": 17794, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17795, + "make_id": 17409, + "model_id": 17771, + "year_id": 17794, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17796, + "make_id": 17409, + "model_id": 17771, + "year_id": 17794, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17797, + "make_id": 17409, + "model_id": 17771, + "year_id": 17797, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17798, + "make_id": 17409, + "model_id": 17771, + "year_id": 17797, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17799, + "make_id": 17409, + "model_id": 17771, + "year_id": 17797, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17800, + "make_id": 17409, + "model_id": 17800, + "year_id": 17800, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17801, + "make_id": 17409, + "model_id": 17800, + "year_id": 17800, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17802, + "make_id": 17409, + "model_id": 17800, + "year_id": 17802, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17803, + "make_id": 17409, + "model_id": 17800, + "year_id": 17802, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17804, + "make_id": 17409, + "model_id": 17800, + "year_id": 17804, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17805, + "make_id": 17409, + "model_id": 17800, + "year_id": 17804, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17806, + "make_id": 17409, + "model_id": 17800, + "year_id": 17806, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17807, + "make_id": 17409, + "model_id": 17800, + "year_id": 17806, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17808, + "make_id": 17409, + "model_id": 17800, + "year_id": 17808, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17809, + "make_id": 17409, + "model_id": 17800, + "year_id": 17808, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17810, + "make_id": 17409, + "model_id": 17800, + "year_id": 17810, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17811, + "make_id": 17409, + "model_id": 17800, + "year_id": 17810, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17812, + "make_id": 17409, + "model_id": 17800, + "year_id": 17812, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17813, + "make_id": 17409, + "model_id": 17800, + "year_id": 17812, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17814, + "make_id": 17409, + "model_id": 17814, + "year_id": 17814, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17815, + "make_id": 17409, + "model_id": 17814, + "year_id": 17814, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17816, + "make_id": 17409, + "model_id": 17814, + "year_id": 17814, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17817, + "make_id": 17409, + "model_id": 17814, + "year_id": 17814, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17818, + "make_id": 17409, + "model_id": 17814, + "year_id": 17818, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17819, + "make_id": 17409, + "model_id": 17814, + "year_id": 17818, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17820, + "make_id": 17409, + "model_id": 17814, + "year_id": 17818, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17821, + "make_id": 17409, + "model_id": 17814, + "year_id": 17818, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17822, + "make_id": 17409, + "model_id": 17814, + "year_id": 17818, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17823, + "make_id": 17409, + "model_id": 17814, + "year_id": 17823, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17824, + "make_id": 17409, + "model_id": 17814, + "year_id": 17823, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17825, + "make_id": 17409, + "model_id": 17814, + "year_id": 17823, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17826, + "make_id": 17409, + "model_id": 17814, + "year_id": 17823, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17827, + "make_id": 17409, + "model_id": 17814, + "year_id": 17823, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17828, + "make_id": 17409, + "model_id": 17828, + "year_id": 17828, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17829, + "make_id": 17409, + "model_id": 17828, + "year_id": 17828, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17830, + "make_id": 17409, + "model_id": 17828, + "year_id": 17830, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17831, + "make_id": 17409, + "model_id": 17828, + "year_id": 17830, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17832, + "make_id": 17409, + "model_id": 17828, + "year_id": 17832, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17833, + "make_id": 17409, + "model_id": 17828, + "year_id": 17832, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17834, + "make_id": 17409, + "model_id": 17828, + "year_id": 17834, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17835, + "make_id": 17409, + "model_id": 17828, + "year_id": 17834, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17836, + "make_id": 17409, + "model_id": 17836, + "year_id": 17836, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17837, + "make_id": 17409, + "model_id": 17836, + "year_id": 17837, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17838, + "make_id": 17409, + "model_id": 17836, + "year_id": 17838, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17839, + "make_id": 17409, + "model_id": 17836, + "year_id": 17839, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17840, + "make_id": 17409, + "model_id": 17840, + "year_id": 17840, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17841, + "make_id": 17409, + "model_id": 17840, + "year_id": 17840, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17842, + "make_id": 17409, + "model_id": 17840, + "year_id": 17842, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17843, + "make_id": 17409, + "model_id": 17840, + "year_id": 17842, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17844, + "make_id": 17409, + "model_id": 17840, + "year_id": 17844, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17845, + "make_id": 17409, + "model_id": 17840, + "year_id": 17844, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17846, + "make_id": 17409, + "model_id": 17840, + "year_id": 17846, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17847, + "make_id": 17409, + "model_id": 17840, + "year_id": 17846, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17848, + "make_id": 17409, + "model_id": 17840, + "year_id": 17848, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17849, + "make_id": 17409, + "model_id": 17840, + "year_id": 17848, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17850, + "make_id": 17409, + "model_id": 17840, + "year_id": 17850, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17851, + "make_id": 17409, + "model_id": 17840, + "year_id": 17850, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17852, + "make_id": 17409, + "model_id": 17852, + "year_id": 17852, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17853, + "make_id": 17409, + "model_id": 17852, + "year_id": 17852, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17854, + "make_id": 17409, + "model_id": 17852, + "year_id": 17852, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17855, + "make_id": 17409, + "model_id": 17852, + "year_id": 17852, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17856, + "make_id": 17409, + "model_id": 17852, + "year_id": 17856, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17857, + "make_id": 17409, + "model_id": 17852, + "year_id": 17856, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17858, + "make_id": 17409, + "model_id": 17852, + "year_id": 17856, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17859, + "make_id": 17409, + "model_id": 17852, + "year_id": 17856, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17860, + "make_id": 17409, + "model_id": 17852, + "year_id": 17860, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17861, + "make_id": 17409, + "model_id": 17852, + "year_id": 17860, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17862, + "make_id": 17409, + "model_id": 17852, + "year_id": 17860, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17863, + "make_id": 17409, + "model_id": 17852, + "year_id": 17860, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17864, + "make_id": 17409, + "model_id": 17852, + "year_id": 17864, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17865, + "make_id": 17409, + "model_id": 17852, + "year_id": 17865, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17866, + "make_id": 17409, + "model_id": 17852, + "year_id": 17866, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17867, + "make_id": 17409, + "model_id": 17852, + "year_id": 17867, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17868, + "make_id": 17409, + "model_id": 17852, + "year_id": 17868, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17869, + "make_id": 17409, + "model_id": 17852, + "year_id": 17869, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17870, + "make_id": 17409, + "model_id": 17852, + "year_id": 17870, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17871, + "make_id": 17409, + "model_id": 17852, + "year_id": 17871, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17872, + "make_id": 17409, + "model_id": 17852, + "year_id": 17872, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17873, + "make_id": 17409, + "model_id": 17852, + "year_id": 17873, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17874, + "make_id": 17409, + "model_id": 17874, + "year_id": 17874, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17875, + "make_id": 17409, + "model_id": 17874, + "year_id": 17875, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17876, + "make_id": 17409, + "model_id": 17874, + "year_id": 17876, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17877, + "make_id": 17409, + "model_id": 17874, + "year_id": 17877, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17878, + "make_id": 17409, + "model_id": 17878, + "year_id": 17878, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 17879, + "make_id": 17409, + "model_id": 17878, + "year_id": 17878, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 17880, + "make_id": 17409, + "model_id": 17878, + "year_id": 17878, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 17881, + "make_id": 17409, + "model_id": 17878, + "year_id": 17878, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 17882, + "make_id": 17409, + "model_id": 17878, + "year_id": 17882, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17883, + "make_id": 17409, + "model_id": 17878, + "year_id": 17882, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17884, + "make_id": 17409, + "model_id": 17878, + "year_id": 17882, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17885, + "make_id": 17409, + "model_id": 17878, + "year_id": 17882, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 17886, + "make_id": 17409, + "model_id": 17878, + "year_id": 17882, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17887, + "make_id": 17409, + "model_id": 17878, + "year_id": 17887, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17888, + "make_id": 17409, + "model_id": 17878, + "year_id": 17887, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17889, + "make_id": 17409, + "model_id": 17878, + "year_id": 17887, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17890, + "make_id": 17409, + "model_id": 17878, + "year_id": 17890, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17891, + "make_id": 17409, + "model_id": 17878, + "year_id": 17890, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17892, + "make_id": 17409, + "model_id": 17878, + "year_id": 17890, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17893, + "make_id": 17409, + "model_id": 17878, + "year_id": 17893, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17894, + "make_id": 17409, + "model_id": 17878, + "year_id": 17893, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17895, + "make_id": 17409, + "model_id": 17878, + "year_id": 17893, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17896, + "make_id": 17409, + "model_id": 17878, + "year_id": 17893, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17897, + "make_id": 17409, + "model_id": 17878, + "year_id": 17897, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17898, + "make_id": 17409, + "model_id": 17878, + "year_id": 17897, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17899, + "make_id": 17409, + "model_id": 17878, + "year_id": 17897, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17900, + "make_id": 17409, + "model_id": 17878, + "year_id": 17897, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17901, + "make_id": 17409, + "model_id": 17878, + "year_id": 17901, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17902, + "make_id": 17409, + "model_id": 17878, + "year_id": 17901, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17903, + "make_id": 17409, + "model_id": 17878, + "year_id": 17901, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17904, + "make_id": 17409, + "model_id": 17878, + "year_id": 17901, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17905, + "make_id": 17409, + "model_id": 17878, + "year_id": 17905, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17906, + "make_id": 17409, + "model_id": 17878, + "year_id": 17905, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17907, + "make_id": 17409, + "model_id": 17878, + "year_id": 17905, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17908, + "make_id": 17409, + "model_id": 17878, + "year_id": 17905, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17909, + "make_id": 17409, + "model_id": 17909, + "year_id": 17909, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17910, + "make_id": 17409, + "model_id": 17909, + "year_id": 17910, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17911, + "make_id": 17409, + "model_id": 17909, + "year_id": 17910, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17912, + "make_id": 17409, + "model_id": 17909, + "year_id": 17910, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17913, + "make_id": 17409, + "model_id": 17909, + "year_id": 17913, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17914, + "make_id": 17409, + "model_id": 17909, + "year_id": 17913, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17915, + "make_id": 17409, + "model_id": 17909, + "year_id": 17913, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17916, + "make_id": 17409, + "model_id": 17909, + "year_id": 17913, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17917, + "make_id": 17409, + "model_id": 17909, + "year_id": 17913, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17918, + "make_id": 17409, + "model_id": 17909, + "year_id": 17913, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17919, + "make_id": 17409, + "model_id": 17909, + "year_id": 17919, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17920, + "make_id": 17409, + "model_id": 17909, + "year_id": 17919, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17921, + "make_id": 17409, + "model_id": 17909, + "year_id": 17919, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17922, + "make_id": 17409, + "model_id": 17909, + "year_id": 17922, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17923, + "make_id": 17409, + "model_id": 17909, + "year_id": 17922, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17924, + "make_id": 17409, + "model_id": 17909, + "year_id": 17922, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17925, + "make_id": 17409, + "model_id": 17909, + "year_id": 17925, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17926, + "make_id": 17409, + "model_id": 17909, + "year_id": 17925, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17927, + "make_id": 17409, + "model_id": 17909, + "year_id": 17925, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17928, + "make_id": 17409, + "model_id": 17909, + "year_id": 17928, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17929, + "make_id": 17409, + "model_id": 17909, + "year_id": 17928, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17930, + "make_id": 17409, + "model_id": 17909, + "year_id": 17928, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17931, + "make_id": 17409, + "model_id": 17909, + "year_id": 17931, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17932, + "make_id": 17409, + "model_id": 17909, + "year_id": 17931, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17933, + "make_id": 17409, + "model_id": 17909, + "year_id": 17931, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17934, + "make_id": 17409, + "model_id": 17909, + "year_id": 17934, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17935, + "make_id": 17409, + "model_id": 17909, + "year_id": 17934, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17936, + "make_id": 17409, + "model_id": 17909, + "year_id": 17934, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17937, + "make_id": 17409, + "model_id": 17909, + "year_id": 17937, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17938, + "make_id": 17409, + "model_id": 17909, + "year_id": 17937, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17939, + "make_id": 17409, + "model_id": 17909, + "year_id": 17937, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17940, + "make_id": 17409, + "model_id": 17909, + "year_id": 17940, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17941, + "make_id": 17409, + "model_id": 17909, + "year_id": 17940, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17942, + "make_id": 17409, + "model_id": 17909, + "year_id": 17942, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17943, + "make_id": 17409, + "model_id": 17909, + "year_id": 17942, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17944, + "make_id": 17409, + "model_id": 17909, + "year_id": 17944, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17945, + "make_id": 17409, + "model_id": 17909, + "year_id": 17944, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17946, + "make_id": 17409, + "model_id": 17909, + "year_id": 17946, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17947, + "make_id": 17409, + "model_id": 17909, + "year_id": 17946, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17948, + "make_id": 17409, + "model_id": 17909, + "year_id": 17948, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17949, + "make_id": 17409, + "model_id": 17909, + "year_id": 17948, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17950, + "make_id": 17409, + "model_id": 17909, + "year_id": 17950, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17951, + "make_id": 17409, + "model_id": 17909, + "year_id": 17950, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17952, + "make_id": 17409, + "model_id": 17909, + "year_id": 17952, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17953, + "make_id": 17409, + "model_id": 17909, + "year_id": 17952, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17954, + "make_id": 17409, + "model_id": 17909, + "year_id": 17954, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17955, + "make_id": 17409, + "model_id": 17909, + "year_id": 17954, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17956, + "make_id": 17409, + "model_id": 17909, + "year_id": 17956, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17957, + "make_id": 17409, + "model_id": 17909, + "year_id": 17956, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17958, + "make_id": 17409, + "model_id": 17909, + "year_id": 17958, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17959, + "make_id": 17409, + "model_id": 17909, + "year_id": 17958, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17960, + "make_id": 17409, + "model_id": 17960, + "year_id": 17960, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17961, + "make_id": 17409, + "model_id": 17960, + "year_id": 17960, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17962, + "make_id": 17409, + "model_id": 17960, + "year_id": 17962, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17963, + "make_id": 17409, + "model_id": 17960, + "year_id": 17962, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17964, + "make_id": 17409, + "model_id": 17960, + "year_id": 17964, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17965, + "make_id": 17409, + "model_id": 17960, + "year_id": 17964, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17966, + "make_id": 17409, + "model_id": 17960, + "year_id": 17966, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17967, + "make_id": 17409, + "model_id": 17960, + "year_id": 17966, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17968, + "make_id": 17409, + "model_id": 17960, + "year_id": 17968, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17969, + "make_id": 17409, + "model_id": 17960, + "year_id": 17968, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17970, + "make_id": 17409, + "model_id": 17960, + "year_id": 17970, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 17971, + "make_id": 17409, + "model_id": 17960, + "year_id": 17970, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 17972, + "make_id": 17409, + "model_id": 17972, + "year_id": 17972, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17973, + "make_id": 17409, + "model_id": 17972, + "year_id": 17972, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17974, + "make_id": 17409, + "model_id": 17972, + "year_id": 17972, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17975, + "make_id": 17409, + "model_id": 17972, + "year_id": 17975, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17976, + "make_id": 17409, + "model_id": 17972, + "year_id": 17975, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17977, + "make_id": 17409, + "model_id": 17972, + "year_id": 17975, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17978, + "make_id": 17409, + "model_id": 17972, + "year_id": 17978, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17979, + "make_id": 17409, + "model_id": 17972, + "year_id": 17978, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17980, + "make_id": 17409, + "model_id": 17972, + "year_id": 17978, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17981, + "make_id": 17409, + "model_id": 17972, + "year_id": 17981, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 17982, + "make_id": 17409, + "model_id": 17972, + "year_id": 17981, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17983, + "make_id": 17409, + "model_id": 17972, + "year_id": 17981, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 17984, + "make_id": 17409, + "model_id": 17984, + "year_id": 17984, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17985, + "make_id": 17409, + "model_id": 17984, + "year_id": 17984, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17986, + "make_id": 17409, + "model_id": 17984, + "year_id": 17984, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17987, + "make_id": 17409, + "model_id": 17984, + "year_id": 17984, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17988, + "make_id": 17409, + "model_id": 17984, + "year_id": 17984, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17989, + "make_id": 17409, + "model_id": 17984, + "year_id": 17989, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17990, + "make_id": 17409, + "model_id": 17984, + "year_id": 17989, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17991, + "make_id": 17409, + "model_id": 17984, + "year_id": 17989, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17992, + "make_id": 17409, + "model_id": 17984, + "year_id": 17989, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17993, + "make_id": 17409, + "model_id": 17984, + "year_id": 17989, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17994, + "make_id": 17409, + "model_id": 17994, + "year_id": 17994, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17995, + "make_id": 17409, + "model_id": 17994, + "year_id": 17994, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17996, + "make_id": 17409, + "model_id": 17994, + "year_id": 17994, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17997, + "make_id": 17409, + "model_id": 17994, + "year_id": 17994, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 17998, + "make_id": 17409, + "model_id": 17994, + "year_id": 17998, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 17999, + "make_id": 17409, + "model_id": 17994, + "year_id": 17998, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18000, + "make_id": 17409, + "model_id": 17994, + "year_id": 17998, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18001, + "make_id": 17409, + "model_id": 17994, + "year_id": 17998, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18002, + "make_id": 17409, + "model_id": 17994, + "year_id": 18002, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18003, + "make_id": 17409, + "model_id": 17994, + "year_id": 18002, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18004, + "make_id": 17409, + "model_id": 17994, + "year_id": 18002, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18005, + "make_id": 17409, + "model_id": 17994, + "year_id": 18002, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18006, + "make_id": 17409, + "model_id": 17994, + "year_id": 18006, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18007, + "make_id": 17409, + "model_id": 17994, + "year_id": 18006, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18008, + "make_id": 17409, + "model_id": 17994, + "year_id": 18006, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18009, + "make_id": 17409, + "model_id": 17994, + "year_id": 18006, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18010, + "make_id": 17409, + "model_id": 17994, + "year_id": 18010, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18011, + "make_id": 17409, + "model_id": 17994, + "year_id": 18010, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18012, + "make_id": 17409, + "model_id": 17994, + "year_id": 18010, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18013, + "make_id": 17409, + "model_id": 17994, + "year_id": 18010, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18014, + "make_id": 17409, + "model_id": 17994, + "year_id": 18014, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18015, + "make_id": 17409, + "model_id": 17994, + "year_id": 18014, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18016, + "make_id": 17409, + "model_id": 17994, + "year_id": 18014, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18017, + "make_id": 17409, + "model_id": 17994, + "year_id": 18014, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18018, + "make_id": 17409, + "model_id": 17994, + "year_id": 18018, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18019, + "make_id": 17409, + "model_id": 17994, + "year_id": 18018, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18020, + "make_id": 17409, + "model_id": 17994, + "year_id": 18018, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18021, + "make_id": 17409, + "model_id": 17994, + "year_id": 18018, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18022, + "make_id": 17409, + "model_id": 17994, + "year_id": 18022, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18023, + "make_id": 17409, + "model_id": 17994, + "year_id": 18022, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18024, + "make_id": 17409, + "model_id": 17994, + "year_id": 18022, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18025, + "make_id": 17409, + "model_id": 17994, + "year_id": 18022, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18026, + "make_id": 17409, + "model_id": 17994, + "year_id": 18026, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18027, + "make_id": 17409, + "model_id": 17994, + "year_id": 18026, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18028, + "make_id": 17409, + "model_id": 17994, + "year_id": 18026, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18029, + "make_id": 17409, + "model_id": 18029, + "year_id": 18029, + "cylinders": 0, + "displacement": 0, + "drive": "", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 18030, + "make_id": 17409, + "model_id": 18029, + "year_id": 18030, + "cylinders": 0, + "displacement": 0, + "drive": "", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 18031, + "make_id": 17409, + "model_id": 18031, + "year_id": 18031, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18032, + "make_id": 17409, + "model_id": 18031, + "year_id": 18031, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18033, + "make_id": 17409, + "model_id": 18031, + "year_id": 18031, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18034, + "make_id": 17409, + "model_id": 18031, + "year_id": 18034, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18035, + "make_id": 17409, + "model_id": 18031, + "year_id": 18034, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18036, + "make_id": 17409, + "model_id": 18031, + "year_id": 18034, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18037, + "make_id": 17409, + "model_id": 18031, + "year_id": 18037, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18038, + "make_id": 17409, + "model_id": 18031, + "year_id": 18037, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18039, + "make_id": 17409, + "model_id": 18031, + "year_id": 18037, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18040, + "make_id": 17409, + "model_id": 18031, + "year_id": 18040, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18041, + "make_id": 17409, + "model_id": 18031, + "year_id": 18040, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18042, + "make_id": 17409, + "model_id": 18031, + "year_id": 18040, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18043, + "make_id": 17409, + "model_id": 18031, + "year_id": 18043, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18044, + "make_id": 17409, + "model_id": 18031, + "year_id": 18043, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18045, + "make_id": 17409, + "model_id": 18031, + "year_id": 18043, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18046, + "make_id": 17409, + "model_id": 18031, + "year_id": 18046, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18047, + "make_id": 17409, + "model_id": 18031, + "year_id": 18046, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18048, + "make_id": 17409, + "model_id": 18031, + "year_id": 18046, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18049, + "make_id": 17409, + "model_id": 18031, + "year_id": 18049, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18050, + "make_id": 17409, + "model_id": 18031, + "year_id": 18049, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18051, + "make_id": 17409, + "model_id": 18031, + "year_id": 18049, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18052, + "make_id": 17409, + "model_id": 18031, + "year_id": 18052, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18053, + "make_id": 17409, + "model_id": 18031, + "year_id": 18052, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18054, + "make_id": 17409, + "model_id": 18031, + "year_id": 18052, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18055, + "make_id": 17409, + "model_id": 18031, + "year_id": 18055, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18056, + "make_id": 17409, + "model_id": 18031, + "year_id": 18055, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18057, + "make_id": 17409, + "model_id": 18031, + "year_id": 18055, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18058, + "make_id": 17409, + "model_id": 18058, + "year_id": 18058, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 18059, + "make_id": 17409, + "model_id": 18058, + "year_id": 18059, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 18060, + "make_id": 17409, + "model_id": 18060, + "year_id": 18060, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18061, + "make_id": 17409, + "model_id": 18060, + "year_id": 18060, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18062, + "make_id": 17409, + "model_id": 18060, + "year_id": 18060, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18063, + "make_id": 17409, + "model_id": 18060, + "year_id": 18060, + "cylinders": 4, + "displacement": 1.8, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18064, + "make_id": 17409, + "model_id": 18060, + "year_id": 18060, + "cylinders": 4, + "displacement": 1.8, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18065, + "make_id": 17409, + "model_id": 18065, + "year_id": 18065, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18066, + "make_id": 17409, + "model_id": 18065, + "year_id": 18066, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18067, + "make_id": 17409, + "model_id": 18065, + "year_id": 18066, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18068, + "make_id": 17409, + "model_id": 18065, + "year_id": 18066, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18069, + "make_id": 17409, + "model_id": 18065, + "year_id": 18069, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18070, + "make_id": 17409, + "model_id": 18065, + "year_id": 18069, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18071, + "make_id": 17409, + "model_id": 18065, + "year_id": 18071, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18072, + "make_id": 17409, + "model_id": 18065, + "year_id": 18071, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18073, + "make_id": 17409, + "model_id": 18065, + "year_id": 18073, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18074, + "make_id": 17409, + "model_id": 18065, + "year_id": 18073, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18075, + "make_id": 17409, + "model_id": 18065, + "year_id": 18075, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18076, + "make_id": 17409, + "model_id": 18065, + "year_id": 18075, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18077, + "make_id": 17409, + "model_id": 18065, + "year_id": 18077, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18078, + "make_id": 17409, + "model_id": 18065, + "year_id": 18077, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18079, + "make_id": 17409, + "model_id": 18065, + "year_id": 18079, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18080, + "make_id": 17409, + "model_id": 18065, + "year_id": 18079, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18081, + "make_id": 17409, + "model_id": 18065, + "year_id": 18081, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18082, + "make_id": 17409, + "model_id": 18065, + "year_id": 18081, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18083, + "make_id": 17409, + "model_id": 18065, + "year_id": 18083, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18084, + "make_id": 17409, + "model_id": 18065, + "year_id": 18083, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18085, + "make_id": 17409, + "model_id": 18065, + "year_id": 18085, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18086, + "make_id": 17409, + "model_id": 18065, + "year_id": 18085, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18087, + "make_id": 17409, + "model_id": 18065, + "year_id": 18087, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18088, + "make_id": 17409, + "model_id": 18065, + "year_id": 18087, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 18089, + "make_id": 17409, + "model_id": 18089, + "year_id": 18089, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18090, + "make_id": 17409, + "model_id": 18089, + "year_id": 18090, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18091, + "make_id": 17409, + "model_id": 18089, + "year_id": 18091, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18092, + "make_id": 17409, + "model_id": 18089, + "year_id": 18092, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18093, + "make_id": 17409, + "model_id": 18089, + "year_id": 18093, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18094, + "make_id": 17409, + "model_id": 18089, + "year_id": 18094, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18095, + "make_id": 17409, + "model_id": 18089, + "year_id": 18095, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18096, + "make_id": 17409, + "model_id": 18089, + "year_id": 18096, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18097, + "make_id": 17409, + "model_id": 18089, + "year_id": 18097, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18098, + "make_id": 17409, + "model_id": 18089, + "year_id": 18098, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18099, + "make_id": 17409, + "model_id": 18089, + "year_id": 18099, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18100, + "make_id": 17409, + "model_id": 18089, + "year_id": 18099, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18101, + "make_id": 17409, + "model_id": 18089, + "year_id": 18101, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18102, + "make_id": 17409, + "model_id": 18089, + "year_id": 18101, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18103, + "make_id": 17409, + "model_id": 18089, + "year_id": 18103, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18104, + "make_id": 17409, + "model_id": 18089, + "year_id": 18103, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18105, + "make_id": 17409, + "model_id": 18089, + "year_id": 18105, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18106, + "make_id": 17409, + "model_id": 18089, + "year_id": 18105, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18107, + "make_id": 17409, + "model_id": 18089, + "year_id": 18107, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18108, + "make_id": 17409, + "model_id": 18089, + "year_id": 18107, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18109, + "make_id": 17409, + "model_id": 18089, + "year_id": 18109, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18110, + "make_id": 17409, + "model_id": 18089, + "year_id": 18109, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18111, + "make_id": 17409, + "model_id": 18089, + "year_id": 18111, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18112, + "make_id": 17409, + "model_id": 18089, + "year_id": 18111, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18113, + "make_id": 17409, + "model_id": 18089, + "year_id": 18113, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18114, + "make_id": 17409, + "model_id": 18089, + "year_id": 18113, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18115, + "make_id": 17409, + "model_id": 18089, + "year_id": 18115, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18116, + "make_id": 17409, + "model_id": 18089, + "year_id": 18115, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18117, + "make_id": 17409, + "model_id": 18089, + "year_id": 18117, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18118, + "make_id": 17409, + "model_id": 18089, + "year_id": 18118, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18119, + "make_id": 17409, + "model_id": 18089, + "year_id": 18119, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18120, + "make_id": 17409, + "model_id": 18120, + "year_id": 18120, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18121, + "make_id": 17409, + "model_id": 18120, + "year_id": 18120, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18122, + "make_id": 17409, + "model_id": 18120, + "year_id": 18120, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18123, + "make_id": 17409, + "model_id": 18120, + "year_id": 18120, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18124, + "make_id": 17409, + "model_id": 18120, + "year_id": 18120, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18125, + "make_id": 17409, + "model_id": 18120, + "year_id": 18125, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18126, + "make_id": 17409, + "model_id": 18120, + "year_id": 18125, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18127, + "make_id": 17409, + "model_id": 18120, + "year_id": 18125, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18128, + "make_id": 17409, + "model_id": 18120, + "year_id": 18125, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18129, + "make_id": 17409, + "model_id": 18120, + "year_id": 18125, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18130, + "make_id": 17409, + "model_id": 18120, + "year_id": 18130, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18131, + "make_id": 17409, + "model_id": 18120, + "year_id": 18130, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18132, + "make_id": 17409, + "model_id": 18120, + "year_id": 18130, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18133, + "make_id": 17409, + "model_id": 18120, + "year_id": 18130, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18134, + "make_id": 17409, + "model_id": 18120, + "year_id": 18130, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18135, + "make_id": 17409, + "model_id": 18120, + "year_id": 18135, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18136, + "make_id": 17409, + "model_id": 18120, + "year_id": 18135, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18137, + "make_id": 17409, + "model_id": 18120, + "year_id": 18135, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18138, + "make_id": 17409, + "model_id": 18120, + "year_id": 18135, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18139, + "make_id": 17409, + "model_id": 18120, + "year_id": 18135, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18140, + "make_id": 17409, + "model_id": 18120, + "year_id": 18140, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18141, + "make_id": 17409, + "model_id": 18120, + "year_id": 18140, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18142, + "make_id": 17409, + "model_id": 18120, + "year_id": 18140, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18143, + "make_id": 17409, + "model_id": 18120, + "year_id": 18140, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18144, + "make_id": 17409, + "model_id": 18120, + "year_id": 18144, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18145, + "make_id": 17409, + "model_id": 18120, + "year_id": 18144, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18146, + "make_id": 17409, + "model_id": 18120, + "year_id": 18144, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18147, + "make_id": 17409, + "model_id": 18120, + "year_id": 18144, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18148, + "make_id": 17409, + "model_id": 18120, + "year_id": 18148, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18149, + "make_id": 17409, + "model_id": 18120, + "year_id": 18148, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18150, + "make_id": 17409, + "model_id": 18120, + "year_id": 18148, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18151, + "make_id": 17409, + "model_id": 18120, + "year_id": 18148, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18152, + "make_id": 17409, + "model_id": 18120, + "year_id": 18152, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18153, + "make_id": 17409, + "model_id": 18120, + "year_id": 18152, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18154, + "make_id": 17409, + "model_id": 18120, + "year_id": 18152, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18155, + "make_id": 17409, + "model_id": 18120, + "year_id": 18152, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18156, + "make_id": 17409, + "model_id": 18120, + "year_id": 18156, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18157, + "make_id": 17409, + "model_id": 18120, + "year_id": 18156, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18158, + "make_id": 17409, + "model_id": 18120, + "year_id": 18156, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18159, + "make_id": 17409, + "model_id": 18120, + "year_id": 18156, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18160, + "make_id": 17409, + "model_id": 18160, + "year_id": 18160, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18161, + "make_id": 17409, + "model_id": 18160, + "year_id": 18161, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18162, + "make_id": 17409, + "model_id": 18160, + "year_id": 18162, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18163, + "make_id": 17409, + "model_id": 18160, + "year_id": 18163, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18164, + "make_id": 17409, + "model_id": 18160, + "year_id": 18163, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18165, + "make_id": 17409, + "model_id": 18160, + "year_id": 18165, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18166, + "make_id": 17409, + "model_id": 18160, + "year_id": 18165, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18167, + "make_id": 17409, + "model_id": 18160, + "year_id": 18167, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18168, + "make_id": 17409, + "model_id": 18160, + "year_id": 18167, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18169, + "make_id": 17409, + "model_id": 18160, + "year_id": 18169, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18170, + "make_id": 17409, + "model_id": 18160, + "year_id": 18169, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18171, + "make_id": 17409, + "model_id": 18160, + "year_id": 18171, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18172, + "make_id": 17409, + "model_id": 18160, + "year_id": 18171, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18173, + "make_id": 17409, + "model_id": 18160, + "year_id": 18173, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18174, + "make_id": 17409, + "model_id": 18160, + "year_id": 18173, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18175, + "make_id": 17409, + "model_id": 18160, + "year_id": 18175, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18176, + "make_id": 17409, + "model_id": 18160, + "year_id": 18175, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18177, + "make_id": 17409, + "model_id": 18160, + "year_id": 18177, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18178, + "make_id": 17409, + "model_id": 18160, + "year_id": 18177, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18179, + "make_id": 17409, + "model_id": 18160, + "year_id": 18179, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18180, + "make_id": 17409, + "model_id": 18160, + "year_id": 18179, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18181, + "make_id": 17409, + "model_id": 18160, + "year_id": 18181, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18182, + "make_id": 17409, + "model_id": 18160, + "year_id": 18181, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18183, + "make_id": 17409, + "model_id": 18160, + "year_id": 18183, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 18184, + "make_id": 17409, + "model_id": 18160, + "year_id": 18183, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18185, + "make_id": 17409, + "model_id": 18160, + "year_id": 18183, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 18186, + "make_id": 17409, + "model_id": 18160, + "year_id": 18183, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18187, + "make_id": 17409, + "model_id": 18187, + "year_id": 18187, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 18188, + "make_id": 17409, + "model_id": 18187, + "year_id": 18187, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 18189, + "make_id": 17409, + "model_id": 18187, + "year_id": 18187, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 18190, + "make_id": 17409, + "model_id": 18187, + "year_id": 18187, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 18191, + "make_id": 17409, + "model_id": 18187, + "year_id": 18191, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18192, + "make_id": 17409, + "model_id": 18187, + "year_id": 18191, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18193, + "make_id": 17409, + "model_id": 18187, + "year_id": 18191, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18194, + "make_id": 17409, + "model_id": 18187, + "year_id": 18191, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18195, + "make_id": 17409, + "model_id": 18187, + "year_id": 18191, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18196, + "make_id": 17409, + "model_id": 18187, + "year_id": 18196, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18197, + "make_id": 17409, + "model_id": 18187, + "year_id": 18196, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18198, + "make_id": 17409, + "model_id": 18187, + "year_id": 18196, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18199, + "make_id": 17409, + "model_id": 18187, + "year_id": 18196, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18200, + "make_id": 17409, + "model_id": 18187, + "year_id": 18200, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18201, + "make_id": 17409, + "model_id": 18187, + "year_id": 18200, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18202, + "make_id": 17409, + "model_id": 18187, + "year_id": 18200, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18203, + "make_id": 17409, + "model_id": 18187, + "year_id": 18200, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18204, + "make_id": 17409, + "model_id": 18187, + "year_id": 18204, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18205, + "make_id": 17409, + "model_id": 18187, + "year_id": 18204, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18206, + "make_id": 17409, + "model_id": 18187, + "year_id": 18204, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18207, + "make_id": 17409, + "model_id": 18187, + "year_id": 18204, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18208, + "make_id": 17409, + "model_id": 18187, + "year_id": 18208, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18209, + "make_id": 17409, + "model_id": 18187, + "year_id": 18208, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18210, + "make_id": 17409, + "model_id": 18187, + "year_id": 18208, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18211, + "make_id": 17409, + "model_id": 18187, + "year_id": 18208, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18212, + "make_id": 17409, + "model_id": 18187, + "year_id": 18212, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18213, + "make_id": 17409, + "model_id": 18187, + "year_id": 18212, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18214, + "make_id": 17409, + "model_id": 18187, + "year_id": 18212, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18215, + "make_id": 17409, + "model_id": 18187, + "year_id": 18212, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18216, + "make_id": 17409, + "model_id": 18187, + "year_id": 18212, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18217, + "make_id": 17409, + "model_id": 18187, + "year_id": 18212, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18218, + "make_id": 17409, + "model_id": 18187, + "year_id": 18218, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18219, + "make_id": 17409, + "model_id": 18187, + "year_id": 18218, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18220, + "make_id": 17409, + "model_id": 18187, + "year_id": 18218, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18221, + "make_id": 17409, + "model_id": 18187, + "year_id": 18218, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18222, + "make_id": 17409, + "model_id": 18187, + "year_id": 18218, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18223, + "make_id": 17409, + "model_id": 18187, + "year_id": 18218, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18224, + "make_id": 17409, + "model_id": 18187, + "year_id": 18224, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18225, + "make_id": 17409, + "model_id": 18187, + "year_id": 18224, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18226, + "make_id": 17409, + "model_id": 18187, + "year_id": 18224, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18227, + "make_id": 17409, + "model_id": 18187, + "year_id": 18224, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18228, + "make_id": 17409, + "model_id": 18187, + "year_id": 18228, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18229, + "make_id": 17409, + "model_id": 18187, + "year_id": 18228, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18230, + "make_id": 17409, + "model_id": 18187, + "year_id": 18228, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18231, + "make_id": 17409, + "model_id": 18187, + "year_id": 18228, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18232, + "make_id": 17409, + "model_id": 18187, + "year_id": 18228, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18233, + "make_id": 17409, + "model_id": 18187, + "year_id": 18228, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18234, + "make_id": 17409, + "model_id": 18187, + "year_id": 18234, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18235, + "make_id": 17409, + "model_id": 18187, + "year_id": 18234, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18236, + "make_id": 17409, + "model_id": 18187, + "year_id": 18234, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18237, + "make_id": 17409, + "model_id": 18187, + "year_id": 18234, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18238, + "make_id": 17409, + "model_id": 18187, + "year_id": 18234, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18239, + "make_id": 17409, + "model_id": 18187, + "year_id": 18239, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18240, + "make_id": 17409, + "model_id": 18187, + "year_id": 18239, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18241, + "make_id": 17409, + "model_id": 18187, + "year_id": 18239, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18242, + "make_id": 17409, + "model_id": 18187, + "year_id": 18239, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18243, + "make_id": 17409, + "model_id": 18187, + "year_id": 18239, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18244, + "make_id": 17409, + "model_id": 18187, + "year_id": 18244, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18245, + "make_id": 17409, + "model_id": 18187, + "year_id": 18244, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18246, + "make_id": 17409, + "model_id": 18187, + "year_id": 18244, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18247, + "make_id": 17409, + "model_id": 18187, + "year_id": 18244, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18248, + "make_id": 17409, + "model_id": 18187, + "year_id": 18244, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18249, + "make_id": 17409, + "model_id": 18187, + "year_id": 18249, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18250, + "make_id": 17409, + "model_id": 18187, + "year_id": 18249, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18251, + "make_id": 17409, + "model_id": 18187, + "year_id": 18251, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18252, + "make_id": 17409, + "model_id": 18187, + "year_id": 18251, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18253, + "make_id": 17409, + "model_id": 18187, + "year_id": 18253, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18254, + "make_id": 17409, + "model_id": 18187, + "year_id": 18253, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18255, + "make_id": 17409, + "model_id": 18187, + "year_id": 18255, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18256, + "make_id": 17409, + "model_id": 18187, + "year_id": 18255, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18257, + "make_id": 17409, + "model_id": 18257, + "year_id": 18257, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18258, + "make_id": 17409, + "model_id": 18257, + "year_id": 18257, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18259, + "make_id": 17409, + "model_id": 18259, + "year_id": 18259, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18260, + "make_id": 17409, + "model_id": 18259, + "year_id": 18260, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18261, + "make_id": 17409, + "model_id": 18259, + "year_id": 18261, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18262, + "make_id": 17409, + "model_id": 18259, + "year_id": 18262, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18263, + "make_id": 17409, + "model_id": 18259, + "year_id": 18263, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18264, + "make_id": 17409, + "model_id": 18259, + "year_id": 18264, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18265, + "make_id": 17409, + "model_id": 18259, + "year_id": 18265, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18266, + "make_id": 17409, + "model_id": 18259, + "year_id": 18266, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18267, + "make_id": 17409, + "model_id": 18259, + "year_id": 18267, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18268, + "make_id": 17409, + "model_id": 18268, + "year_id": 18268, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18269, + "make_id": 17409, + "model_id": 18268, + "year_id": 18269, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18270, + "make_id": 17409, + "model_id": 18268, + "year_id": 18270, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18271, + "make_id": 17409, + "model_id": 18268, + "year_id": 18271, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18272, + "make_id": 17409, + "model_id": 18268, + "year_id": 18272, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18273, + "make_id": 17409, + "model_id": 18268, + "year_id": 18273, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18274, + "make_id": 17409, + "model_id": 18268, + "year_id": 18274, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18275, + "make_id": 17409, + "model_id": 18268, + "year_id": 18275, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18276, + "make_id": 17409, + "model_id": 18268, + "year_id": 18276, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18277, + "make_id": 17409, + "model_id": 18268, + "year_id": 18277, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18278, + "make_id": 18278, + "model_id": 18278, + "year_id": 18278, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18279, + "make_id": 18278, + "model_id": 18278, + "year_id": 18278, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18280, + "make_id": 18278, + "model_id": 18278, + "year_id": 18280, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18281, + "make_id": 18278, + "model_id": 18278, + "year_id": 18280, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18282, + "make_id": 18278, + "model_id": 18278, + "year_id": 18282, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18283, + "make_id": 18278, + "model_id": 18278, + "year_id": 18282, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18284, + "make_id": 18278, + "model_id": 18278, + "year_id": 18282, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18285, + "make_id": 18278, + "model_id": 18278, + "year_id": 18285, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18286, + "make_id": 18278, + "model_id": 18278, + "year_id": 18285, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18287, + "make_id": 18278, + "model_id": 18278, + "year_id": 18285, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18288, + "make_id": 18278, + "model_id": 18278, + "year_id": 18288, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18289, + "make_id": 18278, + "model_id": 18278, + "year_id": 18288, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18290, + "make_id": 18278, + "model_id": 18278, + "year_id": 18288, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18291, + "make_id": 18278, + "model_id": 18291, + "year_id": 18291, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18292, + "make_id": 18278, + "model_id": 18291, + "year_id": 18291, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18293, + "make_id": 18278, + "model_id": 18291, + "year_id": 18291, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18294, + "make_id": 18278, + "model_id": 18291, + "year_id": 18294, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18295, + "make_id": 18278, + "model_id": 18291, + "year_id": 18294, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18296, + "make_id": 18278, + "model_id": 18291, + "year_id": 18294, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18297, + "make_id": 18297, + "model_id": 18297, + "year_id": 18297, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18298, + "make_id": 18297, + "model_id": 18297, + "year_id": 18297, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18299, + "make_id": 18297, + "model_id": 18297, + "year_id": 18299, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18300, + "make_id": 18297, + "model_id": 18297, + "year_id": 18299, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18301, + "make_id": 18297, + "model_id": 18297, + "year_id": 18299, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18302, + "make_id": 18297, + "model_id": 18297, + "year_id": 18299, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18303, + "make_id": 18297, + "model_id": 18297, + "year_id": 18303, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18304, + "make_id": 18297, + "model_id": 18297, + "year_id": 18303, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18305, + "make_id": 18297, + "model_id": 18297, + "year_id": 18305, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18306, + "make_id": 18297, + "model_id": 18297, + "year_id": 18305, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18307, + "make_id": 18297, + "model_id": 18297, + "year_id": 18307, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18308, + "make_id": 18297, + "model_id": 18297, + "year_id": 18307, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18309, + "make_id": 18297, + "model_id": 18297, + "year_id": 18309, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18310, + "make_id": 18297, + "model_id": 18297, + "year_id": 18309, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18311, + "make_id": 18297, + "model_id": 18297, + "year_id": 18311, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18312, + "make_id": 18297, + "model_id": 18297, + "year_id": 18311, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18313, + "make_id": 18297, + "model_id": 18297, + "year_id": 18313, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18314, + "make_id": 18297, + "model_id": 18297, + "year_id": 18313, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18315, + "make_id": 18297, + "model_id": 18297, + "year_id": 18315, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18316, + "make_id": 18297, + "model_id": 18297, + "year_id": 18315, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18317, + "make_id": 18297, + "model_id": 18297, + "year_id": 18317, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18318, + "make_id": 18297, + "model_id": 18297, + "year_id": 18317, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18319, + "make_id": 18297, + "model_id": 18297, + "year_id": 18319, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18320, + "make_id": 18297, + "model_id": 18297, + "year_id": 18319, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18321, + "make_id": 18297, + "model_id": 18297, + "year_id": 18321, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18322, + "make_id": 18297, + "model_id": 18297, + "year_id": 18321, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18323, + "make_id": 18297, + "model_id": 18297, + "year_id": 18323, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18324, + "make_id": 18297, + "model_id": 18297, + "year_id": 18323, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18325, + "make_id": 18297, + "model_id": 18297, + "year_id": 18325, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18326, + "make_id": 18297, + "model_id": 18297, + "year_id": 18325, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18327, + "make_id": 18297, + "model_id": 18297, + "year_id": 18327, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18328, + "make_id": 18297, + "model_id": 18297, + "year_id": 18327, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18329, + "make_id": 18297, + "model_id": 18297, + "year_id": 18329, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18330, + "make_id": 18297, + "model_id": 18297, + "year_id": 18329, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18331, + "make_id": 18297, + "model_id": 18331, + "year_id": 18331, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18332, + "make_id": 18297, + "model_id": 18331, + "year_id": 18331, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18333, + "make_id": 18297, + "model_id": 18333, + "year_id": 18333, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18334, + "make_id": 18297, + "model_id": 18333, + "year_id": 18333, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18335, + "make_id": 18297, + "model_id": 18335, + "year_id": 18335, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18336, + "make_id": 18297, + "model_id": 18335, + "year_id": 18336, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18337, + "make_id": 18297, + "model_id": 18337, + "year_id": 18337, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18338, + "make_id": 18297, + "model_id": 18337, + "year_id": 18337, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18339, + "make_id": 18297, + "model_id": 18337, + "year_id": 18339, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18340, + "make_id": 18297, + "model_id": 18337, + "year_id": 18339, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18341, + "make_id": 18297, + "model_id": 18337, + "year_id": 18339, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18342, + "make_id": 18297, + "model_id": 18337, + "year_id": 18339, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18343, + "make_id": 18297, + "model_id": 18337, + "year_id": 18343, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18344, + "make_id": 18297, + "model_id": 18337, + "year_id": 18343, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18345, + "make_id": 18297, + "model_id": 18337, + "year_id": 18343, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18346, + "make_id": 18297, + "model_id": 18337, + "year_id": 18343, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18347, + "make_id": 18297, + "model_id": 18337, + "year_id": 18347, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18348, + "make_id": 18297, + "model_id": 18337, + "year_id": 18347, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18349, + "make_id": 18297, + "model_id": 18337, + "year_id": 18347, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18350, + "make_id": 18297, + "model_id": 18337, + "year_id": 18347, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18351, + "make_id": 18297, + "model_id": 18337, + "year_id": 18351, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18352, + "make_id": 18297, + "model_id": 18337, + "year_id": 18351, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18353, + "make_id": 18297, + "model_id": 18337, + "year_id": 18351, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18354, + "make_id": 18297, + "model_id": 18337, + "year_id": 18351, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18355, + "make_id": 18297, + "model_id": 18337, + "year_id": 18355, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18356, + "make_id": 18297, + "model_id": 18337, + "year_id": 18355, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18357, + "make_id": 18297, + "model_id": 18337, + "year_id": 18355, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18358, + "make_id": 18297, + "model_id": 18337, + "year_id": 18355, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18359, + "make_id": 18297, + "model_id": 18359, + "year_id": 18359, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18360, + "make_id": 18297, + "model_id": 18359, + "year_id": 18360, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18361, + "make_id": 18297, + "model_id": 18359, + "year_id": 18361, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18362, + "make_id": 18297, + "model_id": 18359, + "year_id": 18361, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18363, + "make_id": 18297, + "model_id": 18359, + "year_id": 18363, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18364, + "make_id": 18297, + "model_id": 18359, + "year_id": 18363, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18365, + "make_id": 18297, + "model_id": 18359, + "year_id": 18365, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18366, + "make_id": 18297, + "model_id": 18359, + "year_id": 18365, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18367, + "make_id": 18297, + "model_id": 18359, + "year_id": 18367, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18368, + "make_id": 18297, + "model_id": 18359, + "year_id": 18367, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18369, + "make_id": 18297, + "model_id": 18359, + "year_id": 18369, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18370, + "make_id": 18297, + "model_id": 18359, + "year_id": 18370, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18371, + "make_id": 18297, + "model_id": 18359, + "year_id": 18371, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18372, + "make_id": 18297, + "model_id": 18359, + "year_id": 18372, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18373, + "make_id": 18297, + "model_id": 18359, + "year_id": 18373, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18374, + "make_id": 18297, + "model_id": 18374, + "year_id": 18374, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18375, + "make_id": 18297, + "model_id": 18374, + "year_id": 18375, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18376, + "make_id": 18297, + "model_id": 18376, + "year_id": 18376, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18377, + "make_id": 18297, + "model_id": 18376, + "year_id": 18376, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18378, + "make_id": 18297, + "model_id": 18376, + "year_id": 18376, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18379, + "make_id": 18297, + "model_id": 18376, + "year_id": 18379, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18380, + "make_id": 18297, + "model_id": 18376, + "year_id": 18379, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18381, + "make_id": 18297, + "model_id": 18376, + "year_id": 18379, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18382, + "make_id": 18297, + "model_id": 18376, + "year_id": 18382, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18383, + "make_id": 18297, + "model_id": 18376, + "year_id": 18382, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18384, + "make_id": 18297, + "model_id": 18376, + "year_id": 18382, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18385, + "make_id": 18297, + "model_id": 18376, + "year_id": 18382, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18386, + "make_id": 18297, + "model_id": 18376, + "year_id": 18382, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18387, + "make_id": 18297, + "model_id": 18376, + "year_id": 18387, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18388, + "make_id": 18297, + "model_id": 18376, + "year_id": 18387, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18389, + "make_id": 18297, + "model_id": 18376, + "year_id": 18389, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18390, + "make_id": 18297, + "model_id": 18376, + "year_id": 18389, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18391, + "make_id": 18297, + "model_id": 18376, + "year_id": 18389, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18392, + "make_id": 18297, + "model_id": 18376, + "year_id": 18392, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18393, + "make_id": 18297, + "model_id": 18376, + "year_id": 18392, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18394, + "make_id": 18297, + "model_id": 18376, + "year_id": 18394, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18395, + "make_id": 18297, + "model_id": 18376, + "year_id": 18394, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18396, + "make_id": 18297, + "model_id": 18376, + "year_id": 18396, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18397, + "make_id": 18297, + "model_id": 18376, + "year_id": 18396, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18398, + "make_id": 18297, + "model_id": 18376, + "year_id": 18398, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18399, + "make_id": 18297, + "model_id": 18376, + "year_id": 18398, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18400, + "make_id": 18297, + "model_id": 18376, + "year_id": 18400, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18401, + "make_id": 18297, + "model_id": 18376, + "year_id": 18400, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18402, + "make_id": 18297, + "model_id": 18376, + "year_id": 18402, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18403, + "make_id": 18297, + "model_id": 18376, + "year_id": 18402, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18404, + "make_id": 18297, + "model_id": 18376, + "year_id": 18402, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18405, + "make_id": 18297, + "model_id": 18376, + "year_id": 18402, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18406, + "make_id": 18297, + "model_id": 18376, + "year_id": 18406, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18407, + "make_id": 18297, + "model_id": 18376, + "year_id": 18406, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18408, + "make_id": 18297, + "model_id": 18376, + "year_id": 18408, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18409, + "make_id": 18297, + "model_id": 18376, + "year_id": 18408, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18410, + "make_id": 18297, + "model_id": 18376, + "year_id": 18410, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18411, + "make_id": 18297, + "model_id": 18376, + "year_id": 18410, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18412, + "make_id": 18297, + "model_id": 18376, + "year_id": 18410, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18413, + "make_id": 18297, + "model_id": 18376, + "year_id": 18413, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18414, + "make_id": 18297, + "model_id": 18376, + "year_id": 18413, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18415, + "make_id": 18297, + "model_id": 18376, + "year_id": 18415, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18416, + "make_id": 18297, + "model_id": 18376, + "year_id": 18415, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18417, + "make_id": 18297, + "model_id": 18376, + "year_id": 18417, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18418, + "make_id": 18297, + "model_id": 18376, + "year_id": 18417, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18419, + "make_id": 18297, + "model_id": 18376, + "year_id": 18419, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18420, + "make_id": 18297, + "model_id": 18376, + "year_id": 18419, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18421, + "make_id": 18297, + "model_id": 18376, + "year_id": 18421, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18422, + "make_id": 18297, + "model_id": 18376, + "year_id": 18421, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18423, + "make_id": 18297, + "model_id": 18376, + "year_id": 18423, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18424, + "make_id": 18297, + "model_id": 18376, + "year_id": 18423, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18425, + "make_id": 18297, + "model_id": 18376, + "year_id": 18425, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18426, + "make_id": 18297, + "model_id": 18376, + "year_id": 18425, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18427, + "make_id": 18297, + "model_id": 18376, + "year_id": 18427, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18428, + "make_id": 18297, + "model_id": 18376, + "year_id": 18427, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18429, + "make_id": 18297, + "model_id": 18376, + "year_id": 18427, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18430, + "make_id": 18297, + "model_id": 18376, + "year_id": 18427, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18431, + "make_id": 18297, + "model_id": 18376, + "year_id": 18431, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18432, + "make_id": 18297, + "model_id": 18376, + "year_id": 18431, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18433, + "make_id": 18297, + "model_id": 18376, + "year_id": 18431, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18434, + "make_id": 18297, + "model_id": 18376, + "year_id": 18431, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18435, + "make_id": 18297, + "model_id": 18376, + "year_id": 18435, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18436, + "make_id": 18297, + "model_id": 18376, + "year_id": 18435, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18437, + "make_id": 18297, + "model_id": 18376, + "year_id": 18435, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18438, + "make_id": 18297, + "model_id": 18376, + "year_id": 18435, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18439, + "make_id": 18297, + "model_id": 18376, + "year_id": 18439, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18440, + "make_id": 18297, + "model_id": 18376, + "year_id": 18439, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18441, + "make_id": 18297, + "model_id": 18376, + "year_id": 18439, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18442, + "make_id": 18297, + "model_id": 18442, + "year_id": 18442, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18443, + "make_id": 18297, + "model_id": 18442, + "year_id": 18443, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18444, + "make_id": 18297, + "model_id": 18444, + "year_id": 18444, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18445, + "make_id": 18297, + "model_id": 18444, + "year_id": 18444, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18446, + "make_id": 18297, + "model_id": 18444, + "year_id": 18446, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18447, + "make_id": 18297, + "model_id": 18444, + "year_id": 18447, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18448, + "make_id": 18297, + "model_id": 18444, + "year_id": 18447, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18449, + "make_id": 18297, + "model_id": 18449, + "year_id": 18449, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18450, + "make_id": 18297, + "model_id": 18449, + "year_id": 18449, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18451, + "make_id": 18297, + "model_id": 18449, + "year_id": 18451, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18452, + "make_id": 18297, + "model_id": 18449, + "year_id": 18451, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18453, + "make_id": 18297, + "model_id": 18449, + "year_id": 18453, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18454, + "make_id": 18297, + "model_id": 18449, + "year_id": 18453, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18455, + "make_id": 18297, + "model_id": 18449, + "year_id": 18455, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18456, + "make_id": 18297, + "model_id": 18449, + "year_id": 18455, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18457, + "make_id": 18297, + "model_id": 18449, + "year_id": 18457, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18458, + "make_id": 18297, + "model_id": 18449, + "year_id": 18457, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18459, + "make_id": 18297, + "model_id": 18459, + "year_id": 18459, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18460, + "make_id": 18297, + "model_id": 18460, + "year_id": 18460, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18461, + "make_id": 18297, + "model_id": 18460, + "year_id": 18461, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18462, + "make_id": 18297, + "model_id": 18460, + "year_id": 18462, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18463, + "make_id": 18297, + "model_id": 18463, + "year_id": 18463, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18464, + "make_id": 18297, + "model_id": 18464, + "year_id": 18464, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18465, + "make_id": 18297, + "model_id": 18464, + "year_id": 18464, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18466, + "make_id": 18297, + "model_id": 18464, + "year_id": 18466, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18467, + "make_id": 18297, + "model_id": 18464, + "year_id": 18466, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18468, + "make_id": 18297, + "model_id": 18464, + "year_id": 18468, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18469, + "make_id": 18297, + "model_id": 18464, + "year_id": 18468, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18470, + "make_id": 18297, + "model_id": 18464, + "year_id": 18470, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18471, + "make_id": 18297, + "model_id": 18464, + "year_id": 18470, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18472, + "make_id": 18297, + "model_id": 18472, + "year_id": 18472, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18473, + "make_id": 18297, + "model_id": 18472, + "year_id": 18472, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18474, + "make_id": 18297, + "model_id": 18472, + "year_id": 18474, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18475, + "make_id": 18297, + "model_id": 18472, + "year_id": 18474, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18476, + "make_id": 18297, + "model_id": 18472, + "year_id": 18476, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18477, + "make_id": 18297, + "model_id": 18472, + "year_id": 18476, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18478, + "make_id": 18297, + "model_id": 18472, + "year_id": 18478, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18479, + "make_id": 18297, + "model_id": 18472, + "year_id": 18478, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18480, + "make_id": 18297, + "model_id": 18472, + "year_id": 18480, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18481, + "make_id": 18297, + "model_id": 18472, + "year_id": 18480, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18482, + "make_id": 18297, + "model_id": 18482, + "year_id": 18482, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18483, + "make_id": 18297, + "model_id": 18482, + "year_id": 18483, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18484, + "make_id": 18297, + "model_id": 18482, + "year_id": 18484, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18485, + "make_id": 18297, + "model_id": 18482, + "year_id": 18485, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18486, + "make_id": 18297, + "model_id": 18482, + "year_id": 18486, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18487, + "make_id": 18297, + "model_id": 18487, + "year_id": 18487, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18488, + "make_id": 18297, + "model_id": 18487, + "year_id": 18488, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18489, + "make_id": 18297, + "model_id": 18487, + "year_id": 18489, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18490, + "make_id": 18297, + "model_id": 18487, + "year_id": 18490, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18491, + "make_id": 18297, + "model_id": 18487, + "year_id": 18491, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18492, + "make_id": 18297, + "model_id": 18487, + "year_id": 18492, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18493, + "make_id": 18297, + "model_id": 18493, + "year_id": 18493, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 18494, + "make_id": 18297, + "model_id": 18493, + "year_id": 18493, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18495, + "make_id": 18297, + "model_id": 18493, + "year_id": 18493, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18496, + "make_id": 18297, + "model_id": 18493, + "year_id": 18496, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 18497, + "make_id": 18297, + "model_id": 18493, + "year_id": 18496, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18498, + "make_id": 18297, + "model_id": 18493, + "year_id": 18496, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18499, + "make_id": 18297, + "model_id": 18493, + "year_id": 18499, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 18500, + "make_id": 18297, + "model_id": 18493, + "year_id": 18499, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18501, + "make_id": 18297, + "model_id": 18493, + "year_id": 18499, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18502, + "make_id": 18297, + "model_id": 18493, + "year_id": 18502, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18503, + "make_id": 18297, + "model_id": 18493, + "year_id": 18502, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18504, + "make_id": 18297, + "model_id": 18493, + "year_id": 18502, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18505, + "make_id": 18297, + "model_id": 18493, + "year_id": 18505, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 18506, + "make_id": 18297, + "model_id": 18493, + "year_id": 18505, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18507, + "make_id": 18297, + "model_id": 18493, + "year_id": 18505, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18508, + "make_id": 18297, + "model_id": 18493, + "year_id": 18505, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18509, + "make_id": 18297, + "model_id": 18493, + "year_id": 18505, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18510, + "make_id": 18297, + "model_id": 18493, + "year_id": 18510, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 18511, + "make_id": 18297, + "model_id": 18493, + "year_id": 18510, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18512, + "make_id": 18297, + "model_id": 18493, + "year_id": 18510, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18513, + "make_id": 18297, + "model_id": 18493, + "year_id": 18510, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18514, + "make_id": 18297, + "model_id": 18493, + "year_id": 18510, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18515, + "make_id": 18297, + "model_id": 18493, + "year_id": 18515, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18516, + "make_id": 18297, + "model_id": 18493, + "year_id": 18515, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18517, + "make_id": 18297, + "model_id": 18493, + "year_id": 18515, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18518, + "make_id": 18297, + "model_id": 18493, + "year_id": 18518, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18519, + "make_id": 18297, + "model_id": 18493, + "year_id": 18518, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18520, + "make_id": 18297, + "model_id": 18520, + "year_id": 18520, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18521, + "make_id": 18297, + "model_id": 18520, + "year_id": 18520, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18522, + "make_id": 18297, + "model_id": 18520, + "year_id": 18522, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18523, + "make_id": 18297, + "model_id": 18520, + "year_id": 18522, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18524, + "make_id": 18297, + "model_id": 18520, + "year_id": 18524, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18525, + "make_id": 18297, + "model_id": 18520, + "year_id": 18524, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18526, + "make_id": 18297, + "model_id": 18520, + "year_id": 18526, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18527, + "make_id": 18297, + "model_id": 18520, + "year_id": 18526, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18528, + "make_id": 18297, + "model_id": 18520, + "year_id": 18526, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18529, + "make_id": 18297, + "model_id": 18520, + "year_id": 18529, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18530, + "make_id": 18297, + "model_id": 18520, + "year_id": 18530, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18531, + "make_id": 18297, + "model_id": 18520, + "year_id": 18531, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18532, + "make_id": 18297, + "model_id": 18520, + "year_id": 18532, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18533, + "make_id": 18297, + "model_id": 18533, + "year_id": 18533, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18534, + "make_id": 18297, + "model_id": 18533, + "year_id": 18533, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18535, + "make_id": 18297, + "model_id": 18533, + "year_id": 18533, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18536, + "make_id": 18297, + "model_id": 18533, + "year_id": 18533, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18537, + "make_id": 18297, + "model_id": 18533, + "year_id": 18537, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18538, + "make_id": 18297, + "model_id": 18533, + "year_id": 18537, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18539, + "make_id": 18297, + "model_id": 18533, + "year_id": 18537, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18540, + "make_id": 18297, + "model_id": 18533, + "year_id": 18537, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18541, + "make_id": 18297, + "model_id": 18533, + "year_id": 18541, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18542, + "make_id": 18297, + "model_id": 18533, + "year_id": 18541, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18543, + "make_id": 18297, + "model_id": 18533, + "year_id": 18541, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18544, + "make_id": 18297, + "model_id": 18533, + "year_id": 18541, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18545, + "make_id": 18297, + "model_id": 18533, + "year_id": 18545, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18546, + "make_id": 18297, + "model_id": 18533, + "year_id": 18545, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18547, + "make_id": 18297, + "model_id": 18533, + "year_id": 18545, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18548, + "make_id": 18297, + "model_id": 18533, + "year_id": 18545, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18549, + "make_id": 18297, + "model_id": 18533, + "year_id": 18549, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18550, + "make_id": 18297, + "model_id": 18533, + "year_id": 18549, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18551, + "make_id": 18297, + "model_id": 18533, + "year_id": 18549, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18552, + "make_id": 18297, + "model_id": 18533, + "year_id": 18549, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18553, + "make_id": 18297, + "model_id": 18533, + "year_id": 18553, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18554, + "make_id": 18297, + "model_id": 18533, + "year_id": 18553, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18555, + "make_id": 18297, + "model_id": 18533, + "year_id": 18555, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18556, + "make_id": 18297, + "model_id": 18533, + "year_id": 18555, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18557, + "make_id": 18297, + "model_id": 18557, + "year_id": 18557, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18558, + "make_id": 18297, + "model_id": 18558, + "year_id": 18558, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18559, + "make_id": 18297, + "model_id": 18558, + "year_id": 18559, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18560, + "make_id": 18297, + "model_id": 18560, + "year_id": 18560, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18561, + "make_id": 18297, + "model_id": 18560, + "year_id": 18560, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18562, + "make_id": 18297, + "model_id": 18560, + "year_id": 18562, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18563, + "make_id": 18297, + "model_id": 18560, + "year_id": 18562, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 18564, + "make_id": 18297, + "model_id": 18564, + "year_id": 18564, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18565, + "make_id": 18297, + "model_id": 18564, + "year_id": 18564, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18566, + "make_id": 18297, + "model_id": 18566, + "year_id": 18566, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 18567, + "make_id": 18297, + "model_id": 18566, + "year_id": 18566, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18568, + "make_id": 18297, + "model_id": 18566, + "year_id": 18566, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18569, + "make_id": 18297, + "model_id": 18569, + "year_id": 18569, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18570, + "make_id": 18297, + "model_id": 18570, + "year_id": 18570, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18571, + "make_id": 18297, + "model_id": 18570, + "year_id": 18570, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18572, + "make_id": 18297, + "model_id": 18570, + "year_id": 18570, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18573, + "make_id": 18297, + "model_id": 18570, + "year_id": 18570, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18574, + "make_id": 18297, + "model_id": 18570, + "year_id": 18574, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18575, + "make_id": 18297, + "model_id": 18570, + "year_id": 18574, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18576, + "make_id": 18297, + "model_id": 18570, + "year_id": 18574, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18577, + "make_id": 18297, + "model_id": 18570, + "year_id": 18574, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18578, + "make_id": 18297, + "model_id": 18570, + "year_id": 18578, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18579, + "make_id": 18297, + "model_id": 18570, + "year_id": 18578, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18580, + "make_id": 18297, + "model_id": 18570, + "year_id": 18578, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18581, + "make_id": 18297, + "model_id": 18570, + "year_id": 18578, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18582, + "make_id": 18297, + "model_id": 18570, + "year_id": 18578, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18583, + "make_id": 18297, + "model_id": 18570, + "year_id": 18578, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18584, + "make_id": 18297, + "model_id": 18570, + "year_id": 18584, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18585, + "make_id": 18297, + "model_id": 18570, + "year_id": 18584, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18586, + "make_id": 18297, + "model_id": 18570, + "year_id": 18584, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18587, + "make_id": 18297, + "model_id": 18570, + "year_id": 18584, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18588, + "make_id": 18297, + "model_id": 18570, + "year_id": 18584, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18589, + "make_id": 18297, + "model_id": 18570, + "year_id": 18584, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18590, + "make_id": 18297, + "model_id": 18570, + "year_id": 18590, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18591, + "make_id": 18297, + "model_id": 18570, + "year_id": 18590, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18592, + "make_id": 18297, + "model_id": 18570, + "year_id": 18590, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18593, + "make_id": 18297, + "model_id": 18570, + "year_id": 18590, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18594, + "make_id": 18297, + "model_id": 18570, + "year_id": 18590, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18595, + "make_id": 18297, + "model_id": 18570, + "year_id": 18590, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18596, + "make_id": 18297, + "model_id": 18570, + "year_id": 18596, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18597, + "make_id": 18297, + "model_id": 18570, + "year_id": 18596, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18598, + "make_id": 18297, + "model_id": 18570, + "year_id": 18596, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18599, + "make_id": 18297, + "model_id": 18570, + "year_id": 18596, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18600, + "make_id": 18297, + "model_id": 18570, + "year_id": 18596, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18601, + "make_id": 18297, + "model_id": 18570, + "year_id": 18596, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18602, + "make_id": 18297, + "model_id": 18570, + "year_id": 18602, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18603, + "make_id": 18297, + "model_id": 18570, + "year_id": 18602, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18604, + "make_id": 18297, + "model_id": 18570, + "year_id": 18602, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18605, + "make_id": 18297, + "model_id": 18570, + "year_id": 18602, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18606, + "make_id": 18297, + "model_id": 18570, + "year_id": 18602, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18607, + "make_id": 18297, + "model_id": 18570, + "year_id": 18602, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18608, + "make_id": 18297, + "model_id": 18570, + "year_id": 18602, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18609, + "make_id": 18297, + "model_id": 18570, + "year_id": 18609, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18610, + "make_id": 18297, + "model_id": 18570, + "year_id": 18609, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18611, + "make_id": 18297, + "model_id": 18570, + "year_id": 18609, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18612, + "make_id": 18297, + "model_id": 18570, + "year_id": 18609, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18613, + "make_id": 18297, + "model_id": 18570, + "year_id": 18609, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18614, + "make_id": 18297, + "model_id": 18570, + "year_id": 18609, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18615, + "make_id": 18297, + "model_id": 18570, + "year_id": 18615, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18616, + "make_id": 18297, + "model_id": 18570, + "year_id": 18615, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18617, + "make_id": 18297, + "model_id": 18570, + "year_id": 18615, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18618, + "make_id": 18297, + "model_id": 18570, + "year_id": 18615, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18619, + "make_id": 18297, + "model_id": 18570, + "year_id": 18615, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18620, + "make_id": 18297, + "model_id": 18570, + "year_id": 18615, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18621, + "make_id": 18297, + "model_id": 18570, + "year_id": 18621, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18622, + "make_id": 18297, + "model_id": 18570, + "year_id": 18621, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18623, + "make_id": 18297, + "model_id": 18570, + "year_id": 18621, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18624, + "make_id": 18297, + "model_id": 18570, + "year_id": 18621, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18625, + "make_id": 18297, + "model_id": 18570, + "year_id": 18621, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18626, + "make_id": 18297, + "model_id": 18570, + "year_id": 18626, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18627, + "make_id": 18297, + "model_id": 18570, + "year_id": 18626, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18628, + "make_id": 18297, + "model_id": 18570, + "year_id": 18626, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18629, + "make_id": 18297, + "model_id": 18570, + "year_id": 18626, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18630, + "make_id": 18297, + "model_id": 18570, + "year_id": 18626, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18631, + "make_id": 18297, + "model_id": 18570, + "year_id": 18631, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18632, + "make_id": 18297, + "model_id": 18570, + "year_id": 18631, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18633, + "make_id": 18297, + "model_id": 18570, + "year_id": 18631, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18634, + "make_id": 18297, + "model_id": 18570, + "year_id": 18631, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18635, + "make_id": 18297, + "model_id": 18570, + "year_id": 18631, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18636, + "make_id": 18297, + "model_id": 18570, + "year_id": 18636, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18637, + "make_id": 18297, + "model_id": 18570, + "year_id": 18636, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18638, + "make_id": 18297, + "model_id": 18570, + "year_id": 18638, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18639, + "make_id": 18297, + "model_id": 18570, + "year_id": 18638, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18640, + "make_id": 18297, + "model_id": 18570, + "year_id": 18640, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18641, + "make_id": 18297, + "model_id": 18570, + "year_id": 18640, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18642, + "make_id": 18297, + "model_id": 18570, + "year_id": 18642, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18643, + "make_id": 18297, + "model_id": 18570, + "year_id": 18642, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18644, + "make_id": 18297, + "model_id": 18570, + "year_id": 18644, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18645, + "make_id": 18297, + "model_id": 18570, + "year_id": 18644, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18646, + "make_id": 18297, + "model_id": 18646, + "year_id": 18646, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18647, + "make_id": 18297, + "model_id": 18646, + "year_id": 18646, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18648, + "make_id": 18297, + "model_id": 18646, + "year_id": 18646, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18649, + "make_id": 18297, + "model_id": 18646, + "year_id": 18646, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18650, + "make_id": 18297, + "model_id": 18646, + "year_id": 18650, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18651, + "make_id": 18297, + "model_id": 18646, + "year_id": 18650, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18652, + "make_id": 18297, + "model_id": 18646, + "year_id": 18650, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18653, + "make_id": 18297, + "model_id": 18646, + "year_id": 18650, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18654, + "make_id": 18297, + "model_id": 18646, + "year_id": 18654, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18655, + "make_id": 18297, + "model_id": 18646, + "year_id": 18654, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18656, + "make_id": 18297, + "model_id": 18646, + "year_id": 18654, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18657, + "make_id": 18297, + "model_id": 18646, + "year_id": 18654, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18658, + "make_id": 18297, + "model_id": 18646, + "year_id": 18658, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18659, + "make_id": 18297, + "model_id": 18646, + "year_id": 18658, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18660, + "make_id": 18297, + "model_id": 18646, + "year_id": 18658, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18661, + "make_id": 18297, + "model_id": 18646, + "year_id": 18658, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18662, + "make_id": 18297, + "model_id": 18646, + "year_id": 18662, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18663, + "make_id": 18297, + "model_id": 18646, + "year_id": 18662, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18664, + "make_id": 18297, + "model_id": 18646, + "year_id": 18662, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18665, + "make_id": 18297, + "model_id": 18646, + "year_id": 18662, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18666, + "make_id": 18297, + "model_id": 18666, + "year_id": 18666, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18667, + "make_id": 18297, + "model_id": 18666, + "year_id": 18667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18668, + "make_id": 18297, + "model_id": 18666, + "year_id": 18668, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18669, + "make_id": 18297, + "model_id": 18666, + "year_id": 18668, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18670, + "make_id": 18297, + "model_id": 18670, + "year_id": 18670, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18671, + "make_id": 18297, + "model_id": 18670, + "year_id": 18670, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18672, + "make_id": 18297, + "model_id": 18670, + "year_id": 18672, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18673, + "make_id": 18297, + "model_id": 18670, + "year_id": 18672, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18674, + "make_id": 18297, + "model_id": 18670, + "year_id": 18674, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18675, + "make_id": 18297, + "model_id": 18670, + "year_id": 18674, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18676, + "make_id": 18297, + "model_id": 18670, + "year_id": 18676, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18677, + "make_id": 18297, + "model_id": 18670, + "year_id": 18676, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18678, + "make_id": 18297, + "model_id": 18678, + "year_id": 18678, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18679, + "make_id": 18297, + "model_id": 18678, + "year_id": 18678, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18680, + "make_id": 18297, + "model_id": 18678, + "year_id": 18680, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18681, + "make_id": 18297, + "model_id": 18678, + "year_id": 18680, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18682, + "make_id": 18297, + "model_id": 18678, + "year_id": 18682, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18683, + "make_id": 18297, + "model_id": 18678, + "year_id": 18682, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18684, + "make_id": 18297, + "model_id": 18678, + "year_id": 18682, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18685, + "make_id": 18297, + "model_id": 18678, + "year_id": 18685, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18686, + "make_id": 18297, + "model_id": 18678, + "year_id": 18685, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18687, + "make_id": 18297, + "model_id": 18678, + "year_id": 18685, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18688, + "make_id": 18297, + "model_id": 18678, + "year_id": 18688, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18689, + "make_id": 18297, + "model_id": 18678, + "year_id": 18688, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18690, + "make_id": 18297, + "model_id": 18678, + "year_id": 18688, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18691, + "make_id": 18297, + "model_id": 18691, + "year_id": 18691, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18692, + "make_id": 18297, + "model_id": 18691, + "year_id": 18691, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18693, + "make_id": 18297, + "model_id": 18691, + "year_id": 18691, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18694, + "make_id": 18297, + "model_id": 18691, + "year_id": 18694, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18695, + "make_id": 18297, + "model_id": 18691, + "year_id": 18694, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18696, + "make_id": 18297, + "model_id": 18691, + "year_id": 18694, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18697, + "make_id": 18297, + "model_id": 18691, + "year_id": 18697, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18698, + "make_id": 18297, + "model_id": 18691, + "year_id": 18697, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18699, + "make_id": 18297, + "model_id": 18691, + "year_id": 18697, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18700, + "make_id": 18297, + "model_id": 18691, + "year_id": 18700, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18701, + "make_id": 18297, + "model_id": 18691, + "year_id": 18700, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18702, + "make_id": 18297, + "model_id": 18691, + "year_id": 18700, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18703, + "make_id": 18297, + "model_id": 18691, + "year_id": 18703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18704, + "make_id": 18297, + "model_id": 18691, + "year_id": 18703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18705, + "make_id": 18297, + "model_id": 18691, + "year_id": 18703, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18706, + "make_id": 18297, + "model_id": 18691, + "year_id": 18706, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18707, + "make_id": 18297, + "model_id": 18691, + "year_id": 18706, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18708, + "make_id": 18297, + "model_id": 18691, + "year_id": 18706, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18709, + "make_id": 18297, + "model_id": 18691, + "year_id": 18709, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18710, + "make_id": 18297, + "model_id": 18691, + "year_id": 18709, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18711, + "make_id": 18297, + "model_id": 18691, + "year_id": 18709, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18712, + "make_id": 18297, + "model_id": 18691, + "year_id": 18712, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18713, + "make_id": 18297, + "model_id": 18691, + "year_id": 18712, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18714, + "make_id": 18297, + "model_id": 18691, + "year_id": 18712, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18715, + "make_id": 18297, + "model_id": 18691, + "year_id": 18715, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18716, + "make_id": 18297, + "model_id": 18691, + "year_id": 18715, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18717, + "make_id": 18297, + "model_id": 18691, + "year_id": 18715, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18718, + "make_id": 18297, + "model_id": 18691, + "year_id": 18718, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18719, + "make_id": 18297, + "model_id": 18691, + "year_id": 18718, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18720, + "make_id": 18297, + "model_id": 18691, + "year_id": 18718, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18721, + "make_id": 18297, + "model_id": 18691, + "year_id": 18721, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18722, + "make_id": 18297, + "model_id": 18691, + "year_id": 18721, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18723, + "make_id": 18297, + "model_id": 18691, + "year_id": 18721, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18724, + "make_id": 18297, + "model_id": 18691, + "year_id": 18721, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18725, + "make_id": 18297, + "model_id": 18691, + "year_id": 18725, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18726, + "make_id": 18297, + "model_id": 18691, + "year_id": 18725, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18727, + "make_id": 18297, + "model_id": 18691, + "year_id": 18725, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18728, + "make_id": 18297, + "model_id": 18691, + "year_id": 18725, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18729, + "make_id": 18297, + "model_id": 18691, + "year_id": 18729, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18730, + "make_id": 18297, + "model_id": 18691, + "year_id": 18729, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18731, + "make_id": 18297, + "model_id": 18691, + "year_id": 18729, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18732, + "make_id": 18297, + "model_id": 18691, + "year_id": 18729, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18733, + "make_id": 18297, + "model_id": 18691, + "year_id": 18733, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18734, + "make_id": 18297, + "model_id": 18691, + "year_id": 18733, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18735, + "make_id": 18297, + "model_id": 18691, + "year_id": 18733, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18736, + "make_id": 18297, + "model_id": 18691, + "year_id": 18733, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18737, + "make_id": 18297, + "model_id": 18691, + "year_id": 18737, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18738, + "make_id": 18297, + "model_id": 18691, + "year_id": 18737, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18739, + "make_id": 18297, + "model_id": 18691, + "year_id": 18737, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18740, + "make_id": 18297, + "model_id": 18691, + "year_id": 18737, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18741, + "make_id": 18297, + "model_id": 18691, + "year_id": 18741, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18742, + "make_id": 18297, + "model_id": 18691, + "year_id": 18741, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18743, + "make_id": 18297, + "model_id": 18691, + "year_id": 18741, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18744, + "make_id": 18297, + "model_id": 18691, + "year_id": 18741, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18745, + "make_id": 18297, + "model_id": 18691, + "year_id": 18745, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18746, + "make_id": 18297, + "model_id": 18691, + "year_id": 18745, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18747, + "make_id": 18297, + "model_id": 18691, + "year_id": 18745, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18748, + "make_id": 18297, + "model_id": 18691, + "year_id": 18745, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18749, + "make_id": 18297, + "model_id": 18691, + "year_id": 18749, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18750, + "make_id": 18297, + "model_id": 18691, + "year_id": 18749, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18751, + "make_id": 18297, + "model_id": 18691, + "year_id": 18749, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18752, + "make_id": 18297, + "model_id": 18691, + "year_id": 18752, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18753, + "make_id": 18297, + "model_id": 18691, + "year_id": 18752, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18754, + "make_id": 18297, + "model_id": 18691, + "year_id": 18752, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18755, + "make_id": 18297, + "model_id": 18691, + "year_id": 18755, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18756, + "make_id": 18297, + "model_id": 18691, + "year_id": 18755, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18757, + "make_id": 18297, + "model_id": 18691, + "year_id": 18755, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18758, + "make_id": 18297, + "model_id": 18691, + "year_id": 18758, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18759, + "make_id": 18297, + "model_id": 18691, + "year_id": 18758, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18760, + "make_id": 18297, + "model_id": 18691, + "year_id": 18758, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18761, + "make_id": 18297, + "model_id": 18691, + "year_id": 18761, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18762, + "make_id": 18297, + "model_id": 18691, + "year_id": 18761, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18763, + "make_id": 18297, + "model_id": 18691, + "year_id": 18761, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18764, + "make_id": 18297, + "model_id": 18691, + "year_id": 18764, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18765, + "make_id": 18297, + "model_id": 18691, + "year_id": 18764, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18766, + "make_id": 18297, + "model_id": 18691, + "year_id": 18764, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18767, + "make_id": 18297, + "model_id": 18691, + "year_id": 18767, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18768, + "make_id": 18297, + "model_id": 18691, + "year_id": 18767, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18769, + "make_id": 18297, + "model_id": 18691, + "year_id": 18767, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18770, + "make_id": 18297, + "model_id": 18691, + "year_id": 18770, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18771, + "make_id": 18297, + "model_id": 18691, + "year_id": 18770, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18772, + "make_id": 18297, + "model_id": 18691, + "year_id": 18770, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18773, + "make_id": 18297, + "model_id": 18691, + "year_id": 18773, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18774, + "make_id": 18297, + "model_id": 18691, + "year_id": 18773, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18775, + "make_id": 18297, + "model_id": 18691, + "year_id": 18775, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18776, + "make_id": 18297, + "model_id": 18691, + "year_id": 18775, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18777, + "make_id": 18297, + "model_id": 18691, + "year_id": 18775, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18778, + "make_id": 18297, + "model_id": 18691, + "year_id": 18778, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18779, + "make_id": 18297, + "model_id": 18691, + "year_id": 18778, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18780, + "make_id": 18297, + "model_id": 18691, + "year_id": 18778, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18781, + "make_id": 18297, + "model_id": 18691, + "year_id": 18781, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18782, + "make_id": 18297, + "model_id": 18691, + "year_id": 18781, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18783, + "make_id": 18297, + "model_id": 18691, + "year_id": 18781, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18784, + "make_id": 18297, + "model_id": 18784, + "year_id": 18784, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18785, + "make_id": 18297, + "model_id": 18784, + "year_id": 18784, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18786, + "make_id": 18297, + "model_id": 18784, + "year_id": 18784, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18787, + "make_id": 18297, + "model_id": 18787, + "year_id": 18787, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18788, + "make_id": 18297, + "model_id": 18787, + "year_id": 18788, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18789, + "make_id": 18297, + "model_id": 18787, + "year_id": 18789, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18790, + "make_id": 18297, + "model_id": 18787, + "year_id": 18790, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18791, + "make_id": 18297, + "model_id": 18787, + "year_id": 18791, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18792, + "make_id": 18297, + "model_id": 18787, + "year_id": 18792, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18793, + "make_id": 18297, + "model_id": 18787, + "year_id": 18793, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18794, + "make_id": 18297, + "model_id": 18794, + "year_id": 18794, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18795, + "make_id": 18297, + "model_id": 18794, + "year_id": 18795, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18796, + "make_id": 18297, + "model_id": 18794, + "year_id": 18796, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18797, + "make_id": 18297, + "model_id": 18797, + "year_id": 18797, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18798, + "make_id": 18297, + "model_id": 18797, + "year_id": 18798, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18799, + "make_id": 18297, + "model_id": 18799, + "year_id": 18799, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18800, + "make_id": 18297, + "model_id": 18799, + "year_id": 18800, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18801, + "make_id": 18297, + "model_id": 18799, + "year_id": 18801, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18802, + "make_id": 18297, + "model_id": 18802, + "year_id": 18802, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18803, + "make_id": 18297, + "model_id": 18803, + "year_id": 18803, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18804, + "make_id": 18297, + "model_id": 18803, + "year_id": 18804, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18805, + "make_id": 18297, + "model_id": 18803, + "year_id": 18805, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18806, + "make_id": 18297, + "model_id": 18806, + "year_id": 18806, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18807, + "make_id": 18297, + "model_id": 18806, + "year_id": 18806, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18808, + "make_id": 18297, + "model_id": 18806, + "year_id": 18808, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18809, + "make_id": 18297, + "model_id": 18806, + "year_id": 18808, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18810, + "make_id": 18297, + "model_id": 18806, + "year_id": 18810, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18811, + "make_id": 18297, + "model_id": 18806, + "year_id": 18810, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18812, + "make_id": 18297, + "model_id": 18806, + "year_id": 18812, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18813, + "make_id": 18297, + "model_id": 18806, + "year_id": 18812, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18814, + "make_id": 18297, + "model_id": 18806, + "year_id": 18814, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18815, + "make_id": 18297, + "model_id": 18806, + "year_id": 18814, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18816, + "make_id": 18297, + "model_id": 18806, + "year_id": 18814, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18817, + "make_id": 18297, + "model_id": 18806, + "year_id": 18814, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18818, + "make_id": 18297, + "model_id": 18806, + "year_id": 18818, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18819, + "make_id": 18297, + "model_id": 18806, + "year_id": 18818, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18820, + "make_id": 18297, + "model_id": 18806, + "year_id": 18818, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18821, + "make_id": 18297, + "model_id": 18806, + "year_id": 18818, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18822, + "make_id": 18297, + "model_id": 18806, + "year_id": 18818, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18823, + "make_id": 18297, + "model_id": 18806, + "year_id": 18818, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18824, + "make_id": 18297, + "model_id": 18806, + "year_id": 18824, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18825, + "make_id": 18297, + "model_id": 18806, + "year_id": 18824, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18826, + "make_id": 18297, + "model_id": 18806, + "year_id": 18824, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18827, + "make_id": 18297, + "model_id": 18806, + "year_id": 18824, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18828, + "make_id": 18297, + "model_id": 18806, + "year_id": 18824, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18829, + "make_id": 18297, + "model_id": 18806, + "year_id": 18829, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18830, + "make_id": 18297, + "model_id": 18806, + "year_id": 18829, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18831, + "make_id": 18297, + "model_id": 18806, + "year_id": 18829, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18832, + "make_id": 18297, + "model_id": 18806, + "year_id": 18829, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18833, + "make_id": 18297, + "model_id": 18806, + "year_id": 18829, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18834, + "make_id": 18297, + "model_id": 18806, + "year_id": 18834, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18835, + "make_id": 18297, + "model_id": 18806, + "year_id": 18834, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18836, + "make_id": 18297, + "model_id": 18806, + "year_id": 18834, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18837, + "make_id": 18297, + "model_id": 18806, + "year_id": 18834, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18838, + "make_id": 18297, + "model_id": 18806, + "year_id": 18834, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18839, + "make_id": 18297, + "model_id": 18806, + "year_id": 18839, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18840, + "make_id": 18297, + "model_id": 18806, + "year_id": 18839, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18841, + "make_id": 18297, + "model_id": 18806, + "year_id": 18839, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18842, + "make_id": 18297, + "model_id": 18806, + "year_id": 18839, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18843, + "make_id": 18297, + "model_id": 18806, + "year_id": 18839, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18844, + "make_id": 18297, + "model_id": 18806, + "year_id": 18844, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18845, + "make_id": 18297, + "model_id": 18806, + "year_id": 18844, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18846, + "make_id": 18297, + "model_id": 18806, + "year_id": 18844, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18847, + "make_id": 18297, + "model_id": 18806, + "year_id": 18844, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18848, + "make_id": 18297, + "model_id": 18806, + "year_id": 18844, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18849, + "make_id": 18297, + "model_id": 18849, + "year_id": 18849, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18850, + "make_id": 18297, + "model_id": 18849, + "year_id": 18849, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18851, + "make_id": 18297, + "model_id": 18849, + "year_id": 18849, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18852, + "make_id": 18297, + "model_id": 18849, + "year_id": 18849, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18853, + "make_id": 18297, + "model_id": 18853, + "year_id": 18853, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18854, + "make_id": 18297, + "model_id": 18853, + "year_id": 18853, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18855, + "make_id": 18297, + "model_id": 18853, + "year_id": 18853, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18856, + "make_id": 18297, + "model_id": 18853, + "year_id": 18853, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18857, + "make_id": 18297, + "model_id": 18853, + "year_id": 18853, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18858, + "make_id": 18297, + "model_id": 18853, + "year_id": 18858, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18859, + "make_id": 18297, + "model_id": 18853, + "year_id": 18858, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18860, + "make_id": 18297, + "model_id": 18853, + "year_id": 18858, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18861, + "make_id": 18297, + "model_id": 18853, + "year_id": 18858, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18862, + "make_id": 18297, + "model_id": 18853, + "year_id": 18858, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18863, + "make_id": 18297, + "model_id": 18853, + "year_id": 18863, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18864, + "make_id": 18297, + "model_id": 18853, + "year_id": 18863, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18865, + "make_id": 18297, + "model_id": 18853, + "year_id": 18863, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18866, + "make_id": 18297, + "model_id": 18853, + "year_id": 18863, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18867, + "make_id": 18297, + "model_id": 18853, + "year_id": 18863, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18868, + "make_id": 18297, + "model_id": 18853, + "year_id": 18868, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18869, + "make_id": 18297, + "model_id": 18853, + "year_id": 18868, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18870, + "make_id": 18297, + "model_id": 18853, + "year_id": 18868, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18871, + "make_id": 18297, + "model_id": 18853, + "year_id": 18868, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18872, + "make_id": 18297, + "model_id": 18853, + "year_id": 18868, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18873, + "make_id": 18297, + "model_id": 18853, + "year_id": 18873, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18874, + "make_id": 18297, + "model_id": 18853, + "year_id": 18873, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18875, + "make_id": 18297, + "model_id": 18853, + "year_id": 18873, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18876, + "make_id": 18297, + "model_id": 18853, + "year_id": 18873, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18877, + "make_id": 18297, + "model_id": 18853, + "year_id": 18873, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18878, + "make_id": 18297, + "model_id": 18853, + "year_id": 18878, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18879, + "make_id": 18297, + "model_id": 18853, + "year_id": 18878, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18880, + "make_id": 18297, + "model_id": 18853, + "year_id": 18878, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18881, + "make_id": 18297, + "model_id": 18853, + "year_id": 18878, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18882, + "make_id": 18297, + "model_id": 18853, + "year_id": 18882, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18883, + "make_id": 18297, + "model_id": 18853, + "year_id": 18882, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18884, + "make_id": 18297, + "model_id": 18853, + "year_id": 18882, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18885, + "make_id": 18297, + "model_id": 18853, + "year_id": 18882, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18886, + "make_id": 18297, + "model_id": 18853, + "year_id": 18882, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18887, + "make_id": 18297, + "model_id": 18853, + "year_id": 18882, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18888, + "make_id": 18297, + "model_id": 18853, + "year_id": 18888, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18889, + "make_id": 18297, + "model_id": 18853, + "year_id": 18888, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18890, + "make_id": 18297, + "model_id": 18853, + "year_id": 18888, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18891, + "make_id": 18297, + "model_id": 18853, + "year_id": 18888, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18892, + "make_id": 18297, + "model_id": 18853, + "year_id": 18888, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18893, + "make_id": 18297, + "model_id": 18853, + "year_id": 18888, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18894, + "make_id": 18297, + "model_id": 18853, + "year_id": 18894, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18895, + "make_id": 18297, + "model_id": 18853, + "year_id": 18894, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18896, + "make_id": 18297, + "model_id": 18853, + "year_id": 18894, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18897, + "make_id": 18297, + "model_id": 18853, + "year_id": 18894, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18898, + "make_id": 18297, + "model_id": 18853, + "year_id": 18894, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18899, + "make_id": 18297, + "model_id": 18853, + "year_id": 18894, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18900, + "make_id": 18297, + "model_id": 18853, + "year_id": 18900, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18901, + "make_id": 18297, + "model_id": 18853, + "year_id": 18900, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18902, + "make_id": 18297, + "model_id": 18853, + "year_id": 18900, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18903, + "make_id": 18297, + "model_id": 18853, + "year_id": 18900, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18904, + "make_id": 18297, + "model_id": 18853, + "year_id": 18904, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18905, + "make_id": 18297, + "model_id": 18853, + "year_id": 18904, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18906, + "make_id": 18297, + "model_id": 18853, + "year_id": 18904, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18907, + "make_id": 18297, + "model_id": 18853, + "year_id": 18904, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18908, + "make_id": 18297, + "model_id": 18853, + "year_id": 18908, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18909, + "make_id": 18297, + "model_id": 18853, + "year_id": 18908, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18910, + "make_id": 18297, + "model_id": 18853, + "year_id": 18908, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18911, + "make_id": 18297, + "model_id": 18853, + "year_id": 18908, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18912, + "make_id": 18297, + "model_id": 18853, + "year_id": 18912, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18913, + "make_id": 18297, + "model_id": 18853, + "year_id": 18912, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18914, + "make_id": 18297, + "model_id": 18853, + "year_id": 18912, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18915, + "make_id": 18297, + "model_id": 18853, + "year_id": 18912, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18916, + "make_id": 18297, + "model_id": 18916, + "year_id": 18916, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18917, + "make_id": 18297, + "model_id": 18916, + "year_id": 18916, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18918, + "make_id": 18297, + "model_id": 18916, + "year_id": 18918, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18919, + "make_id": 18297, + "model_id": 18916, + "year_id": 18918, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 18920, + "make_id": 18297, + "model_id": 18920, + "year_id": 18920, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18921, + "make_id": 18297, + "model_id": 18920, + "year_id": 18920, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18922, + "make_id": 18297, + "model_id": 18920, + "year_id": 18922, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18923, + "make_id": 18297, + "model_id": 18920, + "year_id": 18922, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18924, + "make_id": 18297, + "model_id": 18920, + "year_id": 18922, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18925, + "make_id": 18297, + "model_id": 18920, + "year_id": 18922, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18926, + "make_id": 18297, + "model_id": 18920, + "year_id": 18926, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18927, + "make_id": 18297, + "model_id": 18920, + "year_id": 18926, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18928, + "make_id": 18297, + "model_id": 18920, + "year_id": 18926, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18929, + "make_id": 18297, + "model_id": 18920, + "year_id": 18926, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18930, + "make_id": 18297, + "model_id": 18920, + "year_id": 18930, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18931, + "make_id": 18297, + "model_id": 18920, + "year_id": 18930, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18932, + "make_id": 18297, + "model_id": 18920, + "year_id": 18930, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18933, + "make_id": 18297, + "model_id": 18920, + "year_id": 18930, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18934, + "make_id": 18297, + "model_id": 18920, + "year_id": 18934, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18935, + "make_id": 18297, + "model_id": 18920, + "year_id": 18934, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18936, + "make_id": 18297, + "model_id": 18920, + "year_id": 18934, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 18937, + "make_id": 18297, + "model_id": 18920, + "year_id": 18934, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 18938, + "make_id": 18297, + "model_id": 18938, + "year_id": 18938, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18939, + "make_id": 18297, + "model_id": 18938, + "year_id": 18938, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18940, + "make_id": 18297, + "model_id": 18938, + "year_id": 18940, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18941, + "make_id": 18297, + "model_id": 18938, + "year_id": 18940, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18942, + "make_id": 18297, + "model_id": 18938, + "year_id": 18942, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18943, + "make_id": 18297, + "model_id": 18938, + "year_id": 18942, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18944, + "make_id": 18297, + "model_id": 18938, + "year_id": 18944, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18945, + "make_id": 18297, + "model_id": 18938, + "year_id": 18944, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18946, + "make_id": 18297, + "model_id": 18938, + "year_id": 18946, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18947, + "make_id": 18297, + "model_id": 18938, + "year_id": 18946, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18948, + "make_id": 18297, + "model_id": 18938, + "year_id": 18948, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18949, + "make_id": 18297, + "model_id": 18938, + "year_id": 18948, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 18950, + "make_id": 18297, + "model_id": 18950, + "year_id": 18950, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18951, + "make_id": 18297, + "model_id": 18951, + "year_id": 18951, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18952, + "make_id": 18297, + "model_id": 18951, + "year_id": 18952, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18953, + "make_id": 18297, + "model_id": 18951, + "year_id": 18953, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18954, + "make_id": 18297, + "model_id": 18951, + "year_id": 18954, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18955, + "make_id": 18955, + "model_id": 18955, + "year_id": 18955, + "cylinders": 4, + "displacement": 1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 18956, + "make_id": 18956, + "model_id": 18956, + "year_id": 18956, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18957, + "make_id": 18956, + "model_id": 18957, + "year_id": 18957, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18958, + "make_id": 18956, + "model_id": 18958, + "year_id": 18958, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18959, + "make_id": 18956, + "model_id": 18959, + "year_id": 18959, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18960, + "make_id": 18956, + "model_id": 18960, + "year_id": 18960, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18961, + "make_id": 18956, + "model_id": 18961, + "year_id": 18961, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18962, + "make_id": 18956, + "model_id": 18962, + "year_id": 18962, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18963, + "make_id": 18956, + "model_id": 18963, + "year_id": 18963, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18964, + "make_id": 18956, + "model_id": 18964, + "year_id": 18964, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18965, + "make_id": 18956, + "model_id": 18965, + "year_id": 18965, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18966, + "make_id": 18956, + "model_id": 18965, + "year_id": 18965, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 18967, + "make_id": 18956, + "model_id": 18967, + "year_id": 18967, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18968, + "make_id": 18956, + "model_id": 18968, + "year_id": 18968, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 18969, + "make_id": 18969, + "model_id": 18969, + "year_id": 18969, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18970, + "make_id": 18969, + "model_id": 18969, + "year_id": 18969, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18971, + "make_id": 18969, + "model_id": 18969, + "year_id": 18971, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18972, + "make_id": 18969, + "model_id": 18969, + "year_id": 18971, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18973, + "make_id": 18969, + "model_id": 18969, + "year_id": 18973, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18974, + "make_id": 18969, + "model_id": 18969, + "year_id": 18973, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18975, + "make_id": 18969, + "model_id": 18969, + "year_id": 18975, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18976, + "make_id": 18969, + "model_id": 18969, + "year_id": 18975, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18977, + "make_id": 18969, + "model_id": 18969, + "year_id": 18977, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18978, + "make_id": 18969, + "model_id": 18969, + "year_id": 18977, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18979, + "make_id": 18969, + "model_id": 18979, + "year_id": 18979, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18980, + "make_id": 18969, + "model_id": 18979, + "year_id": 18979, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18981, + "make_id": 18969, + "model_id": 18981, + "year_id": 18981, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18982, + "make_id": 18969, + "model_id": 18981, + "year_id": 18981, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18983, + "make_id": 18969, + "model_id": 18981, + "year_id": 18983, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18984, + "make_id": 18969, + "model_id": 18981, + "year_id": 18984, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18985, + "make_id": 18969, + "model_id": 18981, + "year_id": 18985, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18986, + "make_id": 18969, + "model_id": 18981, + "year_id": 18986, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18987, + "make_id": 18969, + "model_id": 18981, + "year_id": 18987, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18988, + "make_id": 18969, + "model_id": 18981, + "year_id": 18988, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18989, + "make_id": 18969, + "model_id": 18981, + "year_id": 18989, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18990, + "make_id": 18969, + "model_id": 18981, + "year_id": 18990, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18991, + "make_id": 18969, + "model_id": 18981, + "year_id": 18991, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18992, + "make_id": 18969, + "model_id": 18992, + "year_id": 18992, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18993, + "make_id": 18969, + "model_id": 18992, + "year_id": 18993, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18994, + "make_id": 18969, + "model_id": 18992, + "year_id": 18994, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18995, + "make_id": 18969, + "model_id": 18992, + "year_id": 18995, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18996, + "make_id": 18969, + "model_id": 18992, + "year_id": 18996, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 18997, + "make_id": 18969, + "model_id": 18992, + "year_id": 18997, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18998, + "make_id": 18969, + "model_id": 18992, + "year_id": 18998, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 18999, + "make_id": 18969, + "model_id": 18992, + "year_id": 18999, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19000, + "make_id": 18969, + "model_id": 18992, + "year_id": 19000, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19001, + "make_id": 18969, + "model_id": 19001, + "year_id": 19001, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19002, + "make_id": 18969, + "model_id": 19002, + "year_id": 19002, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19003, + "make_id": 18969, + "model_id": 19003, + "year_id": 19003, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19004, + "make_id": 18969, + "model_id": 19003, + "year_id": 19004, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19005, + "make_id": 18969, + "model_id": 19003, + "year_id": 19005, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19006, + "make_id": 18969, + "model_id": 19003, + "year_id": 19006, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19007, + "make_id": 18969, + "model_id": 19003, + "year_id": 19007, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19008, + "make_id": 18969, + "model_id": 19003, + "year_id": 19008, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19009, + "make_id": 18969, + "model_id": 19009, + "year_id": 19009, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19010, + "make_id": 18969, + "model_id": 19009, + "year_id": 19010, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19011, + "make_id": 18969, + "model_id": 19009, + "year_id": 19011, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19012, + "make_id": 18969, + "model_id": 19009, + "year_id": 19012, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19013, + "make_id": 18969, + "model_id": 19009, + "year_id": 19013, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19014, + "make_id": 18969, + "model_id": 19014, + "year_id": 19014, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19015, + "make_id": 18969, + "model_id": 19014, + "year_id": 19014, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19016, + "make_id": 18969, + "model_id": 19014, + "year_id": 19016, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19017, + "make_id": 18969, + "model_id": 19014, + "year_id": 19016, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19018, + "make_id": 18969, + "model_id": 19014, + "year_id": 19018, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19019, + "make_id": 18969, + "model_id": 19014, + "year_id": 19018, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19020, + "make_id": 18969, + "model_id": 19014, + "year_id": 19018, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19021, + "make_id": 18969, + "model_id": 19014, + "year_id": 19021, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19022, + "make_id": 18969, + "model_id": 19014, + "year_id": 19021, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19023, + "make_id": 18969, + "model_id": 19014, + "year_id": 19023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19024, + "make_id": 18969, + "model_id": 19014, + "year_id": 19023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19025, + "make_id": 18969, + "model_id": 19014, + "year_id": 19023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19026, + "make_id": 18969, + "model_id": 19014, + "year_id": 19023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19027, + "make_id": 18969, + "model_id": 19014, + "year_id": 19027, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19028, + "make_id": 18969, + "model_id": 19014, + "year_id": 19027, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19029, + "make_id": 18969, + "model_id": 19014, + "year_id": 19029, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19030, + "make_id": 18969, + "model_id": 19014, + "year_id": 19029, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19031, + "make_id": 18969, + "model_id": 19014, + "year_id": 19031, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19032, + "make_id": 18969, + "model_id": 19014, + "year_id": 19031, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19033, + "make_id": 18969, + "model_id": 19014, + "year_id": 19033, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19034, + "make_id": 18969, + "model_id": 19014, + "year_id": 19033, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19035, + "make_id": 18969, + "model_id": 19014, + "year_id": 19035, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19036, + "make_id": 18969, + "model_id": 19014, + "year_id": 19035, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19037, + "make_id": 18969, + "model_id": 19037, + "year_id": 19037, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19038, + "make_id": 18969, + "model_id": 19037, + "year_id": 19038, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19039, + "make_id": 18969, + "model_id": 19039, + "year_id": 19039, + "cylinders": 6, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19040, + "make_id": 18969, + "model_id": 19039, + "year_id": 19040, + "cylinders": 6, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19041, + "make_id": 18969, + "model_id": 19041, + "year_id": 19041, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19042, + "make_id": 18969, + "model_id": 19041, + "year_id": 19041, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19043, + "make_id": 18969, + "model_id": 19041, + "year_id": 19041, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19044, + "make_id": 18969, + "model_id": 19041, + "year_id": 19044, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19045, + "make_id": 18969, + "model_id": 19041, + "year_id": 19044, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19046, + "make_id": 18969, + "model_id": 19041, + "year_id": 19044, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19047, + "make_id": 18969, + "model_id": 19041, + "year_id": 19044, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19048, + "make_id": 18969, + "model_id": 19041, + "year_id": 19044, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19049, + "make_id": 18969, + "model_id": 19041, + "year_id": 19049, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19050, + "make_id": 18969, + "model_id": 19041, + "year_id": 19049, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19051, + "make_id": 18969, + "model_id": 19041, + "year_id": 19049, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19052, + "make_id": 18969, + "model_id": 19041, + "year_id": 19049, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19053, + "make_id": 18969, + "model_id": 19041, + "year_id": 19053, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19054, + "make_id": 18969, + "model_id": 19041, + "year_id": 19053, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19055, + "make_id": 18969, + "model_id": 19041, + "year_id": 19053, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19056, + "make_id": 18969, + "model_id": 19041, + "year_id": 19053, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19057, + "make_id": 18969, + "model_id": 19041, + "year_id": 19057, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19058, + "make_id": 18969, + "model_id": 19041, + "year_id": 19057, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19059, + "make_id": 18969, + "model_id": 19041, + "year_id": 19059, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19060, + "make_id": 18969, + "model_id": 19041, + "year_id": 19059, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19061, + "make_id": 18969, + "model_id": 19061, + "year_id": 19061, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19062, + "make_id": 18969, + "model_id": 19061, + "year_id": 19061, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19063, + "make_id": 18969, + "model_id": 19063, + "year_id": 19063, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19064, + "make_id": 18969, + "model_id": 19063, + "year_id": 19064, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19065, + "make_id": 18969, + "model_id": 19065, + "year_id": 19065, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19066, + "make_id": 18969, + "model_id": 19065, + "year_id": 19065, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19067, + "make_id": 18969, + "model_id": 19065, + "year_id": 19067, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19068, + "make_id": 18969, + "model_id": 19065, + "year_id": 19067, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19069, + "make_id": 18969, + "model_id": 19065, + "year_id": 19069, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19070, + "make_id": 18969, + "model_id": 19065, + "year_id": 19069, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19071, + "make_id": 18969, + "model_id": 19065, + "year_id": 19071, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19072, + "make_id": 18969, + "model_id": 19065, + "year_id": 19071, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19073, + "make_id": 18969, + "model_id": 19073, + "year_id": 19073, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19074, + "make_id": 18969, + "model_id": 19073, + "year_id": 19073, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19075, + "make_id": 18969, + "model_id": 19073, + "year_id": 19075, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19076, + "make_id": 18969, + "model_id": 19073, + "year_id": 19075, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19077, + "make_id": 18969, + "model_id": 19073, + "year_id": 19077, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19078, + "make_id": 18969, + "model_id": 19073, + "year_id": 19077, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19079, + "make_id": 18969, + "model_id": 19073, + "year_id": 19079, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19080, + "make_id": 18969, + "model_id": 19073, + "year_id": 19079, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19081, + "make_id": 18969, + "model_id": 19073, + "year_id": 19081, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19082, + "make_id": 18969, + "model_id": 19073, + "year_id": 19081, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19083, + "make_id": 18969, + "model_id": 19083, + "year_id": 19083, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19084, + "make_id": 18969, + "model_id": 19083, + "year_id": 19083, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19085, + "make_id": 18969, + "model_id": 19083, + "year_id": 19085, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19086, + "make_id": 18969, + "model_id": 19083, + "year_id": 19085, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19087, + "make_id": 18969, + "model_id": 19083, + "year_id": 19087, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19088, + "make_id": 18969, + "model_id": 19083, + "year_id": 19087, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19089, + "make_id": 18969, + "model_id": 19083, + "year_id": 19089, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19090, + "make_id": 18969, + "model_id": 19083, + "year_id": 19089, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19091, + "make_id": 18969, + "model_id": 19083, + "year_id": 19091, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19092, + "make_id": 18969, + "model_id": 19083, + "year_id": 19091, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19093, + "make_id": 18969, + "model_id": 19083, + "year_id": 19093, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19094, + "make_id": 18969, + "model_id": 19083, + "year_id": 19093, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19095, + "make_id": 18969, + "model_id": 19095, + "year_id": 19095, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19096, + "make_id": 18969, + "model_id": 19095, + "year_id": 19096, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19097, + "make_id": 18969, + "model_id": 19095, + "year_id": 19097, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19098, + "make_id": 18969, + "model_id": 19095, + "year_id": 19098, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19099, + "make_id": 18969, + "model_id": 19099, + "year_id": 19099, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19100, + "make_id": 18969, + "model_id": 19099, + "year_id": 19100, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19101, + "make_id": 18969, + "model_id": 19099, + "year_id": 19101, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19102, + "make_id": 18969, + "model_id": 19099, + "year_id": 19102, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19103, + "make_id": 18969, + "model_id": 19099, + "year_id": 19103, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19104, + "make_id": 18969, + "model_id": 19104, + "year_id": 19104, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19105, + "make_id": 18969, + "model_id": 19104, + "year_id": 19104, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19106, + "make_id": 18969, + "model_id": 19104, + "year_id": 19106, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19107, + "make_id": 18969, + "model_id": 19104, + "year_id": 19106, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19108, + "make_id": 18969, + "model_id": 19104, + "year_id": 19108, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19109, + "make_id": 18969, + "model_id": 19104, + "year_id": 19108, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19110, + "make_id": 18969, + "model_id": 19104, + "year_id": 19110, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19111, + "make_id": 18969, + "model_id": 19104, + "year_id": 19110, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19112, + "make_id": 18969, + "model_id": 19104, + "year_id": 19112, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19113, + "make_id": 18969, + "model_id": 19104, + "year_id": 19113, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19114, + "make_id": 18969, + "model_id": 19114, + "year_id": 19114, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19115, + "make_id": 18969, + "model_id": 19114, + "year_id": 19115, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19116, + "make_id": 18969, + "model_id": 19114, + "year_id": 19116, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19117, + "make_id": 18969, + "model_id": 19117, + "year_id": 19117, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19118, + "make_id": 18969, + "model_id": 19117, + "year_id": 19118, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19119, + "make_id": 18969, + "model_id": 19117, + "year_id": 19119, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19120, + "make_id": 18969, + "model_id": 19117, + "year_id": 19120, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19121, + "make_id": 18969, + "model_id": 19117, + "year_id": 19121, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19122, + "make_id": 18969, + "model_id": 19122, + "year_id": 19122, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19123, + "make_id": 18969, + "model_id": 19122, + "year_id": 19122, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19124, + "make_id": 18969, + "model_id": 19124, + "year_id": 19124, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19125, + "make_id": 18969, + "model_id": 19124, + "year_id": 19125, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19126, + "make_id": 18969, + "model_id": 19124, + "year_id": 19126, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19127, + "make_id": 18969, + "model_id": 19127, + "year_id": 19127, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19128, + "make_id": 18969, + "model_id": 19127, + "year_id": 19127, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19129, + "make_id": 18969, + "model_id": 19127, + "year_id": 19129, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19130, + "make_id": 18969, + "model_id": 19127, + "year_id": 19130, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19131, + "make_id": 18969, + "model_id": 19127, + "year_id": 19131, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19132, + "make_id": 18969, + "model_id": 19127, + "year_id": 19132, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19133, + "make_id": 18969, + "model_id": 19133, + "year_id": 19133, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19134, + "make_id": 18969, + "model_id": 19133, + "year_id": 19134, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19135, + "make_id": 18969, + "model_id": 19135, + "year_id": 19135, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19136, + "make_id": 18969, + "model_id": 19135, + "year_id": 19136, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19137, + "make_id": 18969, + "model_id": 19135, + "year_id": 19137, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19138, + "make_id": 18969, + "model_id": 19135, + "year_id": 19138, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19139, + "make_id": 18969, + "model_id": 19139, + "year_id": 19139, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19140, + "make_id": 18969, + "model_id": 19139, + "year_id": 19140, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19141, + "make_id": 18969, + "model_id": 19139, + "year_id": 19141, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19142, + "make_id": 18969, + "model_id": 19142, + "year_id": 19142, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19143, + "make_id": 18969, + "model_id": 19142, + "year_id": 19143, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19144, + "make_id": 18969, + "model_id": 19142, + "year_id": 19144, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19145, + "make_id": 18969, + "model_id": 19145, + "year_id": 19145, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19146, + "make_id": 18969, + "model_id": 19145, + "year_id": 19146, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19147, + "make_id": 18969, + "model_id": 19145, + "year_id": 19147, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19148, + "make_id": 18969, + "model_id": 19145, + "year_id": 19148, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19149, + "make_id": 18969, + "model_id": 19145, + "year_id": 19149, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19150, + "make_id": 18969, + "model_id": 19145, + "year_id": 19150, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19151, + "make_id": 18969, + "model_id": 19145, + "year_id": 19151, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19152, + "make_id": 18969, + "model_id": 19152, + "year_id": 19152, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19153, + "make_id": 18969, + "model_id": 19152, + "year_id": 19153, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19154, + "make_id": 18969, + "model_id": 19152, + "year_id": 19154, + "cylinders": 8, + "displacement": 4.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19155, + "make_id": 18969, + "model_id": 19155, + "year_id": 19155, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19156, + "make_id": 18969, + "model_id": 19155, + "year_id": 19156, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19157, + "make_id": 18969, + "model_id": 19155, + "year_id": 19157, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19158, + "make_id": 18969, + "model_id": 19158, + "year_id": 19158, + "cylinders": 8, + "displacement": 5.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19159, + "make_id": 18969, + "model_id": 19158, + "year_id": 19159, + "cylinders": 8, + "displacement": 5.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19160, + "make_id": 18969, + "model_id": 19158, + "year_id": 19160, + "cylinders": 8, + "displacement": 5.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19161, + "make_id": 18969, + "model_id": 19161, + "year_id": 19161, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19162, + "make_id": 18969, + "model_id": 19161, + "year_id": 19161, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19163, + "make_id": 18969, + "model_id": 19163, + "year_id": 19163, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19164, + "make_id": 18969, + "model_id": 19163, + "year_id": 19164, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19165, + "make_id": 18969, + "model_id": 19163, + "year_id": 19165, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19166, + "make_id": 18969, + "model_id": 19163, + "year_id": 19166, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19167, + "make_id": 18969, + "model_id": 19163, + "year_id": 19167, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19168, + "make_id": 18969, + "model_id": 19163, + "year_id": 19168, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19169, + "make_id": 18969, + "model_id": 19163, + "year_id": 19169, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19170, + "make_id": 18969, + "model_id": 19163, + "year_id": 19170, + "cylinders": 8, + "displacement": 4.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19171, + "make_id": 18969, + "model_id": 19163, + "year_id": 19171, + "cylinders": 8, + "displacement": 4.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19172, + "make_id": 18969, + "model_id": 19163, + "year_id": 19172, + "cylinders": 8, + "displacement": 4.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19173, + "make_id": 18969, + "model_id": 19163, + "year_id": 19173, + "cylinders": 8, + "displacement": 4.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19174, + "make_id": 18969, + "model_id": 19163, + "year_id": 19174, + "cylinders": 8, + "displacement": 4.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19175, + "make_id": 18969, + "model_id": 19163, + "year_id": 19175, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19176, + "make_id": 18969, + "model_id": 19163, + "year_id": 19176, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19177, + "make_id": 18969, + "model_id": 19163, + "year_id": 19177, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19178, + "make_id": 18969, + "model_id": 19163, + "year_id": 19178, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19179, + "make_id": 18969, + "model_id": 19163, + "year_id": 19179, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19180, + "make_id": 18969, + "model_id": 19180, + "year_id": 19180, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19181, + "make_id": 18969, + "model_id": 19180, + "year_id": 19181, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19182, + "make_id": 18969, + "model_id": 19180, + "year_id": 19182, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19183, + "make_id": 18969, + "model_id": 19180, + "year_id": 19183, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19184, + "make_id": 18969, + "model_id": 19180, + "year_id": 19184, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19185, + "make_id": 18969, + "model_id": 19185, + "year_id": 19185, + "cylinders": 8, + "displacement": 4.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19186, + "make_id": 18969, + "model_id": 19186, + "year_id": 19186, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19187, + "make_id": 18969, + "model_id": 19186, + "year_id": 19186, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19188, + "make_id": 18969, + "model_id": 19186, + "year_id": 19188, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19189, + "make_id": 18969, + "model_id": 19186, + "year_id": 19188, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19190, + "make_id": 18969, + "model_id": 19186, + "year_id": 19190, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19191, + "make_id": 18969, + "model_id": 19186, + "year_id": 19190, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19192, + "make_id": 18969, + "model_id": 19186, + "year_id": 19190, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19193, + "make_id": 18969, + "model_id": 19186, + "year_id": 19190, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19194, + "make_id": 18969, + "model_id": 19194, + "year_id": 19194, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19195, + "make_id": 18969, + "model_id": 19194, + "year_id": 19194, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19196, + "make_id": 18969, + "model_id": 19194, + "year_id": 19196, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19197, + "make_id": 18969, + "model_id": 19194, + "year_id": 19196, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19198, + "make_id": 18969, + "model_id": 19194, + "year_id": 19198, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19199, + "make_id": 18969, + "model_id": 19194, + "year_id": 19198, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19200, + "make_id": 18969, + "model_id": 19200, + "year_id": 19200, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19201, + "make_id": 18969, + "model_id": 19200, + "year_id": 19200, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19202, + "make_id": 18969, + "model_id": 19200, + "year_id": 19202, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19203, + "make_id": 18969, + "model_id": 19200, + "year_id": 19202, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19204, + "make_id": 18969, + "model_id": 19204, + "year_id": 19204, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19205, + "make_id": 18969, + "model_id": 19204, + "year_id": 19204, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19206, + "make_id": 18969, + "model_id": 19206, + "year_id": 19206, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19207, + "make_id": 18969, + "model_id": 19206, + "year_id": 19206, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19208, + "make_id": 18969, + "model_id": 19206, + "year_id": 19208, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19209, + "make_id": 18969, + "model_id": 19206, + "year_id": 19208, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19210, + "make_id": 18969, + "model_id": 19210, + "year_id": 19210, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19211, + "make_id": 18969, + "model_id": 19211, + "year_id": 19211, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19212, + "make_id": 18969, + "model_id": 19212, + "year_id": 19212, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19213, + "make_id": 18969, + "model_id": 19212, + "year_id": 19212, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19214, + "make_id": 18969, + "model_id": 19212, + "year_id": 19212, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19215, + "make_id": 18969, + "model_id": 19215, + "year_id": 19215, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19216, + "make_id": 18969, + "model_id": 19215, + "year_id": 19215, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19217, + "make_id": 18969, + "model_id": 19215, + "year_id": 19217, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19218, + "make_id": 18969, + "model_id": 19215, + "year_id": 19217, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19219, + "make_id": 18969, + "model_id": 19219, + "year_id": 19219, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19220, + "make_id": 18969, + "model_id": 19219, + "year_id": 19219, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19221, + "make_id": 18969, + "model_id": 19219, + "year_id": 19219, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19222, + "make_id": 18969, + "model_id": 19222, + "year_id": 19222, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19223, + "make_id": 18969, + "model_id": 19222, + "year_id": 19222, + "cylinders": 8, + "displacement": 5.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19224, + "make_id": 18969, + "model_id": 19222, + "year_id": 19222, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19225, + "make_id": 18969, + "model_id": 19222, + "year_id": 19222, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19226, + "make_id": 18969, + "model_id": 19222, + "year_id": 19226, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19227, + "make_id": 18969, + "model_id": 19222, + "year_id": 19226, + "cylinders": 8, + "displacement": 5.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19228, + "make_id": 18969, + "model_id": 19222, + "year_id": 19226, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19229, + "make_id": 18969, + "model_id": 19222, + "year_id": 19226, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19230, + "make_id": 18969, + "model_id": 19222, + "year_id": 19230, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19231, + "make_id": 18969, + "model_id": 19222, + "year_id": 19230, + "cylinders": 8, + "displacement": 5.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19232, + "make_id": 18969, + "model_id": 19222, + "year_id": 19230, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19233, + "make_id": 18969, + "model_id": 19222, + "year_id": 19230, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19234, + "make_id": 18969, + "model_id": 19234, + "year_id": 19234, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19235, + "make_id": 18969, + "model_id": 19234, + "year_id": 19235, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19236, + "make_id": 18969, + "model_id": 19234, + "year_id": 19236, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19237, + "make_id": 18969, + "model_id": 19237, + "year_id": 19237, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19238, + "make_id": 18969, + "model_id": 19237, + "year_id": 19238, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19239, + "make_id": 18969, + "model_id": 19237, + "year_id": 19239, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19240, + "make_id": 18969, + "model_id": 19237, + "year_id": 19239, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19241, + "make_id": 18969, + "model_id": 19237, + "year_id": 19241, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19242, + "make_id": 18969, + "model_id": 19237, + "year_id": 19242, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19243, + "make_id": 18969, + "model_id": 19237, + "year_id": 19242, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19244, + "make_id": 18969, + "model_id": 19237, + "year_id": 19244, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19245, + "make_id": 18969, + "model_id": 19237, + "year_id": 19244, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19246, + "make_id": 18969, + "model_id": 19237, + "year_id": 19246, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19247, + "make_id": 18969, + "model_id": 19237, + "year_id": 19246, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19248, + "make_id": 18969, + "model_id": 19248, + "year_id": 19248, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19249, + "make_id": 18969, + "model_id": 19248, + "year_id": 19248, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19250, + "make_id": 18969, + "model_id": 19248, + "year_id": 19250, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19251, + "make_id": 18969, + "model_id": 19248, + "year_id": 19250, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19252, + "make_id": 18969, + "model_id": 19248, + "year_id": 19252, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19253, + "make_id": 18969, + "model_id": 19248, + "year_id": 19252, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19254, + "make_id": 18969, + "model_id": 19254, + "year_id": 19254, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19255, + "make_id": 18969, + "model_id": 19254, + "year_id": 19254, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19256, + "make_id": 18969, + "model_id": 19254, + "year_id": 19256, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19257, + "make_id": 18969, + "model_id": 19254, + "year_id": 19256, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19258, + "make_id": 18969, + "model_id": 19254, + "year_id": 19258, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19259, + "make_id": 18969, + "model_id": 19254, + "year_id": 19258, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19260, + "make_id": 18969, + "model_id": 19254, + "year_id": 19260, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19261, + "make_id": 18969, + "model_id": 19254, + "year_id": 19260, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19262, + "make_id": 18969, + "model_id": 19254, + "year_id": 19262, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19263, + "make_id": 18969, + "model_id": 19254, + "year_id": 19262, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19264, + "make_id": 18969, + "model_id": 19254, + "year_id": 19264, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19265, + "make_id": 18969, + "model_id": 19254, + "year_id": 19264, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19266, + "make_id": 18969, + "model_id": 19254, + "year_id": 19266, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19267, + "make_id": 18969, + "model_id": 19254, + "year_id": 19266, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19268, + "make_id": 18969, + "model_id": 19254, + "year_id": 19268, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19269, + "make_id": 18969, + "model_id": 19254, + "year_id": 19268, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19270, + "make_id": 18969, + "model_id": 19254, + "year_id": 19270, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19271, + "make_id": 18969, + "model_id": 19254, + "year_id": 19270, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19272, + "make_id": 18969, + "model_id": 19254, + "year_id": 19272, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19273, + "make_id": 18969, + "model_id": 19254, + "year_id": 19272, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19274, + "make_id": 18969, + "model_id": 19274, + "year_id": 19274, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19275, + "make_id": 18969, + "model_id": 19274, + "year_id": 19274, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19276, + "make_id": 18969, + "model_id": 19274, + "year_id": 19276, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19277, + "make_id": 18969, + "model_id": 19274, + "year_id": 19276, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19278, + "make_id": 18969, + "model_id": 19274, + "year_id": 19278, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19279, + "make_id": 18969, + "model_id": 19274, + "year_id": 19278, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19280, + "make_id": 18969, + "model_id": 19280, + "year_id": 19280, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19281, + "make_id": 18969, + "model_id": 19280, + "year_id": 19280, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19282, + "make_id": 18969, + "model_id": 19280, + "year_id": 19282, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19283, + "make_id": 18969, + "model_id": 19280, + "year_id": 19282, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19284, + "make_id": 18969, + "model_id": 19280, + "year_id": 19284, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19285, + "make_id": 18969, + "model_id": 19280, + "year_id": 19284, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 19286, + "make_id": 18969, + "model_id": 19286, + "year_id": 19286, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19287, + "make_id": 18969, + "model_id": 19286, + "year_id": 19286, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19288, + "make_id": 18969, + "model_id": 19286, + "year_id": 19288, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19289, + "make_id": 18969, + "model_id": 19286, + "year_id": 19289, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19290, + "make_id": 18969, + "model_id": 19290, + "year_id": 19290, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19291, + "make_id": 18969, + "model_id": 19290, + "year_id": 19291, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19292, + "make_id": 18969, + "model_id": 19290, + "year_id": 19292, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19293, + "make_id": 18969, + "model_id": 19293, + "year_id": 19293, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19294, + "make_id": 18969, + "model_id": 19293, + "year_id": 19293, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19295, + "make_id": 18969, + "model_id": 19293, + "year_id": 19295, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19296, + "make_id": 18969, + "model_id": 19293, + "year_id": 19295, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19297, + "make_id": 18969, + "model_id": 19293, + "year_id": 19297, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19298, + "make_id": 18969, + "model_id": 19293, + "year_id": 19297, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19299, + "make_id": 18969, + "model_id": 19299, + "year_id": 19299, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 19300, + "make_id": 19300, + "model_id": 19300, + "year_id": 19300, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19301, + "make_id": 19301, + "model_id": 19301, + "year_id": 19301, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19302, + "make_id": 19301, + "model_id": 19301, + "year_id": 19301, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19303, + "make_id": 19301, + "model_id": 19303, + "year_id": 19303, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19304, + "make_id": 19301, + "model_id": 19303, + "year_id": 19303, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19305, + "make_id": 19301, + "model_id": 19303, + "year_id": 19303, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19306, + "make_id": 19301, + "model_id": 19303, + "year_id": 19306, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19307, + "make_id": 19301, + "model_id": 19303, + "year_id": 19306, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19308, + "make_id": 19301, + "model_id": 19303, + "year_id": 19306, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19309, + "make_id": 19301, + "model_id": 19303, + "year_id": 19309, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19310, + "make_id": 19301, + "model_id": 19303, + "year_id": 19309, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19311, + "make_id": 19301, + "model_id": 19303, + "year_id": 19309, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19312, + "make_id": 19301, + "model_id": 19303, + "year_id": 19312, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19313, + "make_id": 19301, + "model_id": 19303, + "year_id": 19312, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19314, + "make_id": 19301, + "model_id": 19303, + "year_id": 19312, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19315, + "make_id": 19301, + "model_id": 19303, + "year_id": 19312, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19316, + "make_id": 19301, + "model_id": 19303, + "year_id": 19316, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19317, + "make_id": 19301, + "model_id": 19303, + "year_id": 19316, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19318, + "make_id": 19301, + "model_id": 19303, + "year_id": 19316, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19319, + "make_id": 19301, + "model_id": 19303, + "year_id": 19316, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19320, + "make_id": 19301, + "model_id": 19303, + "year_id": 19320, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19321, + "make_id": 19301, + "model_id": 19303, + "year_id": 19320, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19322, + "make_id": 19301, + "model_id": 19303, + "year_id": 19322, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19323, + "make_id": 19301, + "model_id": 19303, + "year_id": 19322, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19324, + "make_id": 19301, + "model_id": 19303, + "year_id": 19322, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19325, + "make_id": 19301, + "model_id": 19303, + "year_id": 19325, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19326, + "make_id": 19301, + "model_id": 19303, + "year_id": 19325, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19327, + "make_id": 19301, + "model_id": 19303, + "year_id": 19325, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19328, + "make_id": 19301, + "model_id": 19303, + "year_id": 19325, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19329, + "make_id": 19301, + "model_id": 19303, + "year_id": 19325, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19330, + "make_id": 19301, + "model_id": 19303, + "year_id": 19330, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19331, + "make_id": 19301, + "model_id": 19303, + "year_id": 19330, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19332, + "make_id": 19301, + "model_id": 19303, + "year_id": 19330, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19333, + "make_id": 19301, + "model_id": 19303, + "year_id": 19330, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19334, + "make_id": 19301, + "model_id": 19334, + "year_id": 19334, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19335, + "make_id": 19301, + "model_id": 19334, + "year_id": 19334, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19336, + "make_id": 19301, + "model_id": 19334, + "year_id": 19334, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19337, + "make_id": 19301, + "model_id": 19334, + "year_id": 19334, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19338, + "make_id": 19301, + "model_id": 19334, + "year_id": 19338, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19339, + "make_id": 19301, + "model_id": 19334, + "year_id": 19338, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19340, + "make_id": 19301, + "model_id": 19334, + "year_id": 19338, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19341, + "make_id": 19301, + "model_id": 19334, + "year_id": 19338, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19342, + "make_id": 19301, + "model_id": 19342, + "year_id": 19342, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19343, + "make_id": 19301, + "model_id": 19342, + "year_id": 19342, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19344, + "make_id": 19301, + "model_id": 19342, + "year_id": 19344, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19345, + "make_id": 19301, + "model_id": 19342, + "year_id": 19344, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19346, + "make_id": 19301, + "model_id": 19342, + "year_id": 19346, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19347, + "make_id": 19301, + "model_id": 19342, + "year_id": 19346, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19348, + "make_id": 19301, + "model_id": 19342, + "year_id": 19348, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19349, + "make_id": 19301, + "model_id": 19342, + "year_id": 19348, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19350, + "make_id": 19301, + "model_id": 19342, + "year_id": 19350, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19351, + "make_id": 19301, + "model_id": 19342, + "year_id": 19350, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19352, + "make_id": 19301, + "model_id": 19342, + "year_id": 19352, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19353, + "make_id": 19301, + "model_id": 19353, + "year_id": 19353, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19354, + "make_id": 19301, + "model_id": 19353, + "year_id": 19353, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19355, + "make_id": 19301, + "model_id": 19353, + "year_id": 19353, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19356, + "make_id": 19301, + "model_id": 19353, + "year_id": 19353, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19357, + "make_id": 19301, + "model_id": 19353, + "year_id": 19357, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19358, + "make_id": 19301, + "model_id": 19353, + "year_id": 19357, + "cylinders": 8, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19359, + "make_id": 19301, + "model_id": 19353, + "year_id": 19357, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19360, + "make_id": 19301, + "model_id": 19353, + "year_id": 19357, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19361, + "make_id": 19301, + "model_id": 19353, + "year_id": 19361, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19362, + "make_id": 19301, + "model_id": 19362, + "year_id": 19362, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19363, + "make_id": 19301, + "model_id": 19362, + "year_id": 19362, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19364, + "make_id": 19301, + "model_id": 19362, + "year_id": 19364, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19365, + "make_id": 19301, + "model_id": 19362, + "year_id": 19364, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19366, + "make_id": 19301, + "model_id": 19362, + "year_id": 19366, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19367, + "make_id": 19301, + "model_id": 19362, + "year_id": 19366, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19368, + "make_id": 19301, + "model_id": 19368, + "year_id": 19368, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19369, + "make_id": 19301, + "model_id": 19368, + "year_id": 19369, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19370, + "make_id": 19301, + "model_id": 19368, + "year_id": 19369, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19371, + "make_id": 19301, + "model_id": 19368, + "year_id": 19369, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19372, + "make_id": 19301, + "model_id": 19368, + "year_id": 19372, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19373, + "make_id": 19301, + "model_id": 19368, + "year_id": 19372, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19374, + "make_id": 19301, + "model_id": 19368, + "year_id": 19372, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19375, + "make_id": 19301, + "model_id": 19368, + "year_id": 19372, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19376, + "make_id": 19301, + "model_id": 19368, + "year_id": 19372, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19377, + "make_id": 19301, + "model_id": 19368, + "year_id": 19372, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19378, + "make_id": 19301, + "model_id": 19368, + "year_id": 19378, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19379, + "make_id": 19301, + "model_id": 19368, + "year_id": 19378, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19380, + "make_id": 19301, + "model_id": 19368, + "year_id": 19378, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19381, + "make_id": 19301, + "model_id": 19368, + "year_id": 19378, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19382, + "make_id": 19301, + "model_id": 19368, + "year_id": 19378, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19383, + "make_id": 19301, + "model_id": 19368, + "year_id": 19378, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19384, + "make_id": 19301, + "model_id": 19368, + "year_id": 19384, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19385, + "make_id": 19301, + "model_id": 19368, + "year_id": 19384, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19386, + "make_id": 19301, + "model_id": 19368, + "year_id": 19384, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19387, + "make_id": 19301, + "model_id": 19368, + "year_id": 19384, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19388, + "make_id": 19301, + "model_id": 19368, + "year_id": 19384, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19389, + "make_id": 19301, + "model_id": 19368, + "year_id": 19384, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19390, + "make_id": 19301, + "model_id": 19368, + "year_id": 19384, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19391, + "make_id": 19301, + "model_id": 19368, + "year_id": 19391, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19392, + "make_id": 19301, + "model_id": 19368, + "year_id": 19391, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19393, + "make_id": 19301, + "model_id": 19393, + "year_id": 19393, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19394, + "make_id": 19301, + "model_id": 19393, + "year_id": 19393, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19395, + "make_id": 19301, + "model_id": 19393, + "year_id": 19395, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19396, + "make_id": 19301, + "model_id": 19393, + "year_id": 19395, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19397, + "make_id": 19301, + "model_id": 19397, + "year_id": 19397, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19398, + "make_id": 19301, + "model_id": 19397, + "year_id": 19397, + "cylinders": 4, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19399, + "make_id": 19301, + "model_id": 19399, + "year_id": 19399, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19400, + "make_id": 19301, + "model_id": 19399, + "year_id": 19399, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19401, + "make_id": 19301, + "model_id": 19399, + "year_id": 19401, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19402, + "make_id": 19301, + "model_id": 19399, + "year_id": 19401, + "cylinders": 4, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19403, + "make_id": 19301, + "model_id": 19403, + "year_id": 19403, + "cylinders": 5, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19404, + "make_id": 19301, + "model_id": 19404, + "year_id": 19404, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19405, + "make_id": 19301, + "model_id": 19404, + "year_id": 19404, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19406, + "make_id": 19301, + "model_id": 19404, + "year_id": 19406, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19407, + "make_id": 19301, + "model_id": 19404, + "year_id": 19406, + "cylinders": 5, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19408, + "make_id": 19301, + "model_id": 19408, + "year_id": 19408, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19409, + "make_id": 19301, + "model_id": 19408, + "year_id": 19409, + "cylinders": 5, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19410, + "make_id": 19301, + "model_id": 19410, + "year_id": 19410, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 19411, + "make_id": 19301, + "model_id": 19410, + "year_id": 19410, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 19412, + "make_id": 19301, + "model_id": 19410, + "year_id": 19410, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 19413, + "make_id": 19301, + "model_id": 19410, + "year_id": 19410, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 19414, + "make_id": 19301, + "model_id": 19410, + "year_id": 19410, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 19415, + "make_id": 19301, + "model_id": 19410, + "year_id": 19410, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 19416, + "make_id": 19301, + "model_id": 19410, + "year_id": 19410, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 19417, + "make_id": 19301, + "model_id": 19410, + "year_id": 19410, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 19418, + "make_id": 19301, + "model_id": 19410, + "year_id": 19410, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 19419, + "make_id": 19301, + "model_id": 19410, + "year_id": 19419, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19420, + "make_id": 19301, + "model_id": 19410, + "year_id": 19419, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19421, + "make_id": 19301, + "model_id": 19410, + "year_id": 19419, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19422, + "make_id": 19301, + "model_id": 19410, + "year_id": 19419, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19423, + "make_id": 19301, + "model_id": 19410, + "year_id": 19423, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19424, + "make_id": 19301, + "model_id": 19410, + "year_id": 19423, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19425, + "make_id": 19301, + "model_id": 19410, + "year_id": 19423, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19426, + "make_id": 19301, + "model_id": 19410, + "year_id": 19426, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19427, + "make_id": 19301, + "model_id": 19410, + "year_id": 19426, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19428, + "make_id": 19301, + "model_id": 19410, + "year_id": 19426, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19429, + "make_id": 19301, + "model_id": 19410, + "year_id": 19426, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19430, + "make_id": 19301, + "model_id": 19410, + "year_id": 19430, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19431, + "make_id": 19301, + "model_id": 19410, + "year_id": 19430, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19432, + "make_id": 19301, + "model_id": 19410, + "year_id": 19430, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19433, + "make_id": 19301, + "model_id": 19410, + "year_id": 19430, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19434, + "make_id": 19301, + "model_id": 19410, + "year_id": 19434, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19435, + "make_id": 19301, + "model_id": 19410, + "year_id": 19434, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19436, + "make_id": 19301, + "model_id": 19410, + "year_id": 19434, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19437, + "make_id": 19301, + "model_id": 19410, + "year_id": 19434, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19438, + "make_id": 19301, + "model_id": 19410, + "year_id": 19434, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19439, + "make_id": 19301, + "model_id": 19439, + "year_id": 19439, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 19440, + "make_id": 19301, + "model_id": 19439, + "year_id": 19439, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 19441, + "make_id": 19301, + "model_id": 19439, + "year_id": 19439, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 19442, + "make_id": 19301, + "model_id": 19439, + "year_id": 19439, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 19443, + "make_id": 19301, + "model_id": 19439, + "year_id": 19443, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19444, + "make_id": 19301, + "model_id": 19439, + "year_id": 19443, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19445, + "make_id": 19301, + "model_id": 19439, + "year_id": 19443, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19446, + "make_id": 19301, + "model_id": 19439, + "year_id": 19443, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19447, + "make_id": 19301, + "model_id": 19439, + "year_id": 19443, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19448, + "make_id": 19301, + "model_id": 19439, + "year_id": 19443, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19449, + "make_id": 19301, + "model_id": 19439, + "year_id": 19449, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19450, + "make_id": 19301, + "model_id": 19439, + "year_id": 19449, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19451, + "make_id": 19301, + "model_id": 19439, + "year_id": 19449, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19452, + "make_id": 19301, + "model_id": 19439, + "year_id": 19449, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19453, + "make_id": 19301, + "model_id": 19439, + "year_id": 19449, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19454, + "make_id": 19301, + "model_id": 19439, + "year_id": 19449, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19455, + "make_id": 19301, + "model_id": 19439, + "year_id": 19455, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19456, + "make_id": 19301, + "model_id": 19439, + "year_id": 19455, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19457, + "make_id": 19301, + "model_id": 19439, + "year_id": 19455, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19458, + "make_id": 19301, + "model_id": 19439, + "year_id": 19455, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19459, + "make_id": 19301, + "model_id": 19439, + "year_id": 19459, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19460, + "make_id": 19301, + "model_id": 19439, + "year_id": 19459, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19461, + "make_id": 19301, + "model_id": 19439, + "year_id": 19459, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19462, + "make_id": 19301, + "model_id": 19439, + "year_id": 19459, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19463, + "make_id": 19301, + "model_id": 19439, + "year_id": 19463, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19464, + "make_id": 19301, + "model_id": 19439, + "year_id": 19463, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19465, + "make_id": 19301, + "model_id": 19439, + "year_id": 19463, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19466, + "make_id": 19301, + "model_id": 19439, + "year_id": 19463, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19467, + "make_id": 19301, + "model_id": 19439, + "year_id": 19467, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19468, + "make_id": 19301, + "model_id": 19439, + "year_id": 19467, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19469, + "make_id": 19301, + "model_id": 19439, + "year_id": 19467, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19470, + "make_id": 19301, + "model_id": 19439, + "year_id": 19470, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19471, + "make_id": 19301, + "model_id": 19439, + "year_id": 19470, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19472, + "make_id": 19301, + "model_id": 19439, + "year_id": 19470, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19473, + "make_id": 19301, + "model_id": 19439, + "year_id": 19473, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19474, + "make_id": 19301, + "model_id": 19439, + "year_id": 19473, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19475, + "make_id": 19301, + "model_id": 19439, + "year_id": 19473, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19476, + "make_id": 19301, + "model_id": 19439, + "year_id": 19476, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19477, + "make_id": 19301, + "model_id": 19439, + "year_id": 19476, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19478, + "make_id": 19301, + "model_id": 19478, + "year_id": 19478, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19479, + "make_id": 19301, + "model_id": 19478, + "year_id": 19479, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19480, + "make_id": 19301, + "model_id": 19478, + "year_id": 19480, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19481, + "make_id": 19301, + "model_id": 19478, + "year_id": 19481, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19482, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19483, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19484, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19485, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19486, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19487, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19488, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19489, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19490, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19491, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19492, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19493, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19494, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19495, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19496, + "make_id": 19301, + "model_id": 19482, + "year_id": 19482, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19497, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19498, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19499, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19500, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19501, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19502, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19503, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19504, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19505, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19506, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19507, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19508, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19509, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19510, + "make_id": 19301, + "model_id": 19482, + "year_id": 19497, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19511, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19512, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19513, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19514, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19515, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19516, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19517, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19518, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19519, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19520, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19521, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19522, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19523, + "make_id": 19301, + "model_id": 19482, + "year_id": 19511, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19524, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19525, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19526, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19527, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19528, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19529, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19530, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19531, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19532, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19533, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19534, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19535, + "make_id": 19301, + "model_id": 19482, + "year_id": 19524, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19536, + "make_id": 19301, + "model_id": 19482, + "year_id": 19536, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19537, + "make_id": 19301, + "model_id": 19482, + "year_id": 19536, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19538, + "make_id": 19301, + "model_id": 19482, + "year_id": 19536, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19539, + "make_id": 19301, + "model_id": 19482, + "year_id": 19536, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19540, + "make_id": 19301, + "model_id": 19482, + "year_id": 19536, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19541, + "make_id": 19301, + "model_id": 19482, + "year_id": 19541, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19542, + "make_id": 19301, + "model_id": 19482, + "year_id": 19541, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19543, + "make_id": 19301, + "model_id": 19482, + "year_id": 19541, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19544, + "make_id": 19301, + "model_id": 19482, + "year_id": 19541, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19545, + "make_id": 19301, + "model_id": 19482, + "year_id": 19545, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19546, + "make_id": 19301, + "model_id": 19482, + "year_id": 19545, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19547, + "make_id": 19301, + "model_id": 19482, + "year_id": 19545, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19548, + "make_id": 19301, + "model_id": 19482, + "year_id": 19545, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19549, + "make_id": 19301, + "model_id": 19482, + "year_id": 19549, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19550, + "make_id": 19301, + "model_id": 19482, + "year_id": 19549, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19551, + "make_id": 19301, + "model_id": 19482, + "year_id": 19549, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19552, + "make_id": 19301, + "model_id": 19482, + "year_id": 19549, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19553, + "make_id": 19301, + "model_id": 19482, + "year_id": 19549, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19554, + "make_id": 19301, + "model_id": 19482, + "year_id": 19554, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19555, + "make_id": 19301, + "model_id": 19482, + "year_id": 19554, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19556, + "make_id": 19301, + "model_id": 19482, + "year_id": 19554, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19557, + "make_id": 19301, + "model_id": 19482, + "year_id": 19554, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19558, + "make_id": 19301, + "model_id": 19482, + "year_id": 19554, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19559, + "make_id": 19301, + "model_id": 19482, + "year_id": 19559, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19560, + "make_id": 19301, + "model_id": 19482, + "year_id": 19559, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19561, + "make_id": 19301, + "model_id": 19482, + "year_id": 19559, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19562, + "make_id": 19301, + "model_id": 19482, + "year_id": 19559, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19563, + "make_id": 19301, + "model_id": 19482, + "year_id": 19559, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19564, + "make_id": 19301, + "model_id": 19482, + "year_id": 19564, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19565, + "make_id": 19301, + "model_id": 19482, + "year_id": 19564, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19566, + "make_id": 19301, + "model_id": 19482, + "year_id": 19564, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19567, + "make_id": 19301, + "model_id": 19482, + "year_id": 19564, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19568, + "make_id": 19301, + "model_id": 19482, + "year_id": 19564, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19569, + "make_id": 19301, + "model_id": 19482, + "year_id": 19564, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19570, + "make_id": 19301, + "model_id": 19482, + "year_id": 19570, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19571, + "make_id": 19301, + "model_id": 19482, + "year_id": 19570, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19572, + "make_id": 19301, + "model_id": 19482, + "year_id": 19570, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19573, + "make_id": 19301, + "model_id": 19573, + "year_id": 19573, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19574, + "make_id": 19301, + "model_id": 19573, + "year_id": 19574, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19575, + "make_id": 19301, + "model_id": 19573, + "year_id": 19575, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19576, + "make_id": 19301, + "model_id": 19573, + "year_id": 19576, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19577, + "make_id": 19301, + "model_id": 19573, + "year_id": 19577, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19578, + "make_id": 19301, + "model_id": 19578, + "year_id": 19578, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19579, + "make_id": 19301, + "model_id": 19578, + "year_id": 19578, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19580, + "make_id": 19301, + "model_id": 19578, + "year_id": 19578, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19581, + "make_id": 19301, + "model_id": 19578, + "year_id": 19578, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19582, + "make_id": 19301, + "model_id": 19578, + "year_id": 19578, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19583, + "make_id": 19301, + "model_id": 19578, + "year_id": 19583, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19584, + "make_id": 19301, + "model_id": 19578, + "year_id": 19583, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19585, + "make_id": 19301, + "model_id": 19578, + "year_id": 19583, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19586, + "make_id": 19301, + "model_id": 19578, + "year_id": 19583, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19587, + "make_id": 19301, + "model_id": 19578, + "year_id": 19583, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19588, + "make_id": 19301, + "model_id": 19578, + "year_id": 19588, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19589, + "make_id": 19301, + "model_id": 19578, + "year_id": 19588, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19590, + "make_id": 19301, + "model_id": 19578, + "year_id": 19588, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19591, + "make_id": 19301, + "model_id": 19578, + "year_id": 19588, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19592, + "make_id": 19301, + "model_id": 19578, + "year_id": 19588, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19593, + "make_id": 19301, + "model_id": 19578, + "year_id": 19593, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19594, + "make_id": 19301, + "model_id": 19578, + "year_id": 19593, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19595, + "make_id": 19301, + "model_id": 19578, + "year_id": 19593, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19596, + "make_id": 19301, + "model_id": 19578, + "year_id": 19593, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19597, + "make_id": 19301, + "model_id": 19578, + "year_id": 19593, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19598, + "make_id": 19301, + "model_id": 19578, + "year_id": 19598, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19599, + "make_id": 19301, + "model_id": 19578, + "year_id": 19598, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19600, + "make_id": 19301, + "model_id": 19578, + "year_id": 19598, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19601, + "make_id": 19301, + "model_id": 19578, + "year_id": 19598, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19602, + "make_id": 19301, + "model_id": 19578, + "year_id": 19598, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19603, + "make_id": 19301, + "model_id": 19578, + "year_id": 19603, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19604, + "make_id": 19301, + "model_id": 19578, + "year_id": 19603, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19605, + "make_id": 19301, + "model_id": 19578, + "year_id": 19603, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19606, + "make_id": 19301, + "model_id": 19578, + "year_id": 19603, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19607, + "make_id": 19301, + "model_id": 19578, + "year_id": 19603, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19608, + "make_id": 19301, + "model_id": 19578, + "year_id": 19608, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19609, + "make_id": 19301, + "model_id": 19578, + "year_id": 19608, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19610, + "make_id": 19301, + "model_id": 19578, + "year_id": 19608, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19611, + "make_id": 19301, + "model_id": 19578, + "year_id": 19608, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19612, + "make_id": 19301, + "model_id": 19578, + "year_id": 19608, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19613, + "make_id": 19301, + "model_id": 19578, + "year_id": 19613, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19614, + "make_id": 19301, + "model_id": 19578, + "year_id": 19613, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19615, + "make_id": 19301, + "model_id": 19578, + "year_id": 19613, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19616, + "make_id": 19301, + "model_id": 19578, + "year_id": 19613, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19617, + "make_id": 19301, + "model_id": 19578, + "year_id": 19613, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19618, + "make_id": 19301, + "model_id": 19578, + "year_id": 19618, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19619, + "make_id": 19301, + "model_id": 19578, + "year_id": 19618, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19620, + "make_id": 19301, + "model_id": 19578, + "year_id": 19618, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19621, + "make_id": 19301, + "model_id": 19578, + "year_id": 19618, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19622, + "make_id": 19301, + "model_id": 19578, + "year_id": 19618, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19623, + "make_id": 19301, + "model_id": 19578, + "year_id": 19623, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19624, + "make_id": 19301, + "model_id": 19578, + "year_id": 19623, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19625, + "make_id": 19301, + "model_id": 19578, + "year_id": 19623, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19626, + "make_id": 19301, + "model_id": 19578, + "year_id": 19623, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19627, + "make_id": 19301, + "model_id": 19578, + "year_id": 19623, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19628, + "make_id": 19301, + "model_id": 19578, + "year_id": 19628, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19629, + "make_id": 19301, + "model_id": 19578, + "year_id": 19628, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19630, + "make_id": 19301, + "model_id": 19578, + "year_id": 19628, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19631, + "make_id": 19301, + "model_id": 19578, + "year_id": 19628, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19632, + "make_id": 19301, + "model_id": 19578, + "year_id": 19628, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19633, + "make_id": 19301, + "model_id": 19578, + "year_id": 19628, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19634, + "make_id": 19301, + "model_id": 19578, + "year_id": 19634, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19635, + "make_id": 19301, + "model_id": 19578, + "year_id": 19634, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19636, + "make_id": 19301, + "model_id": 19578, + "year_id": 19634, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19637, + "make_id": 19301, + "model_id": 19578, + "year_id": 19634, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19638, + "make_id": 19301, + "model_id": 19578, + "year_id": 19634, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19639, + "make_id": 19301, + "model_id": 19578, + "year_id": 19634, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19640, + "make_id": 19301, + "model_id": 19578, + "year_id": 19640, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19641, + "make_id": 19301, + "model_id": 19578, + "year_id": 19640, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19642, + "make_id": 19301, + "model_id": 19578, + "year_id": 19640, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19643, + "make_id": 19301, + "model_id": 19578, + "year_id": 19640, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19644, + "make_id": 19301, + "model_id": 19578, + "year_id": 19640, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19645, + "make_id": 19301, + "model_id": 19578, + "year_id": 19645, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19646, + "make_id": 19301, + "model_id": 19578, + "year_id": 19645, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19647, + "make_id": 19301, + "model_id": 19578, + "year_id": 19645, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19648, + "make_id": 19301, + "model_id": 19578, + "year_id": 19645, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19649, + "make_id": 19301, + "model_id": 19578, + "year_id": 19645, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19650, + "make_id": 19301, + "model_id": 19578, + "year_id": 19645, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19651, + "make_id": 19301, + "model_id": 19651, + "year_id": 19651, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19652, + "make_id": 19301, + "model_id": 19651, + "year_id": 19651, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19653, + "make_id": 19301, + "model_id": 19651, + "year_id": 19651, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19654, + "make_id": 19301, + "model_id": 19651, + "year_id": 19651, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19655, + "make_id": 19301, + "model_id": 19651, + "year_id": 19651, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19656, + "make_id": 19301, + "model_id": 19651, + "year_id": 19656, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19657, + "make_id": 19301, + "model_id": 19651, + "year_id": 19656, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19658, + "make_id": 19301, + "model_id": 19651, + "year_id": 19656, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19659, + "make_id": 19301, + "model_id": 19651, + "year_id": 19656, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19660, + "make_id": 19301, + "model_id": 19651, + "year_id": 19656, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19661, + "make_id": 19301, + "model_id": 19651, + "year_id": 19661, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19662, + "make_id": 19301, + "model_id": 19651, + "year_id": 19661, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19663, + "make_id": 19301, + "model_id": 19651, + "year_id": 19661, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19664, + "make_id": 19301, + "model_id": 19651, + "year_id": 19661, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19665, + "make_id": 19301, + "model_id": 19665, + "year_id": 19665, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19666, + "make_id": 19301, + "model_id": 19665, + "year_id": 19665, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19667, + "make_id": 19301, + "model_id": 19665, + "year_id": 19665, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19668, + "make_id": 19301, + "model_id": 19665, + "year_id": 19668, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19669, + "make_id": 19301, + "model_id": 19665, + "year_id": 19668, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19670, + "make_id": 19301, + "model_id": 19665, + "year_id": 19668, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19671, + "make_id": 19301, + "model_id": 19665, + "year_id": 19671, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19672, + "make_id": 19301, + "model_id": 19665, + "year_id": 19671, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19673, + "make_id": 19301, + "model_id": 19665, + "year_id": 19671, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19674, + "make_id": 19301, + "model_id": 19665, + "year_id": 19674, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19675, + "make_id": 19301, + "model_id": 19665, + "year_id": 19674, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19676, + "make_id": 19301, + "model_id": 19665, + "year_id": 19674, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19677, + "make_id": 19301, + "model_id": 19677, + "year_id": 19677, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19678, + "make_id": 19301, + "model_id": 19677, + "year_id": 19677, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19679, + "make_id": 19301, + "model_id": 19677, + "year_id": 19679, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19680, + "make_id": 19301, + "model_id": 19677, + "year_id": 19680, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19681, + "make_id": 19301, + "model_id": 19677, + "year_id": 19680, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19682, + "make_id": 19301, + "model_id": 19677, + "year_id": 19680, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19683, + "make_id": 19301, + "model_id": 19677, + "year_id": 19683, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19684, + "make_id": 19301, + "model_id": 19677, + "year_id": 19683, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19685, + "make_id": 19301, + "model_id": 19677, + "year_id": 19683, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19686, + "make_id": 19301, + "model_id": 19677, + "year_id": 19686, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19687, + "make_id": 19301, + "model_id": 19677, + "year_id": 19686, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19688, + "make_id": 19301, + "model_id": 19677, + "year_id": 19688, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19689, + "make_id": 19301, + "model_id": 19677, + "year_id": 19688, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19690, + "make_id": 19301, + "model_id": 19677, + "year_id": 19688, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19691, + "make_id": 19301, + "model_id": 19677, + "year_id": 19691, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19692, + "make_id": 19301, + "model_id": 19677, + "year_id": 19691, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19693, + "make_id": 19301, + "model_id": 19677, + "year_id": 19691, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19694, + "make_id": 19301, + "model_id": 19677, + "year_id": 19691, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19695, + "make_id": 19301, + "model_id": 19677, + "year_id": 19695, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19696, + "make_id": 19301, + "model_id": 19677, + "year_id": 19695, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19697, + "make_id": 19301, + "model_id": 19677, + "year_id": 19695, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19698, + "make_id": 19301, + "model_id": 19677, + "year_id": 19695, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19699, + "make_id": 19301, + "model_id": 19677, + "year_id": 19699, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19700, + "make_id": 19301, + "model_id": 19677, + "year_id": 19699, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19701, + "make_id": 19301, + "model_id": 19677, + "year_id": 19699, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19702, + "make_id": 19301, + "model_id": 19677, + "year_id": 19699, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19703, + "make_id": 19301, + "model_id": 19677, + "year_id": 19703, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19704, + "make_id": 19301, + "model_id": 19677, + "year_id": 19703, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19705, + "make_id": 19301, + "model_id": 19677, + "year_id": 19703, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19706, + "make_id": 19301, + "model_id": 19677, + "year_id": 19703, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19707, + "make_id": 19301, + "model_id": 19677, + "year_id": 19707, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19708, + "make_id": 19301, + "model_id": 19677, + "year_id": 19707, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19709, + "make_id": 19301, + "model_id": 19677, + "year_id": 19707, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19710, + "make_id": 19301, + "model_id": 19677, + "year_id": 19707, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19711, + "make_id": 19301, + "model_id": 19677, + "year_id": 19711, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19712, + "make_id": 19301, + "model_id": 19677, + "year_id": 19711, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19713, + "make_id": 19301, + "model_id": 19677, + "year_id": 19711, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19714, + "make_id": 19301, + "model_id": 19677, + "year_id": 19711, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19715, + "make_id": 19301, + "model_id": 19677, + "year_id": 19715, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19716, + "make_id": 19301, + "model_id": 19677, + "year_id": 19715, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19717, + "make_id": 19301, + "model_id": 19677, + "year_id": 19717, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19718, + "make_id": 19301, + "model_id": 19677, + "year_id": 19717, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19719, + "make_id": 19301, + "model_id": 19677, + "year_id": 19719, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19720, + "make_id": 19301, + "model_id": 19677, + "year_id": 19719, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19721, + "make_id": 19301, + "model_id": 19677, + "year_id": 19721, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19722, + "make_id": 19301, + "model_id": 19677, + "year_id": 19721, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19723, + "make_id": 19301, + "model_id": 19677, + "year_id": 19723, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19724, + "make_id": 19301, + "model_id": 19677, + "year_id": 19723, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19725, + "make_id": 19301, + "model_id": 19677, + "year_id": 19723, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19726, + "make_id": 19301, + "model_id": 19677, + "year_id": 19726, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19727, + "make_id": 19301, + "model_id": 19677, + "year_id": 19726, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19728, + "make_id": 19301, + "model_id": 19677, + "year_id": 19726, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19729, + "make_id": 19301, + "model_id": 19677, + "year_id": 19729, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19730, + "make_id": 19301, + "model_id": 19677, + "year_id": 19729, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19731, + "make_id": 19301, + "model_id": 19677, + "year_id": 19729, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19732, + "make_id": 19301, + "model_id": 19732, + "year_id": 19732, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19733, + "make_id": 19301, + "model_id": 19732, + "year_id": 19733, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19734, + "make_id": 19301, + "model_id": 19732, + "year_id": 19734, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19735, + "make_id": 19735, + "model_id": 19735, + "year_id": 19735, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19736, + "make_id": 19735, + "model_id": 19736, + "year_id": 19736, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19737, + "make_id": 19735, + "model_id": 19737, + "year_id": 19737, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19738, + "make_id": 19735, + "model_id": 19738, + "year_id": 19738, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19739, + "make_id": 19735, + "model_id": 19739, + "year_id": 19739, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19740, + "make_id": 19735, + "model_id": 19739, + "year_id": 19740, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19741, + "make_id": 19735, + "model_id": 19741, + "year_id": 19741, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19742, + "make_id": 19735, + "model_id": 19742, + "year_id": 19742, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19743, + "make_id": 19735, + "model_id": 19743, + "year_id": 19743, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19744, + "make_id": 19735, + "model_id": 19743, + "year_id": 19744, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19745, + "make_id": 19735, + "model_id": 19745, + "year_id": 19745, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19746, + "make_id": 19735, + "model_id": 19745, + "year_id": 19746, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19747, + "make_id": 19735, + "model_id": 19747, + "year_id": 19747, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19748, + "make_id": 19735, + "model_id": 19747, + "year_id": 19748, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19749, + "make_id": 19735, + "model_id": 19749, + "year_id": 19749, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19750, + "make_id": 19735, + "model_id": 19749, + "year_id": 19750, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19751, + "make_id": 19735, + "model_id": 19751, + "year_id": 19751, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19752, + "make_id": 19735, + "model_id": 19751, + "year_id": 19752, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19753, + "make_id": 19735, + "model_id": 19753, + "year_id": 19753, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19754, + "make_id": 19735, + "model_id": 19753, + "year_id": 19754, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19755, + "make_id": 19735, + "model_id": 19755, + "year_id": 19755, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19756, + "make_id": 19735, + "model_id": 19755, + "year_id": 19756, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19757, + "make_id": 19735, + "model_id": 19757, + "year_id": 19757, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19758, + "make_id": 19735, + "model_id": 19757, + "year_id": 19758, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19759, + "make_id": 19735, + "model_id": 19759, + "year_id": 19759, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19760, + "make_id": 19735, + "model_id": 19759, + "year_id": 19760, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19761, + "make_id": 19735, + "model_id": 19761, + "year_id": 19761, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19762, + "make_id": 19735, + "model_id": 19761, + "year_id": 19762, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19763, + "make_id": 19735, + "model_id": 19763, + "year_id": 19763, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 19764, + "make_id": 19735, + "model_id": 19764, + "year_id": 19764, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19765, + "make_id": 19735, + "model_id": 19765, + "year_id": 19765, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19766, + "make_id": 19735, + "model_id": 19766, + "year_id": 19766, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19767, + "make_id": 19735, + "model_id": 19766, + "year_id": 19766, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19768, + "make_id": 19735, + "model_id": 19766, + "year_id": 19768, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19769, + "make_id": 19735, + "model_id": 19766, + "year_id": 19769, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19770, + "make_id": 19735, + "model_id": 19766, + "year_id": 19769, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19771, + "make_id": 19771, + "model_id": 19771, + "year_id": 19771, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19772, + "make_id": 19771, + "model_id": 19772, + "year_id": 19772, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19773, + "make_id": 19771, + "model_id": 19772, + "year_id": 19773, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19774, + "make_id": 19771, + "model_id": 19772, + "year_id": 19774, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19775, + "make_id": 19771, + "model_id": 19772, + "year_id": 19774, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19776, + "make_id": 19771, + "model_id": 19772, + "year_id": 19776, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19777, + "make_id": 19771, + "model_id": 19772, + "year_id": 19776, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19778, + "make_id": 19771, + "model_id": 19778, + "year_id": 19778, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19779, + "make_id": 19771, + "model_id": 19778, + "year_id": 19779, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19780, + "make_id": 19771, + "model_id": 19778, + "year_id": 19779, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19781, + "make_id": 19771, + "model_id": 19778, + "year_id": 19781, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19782, + "make_id": 19771, + "model_id": 19778, + "year_id": 19781, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19783, + "make_id": 19771, + "model_id": 19783, + "year_id": 19783, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19784, + "make_id": 19771, + "model_id": 19783, + "year_id": 19783, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19785, + "make_id": 19771, + "model_id": 19783, + "year_id": 19785, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19786, + "make_id": 19771, + "model_id": 19786, + "year_id": 19786, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19787, + "make_id": 19771, + "model_id": 19786, + "year_id": 19787, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19788, + "make_id": 19771, + "model_id": 19786, + "year_id": 19788, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19789, + "make_id": 19771, + "model_id": 19789, + "year_id": 19789, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19790, + "make_id": 19771, + "model_id": 19789, + "year_id": 19790, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19791, + "make_id": 19771, + "model_id": 19789, + "year_id": 19791, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19792, + "make_id": 19771, + "model_id": 19789, + "year_id": 19791, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19793, + "make_id": 19771, + "model_id": 19789, + "year_id": 19791, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19794, + "make_id": 19771, + "model_id": 19789, + "year_id": 19794, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19795, + "make_id": 19771, + "model_id": 19789, + "year_id": 19794, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19796, + "make_id": 19771, + "model_id": 19789, + "year_id": 19794, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19797, + "make_id": 19771, + "model_id": 19797, + "year_id": 19797, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19798, + "make_id": 19771, + "model_id": 19797, + "year_id": 19798, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19799, + "make_id": 19771, + "model_id": 19797, + "year_id": 19798, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19800, + "make_id": 19771, + "model_id": 19797, + "year_id": 19798, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19801, + "make_id": 19771, + "model_id": 19797, + "year_id": 19801, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19802, + "make_id": 19771, + "model_id": 19797, + "year_id": 19801, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19803, + "make_id": 19771, + "model_id": 19797, + "year_id": 19801, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 19804, + "make_id": 19771, + "model_id": 19804, + "year_id": 19804, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19805, + "make_id": 19771, + "model_id": 19804, + "year_id": 19805, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19806, + "make_id": 19771, + "model_id": 19806, + "year_id": 19806, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19807, + "make_id": 19771, + "model_id": 19806, + "year_id": 19806, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19808, + "make_id": 19771, + "model_id": 19806, + "year_id": 19808, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19809, + "make_id": 19771, + "model_id": 19806, + "year_id": 19808, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19810, + "make_id": 19771, + "model_id": 19810, + "year_id": 19810, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19811, + "make_id": 19771, + "model_id": 19811, + "year_id": 19811, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19812, + "make_id": 19771, + "model_id": 19812, + "year_id": 19812, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19813, + "make_id": 19771, + "model_id": 19812, + "year_id": 19812, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19814, + "make_id": 19771, + "model_id": 19812, + "year_id": 19814, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19815, + "make_id": 19771, + "model_id": 19812, + "year_id": 19814, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19816, + "make_id": 19771, + "model_id": 19812, + "year_id": 19816, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19817, + "make_id": 19771, + "model_id": 19812, + "year_id": 19816, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19818, + "make_id": 19771, + "model_id": 19812, + "year_id": 19818, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19819, + "make_id": 19771, + "model_id": 19812, + "year_id": 19819, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19820, + "make_id": 19771, + "model_id": 19812, + "year_id": 19820, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19821, + "make_id": 19771, + "model_id": 19821, + "year_id": 19821, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19822, + "make_id": 19771, + "model_id": 19821, + "year_id": 19822, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19823, + "make_id": 19771, + "model_id": 19821, + "year_id": 19823, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19824, + "make_id": 19771, + "model_id": 19821, + "year_id": 19824, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19825, + "make_id": 19771, + "model_id": 19821, + "year_id": 19825, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19826, + "make_id": 19771, + "model_id": 19821, + "year_id": 19826, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19827, + "make_id": 19771, + "model_id": 19827, + "year_id": 19827, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19828, + "make_id": 19771, + "model_id": 19827, + "year_id": 19828, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19829, + "make_id": 19771, + "model_id": 19827, + "year_id": 19829, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19830, + "make_id": 19771, + "model_id": 19827, + "year_id": 19830, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19831, + "make_id": 19771, + "model_id": 19827, + "year_id": 19831, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19832, + "make_id": 19771, + "model_id": 19827, + "year_id": 19832, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19833, + "make_id": 19771, + "model_id": 19833, + "year_id": 19833, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19834, + "make_id": 19771, + "model_id": 19833, + "year_id": 19834, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19835, + "make_id": 19771, + "model_id": 19833, + "year_id": 19835, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19836, + "make_id": 19771, + "model_id": 19833, + "year_id": 19836, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19837, + "make_id": 19771, + "model_id": 19833, + "year_id": 19837, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19838, + "make_id": 19771, + "model_id": 19833, + "year_id": 19838, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19839, + "make_id": 19771, + "model_id": 19833, + "year_id": 19839, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19840, + "make_id": 19771, + "model_id": 19840, + "year_id": 19840, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19841, + "make_id": 19771, + "model_id": 19840, + "year_id": 19841, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19842, + "make_id": 19771, + "model_id": 19840, + "year_id": 19842, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19843, + "make_id": 19771, + "model_id": 19840, + "year_id": 19843, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19844, + "make_id": 19771, + "model_id": 19840, + "year_id": 19844, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19845, + "make_id": 19771, + "model_id": 19840, + "year_id": 19845, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19846, + "make_id": 19771, + "model_id": 19840, + "year_id": 19846, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19847, + "make_id": 19771, + "model_id": 19840, + "year_id": 19847, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19848, + "make_id": 19771, + "model_id": 19848, + "year_id": 19848, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19849, + "make_id": 19771, + "model_id": 19849, + "year_id": 19849, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19850, + "make_id": 19771, + "model_id": 19849, + "year_id": 19850, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19851, + "make_id": 19771, + "model_id": 19851, + "year_id": 19851, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19852, + "make_id": 19771, + "model_id": 19852, + "year_id": 19852, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19853, + "make_id": 19771, + "model_id": 19853, + "year_id": 19853, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19854, + "make_id": 19771, + "model_id": 19853, + "year_id": 19854, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19855, + "make_id": 19771, + "model_id": 19853, + "year_id": 19855, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19856, + "make_id": 19771, + "model_id": 19853, + "year_id": 19856, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19857, + "make_id": 19771, + "model_id": 19857, + "year_id": 19857, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19858, + "make_id": 19771, + "model_id": 19857, + "year_id": 19857, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19859, + "make_id": 19771, + "model_id": 19857, + "year_id": 19857, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19860, + "make_id": 19771, + "model_id": 19857, + "year_id": 19857, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19861, + "make_id": 19771, + "model_id": 19857, + "year_id": 19861, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19862, + "make_id": 19771, + "model_id": 19857, + "year_id": 19861, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19863, + "make_id": 19771, + "model_id": 19857, + "year_id": 19861, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19864, + "make_id": 19771, + "model_id": 19857, + "year_id": 19861, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19865, + "make_id": 19771, + "model_id": 19857, + "year_id": 19865, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19866, + "make_id": 19771, + "model_id": 19857, + "year_id": 19865, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19867, + "make_id": 19771, + "model_id": 19857, + "year_id": 19867, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19868, + "make_id": 19771, + "model_id": 19857, + "year_id": 19867, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19869, + "make_id": 19771, + "model_id": 19857, + "year_id": 19867, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19870, + "make_id": 19771, + "model_id": 19857, + "year_id": 19867, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19871, + "make_id": 19771, + "model_id": 19857, + "year_id": 19871, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19872, + "make_id": 19771, + "model_id": 19857, + "year_id": 19871, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19873, + "make_id": 19771, + "model_id": 19857, + "year_id": 19873, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19874, + "make_id": 19771, + "model_id": 19857, + "year_id": 19874, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19875, + "make_id": 19771, + "model_id": 19875, + "year_id": 19875, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19876, + "make_id": 19771, + "model_id": 19875, + "year_id": 19875, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19877, + "make_id": 19771, + "model_id": 19875, + "year_id": 19875, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19878, + "make_id": 19771, + "model_id": 19875, + "year_id": 19875, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19879, + "make_id": 19771, + "model_id": 19875, + "year_id": 19879, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19880, + "make_id": 19771, + "model_id": 19875, + "year_id": 19879, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 19881, + "make_id": 19771, + "model_id": 19875, + "year_id": 19881, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19882, + "make_id": 19771, + "model_id": 19875, + "year_id": 19882, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19883, + "make_id": 19771, + "model_id": 19883, + "year_id": 19883, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19884, + "make_id": 19771, + "model_id": 19883, + "year_id": 19883, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19885, + "make_id": 19771, + "model_id": 19883, + "year_id": 19883, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19886, + "make_id": 19771, + "model_id": 19886, + "year_id": 19886, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19887, + "make_id": 19771, + "model_id": 19886, + "year_id": 19887, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19888, + "make_id": 19771, + "model_id": 19886, + "year_id": 19887, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19889, + "make_id": 19771, + "model_id": 19886, + "year_id": 19887, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19890, + "make_id": 19771, + "model_id": 19886, + "year_id": 19890, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19891, + "make_id": 19771, + "model_id": 19886, + "year_id": 19890, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19892, + "make_id": 19771, + "model_id": 19886, + "year_id": 19892, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19893, + "make_id": 19771, + "model_id": 19886, + "year_id": 19892, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19894, + "make_id": 19771, + "model_id": 19886, + "year_id": 19894, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19895, + "make_id": 19771, + "model_id": 19886, + "year_id": 19894, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19896, + "make_id": 19771, + "model_id": 19886, + "year_id": 19894, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19897, + "make_id": 19771, + "model_id": 19886, + "year_id": 19894, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19898, + "make_id": 19771, + "model_id": 19886, + "year_id": 19894, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19899, + "make_id": 19771, + "model_id": 19886, + "year_id": 19899, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19900, + "make_id": 19771, + "model_id": 19886, + "year_id": 19899, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19901, + "make_id": 19771, + "model_id": 19886, + "year_id": 19899, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19902, + "make_id": 19771, + "model_id": 19886, + "year_id": 19899, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19903, + "make_id": 19771, + "model_id": 19886, + "year_id": 19899, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19904, + "make_id": 19771, + "model_id": 19886, + "year_id": 19904, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19905, + "make_id": 19771, + "model_id": 19886, + "year_id": 19904, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19906, + "make_id": 19771, + "model_id": 19886, + "year_id": 19904, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19907, + "make_id": 19771, + "model_id": 19886, + "year_id": 19904, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19908, + "make_id": 19771, + "model_id": 19886, + "year_id": 19904, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19909, + "make_id": 19771, + "model_id": 19886, + "year_id": 19909, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19910, + "make_id": 19771, + "model_id": 19886, + "year_id": 19909, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19911, + "make_id": 19771, + "model_id": 19886, + "year_id": 19911, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19912, + "make_id": 19771, + "model_id": 19886, + "year_id": 19911, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19913, + "make_id": 19771, + "model_id": 19913, + "year_id": 19913, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19914, + "make_id": 19771, + "model_id": 19914, + "year_id": 19914, + "cylinders": 6, + "displacement": 4.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 19915, + "make_id": 19771, + "model_id": 19914, + "year_id": 19914, + "cylinders": 6, + "displacement": 4.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 19916, + "make_id": 19771, + "model_id": 19914, + "year_id": 19916, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19917, + "make_id": 19771, + "model_id": 19914, + "year_id": 19917, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19918, + "make_id": 19771, + "model_id": 19914, + "year_id": 19918, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19919, + "make_id": 19771, + "model_id": 19914, + "year_id": 19918, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19920, + "make_id": 19771, + "model_id": 19914, + "year_id": 19918, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19921, + "make_id": 19771, + "model_id": 19914, + "year_id": 19921, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19922, + "make_id": 19771, + "model_id": 19914, + "year_id": 19921, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19923, + "make_id": 19771, + "model_id": 19914, + "year_id": 19923, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19924, + "make_id": 19771, + "model_id": 19914, + "year_id": 19923, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19925, + "make_id": 19771, + "model_id": 19914, + "year_id": 19925, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19926, + "make_id": 19771, + "model_id": 19914, + "year_id": 19925, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19927, + "make_id": 19771, + "model_id": 19914, + "year_id": 19925, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19928, + "make_id": 19771, + "model_id": 19914, + "year_id": 19925, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19929, + "make_id": 19771, + "model_id": 19914, + "year_id": 19929, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19930, + "make_id": 19771, + "model_id": 19914, + "year_id": 19929, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19931, + "make_id": 19771, + "model_id": 19914, + "year_id": 19929, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19932, + "make_id": 19771, + "model_id": 19914, + "year_id": 19929, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19933, + "make_id": 19771, + "model_id": 19914, + "year_id": 19933, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19934, + "make_id": 19771, + "model_id": 19914, + "year_id": 19933, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19935, + "make_id": 19771, + "model_id": 19914, + "year_id": 19933, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19936, + "make_id": 19771, + "model_id": 19914, + "year_id": 19933, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19937, + "make_id": 19771, + "model_id": 19914, + "year_id": 19937, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19938, + "make_id": 19771, + "model_id": 19914, + "year_id": 19937, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19939, + "make_id": 19771, + "model_id": 19914, + "year_id": 19937, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19940, + "make_id": 19771, + "model_id": 19940, + "year_id": 19940, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19941, + "make_id": 19771, + "model_id": 19940, + "year_id": 19940, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19942, + "make_id": 19771, + "model_id": 19940, + "year_id": 19942, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19943, + "make_id": 19771, + "model_id": 19940, + "year_id": 19942, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19944, + "make_id": 19771, + "model_id": 19940, + "year_id": 19944, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19945, + "make_id": 19771, + "model_id": 19940, + "year_id": 19944, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19946, + "make_id": 19771, + "model_id": 19940, + "year_id": 19944, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19947, + "make_id": 19771, + "model_id": 19940, + "year_id": 19944, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19948, + "make_id": 19771, + "model_id": 19948, + "year_id": 19948, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19949, + "make_id": 19771, + "model_id": 19948, + "year_id": 19949, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19950, + "make_id": 19771, + "model_id": 19950, + "year_id": 19950, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19951, + "make_id": 19771, + "model_id": 19951, + "year_id": 19951, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19952, + "make_id": 19771, + "model_id": 19951, + "year_id": 19952, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19953, + "make_id": 19771, + "model_id": 19953, + "year_id": 19953, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19954, + "make_id": 19771, + "model_id": 19953, + "year_id": 19954, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19955, + "make_id": 19771, + "model_id": 19953, + "year_id": 19955, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19956, + "make_id": 19771, + "model_id": 19956, + "year_id": 19956, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19957, + "make_id": 19771, + "model_id": 19956, + "year_id": 19957, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 19958, + "make_id": 19771, + "model_id": 19956, + "year_id": 19958, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19959, + "make_id": 19771, + "model_id": 19956, + "year_id": 19958, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19960, + "make_id": 19771, + "model_id": 19956, + "year_id": 19960, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19961, + "make_id": 19771, + "model_id": 19956, + "year_id": 19961, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19962, + "make_id": 19771, + "model_id": 19956, + "year_id": 19962, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19963, + "make_id": 19771, + "model_id": 19956, + "year_id": 19963, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19964, + "make_id": 19771, + "model_id": 19956, + "year_id": 19964, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19965, + "make_id": 19771, + "model_id": 19956, + "year_id": 19965, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19966, + "make_id": 19771, + "model_id": 19956, + "year_id": 19966, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19967, + "make_id": 19771, + "model_id": 19956, + "year_id": 19967, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19968, + "make_id": 19771, + "model_id": 19956, + "year_id": 19968, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19969, + "make_id": 19771, + "model_id": 19969, + "year_id": 19969, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 19970, + "make_id": 19771, + "model_id": 19970, + "year_id": 19970, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19971, + "make_id": 19771, + "model_id": 19970, + "year_id": 19971, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19972, + "make_id": 19771, + "model_id": 19970, + "year_id": 19972, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19973, + "make_id": 19771, + "model_id": 19970, + "year_id": 19973, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19974, + "make_id": 19771, + "model_id": 19970, + "year_id": 19974, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19975, + "make_id": 19771, + "model_id": 19970, + "year_id": 19975, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19976, + "make_id": 19771, + "model_id": 19970, + "year_id": 19976, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19977, + "make_id": 19771, + "model_id": 19970, + "year_id": 19977, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19978, + "make_id": 19771, + "model_id": 19970, + "year_id": 19978, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19979, + "make_id": 19771, + "model_id": 19979, + "year_id": 19979, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19980, + "make_id": 19771, + "model_id": 19979, + "year_id": 19980, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19981, + "make_id": 19771, + "model_id": 19981, + "year_id": 19981, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19982, + "make_id": 19771, + "model_id": 19981, + "year_id": 19982, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19983, + "make_id": 19771, + "model_id": 19981, + "year_id": 19983, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19984, + "make_id": 19771, + "model_id": 19981, + "year_id": 19984, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 19985, + "make_id": 19771, + "model_id": 19985, + "year_id": 19985, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19986, + "make_id": 19771, + "model_id": 19981, + "year_id": 19986, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19987, + "make_id": 19771, + "model_id": 19981, + "year_id": 19987, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19988, + "make_id": 19771, + "model_id": 19981, + "year_id": 19988, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19989, + "make_id": 19771, + "model_id": 19981, + "year_id": 19989, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 19990, + "make_id": 19771, + "model_id": 19990, + "year_id": 19990, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19991, + "make_id": 19771, + "model_id": 19990, + "year_id": 19990, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19992, + "make_id": 19771, + "model_id": 19990, + "year_id": 19992, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19993, + "make_id": 19771, + "model_id": 19990, + "year_id": 19992, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19994, + "make_id": 19771, + "model_id": 19990, + "year_id": 19992, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19995, + "make_id": 19771, + "model_id": 19990, + "year_id": 19992, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19996, + "make_id": 19771, + "model_id": 19990, + "year_id": 19996, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19997, + "make_id": 19771, + "model_id": 19990, + "year_id": 19996, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19998, + "make_id": 19771, + "model_id": 19990, + "year_id": 19996, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 19999, + "make_id": 19771, + "model_id": 19990, + "year_id": 19996, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20000, + "make_id": 19771, + "model_id": 19990, + "year_id": 20000, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20001, + "make_id": 19771, + "model_id": 19990, + "year_id": 20000, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20002, + "make_id": 19771, + "model_id": 19990, + "year_id": 20000, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20003, + "make_id": 19771, + "model_id": 20003, + "year_id": 20003, + "cylinders": 6, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20004, + "make_id": 19771, + "model_id": 20003, + "year_id": 20004, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20005, + "make_id": 19771, + "model_id": 20003, + "year_id": 20005, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20006, + "make_id": 19771, + "model_id": 20003, + "year_id": 20006, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20007, + "make_id": 19771, + "model_id": 20003, + "year_id": 20007, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20008, + "make_id": 19771, + "model_id": 20003, + "year_id": 20008, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20009, + "make_id": 19771, + "model_id": 20003, + "year_id": 20009, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20010, + "make_id": 19771, + "model_id": 20003, + "year_id": 20010, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20011, + "make_id": 19771, + "model_id": 20003, + "year_id": 20011, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20012, + "make_id": 19771, + "model_id": 20003, + "year_id": 20012, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20013, + "make_id": 19771, + "model_id": 20003, + "year_id": 20013, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20014, + "make_id": 19771, + "model_id": 20003, + "year_id": 20014, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20015, + "make_id": 19771, + "model_id": 20015, + "year_id": 20015, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20016, + "make_id": 19771, + "model_id": 20015, + "year_id": 20016, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20017, + "make_id": 19771, + "model_id": 20017, + "year_id": 20017, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20018, + "make_id": 19771, + "model_id": 20018, + "year_id": 20018, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20019, + "make_id": 19771, + "model_id": 20019, + "year_id": 20019, + "cylinders": 12, + "displacement": 5.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 20020, + "make_id": 19771, + "model_id": 20019, + "year_id": 20020, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20021, + "make_id": 19771, + "model_id": 20019, + "year_id": 20021, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20022, + "make_id": 19771, + "model_id": 20019, + "year_id": 20022, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20023, + "make_id": 19771, + "model_id": 20023, + "year_id": 20023, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20024, + "make_id": 19771, + "model_id": 20023, + "year_id": 20023, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20025, + "make_id": 19771, + "model_id": 20023, + "year_id": 20025, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20026, + "make_id": 19771, + "model_id": 20023, + "year_id": 20026, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20027, + "make_id": 19771, + "model_id": 20023, + "year_id": 20027, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20028, + "make_id": 19771, + "model_id": 20023, + "year_id": 20028, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20029, + "make_id": 19771, + "model_id": 20023, + "year_id": 20028, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20030, + "make_id": 19771, + "model_id": 20023, + "year_id": 20030, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20031, + "make_id": 19771, + "model_id": 20023, + "year_id": 20030, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20032, + "make_id": 19771, + "model_id": 20023, + "year_id": 20030, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20033, + "make_id": 19771, + "model_id": 20023, + "year_id": 20033, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20034, + "make_id": 19771, + "model_id": 20023, + "year_id": 20034, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20035, + "make_id": 19771, + "model_id": 20035, + "year_id": 20035, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20036, + "make_id": 19771, + "model_id": 20035, + "year_id": 20035, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20037, + "make_id": 19771, + "model_id": 20035, + "year_id": 20037, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20038, + "make_id": 19771, + "model_id": 20035, + "year_id": 20038, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20039, + "make_id": 19771, + "model_id": 20035, + "year_id": 20039, + "cylinders": 12, + "displacement": 5.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20040, + "make_id": 19771, + "model_id": 20035, + "year_id": 20040, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20041, + "make_id": 19771, + "model_id": 20035, + "year_id": 20040, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20042, + "make_id": 19771, + "model_id": 20035, + "year_id": 20042, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20043, + "make_id": 19771, + "model_id": 20035, + "year_id": 20042, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20044, + "make_id": 19771, + "model_id": 20035, + "year_id": 20044, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20045, + "make_id": 19771, + "model_id": 20045, + "year_id": 20045, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20046, + "make_id": 19771, + "model_id": 20046, + "year_id": 20046, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20047, + "make_id": 19771, + "model_id": 20046, + "year_id": 20047, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20048, + "make_id": 19771, + "model_id": 20048, + "year_id": 20048, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20049, + "make_id": 19771, + "model_id": 20048, + "year_id": 20049, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20050, + "make_id": 19771, + "model_id": 20048, + "year_id": 20050, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20051, + "make_id": 19771, + "model_id": 20048, + "year_id": 20051, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20052, + "make_id": 19771, + "model_id": 20048, + "year_id": 20051, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20053, + "make_id": 19771, + "model_id": 20048, + "year_id": 20053, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20054, + "make_id": 19771, + "model_id": 20048, + "year_id": 20053, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20055, + "make_id": 19771, + "model_id": 20048, + "year_id": 20055, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20056, + "make_id": 19771, + "model_id": 20048, + "year_id": 20055, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20057, + "make_id": 19771, + "model_id": 20048, + "year_id": 20057, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20058, + "make_id": 19771, + "model_id": 20048, + "year_id": 20057, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20059, + "make_id": 19771, + "model_id": 20048, + "year_id": 20059, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20060, + "make_id": 19771, + "model_id": 20048, + "year_id": 20059, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20061, + "make_id": 19771, + "model_id": 20048, + "year_id": 20061, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20062, + "make_id": 19771, + "model_id": 20048, + "year_id": 20061, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20063, + "make_id": 19771, + "model_id": 20063, + "year_id": 20063, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20064, + "make_id": 19771, + "model_id": 20063, + "year_id": 20064, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20065, + "make_id": 19771, + "model_id": 20063, + "year_id": 20065, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20066, + "make_id": 19771, + "model_id": 20063, + "year_id": 20066, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20067, + "make_id": 19771, + "model_id": 20063, + "year_id": 20067, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20068, + "make_id": 19771, + "model_id": 20063, + "year_id": 20067, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20069, + "make_id": 19771, + "model_id": 20063, + "year_id": 20069, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20070, + "make_id": 19771, + "model_id": 20063, + "year_id": 20069, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20071, + "make_id": 19771, + "model_id": 20063, + "year_id": 20071, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20072, + "make_id": 19771, + "model_id": 20063, + "year_id": 20071, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20073, + "make_id": 19771, + "model_id": 20063, + "year_id": 20073, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20074, + "make_id": 19771, + "model_id": 20063, + "year_id": 20073, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20075, + "make_id": 19771, + "model_id": 20063, + "year_id": 20075, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20076, + "make_id": 19771, + "model_id": 20063, + "year_id": 20075, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20077, + "make_id": 19771, + "model_id": 20077, + "year_id": 20077, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20078, + "make_id": 19771, + "model_id": 20077, + "year_id": 20078, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20079, + "make_id": 19771, + "model_id": 20077, + "year_id": 20079, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20080, + "make_id": 19771, + "model_id": 20077, + "year_id": 20080, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20081, + "make_id": 19771, + "model_id": 20077, + "year_id": 20081, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20082, + "make_id": 19771, + "model_id": 20077, + "year_id": 20082, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20083, + "make_id": 19771, + "model_id": 20077, + "year_id": 20083, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20084, + "make_id": 19771, + "model_id": 20077, + "year_id": 20084, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20085, + "make_id": 19771, + "model_id": 20077, + "year_id": 20085, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20086, + "make_id": 19771, + "model_id": 20086, + "year_id": 20086, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20087, + "make_id": 19771, + "model_id": 20086, + "year_id": 20087, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20088, + "make_id": 19771, + "model_id": 20086, + "year_id": 20088, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20089, + "make_id": 19771, + "model_id": 20086, + "year_id": 20089, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20090, + "make_id": 19771, + "model_id": 20086, + "year_id": 20090, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20091, + "make_id": 19771, + "model_id": 20086, + "year_id": 20091, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20092, + "make_id": 19771, + "model_id": 20086, + "year_id": 20092, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20093, + "make_id": 19771, + "model_id": 20086, + "year_id": 20093, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20094, + "make_id": 19771, + "model_id": 20086, + "year_id": 20094, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20095, + "make_id": 19771, + "model_id": 20095, + "year_id": 20095, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20096, + "make_id": 19771, + "model_id": 20095, + "year_id": 20096, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20097, + "make_id": 19771, + "model_id": 20095, + "year_id": 20097, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20098, + "make_id": 19771, + "model_id": 20095, + "year_id": 20098, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20099, + "make_id": 19771, + "model_id": 20095, + "year_id": 20099, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20100, + "make_id": 19771, + "model_id": 20095, + "year_id": 20100, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20101, + "make_id": 19771, + "model_id": 20095, + "year_id": 20101, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20102, + "make_id": 19771, + "model_id": 20095, + "year_id": 20102, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20103, + "make_id": 19771, + "model_id": 20095, + "year_id": 20103, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20104, + "make_id": 19771, + "model_id": 20095, + "year_id": 20104, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20105, + "make_id": 19771, + "model_id": 20105, + "year_id": 20105, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20106, + "make_id": 19771, + "model_id": 20105, + "year_id": 20106, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20107, + "make_id": 19771, + "model_id": 20105, + "year_id": 20107, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20108, + "make_id": 19771, + "model_id": 20105, + "year_id": 20108, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20109, + "make_id": 19771, + "model_id": 20105, + "year_id": 20109, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20110, + "make_id": 19771, + "model_id": 20105, + "year_id": 20110, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20111, + "make_id": 19771, + "model_id": 20105, + "year_id": 20111, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20112, + "make_id": 19771, + "model_id": 20105, + "year_id": 20112, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20113, + "make_id": 19771, + "model_id": 20105, + "year_id": 20113, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20114, + "make_id": 19771, + "model_id": 20105, + "year_id": 20114, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20115, + "make_id": 20115, + "model_id": 20115, + "year_id": 20115, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20116, + "make_id": 20116, + "model_id": 20116, + "year_id": 20116, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20117, + "make_id": 20116, + "model_id": 20116, + "year_id": 20116, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20118, + "make_id": 20116, + "model_id": 20116, + "year_id": 20116, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20119, + "make_id": 20116, + "model_id": 20116, + "year_id": 20116, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20120, + "make_id": 20116, + "model_id": 20116, + "year_id": 20116, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20121, + "make_id": 20116, + "model_id": 20116, + "year_id": 20121, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20122, + "make_id": 20116, + "model_id": 20116, + "year_id": 20121, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20123, + "make_id": 20116, + "model_id": 20116, + "year_id": 20121, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20124, + "make_id": 20116, + "model_id": 20116, + "year_id": 20121, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20125, + "make_id": 20116, + "model_id": 20116, + "year_id": 20121, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20126, + "make_id": 20116, + "model_id": 20116, + "year_id": 20126, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20127, + "make_id": 20116, + "model_id": 20116, + "year_id": 20126, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20128, + "make_id": 20116, + "model_id": 20116, + "year_id": 20126, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20129, + "make_id": 20116, + "model_id": 20116, + "year_id": 20126, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20130, + "make_id": 20116, + "model_id": 20116, + "year_id": 20126, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20131, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20132, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20133, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20134, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20135, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20136, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20137, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20138, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20139, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20140, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20141, + "make_id": 20116, + "model_id": 20116, + "year_id": 20131, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20142, + "make_id": 20116, + "model_id": 20116, + "year_id": 20142, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20143, + "make_id": 20116, + "model_id": 20116, + "year_id": 20142, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20144, + "make_id": 20116, + "model_id": 20116, + "year_id": 20142, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20145, + "make_id": 20116, + "model_id": 20116, + "year_id": 20142, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20146, + "make_id": 20116, + "model_id": 20116, + "year_id": 20142, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20147, + "make_id": 20116, + "model_id": 20116, + "year_id": 20142, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20148, + "make_id": 20116, + "model_id": 20116, + "year_id": 20148, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20149, + "make_id": 20116, + "model_id": 20116, + "year_id": 20148, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20150, + "make_id": 20116, + "model_id": 20116, + "year_id": 20148, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20151, + "make_id": 20116, + "model_id": 20116, + "year_id": 20148, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20152, + "make_id": 20116, + "model_id": 20116, + "year_id": 20148, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20153, + "make_id": 20116, + "model_id": 20116, + "year_id": 20148, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20154, + "make_id": 20116, + "model_id": 20116, + "year_id": 20154, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20155, + "make_id": 20116, + "model_id": 20116, + "year_id": 20154, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20156, + "make_id": 20116, + "model_id": 20116, + "year_id": 20154, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20157, + "make_id": 20116, + "model_id": 20116, + "year_id": 20154, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20158, + "make_id": 20116, + "model_id": 20116, + "year_id": 20154, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20159, + "make_id": 20116, + "model_id": 20116, + "year_id": 20154, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20160, + "make_id": 20116, + "model_id": 20116, + "year_id": 20160, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20161, + "make_id": 20116, + "model_id": 20116, + "year_id": 20160, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20162, + "make_id": 20116, + "model_id": 20116, + "year_id": 20160, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20163, + "make_id": 20116, + "model_id": 20116, + "year_id": 20160, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20164, + "make_id": 20116, + "model_id": 20116, + "year_id": 20160, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20165, + "make_id": 20116, + "model_id": 20116, + "year_id": 20160, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20166, + "make_id": 20116, + "model_id": 20116, + "year_id": 20160, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20167, + "make_id": 20116, + "model_id": 20116, + "year_id": 20167, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20168, + "make_id": 20116, + "model_id": 20116, + "year_id": 20167, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20169, + "make_id": 20116, + "model_id": 20116, + "year_id": 20167, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20170, + "make_id": 20116, + "model_id": 20116, + "year_id": 20167, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20171, + "make_id": 20116, + "model_id": 20116, + "year_id": 20167, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20172, + "make_id": 20116, + "model_id": 20116, + "year_id": 20167, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20173, + "make_id": 20116, + "model_id": 20116, + "year_id": 20167, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20174, + "make_id": 20116, + "model_id": 20116, + "year_id": 20167, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20175, + "make_id": 20116, + "model_id": 20116, + "year_id": 20175, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20176, + "make_id": 20116, + "model_id": 20116, + "year_id": 20175, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20177, + "make_id": 20116, + "model_id": 20116, + "year_id": 20175, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20178, + "make_id": 20116, + "model_id": 20116, + "year_id": 20175, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20179, + "make_id": 20116, + "model_id": 20116, + "year_id": 20175, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20180, + "make_id": 20116, + "model_id": 20116, + "year_id": 20175, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20181, + "make_id": 20116, + "model_id": 20116, + "year_id": 20181, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20182, + "make_id": 20116, + "model_id": 20116, + "year_id": 20181, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20183, + "make_id": 20116, + "model_id": 20116, + "year_id": 20181, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20184, + "make_id": 20116, + "model_id": 20116, + "year_id": 20181, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "Auto(L4)" + }, + { + "id": 20185, + "make_id": 20116, + "model_id": 20116, + "year_id": 20181, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20186, + "make_id": 20116, + "model_id": 20116, + "year_id": 20181, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "Auto(L4)" + }, + { + "id": 20187, + "make_id": 20116, + "model_id": 20116, + "year_id": 20187, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20188, + "make_id": 20116, + "model_id": 20116, + "year_id": 20187, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20189, + "make_id": 20116, + "model_id": 20116, + "year_id": 20187, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20190, + "make_id": 20116, + "model_id": 20116, + "year_id": 20187, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20191, + "make_id": 20116, + "model_id": 20116, + "year_id": 20187, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20192, + "make_id": 20116, + "model_id": 20116, + "year_id": 20187, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20193, + "make_id": 20116, + "model_id": 20116, + "year_id": 20187, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20194, + "make_id": 20116, + "model_id": 20116, + "year_id": 20194, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20195, + "make_id": 20116, + "model_id": 20116, + "year_id": 20194, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20196, + "make_id": 20116, + "model_id": 20116, + "year_id": 20194, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20197, + "make_id": 20116, + "model_id": 20116, + "year_id": 20194, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20198, + "make_id": 20116, + "model_id": 20116, + "year_id": 20194, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20199, + "make_id": 20116, + "model_id": 20116, + "year_id": 20194, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20200, + "make_id": 20116, + "model_id": 20116, + "year_id": 20194, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20201, + "make_id": 20116, + "model_id": 20116, + "year_id": 20201, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20202, + "make_id": 20116, + "model_id": 20116, + "year_id": 20201, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20203, + "make_id": 20116, + "model_id": 20116, + "year_id": 20201, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20204, + "make_id": 20116, + "model_id": 20116, + "year_id": 20201, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20205, + "make_id": 20116, + "model_id": 20116, + "year_id": 20201, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20206, + "make_id": 20116, + "model_id": 20116, + "year_id": 20201, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20207, + "make_id": 20116, + "model_id": 20116, + "year_id": 20201, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20208, + "make_id": 20116, + "model_id": 20116, + "year_id": 20208, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20209, + "make_id": 20116, + "model_id": 20116, + "year_id": 20208, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20210, + "make_id": 20116, + "model_id": 20116, + "year_id": 20208, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20211, + "make_id": 20116, + "model_id": 20116, + "year_id": 20208, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20212, + "make_id": 20116, + "model_id": 20116, + "year_id": 20212, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20213, + "make_id": 20116, + "model_id": 20116, + "year_id": 20212, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20214, + "make_id": 20116, + "model_id": 20116, + "year_id": 20212, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20215, + "make_id": 20116, + "model_id": 20116, + "year_id": 20212, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20216, + "make_id": 20116, + "model_id": 20116, + "year_id": 20216, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20217, + "make_id": 20116, + "model_id": 20116, + "year_id": 20216, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20218, + "make_id": 20116, + "model_id": 20116, + "year_id": 20216, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20219, + "make_id": 20116, + "model_id": 20116, + "year_id": 20216, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20220, + "make_id": 20116, + "model_id": 20116, + "year_id": 20216, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20221, + "make_id": 20116, + "model_id": 20116, + "year_id": 20216, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20222, + "make_id": 20116, + "model_id": 20116, + "year_id": 20222, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20223, + "make_id": 20116, + "model_id": 20116, + "year_id": 20222, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20224, + "make_id": 20116, + "model_id": 20116, + "year_id": 20222, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20225, + "make_id": 20116, + "model_id": 20116, + "year_id": 20222, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20226, + "make_id": 20116, + "model_id": 20116, + "year_id": 20222, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20227, + "make_id": 20116, + "model_id": 20116, + "year_id": 20222, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20228, + "make_id": 20116, + "model_id": 20228, + "year_id": 20228, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20229, + "make_id": 20116, + "model_id": 20228, + "year_id": 20228, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20230, + "make_id": 20116, + "model_id": 20228, + "year_id": 20230, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20231, + "make_id": 20116, + "model_id": 20228, + "year_id": 20230, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20232, + "make_id": 20116, + "model_id": 20228, + "year_id": 20232, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20233, + "make_id": 20116, + "model_id": 20228, + "year_id": 20232, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20234, + "make_id": 20116, + "model_id": 20234, + "year_id": 20234, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20235, + "make_id": 20116, + "model_id": 20234, + "year_id": 20234, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20236, + "make_id": 20116, + "model_id": 20234, + "year_id": 20236, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20237, + "make_id": 20116, + "model_id": 20234, + "year_id": 20236, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20238, + "make_id": 20116, + "model_id": 20234, + "year_id": 20238, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20239, + "make_id": 20116, + "model_id": 20234, + "year_id": 20238, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20240, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20241, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20242, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20243, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20244, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20245, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20246, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20247, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20248, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20249, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20250, + "make_id": 20116, + "model_id": 20240, + "year_id": 20240, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20251, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20252, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20253, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20254, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20255, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20256, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20257, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20258, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20259, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20260, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20261, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20262, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20263, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20264, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20265, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20266, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20267, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20268, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20269, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20270, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20271, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20272, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20273, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20274, + "make_id": 20116, + "model_id": 20240, + "year_id": 20251, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20275, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20276, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20277, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20278, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20279, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20280, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20281, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20282, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20283, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20284, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20285, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20286, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20287, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20288, + "make_id": 20116, + "model_id": 20240, + "year_id": 20275, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20289, + "make_id": 20116, + "model_id": 20240, + "year_id": 20289, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20290, + "make_id": 20116, + "model_id": 20240, + "year_id": 20289, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20291, + "make_id": 20116, + "model_id": 20240, + "year_id": 20289, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20292, + "make_id": 20116, + "model_id": 20240, + "year_id": 20289, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20293, + "make_id": 20116, + "model_id": 20240, + "year_id": 20289, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20294, + "make_id": 20116, + "model_id": 20240, + "year_id": 20289, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20295, + "make_id": 20116, + "model_id": 20240, + "year_id": 20295, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20296, + "make_id": 20116, + "model_id": 20240, + "year_id": 20295, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20297, + "make_id": 20116, + "model_id": 20240, + "year_id": 20295, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20298, + "make_id": 20116, + "model_id": 20240, + "year_id": 20295, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20299, + "make_id": 20116, + "model_id": 20240, + "year_id": 20295, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20300, + "make_id": 20116, + "model_id": 20240, + "year_id": 20300, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20301, + "make_id": 20116, + "model_id": 20240, + "year_id": 20300, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20302, + "make_id": 20116, + "model_id": 20240, + "year_id": 20300, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20303, + "make_id": 20116, + "model_id": 20240, + "year_id": 20300, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20304, + "make_id": 20116, + "model_id": 20240, + "year_id": 20300, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20305, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20306, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20307, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20308, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20309, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20310, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20311, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20312, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20313, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20314, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20315, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20316, + "make_id": 20116, + "model_id": 20305, + "year_id": 20305, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20317, + "make_id": 20116, + "model_id": 20305, + "year_id": 20317, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20318, + "make_id": 20116, + "model_id": 20305, + "year_id": 20317, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20319, + "make_id": 20116, + "model_id": 20305, + "year_id": 20317, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20320, + "make_id": 20116, + "model_id": 20305, + "year_id": 20317, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20321, + "make_id": 20116, + "model_id": 20305, + "year_id": 20317, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20322, + "make_id": 20116, + "model_id": 20305, + "year_id": 20317, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20323, + "make_id": 20116, + "model_id": 20305, + "year_id": 20317, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20324, + "make_id": 20116, + "model_id": 20305, + "year_id": 20317, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20325, + "make_id": 20116, + "model_id": 20305, + "year_id": 20317, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20326, + "make_id": 20116, + "model_id": 20305, + "year_id": 20326, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20327, + "make_id": 20116, + "model_id": 20305, + "year_id": 20326, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20328, + "make_id": 20116, + "model_id": 20305, + "year_id": 20326, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20329, + "make_id": 20116, + "model_id": 20305, + "year_id": 20326, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20330, + "make_id": 20116, + "model_id": 20305, + "year_id": 20326, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20331, + "make_id": 20116, + "model_id": 20331, + "year_id": 20331, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20332, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20333, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20334, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20335, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20336, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20337, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20338, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20339, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20340, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20341, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20342, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20343, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20344, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20345, + "make_id": 20116, + "model_id": 20332, + "year_id": 20332, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20346, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20347, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20348, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20349, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20350, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20351, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20352, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20353, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20354, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20355, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20356, + "make_id": 20116, + "model_id": 20332, + "year_id": 20346, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20357, + "make_id": 20116, + "model_id": 20332, + "year_id": 20357, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20358, + "make_id": 20116, + "model_id": 20332, + "year_id": 20357, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20359, + "make_id": 20116, + "model_id": 20332, + "year_id": 20357, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20360, + "make_id": 20116, + "model_id": 20332, + "year_id": 20357, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20361, + "make_id": 20116, + "model_id": 20332, + "year_id": 20357, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20362, + "make_id": 20116, + "model_id": 20332, + "year_id": 20357, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20363, + "make_id": 20116, + "model_id": 20332, + "year_id": 20357, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20364, + "make_id": 20116, + "model_id": 20332, + "year_id": 20357, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20365, + "make_id": 20116, + "model_id": 20332, + "year_id": 20357, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20366, + "make_id": 20116, + "model_id": 20332, + "year_id": 20357, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20367, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20368, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20369, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20370, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20371, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20372, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20373, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20374, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20375, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20376, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20377, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20378, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20379, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20380, + "make_id": 20116, + "model_id": 20367, + "year_id": 20367, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20381, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20382, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20383, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20384, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20385, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20386, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20387, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20388, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20389, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20390, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20391, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20392, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20393, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20394, + "make_id": 20116, + "model_id": 20367, + "year_id": 20381, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20395, + "make_id": 20116, + "model_id": 20367, + "year_id": 20395, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20396, + "make_id": 20116, + "model_id": 20367, + "year_id": 20395, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20397, + "make_id": 20116, + "model_id": 20367, + "year_id": 20395, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20398, + "make_id": 20116, + "model_id": 20367, + "year_id": 20395, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20399, + "make_id": 20116, + "model_id": 20367, + "year_id": 20395, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20400, + "make_id": 20116, + "model_id": 20367, + "year_id": 20395, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20401, + "make_id": 20116, + "model_id": 20367, + "year_id": 20395, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20402, + "make_id": 20116, + "model_id": 20367, + "year_id": 20395, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20403, + "make_id": 20116, + "model_id": 20367, + "year_id": 20403, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20404, + "make_id": 20116, + "model_id": 20367, + "year_id": 20403, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20405, + "make_id": 20116, + "model_id": 20367, + "year_id": 20403, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20406, + "make_id": 20116, + "model_id": 20367, + "year_id": 20403, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20407, + "make_id": 20116, + "model_id": 20367, + "year_id": 20403, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20408, + "make_id": 20116, + "model_id": 20367, + "year_id": 20403, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20409, + "make_id": 20116, + "model_id": 20367, + "year_id": 20403, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20410, + "make_id": 20116, + "model_id": 20367, + "year_id": 20403, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20411, + "make_id": 20116, + "model_id": 20367, + "year_id": 20411, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20412, + "make_id": 20116, + "model_id": 20367, + "year_id": 20411, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20413, + "make_id": 20116, + "model_id": 20367, + "year_id": 20411, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20414, + "make_id": 20116, + "model_id": 20367, + "year_id": 20411, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20415, + "make_id": 20116, + "model_id": 20367, + "year_id": 20411, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20416, + "make_id": 20116, + "model_id": 20367, + "year_id": 20411, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20417, + "make_id": 20116, + "model_id": 20367, + "year_id": 20411, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20418, + "make_id": 20116, + "model_id": 20367, + "year_id": 20411, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20419, + "make_id": 20116, + "model_id": 20419, + "year_id": 20419, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20420, + "make_id": 20116, + "model_id": 20419, + "year_id": 20419, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20421, + "make_id": 20116, + "model_id": 20419, + "year_id": 20419, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20422, + "make_id": 20116, + "model_id": 20419, + "year_id": 20419, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20423, + "make_id": 20116, + "model_id": 20419, + "year_id": 20419, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20424, + "make_id": 20116, + "model_id": 20419, + "year_id": 20419, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20425, + "make_id": 20116, + "model_id": 20419, + "year_id": 20425, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20426, + "make_id": 20116, + "model_id": 20419, + "year_id": 20425, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20427, + "make_id": 20116, + "model_id": 20419, + "year_id": 20425, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20428, + "make_id": 20116, + "model_id": 20419, + "year_id": 20425, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20429, + "make_id": 20116, + "model_id": 20419, + "year_id": 20425, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20430, + "make_id": 20116, + "model_id": 20419, + "year_id": 20425, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20431, + "make_id": 20116, + "model_id": 20419, + "year_id": 20431, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20432, + "make_id": 20116, + "model_id": 20419, + "year_id": 20431, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20433, + "make_id": 20116, + "model_id": 20419, + "year_id": 20431, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20434, + "make_id": 20116, + "model_id": 20419, + "year_id": 20431, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20435, + "make_id": 20116, + "model_id": 20419, + "year_id": 20431, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20436, + "make_id": 20116, + "model_id": 20419, + "year_id": 20431, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20437, + "make_id": 20116, + "model_id": 20419, + "year_id": 20437, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20438, + "make_id": 20116, + "model_id": 20419, + "year_id": 20437, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20439, + "make_id": 20116, + "model_id": 20419, + "year_id": 20437, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20440, + "make_id": 20116, + "model_id": 20419, + "year_id": 20437, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20441, + "make_id": 20116, + "model_id": 20419, + "year_id": 20437, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20442, + "make_id": 20116, + "model_id": 20419, + "year_id": 20437, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20443, + "make_id": 20116, + "model_id": 20419, + "year_id": 20437, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20444, + "make_id": 20116, + "model_id": 20419, + "year_id": 20437, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20445, + "make_id": 20116, + "model_id": 20419, + "year_id": 20445, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20446, + "make_id": 20116, + "model_id": 20419, + "year_id": 20445, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20447, + "make_id": 20116, + "model_id": 20419, + "year_id": 20445, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20448, + "make_id": 20116, + "model_id": 20419, + "year_id": 20445, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20449, + "make_id": 20116, + "model_id": 20449, + "year_id": 20449, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20450, + "make_id": 20116, + "model_id": 20449, + "year_id": 20449, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20451, + "make_id": 20116, + "model_id": 20449, + "year_id": 20449, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20452, + "make_id": 20116, + "model_id": 20449, + "year_id": 20449, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20453, + "make_id": 20116, + "model_id": 20449, + "year_id": 20453, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20454, + "make_id": 20116, + "model_id": 20449, + "year_id": 20453, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20455, + "make_id": 20116, + "model_id": 20449, + "year_id": 20453, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20456, + "make_id": 20116, + "model_id": 20449, + "year_id": 20453, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20457, + "make_id": 20116, + "model_id": 20449, + "year_id": 20453, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20458, + "make_id": 20116, + "model_id": 20449, + "year_id": 20458, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20459, + "make_id": 20116, + "model_id": 20449, + "year_id": 20458, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20460, + "make_id": 20116, + "model_id": 20449, + "year_id": 20458, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20461, + "make_id": 20116, + "model_id": 20449, + "year_id": 20458, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20462, + "make_id": 20116, + "model_id": 20449, + "year_id": 20458, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20463, + "make_id": 20116, + "model_id": 20449, + "year_id": 20458, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20464, + "make_id": 20116, + "model_id": 20449, + "year_id": 20464, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20465, + "make_id": 20116, + "model_id": 20449, + "year_id": 20464, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20466, + "make_id": 20116, + "model_id": 20449, + "year_id": 20464, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20467, + "make_id": 20116, + "model_id": 20449, + "year_id": 20464, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20468, + "make_id": 20116, + "model_id": 20449, + "year_id": 20464, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20469, + "make_id": 20116, + "model_id": 20449, + "year_id": 20464, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20470, + "make_id": 20116, + "model_id": 20449, + "year_id": 20470, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20471, + "make_id": 20116, + "model_id": 20449, + "year_id": 20470, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20472, + "make_id": 20116, + "model_id": 20449, + "year_id": 20470, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20473, + "make_id": 20116, + "model_id": 20449, + "year_id": 20470, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20474, + "make_id": 20116, + "model_id": 20449, + "year_id": 20470, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20475, + "make_id": 20116, + "model_id": 20449, + "year_id": 20470, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20476, + "make_id": 20116, + "model_id": 20449, + "year_id": 20470, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20477, + "make_id": 20116, + "model_id": 20449, + "year_id": 20477, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20478, + "make_id": 20116, + "model_id": 20449, + "year_id": 20477, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20479, + "make_id": 20116, + "model_id": 20449, + "year_id": 20477, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20480, + "make_id": 20116, + "model_id": 20449, + "year_id": 20477, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20481, + "make_id": 20116, + "model_id": 20449, + "year_id": 20477, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20482, + "make_id": 20116, + "model_id": 20449, + "year_id": 20477, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20483, + "make_id": 20116, + "model_id": 20449, + "year_id": 20477, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20484, + "make_id": 20116, + "model_id": 20449, + "year_id": 20484, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20485, + "make_id": 20116, + "model_id": 20449, + "year_id": 20484, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20486, + "make_id": 20116, + "model_id": 20449, + "year_id": 20484, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20487, + "make_id": 20116, + "model_id": 20449, + "year_id": 20484, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20488, + "make_id": 20116, + "model_id": 20449, + "year_id": 20484, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20489, + "make_id": 20116, + "model_id": 20449, + "year_id": 20484, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20490, + "make_id": 20116, + "model_id": 20449, + "year_id": 20484, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20491, + "make_id": 20116, + "model_id": 20449, + "year_id": 20491, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20492, + "make_id": 20116, + "model_id": 20449, + "year_id": 20491, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20493, + "make_id": 20116, + "model_id": 20449, + "year_id": 20491, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20494, + "make_id": 20116, + "model_id": 20449, + "year_id": 20491, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20495, + "make_id": 20116, + "model_id": 20449, + "year_id": 20491, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20496, + "make_id": 20116, + "model_id": 20449, + "year_id": 20491, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20497, + "make_id": 20116, + "model_id": 20449, + "year_id": 20491, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20498, + "make_id": 20116, + "model_id": 20449, + "year_id": 20491, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20499, + "make_id": 20116, + "model_id": 20449, + "year_id": 20499, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20500, + "make_id": 20116, + "model_id": 20449, + "year_id": 20499, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20501, + "make_id": 20116, + "model_id": 20449, + "year_id": 20499, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20502, + "make_id": 20116, + "model_id": 20449, + "year_id": 20499, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20503, + "make_id": 20116, + "model_id": 20449, + "year_id": 20499, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20504, + "make_id": 20116, + "model_id": 20449, + "year_id": 20499, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20505, + "make_id": 20116, + "model_id": 20449, + "year_id": 20499, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20506, + "make_id": 20116, + "model_id": 20449, + "year_id": 20506, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20507, + "make_id": 20116, + "model_id": 20449, + "year_id": 20506, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20508, + "make_id": 20116, + "model_id": 20449, + "year_id": 20506, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20509, + "make_id": 20116, + "model_id": 20449, + "year_id": 20506, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20510, + "make_id": 20116, + "model_id": 20449, + "year_id": 20506, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20511, + "make_id": 20116, + "model_id": 20449, + "year_id": 20506, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20512, + "make_id": 20116, + "model_id": 20449, + "year_id": 20506, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20513, + "make_id": 20116, + "model_id": 20513, + "year_id": 20513, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20514, + "make_id": 20116, + "model_id": 20513, + "year_id": 20513, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20515, + "make_id": 20116, + "model_id": 20513, + "year_id": 20513, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20516, + "make_id": 20116, + "model_id": 20513, + "year_id": 20513, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20517, + "make_id": 20116, + "model_id": 20513, + "year_id": 20513, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20518, + "make_id": 20116, + "model_id": 20513, + "year_id": 20513, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20519, + "make_id": 20116, + "model_id": 20513, + "year_id": 20519, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20520, + "make_id": 20116, + "model_id": 20513, + "year_id": 20519, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20521, + "make_id": 20116, + "model_id": 20513, + "year_id": 20519, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20522, + "make_id": 20116, + "model_id": 20513, + "year_id": 20519, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20523, + "make_id": 20116, + "model_id": 20513, + "year_id": 20523, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20524, + "make_id": 20116, + "model_id": 20513, + "year_id": 20523, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20525, + "make_id": 20116, + "model_id": 20513, + "year_id": 20523, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20526, + "make_id": 20116, + "model_id": 20513, + "year_id": 20523, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20527, + "make_id": 20116, + "model_id": 20513, + "year_id": 20527, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20528, + "make_id": 20116, + "model_id": 20513, + "year_id": 20527, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20529, + "make_id": 20116, + "model_id": 20513, + "year_id": 20527, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20530, + "make_id": 20116, + "model_id": 20513, + "year_id": 20530, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20531, + "make_id": 20116, + "model_id": 20513, + "year_id": 20530, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20532, + "make_id": 20116, + "model_id": 20513, + "year_id": 20530, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20533, + "make_id": 20116, + "model_id": 20513, + "year_id": 20530, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20534, + "make_id": 20116, + "model_id": 20513, + "year_id": 20534, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20535, + "make_id": 20116, + "model_id": 20513, + "year_id": 20534, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20536, + "make_id": 20116, + "model_id": 20513, + "year_id": 20534, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20537, + "make_id": 20116, + "model_id": 20513, + "year_id": 20534, + "cylinders": 8, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20538, + "make_id": 20116, + "model_id": 20513, + "year_id": 20534, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20539, + "make_id": 20116, + "model_id": 20513, + "year_id": 20539, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20540, + "make_id": 20116, + "model_id": 20513, + "year_id": 20539, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20541, + "make_id": 20116, + "model_id": 20513, + "year_id": 20539, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20542, + "make_id": 20116, + "model_id": 20513, + "year_id": 20542, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20543, + "make_id": 20116, + "model_id": 20513, + "year_id": 20542, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20544, + "make_id": 20116, + "model_id": 20513, + "year_id": 20542, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20545, + "make_id": 20116, + "model_id": 20513, + "year_id": 20542, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20546, + "make_id": 20116, + "model_id": 20513, + "year_id": 20546, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20547, + "make_id": 20116, + "model_id": 20513, + "year_id": 20546, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20548, + "make_id": 20116, + "model_id": 20513, + "year_id": 20546, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20549, + "make_id": 20116, + "model_id": 20513, + "year_id": 20546, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20550, + "make_id": 20116, + "model_id": 20513, + "year_id": 20550, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20551, + "make_id": 20116, + "model_id": 20513, + "year_id": 20550, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20552, + "make_id": 20116, + "model_id": 20513, + "year_id": 20550, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20553, + "make_id": 20116, + "model_id": 20513, + "year_id": 20550, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20554, + "make_id": 20116, + "model_id": 20513, + "year_id": 20554, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20555, + "make_id": 20116, + "model_id": 20513, + "year_id": 20554, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20556, + "make_id": 20116, + "model_id": 20513, + "year_id": 20554, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20557, + "make_id": 20116, + "model_id": 20513, + "year_id": 20554, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20558, + "make_id": 20116, + "model_id": 20513, + "year_id": 20558, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20559, + "make_id": 20116, + "model_id": 20513, + "year_id": 20558, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20560, + "make_id": 20116, + "model_id": 20513, + "year_id": 20558, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20561, + "make_id": 20116, + "model_id": 20513, + "year_id": 20558, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20562, + "make_id": 20116, + "model_id": 20513, + "year_id": 20562, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20563, + "make_id": 20116, + "model_id": 20513, + "year_id": 20562, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20564, + "make_id": 20116, + "model_id": 20513, + "year_id": 20562, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20565, + "make_id": 20116, + "model_id": 20513, + "year_id": 20562, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20566, + "make_id": 20116, + "model_id": 20513, + "year_id": 20562, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20567, + "make_id": 20116, + "model_id": 20513, + "year_id": 20562, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20568, + "make_id": 20116, + "model_id": 20513, + "year_id": 20568, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20569, + "make_id": 20116, + "model_id": 20513, + "year_id": 20568, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20570, + "make_id": 20116, + "model_id": 20513, + "year_id": 20568, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20571, + "make_id": 20116, + "model_id": 20513, + "year_id": 20568, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20572, + "make_id": 20116, + "model_id": 20513, + "year_id": 20568, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20573, + "make_id": 20116, + "model_id": 20513, + "year_id": 20568, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20574, + "make_id": 20116, + "model_id": 20513, + "year_id": 20568, + "cylinders": 8, + "displacement": 6.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20575, + "make_id": 20116, + "model_id": 20513, + "year_id": 20575, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20576, + "make_id": 20116, + "model_id": 20513, + "year_id": 20575, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20577, + "make_id": 20116, + "model_id": 20513, + "year_id": 20575, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20578, + "make_id": 20116, + "model_id": 20513, + "year_id": 20575, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20579, + "make_id": 20116, + "model_id": 20513, + "year_id": 20575, + "cylinders": 8, + "displacement": 6.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20580, + "make_id": 20116, + "model_id": 20513, + "year_id": 20575, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20581, + "make_id": 20116, + "model_id": 20513, + "year_id": 20575, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20582, + "make_id": 20116, + "model_id": 20513, + "year_id": 20575, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20583, + "make_id": 20116, + "model_id": 20513, + "year_id": 20575, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20584, + "make_id": 20116, + "model_id": 20513, + "year_id": 20584, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20585, + "make_id": 20116, + "model_id": 20513, + "year_id": 20584, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20586, + "make_id": 20116, + "model_id": 20513, + "year_id": 20584, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20587, + "make_id": 20116, + "model_id": 20513, + "year_id": 20584, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20588, + "make_id": 20116, + "model_id": 20513, + "year_id": 20584, + "cylinders": 8, + "displacement": 6.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20589, + "make_id": 20116, + "model_id": 20513, + "year_id": 20584, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20590, + "make_id": 20116, + "model_id": 20513, + "year_id": 20584, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20591, + "make_id": 20116, + "model_id": 20513, + "year_id": 20584, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20592, + "make_id": 20116, + "model_id": 20513, + "year_id": 20584, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20593, + "make_id": 20116, + "model_id": 20513, + "year_id": 20593, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20594, + "make_id": 20116, + "model_id": 20513, + "year_id": 20593, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20595, + "make_id": 20116, + "model_id": 20513, + "year_id": 20593, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20596, + "make_id": 20116, + "model_id": 20513, + "year_id": 20593, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20597, + "make_id": 20116, + "model_id": 20513, + "year_id": 20593, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20598, + "make_id": 20116, + "model_id": 20513, + "year_id": 20593, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20599, + "make_id": 20116, + "model_id": 20513, + "year_id": 20593, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20600, + "make_id": 20116, + "model_id": 20513, + "year_id": 20593, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20601, + "make_id": 20116, + "model_id": 20513, + "year_id": 20601, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20602, + "make_id": 20116, + "model_id": 20513, + "year_id": 20601, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20603, + "make_id": 20116, + "model_id": 20513, + "year_id": 20601, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20604, + "make_id": 20116, + "model_id": 20513, + "year_id": 20601, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20605, + "make_id": 20116, + "model_id": 20513, + "year_id": 20605, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20606, + "make_id": 20116, + "model_id": 20513, + "year_id": 20605, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20607, + "make_id": 20116, + "model_id": 20513, + "year_id": 20605, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20608, + "make_id": 20116, + "model_id": 20513, + "year_id": 20605, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20609, + "make_id": 20116, + "model_id": 20513, + "year_id": 20605, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20610, + "make_id": 20116, + "model_id": 20513, + "year_id": 20605, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20611, + "make_id": 20116, + "model_id": 20513, + "year_id": 20611, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20612, + "make_id": 20116, + "model_id": 20513, + "year_id": 20611, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20613, + "make_id": 20116, + "model_id": 20513, + "year_id": 20611, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20614, + "make_id": 20116, + "model_id": 20513, + "year_id": 20611, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20615, + "make_id": 20116, + "model_id": 20513, + "year_id": 20615, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20616, + "make_id": 20116, + "model_id": 20513, + "year_id": 20615, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20617, + "make_id": 20116, + "model_id": 20513, + "year_id": 20615, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20618, + "make_id": 20116, + "model_id": 20513, + "year_id": 20615, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20619, + "make_id": 20116, + "model_id": 20513, + "year_id": 20619, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20620, + "make_id": 20116, + "model_id": 20513, + "year_id": 20619, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20621, + "make_id": 20116, + "model_id": 20513, + "year_id": 20619, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20622, + "make_id": 20116, + "model_id": 20513, + "year_id": 20619, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20623, + "make_id": 20116, + "model_id": 20513, + "year_id": 20619, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20624, + "make_id": 20116, + "model_id": 20513, + "year_id": 20619, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20625, + "make_id": 20116, + "model_id": 20513, + "year_id": 20625, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20626, + "make_id": 20116, + "model_id": 20513, + "year_id": 20625, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20627, + "make_id": 20116, + "model_id": 20513, + "year_id": 20625, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20628, + "make_id": 20116, + "model_id": 20513, + "year_id": 20625, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20629, + "make_id": 20116, + "model_id": 20513, + "year_id": 20625, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20630, + "make_id": 20116, + "model_id": 20513, + "year_id": 20625, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20631, + "make_id": 20116, + "model_id": 20513, + "year_id": 20631, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20632, + "make_id": 20116, + "model_id": 20513, + "year_id": 20631, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20633, + "make_id": 20116, + "model_id": 20513, + "year_id": 20631, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20634, + "make_id": 20116, + "model_id": 20513, + "year_id": 20631, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20635, + "make_id": 20116, + "model_id": 20513, + "year_id": 20631, + "cylinders": 8, + "displacement": 5.7, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20636, + "make_id": 20116, + "model_id": 20636, + "year_id": 20636, + "cylinders": 8, + "displacement": 6.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20637, + "make_id": 20116, + "model_id": 20636, + "year_id": 20637, + "cylinders": 8, + "displacement": 6.1, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20638, + "make_id": 20116, + "model_id": 20636, + "year_id": 20638, + "cylinders": 8, + "displacement": 6.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20639, + "make_id": 20116, + "model_id": 20636, + "year_id": 20639, + "cylinders": 8, + "displacement": 6.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20640, + "make_id": 20116, + "model_id": 20636, + "year_id": 20640, + "cylinders": 8, + "displacement": 6.4, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20641, + "make_id": 20116, + "model_id": 20636, + "year_id": 20641, + "cylinders": 8, + "displacement": 6.4, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20642, + "make_id": 20116, + "model_id": 20636, + "year_id": 20642, + "cylinders": 8, + "displacement": 6.4, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 20643, + "make_id": 20116, + "model_id": 20643, + "year_id": 20643, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20644, + "make_id": 20116, + "model_id": 20643, + "year_id": 20643, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20645, + "make_id": 20116, + "model_id": 20643, + "year_id": 20643, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20646, + "make_id": 20116, + "model_id": 20643, + "year_id": 20643, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20647, + "make_id": 20116, + "model_id": 20643, + "year_id": 20643, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20648, + "make_id": 20116, + "model_id": 20643, + "year_id": 20643, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20649, + "make_id": 20116, + "model_id": 20643, + "year_id": 20649, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20650, + "make_id": 20116, + "model_id": 20643, + "year_id": 20649, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20651, + "make_id": 20116, + "model_id": 20643, + "year_id": 20649, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20652, + "make_id": 20116, + "model_id": 20643, + "year_id": 20652, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20653, + "make_id": 20116, + "model_id": 20643, + "year_id": 20652, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20654, + "make_id": 20116, + "model_id": 20643, + "year_id": 20652, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20655, + "make_id": 20116, + "model_id": 20643, + "year_id": 20655, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20656, + "make_id": 20116, + "model_id": 20643, + "year_id": 20655, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20657, + "make_id": 20116, + "model_id": 20643, + "year_id": 20655, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20658, + "make_id": 20116, + "model_id": 20643, + "year_id": 20658, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20659, + "make_id": 20116, + "model_id": 20643, + "year_id": 20659, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20660, + "make_id": 20116, + "model_id": 20643, + "year_id": 20660, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20661, + "make_id": 20116, + "model_id": 20643, + "year_id": 20661, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20662, + "make_id": 20116, + "model_id": 20662, + "year_id": 20662, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20663, + "make_id": 20116, + "model_id": 20662, + "year_id": 20662, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20664, + "make_id": 20116, + "model_id": 20662, + "year_id": 20662, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20665, + "make_id": 20116, + "model_id": 20662, + "year_id": 20662, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20666, + "make_id": 20116, + "model_id": 20662, + "year_id": 20662, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20667, + "make_id": 20116, + "model_id": 20662, + "year_id": 20662, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20668, + "make_id": 20116, + "model_id": 20662, + "year_id": 20662, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20669, + "make_id": 20116, + "model_id": 20669, + "year_id": 20669, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20670, + "make_id": 20116, + "model_id": 20669, + "year_id": 20669, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20671, + "make_id": 20116, + "model_id": 20669, + "year_id": 20669, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20672, + "make_id": 20116, + "model_id": 20669, + "year_id": 20669, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20673, + "make_id": 20116, + "model_id": 20669, + "year_id": 20673, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20674, + "make_id": 20116, + "model_id": 20669, + "year_id": 20673, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20675, + "make_id": 20116, + "model_id": 20669, + "year_id": 20673, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20676, + "make_id": 20116, + "model_id": 20669, + "year_id": 20676, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20677, + "make_id": 20116, + "model_id": 20669, + "year_id": 20676, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20678, + "make_id": 20116, + "model_id": 20669, + "year_id": 20676, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20679, + "make_id": 20116, + "model_id": 20669, + "year_id": 20679, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20680, + "make_id": 20116, + "model_id": 20669, + "year_id": 20679, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20681, + "make_id": 20116, + "model_id": 20681, + "year_id": 20681, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20682, + "make_id": 20116, + "model_id": 20681, + "year_id": 20682, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20683, + "make_id": 20116, + "model_id": 20681, + "year_id": 20683, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20684, + "make_id": 20116, + "model_id": 20681, + "year_id": 20684, + "cylinders": 8, + "displacement": 5.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20685, + "make_id": 20116, + "model_id": 20685, + "year_id": 20685, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20686, + "make_id": 20116, + "model_id": 20685, + "year_id": 20685, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20687, + "make_id": 20116, + "model_id": 20685, + "year_id": 20685, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20688, + "make_id": 20116, + "model_id": 20685, + "year_id": 20685, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20689, + "make_id": 20116, + "model_id": 20685, + "year_id": 20689, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20690, + "make_id": 20116, + "model_id": 20685, + "year_id": 20689, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20691, + "make_id": 20116, + "model_id": 20685, + "year_id": 20689, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20692, + "make_id": 20116, + "model_id": 20685, + "year_id": 20689, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20693, + "make_id": 20116, + "model_id": 20685, + "year_id": 20693, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20694, + "make_id": 20116, + "model_id": 20685, + "year_id": 20693, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20695, + "make_id": 20116, + "model_id": 20685, + "year_id": 20695, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20696, + "make_id": 20116, + "model_id": 20685, + "year_id": 20695, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20697, + "make_id": 20116, + "model_id": 20685, + "year_id": 20697, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20698, + "make_id": 20116, + "model_id": 20685, + "year_id": 20697, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20699, + "make_id": 20116, + "model_id": 20685, + "year_id": 20699, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20700, + "make_id": 20116, + "model_id": 20685, + "year_id": 20699, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20701, + "make_id": 20116, + "model_id": 20701, + "year_id": 20701, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20702, + "make_id": 20116, + "model_id": 20701, + "year_id": 20701, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20703, + "make_id": 20116, + "model_id": 20701, + "year_id": 20701, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20704, + "make_id": 20116, + "model_id": 20701, + "year_id": 20701, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20705, + "make_id": 20116, + "model_id": 20701, + "year_id": 20701, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20706, + "make_id": 20116, + "model_id": 20701, + "year_id": 20701, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20707, + "make_id": 20116, + "model_id": 20701, + "year_id": 20707, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20708, + "make_id": 20116, + "model_id": 20701, + "year_id": 20707, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20709, + "make_id": 20116, + "model_id": 20701, + "year_id": 20707, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20710, + "make_id": 20116, + "model_id": 20701, + "year_id": 20707, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20711, + "make_id": 20116, + "model_id": 20701, + "year_id": 20707, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20712, + "make_id": 20116, + "model_id": 20701, + "year_id": 20707, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20713, + "make_id": 20116, + "model_id": 20701, + "year_id": 20713, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20714, + "make_id": 20116, + "model_id": 20701, + "year_id": 20713, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20715, + "make_id": 20116, + "model_id": 20701, + "year_id": 20713, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20716, + "make_id": 20116, + "model_id": 20701, + "year_id": 20713, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20717, + "make_id": 20116, + "model_id": 20701, + "year_id": 20713, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20718, + "make_id": 20116, + "model_id": 20701, + "year_id": 20713, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20719, + "make_id": 20116, + "model_id": 20701, + "year_id": 20713, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20720, + "make_id": 20116, + "model_id": 20701, + "year_id": 20720, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20721, + "make_id": 20116, + "model_id": 20701, + "year_id": 20720, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20722, + "make_id": 20116, + "model_id": 20701, + "year_id": 20720, + "cylinders": 4, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20723, + "make_id": 20116, + "model_id": 20701, + "year_id": 20720, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20724, + "make_id": 20116, + "model_id": 20701, + "year_id": 20720, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20725, + "make_id": 20116, + "model_id": 20701, + "year_id": 20725, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20726, + "make_id": 20116, + "model_id": 20701, + "year_id": 20725, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20727, + "make_id": 20116, + "model_id": 20701, + "year_id": 20725, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20728, + "make_id": 20116, + "model_id": 20701, + "year_id": 20725, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20729, + "make_id": 20116, + "model_id": 20729, + "year_id": 20729, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20730, + "make_id": 20116, + "model_id": 20729, + "year_id": 20729, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20731, + "make_id": 20116, + "model_id": 20729, + "year_id": 20729, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20732, + "make_id": 20116, + "model_id": 20729, + "year_id": 20729, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20733, + "make_id": 20116, + "model_id": 20729, + "year_id": 20729, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20734, + "make_id": 20116, + "model_id": 20729, + "year_id": 20734, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20735, + "make_id": 20116, + "model_id": 20729, + "year_id": 20734, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20736, + "make_id": 20116, + "model_id": 20729, + "year_id": 20734, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20737, + "make_id": 20116, + "model_id": 20729, + "year_id": 20734, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20738, + "make_id": 20116, + "model_id": 20729, + "year_id": 20734, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20739, + "make_id": 20116, + "model_id": 20729, + "year_id": 20734, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20740, + "make_id": 20116, + "model_id": 20729, + "year_id": 20740, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20741, + "make_id": 20116, + "model_id": 20729, + "year_id": 20740, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20742, + "make_id": 20116, + "model_id": 20729, + "year_id": 20740, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20743, + "make_id": 20116, + "model_id": 20729, + "year_id": 20740, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20744, + "make_id": 20116, + "model_id": 20729, + "year_id": 20740, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20745, + "make_id": 20116, + "model_id": 20729, + "year_id": 20740, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20746, + "make_id": 20116, + "model_id": 20729, + "year_id": 20740, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20747, + "make_id": 20116, + "model_id": 20729, + "year_id": 20747, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20748, + "make_id": 20116, + "model_id": 20729, + "year_id": 20747, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20749, + "make_id": 20116, + "model_id": 20729, + "year_id": 20747, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20750, + "make_id": 20116, + "model_id": 20729, + "year_id": 20747, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20751, + "make_id": 20116, + "model_id": 20729, + "year_id": 20747, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20752, + "make_id": 20116, + "model_id": 20729, + "year_id": 20747, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20753, + "make_id": 20116, + "model_id": 20729, + "year_id": 20747, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20754, + "make_id": 20116, + "model_id": 20729, + "year_id": 20754, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20755, + "make_id": 20116, + "model_id": 20729, + "year_id": 20754, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20756, + "make_id": 20116, + "model_id": 20729, + "year_id": 20754, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20757, + "make_id": 20116, + "model_id": 20729, + "year_id": 20754, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20758, + "make_id": 20116, + "model_id": 20729, + "year_id": 20754, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20759, + "make_id": 20116, + "model_id": 20729, + "year_id": 20754, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20760, + "make_id": 20116, + "model_id": 20729, + "year_id": 20754, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20761, + "make_id": 20116, + "model_id": 20729, + "year_id": 20761, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20762, + "make_id": 20116, + "model_id": 20729, + "year_id": 20761, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20763, + "make_id": 20116, + "model_id": 20729, + "year_id": 20761, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20764, + "make_id": 20116, + "model_id": 20729, + "year_id": 20761, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20765, + "make_id": 20116, + "model_id": 20729, + "year_id": 20761, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20766, + "make_id": 20116, + "model_id": 20729, + "year_id": 20761, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20767, + "make_id": 20116, + "model_id": 20729, + "year_id": 20761, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20768, + "make_id": 20116, + "model_id": 20729, + "year_id": 20768, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20769, + "make_id": 20116, + "model_id": 20729, + "year_id": 20768, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20770, + "make_id": 20116, + "model_id": 20729, + "year_id": 20768, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20771, + "make_id": 20116, + "model_id": 20729, + "year_id": 20768, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20772, + "make_id": 20116, + "model_id": 20729, + "year_id": 20768, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20773, + "make_id": 20116, + "model_id": 20729, + "year_id": 20768, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20774, + "make_id": 20116, + "model_id": 20729, + "year_id": 20768, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20775, + "make_id": 20116, + "model_id": 20729, + "year_id": 20775, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20776, + "make_id": 20116, + "model_id": 20729, + "year_id": 20775, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20777, + "make_id": 20116, + "model_id": 20729, + "year_id": 20775, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20778, + "make_id": 20116, + "model_id": 20729, + "year_id": 20775, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20779, + "make_id": 20116, + "model_id": 20729, + "year_id": 20775, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20780, + "make_id": 20116, + "model_id": 20729, + "year_id": 20775, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20781, + "make_id": 20116, + "model_id": 20729, + "year_id": 20775, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20782, + "make_id": 20116, + "model_id": 20729, + "year_id": 20775, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20783, + "make_id": 20116, + "model_id": 20729, + "year_id": 20783, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20784, + "make_id": 20116, + "model_id": 20729, + "year_id": 20783, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20785, + "make_id": 20116, + "model_id": 20729, + "year_id": 20783, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20786, + "make_id": 20116, + "model_id": 20729, + "year_id": 20783, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20787, + "make_id": 20116, + "model_id": 20729, + "year_id": 20783, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20788, + "make_id": 20116, + "model_id": 20729, + "year_id": 20783, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20789, + "make_id": 20116, + "model_id": 20729, + "year_id": 20783, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20790, + "make_id": 20116, + "model_id": 20729, + "year_id": 20790, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20791, + "make_id": 20116, + "model_id": 20729, + "year_id": 20790, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20792, + "make_id": 20116, + "model_id": 20729, + "year_id": 20790, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 20793, + "make_id": 20116, + "model_id": 20729, + "year_id": 20790, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20794, + "make_id": 20116, + "model_id": 20729, + "year_id": 20790, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20795, + "make_id": 20116, + "model_id": 20729, + "year_id": 20790, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20796, + "make_id": 20116, + "model_id": 20729, + "year_id": 20790, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20797, + "make_id": 20116, + "model_id": 20797, + "year_id": 20797, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20798, + "make_id": 20116, + "model_id": 20797, + "year_id": 20797, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20799, + "make_id": 20116, + "model_id": 20797, + "year_id": 20797, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20800, + "make_id": 20116, + "model_id": 20797, + "year_id": 20797, + "cylinders": 4, + "displacement": 1.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20801, + "make_id": 20116, + "model_id": 20797, + "year_id": 20801, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20802, + "make_id": 20116, + "model_id": 20797, + "year_id": 20801, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20803, + "make_id": 20116, + "model_id": 20797, + "year_id": 20801, + "cylinders": 4, + "displacement": 1.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20804, + "make_id": 20116, + "model_id": 20797, + "year_id": 20801, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 20805, + "make_id": 20116, + "model_id": 20805, + "year_id": 20805, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20806, + "make_id": 20116, + "model_id": 20805, + "year_id": 20805, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20807, + "make_id": 20116, + "model_id": 20805, + "year_id": 20805, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20808, + "make_id": 20116, + "model_id": 20805, + "year_id": 20805, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20809, + "make_id": 20116, + "model_id": 20805, + "year_id": 20805, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20810, + "make_id": 20116, + "model_id": 20805, + "year_id": 20805, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20811, + "make_id": 20116, + "model_id": 20805, + "year_id": 20805, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20812, + "make_id": 20116, + "model_id": 20805, + "year_id": 20805, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20813, + "make_id": 20116, + "model_id": 20805, + "year_id": 20805, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20814, + "make_id": 20116, + "model_id": 20805, + "year_id": 20814, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20815, + "make_id": 20116, + "model_id": 20805, + "year_id": 20814, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20816, + "make_id": 20116, + "model_id": 20805, + "year_id": 20814, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20817, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20818, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20819, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20820, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20821, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20822, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20823, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20824, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20825, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20826, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20827, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 20828, + "make_id": 20116, + "model_id": 20817, + "year_id": 20817, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20829, + "make_id": 20116, + "model_id": 20829, + "year_id": 20829, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20830, + "make_id": 20116, + "model_id": 20830, + "year_id": 20830, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20831, + "make_id": 20116, + "model_id": 20831, + "year_id": 20831, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20832, + "make_id": 20116, + "model_id": 20831, + "year_id": 20831, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20833, + "make_id": 20116, + "model_id": 20831, + "year_id": 20831, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20834, + "make_id": 20116, + "model_id": 20831, + "year_id": 20834, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20835, + "make_id": 20116, + "model_id": 20831, + "year_id": 20834, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20836, + "make_id": 20116, + "model_id": 20831, + "year_id": 20834, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20837, + "make_id": 20116, + "model_id": 20831, + "year_id": 20837, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20838, + "make_id": 20116, + "model_id": 20831, + "year_id": 20837, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20839, + "make_id": 20116, + "model_id": 20831, + "year_id": 20837, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20840, + "make_id": 20116, + "model_id": 20831, + "year_id": 20837, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20841, + "make_id": 20116, + "model_id": 20831, + "year_id": 20841, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20842, + "make_id": 20116, + "model_id": 20831, + "year_id": 20841, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20843, + "make_id": 20116, + "model_id": 20831, + "year_id": 20841, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20844, + "make_id": 20116, + "model_id": 20831, + "year_id": 20841, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20845, + "make_id": 20116, + "model_id": 20831, + "year_id": 20845, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20846, + "make_id": 20116, + "model_id": 20831, + "year_id": 20845, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20847, + "make_id": 20116, + "model_id": 20831, + "year_id": 20845, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20848, + "make_id": 20116, + "model_id": 20831, + "year_id": 20848, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20849, + "make_id": 20116, + "model_id": 20831, + "year_id": 20848, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20850, + "make_id": 20116, + "model_id": 20831, + "year_id": 20848, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20851, + "make_id": 20116, + "model_id": 20831, + "year_id": 20851, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20852, + "make_id": 20116, + "model_id": 20831, + "year_id": 20851, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20853, + "make_id": 20116, + "model_id": 20831, + "year_id": 20851, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20854, + "make_id": 20116, + "model_id": 20831, + "year_id": 20854, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20855, + "make_id": 20116, + "model_id": 20831, + "year_id": 20854, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20856, + "make_id": 20116, + "model_id": 20831, + "year_id": 20854, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20857, + "make_id": 20116, + "model_id": 20831, + "year_id": 20854, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20858, + "make_id": 20116, + "model_id": 20831, + "year_id": 20858, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20859, + "make_id": 20116, + "model_id": 20831, + "year_id": 20858, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20860, + "make_id": 20116, + "model_id": 20831, + "year_id": 20858, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20861, + "make_id": 20116, + "model_id": 20831, + "year_id": 20858, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20862, + "make_id": 20116, + "model_id": 20831, + "year_id": 20862, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20863, + "make_id": 20116, + "model_id": 20831, + "year_id": 20862, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "Auto(L3)" + }, + { + "id": 20864, + "make_id": 20116, + "model_id": 20831, + "year_id": 20862, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20865, + "make_id": 20116, + "model_id": 20831, + "year_id": 20862, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "Auto(L3)" + }, + { + "id": 20866, + "make_id": 20116, + "model_id": 20831, + "year_id": 20866, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20867, + "make_id": 20116, + "model_id": 20831, + "year_id": 20866, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20868, + "make_id": 20116, + "model_id": 20831, + "year_id": 20866, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20869, + "make_id": 20116, + "model_id": 20831, + "year_id": 20866, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20870, + "make_id": 20116, + "model_id": 20831, + "year_id": 20870, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20871, + "make_id": 20116, + "model_id": 20831, + "year_id": 20870, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20872, + "make_id": 20116, + "model_id": 20831, + "year_id": 20870, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20873, + "make_id": 20116, + "model_id": 20831, + "year_id": 20870, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20874, + "make_id": 20116, + "model_id": 20831, + "year_id": 20874, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20875, + "make_id": 20116, + "model_id": 20831, + "year_id": 20874, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20876, + "make_id": 20116, + "model_id": 20831, + "year_id": 20874, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20877, + "make_id": 20116, + "model_id": 20831, + "year_id": 20874, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20878, + "make_id": 20116, + "model_id": 20831, + "year_id": 20878, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20879, + "make_id": 20116, + "model_id": 20831, + "year_id": 20878, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20880, + "make_id": 20116, + "model_id": 20831, + "year_id": 20878, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20881, + "make_id": 20116, + "model_id": 20831, + "year_id": 20878, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20882, + "make_id": 20116, + "model_id": 20831, + "year_id": 20882, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20883, + "make_id": 20116, + "model_id": 20831, + "year_id": 20882, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20884, + "make_id": 20116, + "model_id": 20831, + "year_id": 20882, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 20885, + "make_id": 20116, + "model_id": 20831, + "year_id": 20882, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20886, + "make_id": 20116, + "model_id": 20831, + "year_id": 20886, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20887, + "make_id": 20116, + "model_id": 20831, + "year_id": 20886, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20888, + "make_id": 20116, + "model_id": 20831, + "year_id": 20886, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20889, + "make_id": 20116, + "model_id": 20831, + "year_id": 20886, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20890, + "make_id": 20116, + "model_id": 20831, + "year_id": 20890, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20891, + "make_id": 20116, + "model_id": 20831, + "year_id": 20890, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20892, + "make_id": 20116, + "model_id": 20831, + "year_id": 20890, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20893, + "make_id": 20116, + "model_id": 20831, + "year_id": 20890, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20894, + "make_id": 20116, + "model_id": 20831, + "year_id": 20894, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20895, + "make_id": 20116, + "model_id": 20831, + "year_id": 20894, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20896, + "make_id": 20116, + "model_id": 20831, + "year_id": 20894, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20897, + "make_id": 20116, + "model_id": 20831, + "year_id": 20897, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20898, + "make_id": 20116, + "model_id": 20831, + "year_id": 20897, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20899, + "make_id": 20116, + "model_id": 20831, + "year_id": 20897, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20900, + "make_id": 20116, + "model_id": 20831, + "year_id": 20900, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20901, + "make_id": 20116, + "model_id": 20831, + "year_id": 20900, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20902, + "make_id": 20116, + "model_id": 20831, + "year_id": 20902, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20903, + "make_id": 20116, + "model_id": 20831, + "year_id": 20902, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20904, + "make_id": 20116, + "model_id": 20831, + "year_id": 20904, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20905, + "make_id": 20116, + "model_id": 20831, + "year_id": 20904, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20906, + "make_id": 20116, + "model_id": 20831, + "year_id": 20906, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20907, + "make_id": 20116, + "model_id": 20831, + "year_id": 20906, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20908, + "make_id": 20116, + "model_id": 20831, + "year_id": 20908, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20909, + "make_id": 20116, + "model_id": 20831, + "year_id": 20908, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20910, + "make_id": 20116, + "model_id": 20831, + "year_id": 20910, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20911, + "make_id": 20116, + "model_id": 20831, + "year_id": 20910, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20912, + "make_id": 20116, + "model_id": 20912, + "year_id": 20912, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20913, + "make_id": 20116, + "model_id": 20912, + "year_id": 20912, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20914, + "make_id": 20116, + "model_id": 20912, + "year_id": 20914, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20915, + "make_id": 20116, + "model_id": 20912, + "year_id": 20914, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20916, + "make_id": 20116, + "model_id": 20912, + "year_id": 20916, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20917, + "make_id": 20116, + "model_id": 20912, + "year_id": 20916, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20918, + "make_id": 20116, + "model_id": 20912, + "year_id": 20918, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20919, + "make_id": 20116, + "model_id": 20912, + "year_id": 20918, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20920, + "make_id": 20116, + "model_id": 20912, + "year_id": 20920, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20921, + "make_id": 20116, + "model_id": 20912, + "year_id": 20920, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20922, + "make_id": 20116, + "model_id": 20922, + "year_id": 20922, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20923, + "make_id": 20116, + "model_id": 20922, + "year_id": 20922, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20924, + "make_id": 20116, + "model_id": 20922, + "year_id": 20922, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20925, + "make_id": 20116, + "model_id": 20922, + "year_id": 20922, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20926, + "make_id": 20116, + "model_id": 20922, + "year_id": 20926, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20927, + "make_id": 20116, + "model_id": 20922, + "year_id": 20926, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20928, + "make_id": 20116, + "model_id": 20922, + "year_id": 20926, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20929, + "make_id": 20116, + "model_id": 20922, + "year_id": 20926, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20930, + "make_id": 20116, + "model_id": 20922, + "year_id": 20930, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20931, + "make_id": 20116, + "model_id": 20922, + "year_id": 20930, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20932, + "make_id": 20116, + "model_id": 20922, + "year_id": 20930, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20933, + "make_id": 20116, + "model_id": 20922, + "year_id": 20933, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20934, + "make_id": 20116, + "model_id": 20922, + "year_id": 20933, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20935, + "make_id": 20116, + "model_id": 20922, + "year_id": 20933, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20936, + "make_id": 20936, + "model_id": 20936, + "year_id": 20936, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 20937, + "make_id": 20936, + "model_id": 20937, + "year_id": 20937, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 20938, + "make_id": 20936, + "model_id": 20938, + "year_id": 20938, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 20939, + "make_id": 20936, + "model_id": 20939, + "year_id": 20939, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 20940, + "make_id": 20940, + "model_id": 20940, + "year_id": 20940, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20941, + "make_id": 20940, + "model_id": 20940, + "year_id": 20941, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20942, + "make_id": 20940, + "model_id": 20940, + "year_id": 20942, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20943, + "make_id": 20940, + "model_id": 20940, + "year_id": 20943, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20944, + "make_id": 20940, + "model_id": 20940, + "year_id": 20944, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20945, + "make_id": 20940, + "model_id": 20940, + "year_id": 20945, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20946, + "make_id": 20940, + "model_id": 20946, + "year_id": 20946, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20947, + "make_id": 20940, + "model_id": 20946, + "year_id": 20946, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20948, + "make_id": 20940, + "model_id": 20946, + "year_id": 20946, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20949, + "make_id": 20940, + "model_id": 20946, + "year_id": 20946, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20950, + "make_id": 20940, + "model_id": 20946, + "year_id": 20950, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20951, + "make_id": 20940, + "model_id": 20946, + "year_id": 20950, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20952, + "make_id": 20940, + "model_id": 20946, + "year_id": 20950, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20953, + "make_id": 20940, + "model_id": 20946, + "year_id": 20950, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20954, + "make_id": 20940, + "model_id": 20946, + "year_id": 20954, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20955, + "make_id": 20940, + "model_id": 20946, + "year_id": 20954, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20956, + "make_id": 20940, + "model_id": 20946, + "year_id": 20954, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20957, + "make_id": 20940, + "model_id": 20946, + "year_id": 20954, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20958, + "make_id": 20940, + "model_id": 20958, + "year_id": 20958, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20959, + "make_id": 20940, + "model_id": 20958, + "year_id": 20959, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20960, + "make_id": 20940, + "model_id": 20958, + "year_id": 20960, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20961, + "make_id": 20940, + "model_id": 20961, + "year_id": 20961, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20962, + "make_id": 20940, + "model_id": 20961, + "year_id": 20961, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 20963, + "make_id": 20940, + "model_id": 20961, + "year_id": 20961, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 20964, + "make_id": 20940, + "model_id": 20961, + "year_id": 20961, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 20965, + "make_id": 20940, + "model_id": 20961, + "year_id": 20961, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20966, + "make_id": 20940, + "model_id": 20961, + "year_id": 20966, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20967, + "make_id": 20940, + "model_id": 20961, + "year_id": 20966, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20968, + "make_id": 20940, + "model_id": 20961, + "year_id": 20966, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20969, + "make_id": 20940, + "model_id": 20961, + "year_id": 20966, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20970, + "make_id": 20940, + "model_id": 20961, + "year_id": 20970, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20971, + "make_id": 20940, + "model_id": 20961, + "year_id": 20970, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20972, + "make_id": 20940, + "model_id": 20961, + "year_id": 20970, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20973, + "make_id": 20940, + "model_id": 20961, + "year_id": 20970, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20974, + "make_id": 20940, + "model_id": 20961, + "year_id": 20974, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20975, + "make_id": 20940, + "model_id": 20961, + "year_id": 20974, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20976, + "make_id": 20940, + "model_id": 20961, + "year_id": 20974, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20977, + "make_id": 20940, + "model_id": 20961, + "year_id": 20974, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20978, + "make_id": 20940, + "model_id": 20961, + "year_id": 20978, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20979, + "make_id": 20940, + "model_id": 20961, + "year_id": 20978, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20980, + "make_id": 20940, + "model_id": 20961, + "year_id": 20978, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20981, + "make_id": 20940, + "model_id": 20961, + "year_id": 20978, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20982, + "make_id": 20940, + "model_id": 20961, + "year_id": 20982, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20983, + "make_id": 20940, + "model_id": 20961, + "year_id": 20982, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20984, + "make_id": 20940, + "model_id": 20961, + "year_id": 20982, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20985, + "make_id": 20940, + "model_id": 20961, + "year_id": 20985, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20986, + "make_id": 20940, + "model_id": 20961, + "year_id": 20985, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20987, + "make_id": 20940, + "model_id": 20961, + "year_id": 20985, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20988, + "make_id": 20940, + "model_id": 20961, + "year_id": 20988, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20989, + "make_id": 20940, + "model_id": 20961, + "year_id": 20988, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20990, + "make_id": 20940, + "model_id": 20961, + "year_id": 20988, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20991, + "make_id": 20940, + "model_id": 20991, + "year_id": 20991, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20992, + "make_id": 20940, + "model_id": 20991, + "year_id": 20991, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20993, + "make_id": 20940, + "model_id": 20991, + "year_id": 20991, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20994, + "make_id": 20940, + "model_id": 20991, + "year_id": 20991, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20995, + "make_id": 20940, + "model_id": 20991, + "year_id": 20995, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20996, + "make_id": 20940, + "model_id": 20991, + "year_id": 20995, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20997, + "make_id": 20940, + "model_id": 20991, + "year_id": 20995, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 20998, + "make_id": 20940, + "model_id": 20991, + "year_id": 20998, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 20999, + "make_id": 20940, + "model_id": 20991, + "year_id": 20998, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21000, + "make_id": 20940, + "model_id": 20991, + "year_id": 20998, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21001, + "make_id": 20940, + "model_id": 21001, + "year_id": 21001, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21002, + "make_id": 20940, + "model_id": 21001, + "year_id": 21002, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21003, + "make_id": 20940, + "model_id": 21001, + "year_id": 21003, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21004, + "make_id": 20940, + "model_id": 21001, + "year_id": 21004, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21005, + "make_id": 20940, + "model_id": 21005, + "year_id": 21005, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21006, + "make_id": 20940, + "model_id": 21005, + "year_id": 21005, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21007, + "make_id": 20940, + "model_id": 21005, + "year_id": 21005, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21008, + "make_id": 20940, + "model_id": 21005, + "year_id": 21005, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21009, + "make_id": 20940, + "model_id": 21005, + "year_id": 21009, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21010, + "make_id": 20940, + "model_id": 21005, + "year_id": 21009, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21011, + "make_id": 20940, + "model_id": 21005, + "year_id": 21009, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21012, + "make_id": 20940, + "model_id": 21005, + "year_id": 21009, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21013, + "make_id": 20940, + "model_id": 21005, + "year_id": 21013, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21014, + "make_id": 20940, + "model_id": 21005, + "year_id": 21013, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21015, + "make_id": 20940, + "model_id": 21005, + "year_id": 21013, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21016, + "make_id": 20940, + "model_id": 21005, + "year_id": 21013, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21017, + "make_id": 20940, + "model_id": 21005, + "year_id": 21017, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21018, + "make_id": 20940, + "model_id": 21005, + "year_id": 21017, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21019, + "make_id": 20940, + "model_id": 21005, + "year_id": 21017, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21020, + "make_id": 20940, + "model_id": 21005, + "year_id": 21017, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21021, + "make_id": 20940, + "model_id": 21005, + "year_id": 21021, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21022, + "make_id": 20940, + "model_id": 21005, + "year_id": 21021, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21023, + "make_id": 20940, + "model_id": 21005, + "year_id": 21021, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21024, + "make_id": 20940, + "model_id": 21005, + "year_id": 21021, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21025, + "make_id": 20940, + "model_id": 21005, + "year_id": 21025, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21026, + "make_id": 20940, + "model_id": 21005, + "year_id": 21025, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21027, + "make_id": 20940, + "model_id": 21005, + "year_id": 21025, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21028, + "make_id": 20940, + "model_id": 21005, + "year_id": 21025, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21029, + "make_id": 20940, + "model_id": 21029, + "year_id": 21029, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21030, + "make_id": 20940, + "model_id": 21029, + "year_id": 21029, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21031, + "make_id": 20940, + "model_id": 21029, + "year_id": 21031, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21032, + "make_id": 20940, + "model_id": 21029, + "year_id": 21031, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21033, + "make_id": 20940, + "model_id": 21029, + "year_id": 21033, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21034, + "make_id": 20940, + "model_id": 21029, + "year_id": 21033, + "cylinders": 8, + "displacement": 5, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21035, + "make_id": 20940, + "model_id": 21035, + "year_id": 21035, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21036, + "make_id": 20940, + "model_id": 21035, + "year_id": 21035, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21037, + "make_id": 20940, + "model_id": 21035, + "year_id": 21035, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21038, + "make_id": 20940, + "model_id": 21035, + "year_id": 21035, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21039, + "make_id": 20940, + "model_id": 21035, + "year_id": 21039, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21040, + "make_id": 20940, + "model_id": 21035, + "year_id": 21039, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21041, + "make_id": 20940, + "model_id": 21035, + "year_id": 21039, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21042, + "make_id": 20940, + "model_id": 21035, + "year_id": 21039, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21043, + "make_id": 20940, + "model_id": 21035, + "year_id": 21043, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21044, + "make_id": 20940, + "model_id": 21035, + "year_id": 21043, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21045, + "make_id": 20940, + "model_id": 21035, + "year_id": 21043, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21046, + "make_id": 20940, + "model_id": 21035, + "year_id": 21043, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21047, + "make_id": 20940, + "model_id": 21035, + "year_id": 21047, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21048, + "make_id": 20940, + "model_id": 21035, + "year_id": 21047, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21049, + "make_id": 20940, + "model_id": 21035, + "year_id": 21047, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21050, + "make_id": 20940, + "model_id": 21035, + "year_id": 21047, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21051, + "make_id": 20940, + "model_id": 21035, + "year_id": 21051, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21052, + "make_id": 20940, + "model_id": 21035, + "year_id": 21051, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21053, + "make_id": 20940, + "model_id": 21035, + "year_id": 21051, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21054, + "make_id": 20940, + "model_id": 21035, + "year_id": 21051, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21055, + "make_id": 20940, + "model_id": 21035, + "year_id": 21055, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21056, + "make_id": 20940, + "model_id": 21035, + "year_id": 21055, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21057, + "make_id": 20940, + "model_id": 21035, + "year_id": 21055, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21058, + "make_id": 20940, + "model_id": 21035, + "year_id": 21058, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21059, + "make_id": 20940, + "model_id": 21035, + "year_id": 21058, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21060, + "make_id": 20940, + "model_id": 21035, + "year_id": 21058, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21061, + "make_id": 20940, + "model_id": 21035, + "year_id": 21061, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21062, + "make_id": 20940, + "model_id": 21035, + "year_id": 21061, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21063, + "make_id": 20940, + "model_id": 21035, + "year_id": 21061, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21064, + "make_id": 20940, + "model_id": 21035, + "year_id": 21064, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21065, + "make_id": 20940, + "model_id": 21035, + "year_id": 21064, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21066, + "make_id": 20940, + "model_id": 21035, + "year_id": 21064, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21067, + "make_id": 20940, + "model_id": 21035, + "year_id": 21067, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21068, + "make_id": 20940, + "model_id": 21035, + "year_id": 21067, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21069, + "make_id": 20940, + "model_id": 21035, + "year_id": 21067, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21070, + "make_id": 20940, + "model_id": 21035, + "year_id": 21070, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21071, + "make_id": 20940, + "model_id": 21035, + "year_id": 21070, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21072, + "make_id": 20940, + "model_id": 21035, + "year_id": 21070, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21073, + "make_id": 20940, + "model_id": 21035, + "year_id": 21073, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21074, + "make_id": 20940, + "model_id": 21035, + "year_id": 21073, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21075, + "make_id": 20940, + "model_id": 21035, + "year_id": 21073, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21076, + "make_id": 20940, + "model_id": 21035, + "year_id": 21076, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21077, + "make_id": 20940, + "model_id": 21035, + "year_id": 21076, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21078, + "make_id": 20940, + "model_id": 21035, + "year_id": 21076, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21079, + "make_id": 20940, + "model_id": 21035, + "year_id": 21079, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21080, + "make_id": 20940, + "model_id": 21035, + "year_id": 21079, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21081, + "make_id": 20940, + "model_id": 21035, + "year_id": 21081, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21082, + "make_id": 20940, + "model_id": 21035, + "year_id": 21081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21083, + "make_id": 20940, + "model_id": 21035, + "year_id": 21083, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21084, + "make_id": 20940, + "model_id": 21035, + "year_id": 21083, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21085, + "make_id": 20940, + "model_id": 21035, + "year_id": 21083, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21086, + "make_id": 20940, + "model_id": 21086, + "year_id": 21086, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21087, + "make_id": 20940, + "model_id": 21086, + "year_id": 21086, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21088, + "make_id": 20940, + "model_id": 21086, + "year_id": 21086, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21089, + "make_id": 20940, + "model_id": 21089, + "year_id": 21089, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21090, + "make_id": 20940, + "model_id": 21089, + "year_id": 21089, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21091, + "make_id": 20940, + "model_id": 21091, + "year_id": 21091, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21092, + "make_id": 20940, + "model_id": 21091, + "year_id": 21092, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21093, + "make_id": 20940, + "model_id": 21091, + "year_id": 21093, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21094, + "make_id": 20940, + "model_id": 21091, + "year_id": 21094, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21095, + "make_id": 20940, + "model_id": 21091, + "year_id": 21095, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21096, + "make_id": 20940, + "model_id": 21091, + "year_id": 21096, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21097, + "make_id": 20940, + "model_id": 21097, + "year_id": 21097, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21098, + "make_id": 20940, + "model_id": 21097, + "year_id": 21098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21099, + "make_id": 20940, + "model_id": 21097, + "year_id": 21099, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21100, + "make_id": 20940, + "model_id": 21097, + "year_id": 21100, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21101, + "make_id": 20940, + "model_id": 21101, + "year_id": 21101, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21102, + "make_id": 20940, + "model_id": 21101, + "year_id": 21101, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21103, + "make_id": 20940, + "model_id": 21101, + "year_id": 21103, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21104, + "make_id": 20940, + "model_id": 21101, + "year_id": 21103, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21105, + "make_id": 20940, + "model_id": 21101, + "year_id": 21105, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21106, + "make_id": 20940, + "model_id": 21101, + "year_id": 21105, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21107, + "make_id": 20940, + "model_id": 21101, + "year_id": 21107, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21108, + "make_id": 20940, + "model_id": 21101, + "year_id": 21107, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21109, + "make_id": 20940, + "model_id": 21101, + "year_id": 21107, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21110, + "make_id": 20940, + "model_id": 21101, + "year_id": 21107, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21111, + "make_id": 20940, + "model_id": 21101, + "year_id": 21111, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21112, + "make_id": 20940, + "model_id": 21101, + "year_id": 21111, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21113, + "make_id": 20940, + "model_id": 21101, + "year_id": 21113, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21114, + "make_id": 20940, + "model_id": 21101, + "year_id": 21113, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21115, + "make_id": 20940, + "model_id": 21101, + "year_id": 21115, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21116, + "make_id": 20940, + "model_id": 21101, + "year_id": 21115, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21117, + "make_id": 20940, + "model_id": 21101, + "year_id": 21117, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21118, + "make_id": 20940, + "model_id": 21101, + "year_id": 21117, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21119, + "make_id": 20940, + "model_id": 21101, + "year_id": 21119, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21120, + "make_id": 20940, + "model_id": 21101, + "year_id": 21119, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21121, + "make_id": 20940, + "model_id": 21101, + "year_id": 21121, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21122, + "make_id": 20940, + "model_id": 21101, + "year_id": 21121, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21123, + "make_id": 20940, + "model_id": 21101, + "year_id": 21123, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21124, + "make_id": 20940, + "model_id": 21101, + "year_id": 21123, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21125, + "make_id": 20940, + "model_id": 21101, + "year_id": 21125, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21126, + "make_id": 20940, + "model_id": 21101, + "year_id": 21125, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21127, + "make_id": 20940, + "model_id": 21101, + "year_id": 21127, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21128, + "make_id": 20940, + "model_id": 21101, + "year_id": 21127, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21129, + "make_id": 20940, + "model_id": 21101, + "year_id": 21129, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21130, + "make_id": 20940, + "model_id": 21101, + "year_id": 21129, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21131, + "make_id": 20940, + "model_id": 21101, + "year_id": 21131, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21132, + "make_id": 20940, + "model_id": 21101, + "year_id": 21131, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21133, + "make_id": 20940, + "model_id": 21101, + "year_id": 21133, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21134, + "make_id": 20940, + "model_id": 21101, + "year_id": 21133, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21135, + "make_id": 20940, + "model_id": 21101, + "year_id": 21135, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21136, + "make_id": 20940, + "model_id": 21101, + "year_id": 21135, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21137, + "make_id": 20940, + "model_id": 21137, + "year_id": 21137, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21138, + "make_id": 20940, + "model_id": 21137, + "year_id": 21138, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21139, + "make_id": 20940, + "model_id": 21137, + "year_id": 21139, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21140, + "make_id": 20940, + "model_id": 21137, + "year_id": 21140, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21141, + "make_id": 20940, + "model_id": 21137, + "year_id": 21141, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21142, + "make_id": 20940, + "model_id": 21142, + "year_id": 21142, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21143, + "make_id": 20940, + "model_id": 21142, + "year_id": 21142, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21144, + "make_id": 20940, + "model_id": 21142, + "year_id": 21144, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21145, + "make_id": 20940, + "model_id": 21142, + "year_id": 21144, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21146, + "make_id": 20940, + "model_id": 21142, + "year_id": 21146, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21147, + "make_id": 20940, + "model_id": 21142, + "year_id": 21146, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21148, + "make_id": 20940, + "model_id": 21142, + "year_id": 21148, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21149, + "make_id": 20940, + "model_id": 21142, + "year_id": 21148, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21150, + "make_id": 20940, + "model_id": 21142, + "year_id": 21150, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21151, + "make_id": 20940, + "model_id": 21142, + "year_id": 21150, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21152, + "make_id": 20940, + "model_id": 21142, + "year_id": 21152, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21153, + "make_id": 20940, + "model_id": 21142, + "year_id": 21152, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21154, + "make_id": 20940, + "model_id": 21154, + "year_id": 21154, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21155, + "make_id": 20940, + "model_id": 21154, + "year_id": 21155, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21156, + "make_id": 20940, + "model_id": 21154, + "year_id": 21156, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21157, + "make_id": 20940, + "model_id": 21154, + "year_id": 21157, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21158, + "make_id": 20940, + "model_id": 21154, + "year_id": 21158, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21159, + "make_id": 20940, + "model_id": 21154, + "year_id": 21159, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21160, + "make_id": 20940, + "model_id": 21154, + "year_id": 21160, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21161, + "make_id": 20940, + "model_id": 21154, + "year_id": 21161, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21162, + "make_id": 20940, + "model_id": 21154, + "year_id": 21162, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21163, + "make_id": 20940, + "model_id": 21154, + "year_id": 21163, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21164, + "make_id": 20940, + "model_id": 21154, + "year_id": 21164, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21165, + "make_id": 20940, + "model_id": 21154, + "year_id": 21165, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21166, + "make_id": 20940, + "model_id": 21154, + "year_id": 21166, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21167, + "make_id": 20940, + "model_id": 21154, + "year_id": 21167, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21168, + "make_id": 20940, + "model_id": 21154, + "year_id": 21168, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21169, + "make_id": 20940, + "model_id": 21169, + "year_id": 21169, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21170, + "make_id": 20940, + "model_id": 21169, + "year_id": 21170, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21171, + "make_id": 20940, + "model_id": 21169, + "year_id": 21171, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21172, + "make_id": 20940, + "model_id": 21172, + "year_id": 21172, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21173, + "make_id": 20940, + "model_id": 21172, + "year_id": 21173, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21174, + "make_id": 20940, + "model_id": 21172, + "year_id": 21174, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21175, + "make_id": 20940, + "model_id": 21175, + "year_id": 21175, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21176, + "make_id": 20940, + "model_id": 21175, + "year_id": 21175, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21177, + "make_id": 20940, + "model_id": 21175, + "year_id": 21177, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21178, + "make_id": 20940, + "model_id": 21175, + "year_id": 21177, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21179, + "make_id": 20940, + "model_id": 21175, + "year_id": 21179, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21180, + "make_id": 20940, + "model_id": 21175, + "year_id": 21179, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21181, + "make_id": 20940, + "model_id": 21175, + "year_id": 21179, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21182, + "make_id": 20940, + "model_id": 21175, + "year_id": 21179, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21183, + "make_id": 20940, + "model_id": 21175, + "year_id": 21179, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21184, + "make_id": 20940, + "model_id": 21175, + "year_id": 21179, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21185, + "make_id": 20940, + "model_id": 21175, + "year_id": 21185, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21186, + "make_id": 20940, + "model_id": 21175, + "year_id": 21185, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21187, + "make_id": 20940, + "model_id": 21175, + "year_id": 21185, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21188, + "make_id": 20940, + "model_id": 21175, + "year_id": 21185, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21189, + "make_id": 20940, + "model_id": 21175, + "year_id": 21189, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21190, + "make_id": 20940, + "model_id": 21175, + "year_id": 21189, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21191, + "make_id": 20940, + "model_id": 21175, + "year_id": 21189, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21192, + "make_id": 20940, + "model_id": 21175, + "year_id": 21189, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21193, + "make_id": 20940, + "model_id": 21175, + "year_id": 21193, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21194, + "make_id": 20940, + "model_id": 21175, + "year_id": 21193, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21195, + "make_id": 20940, + "model_id": 21175, + "year_id": 21195, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21196, + "make_id": 20940, + "model_id": 21175, + "year_id": 21195, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21197, + "make_id": 20940, + "model_id": 21197, + "year_id": 21197, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21198, + "make_id": 20940, + "model_id": 21197, + "year_id": 21197, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21199, + "make_id": 20940, + "model_id": 21197, + "year_id": 21199, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21200, + "make_id": 20940, + "model_id": 21197, + "year_id": 21199, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21201, + "make_id": 20940, + "model_id": 21201, + "year_id": 21201, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21202, + "make_id": 20940, + "model_id": 21201, + "year_id": 21201, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21203, + "make_id": 20940, + "model_id": 21201, + "year_id": 21203, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21204, + "make_id": 20940, + "model_id": 21201, + "year_id": 21203, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21205, + "make_id": 20940, + "model_id": 21201, + "year_id": 21203, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21206, + "make_id": 20940, + "model_id": 21201, + "year_id": 21203, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21207, + "make_id": 20940, + "model_id": 21201, + "year_id": 21207, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21208, + "make_id": 20940, + "model_id": 21201, + "year_id": 21207, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21209, + "make_id": 20940, + "model_id": 21201, + "year_id": 21207, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21210, + "make_id": 20940, + "model_id": 21201, + "year_id": 21207, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21211, + "make_id": 20940, + "model_id": 21201, + "year_id": 21211, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21212, + "make_id": 20940, + "model_id": 21201, + "year_id": 21211, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21213, + "make_id": 20940, + "model_id": 21201, + "year_id": 21211, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21214, + "make_id": 20940, + "model_id": 21201, + "year_id": 21211, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21215, + "make_id": 20940, + "model_id": 21201, + "year_id": 21215, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21216, + "make_id": 20940, + "model_id": 21201, + "year_id": 21215, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21217, + "make_id": 20940, + "model_id": 21201, + "year_id": 21215, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21218, + "make_id": 20940, + "model_id": 21201, + "year_id": 21215, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21219, + "make_id": 20940, + "model_id": 21201, + "year_id": 21219, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21220, + "make_id": 20940, + "model_id": 21201, + "year_id": 21219, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21221, + "make_id": 20940, + "model_id": 21201, + "year_id": 21219, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21222, + "make_id": 20940, + "model_id": 21201, + "year_id": 21219, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21223, + "make_id": 20940, + "model_id": 21201, + "year_id": 21223, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21224, + "make_id": 20940, + "model_id": 21201, + "year_id": 21223, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21225, + "make_id": 20940, + "model_id": 21201, + "year_id": 21223, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21226, + "make_id": 20940, + "model_id": 21201, + "year_id": 21223, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21227, + "make_id": 20940, + "model_id": 21201, + "year_id": 21227, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21228, + "make_id": 20940, + "model_id": 21201, + "year_id": 21227, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21229, + "make_id": 20940, + "model_id": 21201, + "year_id": 21227, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21230, + "make_id": 20940, + "model_id": 21201, + "year_id": 21227, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21231, + "make_id": 20940, + "model_id": 21201, + "year_id": 21227, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21232, + "make_id": 20940, + "model_id": 21201, + "year_id": 21232, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21233, + "make_id": 20940, + "model_id": 21201, + "year_id": 21232, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21234, + "make_id": 20940, + "model_id": 21201, + "year_id": 21232, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21235, + "make_id": 20940, + "model_id": 21201, + "year_id": 21232, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21236, + "make_id": 20940, + "model_id": 21201, + "year_id": 21232, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21237, + "make_id": 20940, + "model_id": 21201, + "year_id": 21232, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21238, + "make_id": 20940, + "model_id": 21201, + "year_id": 21232, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21239, + "make_id": 20940, + "model_id": 21201, + "year_id": 21239, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21240, + "make_id": 20940, + "model_id": 21201, + "year_id": 21239, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21241, + "make_id": 20940, + "model_id": 21201, + "year_id": 21239, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21242, + "make_id": 20940, + "model_id": 21201, + "year_id": 21239, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21243, + "make_id": 20940, + "model_id": 21201, + "year_id": 21239, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21244, + "make_id": 20940, + "model_id": 21201, + "year_id": 21239, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21245, + "make_id": 20940, + "model_id": 21201, + "year_id": 21239, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21246, + "make_id": 20940, + "model_id": 21201, + "year_id": 21246, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21247, + "make_id": 20940, + "model_id": 21201, + "year_id": 21246, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21248, + "make_id": 20940, + "model_id": 21201, + "year_id": 21246, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21249, + "make_id": 20940, + "model_id": 21201, + "year_id": 21246, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21250, + "make_id": 20940, + "model_id": 21201, + "year_id": 21246, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21251, + "make_id": 20940, + "model_id": 21201, + "year_id": 21251, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21252, + "make_id": 20940, + "model_id": 21201, + "year_id": 21251, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21253, + "make_id": 20940, + "model_id": 21201, + "year_id": 21251, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21254, + "make_id": 20940, + "model_id": 21201, + "year_id": 21251, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21255, + "make_id": 20940, + "model_id": 21201, + "year_id": 21255, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21256, + "make_id": 20940, + "model_id": 21201, + "year_id": 21255, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21257, + "make_id": 20940, + "model_id": 21201, + "year_id": 21255, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21258, + "make_id": 20940, + "model_id": 21201, + "year_id": 21255, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21259, + "make_id": 20940, + "model_id": 21201, + "year_id": 21255, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21260, + "make_id": 20940, + "model_id": 21201, + "year_id": 21255, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21261, + "make_id": 20940, + "model_id": 21201, + "year_id": 21261, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21262, + "make_id": 20940, + "model_id": 21201, + "year_id": 21261, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21263, + "make_id": 20940, + "model_id": 21201, + "year_id": 21261, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21264, + "make_id": 20940, + "model_id": 21201, + "year_id": 21261, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21265, + "make_id": 20940, + "model_id": 21201, + "year_id": 21261, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21266, + "make_id": 20940, + "model_id": 21201, + "year_id": 21261, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21267, + "make_id": 20940, + "model_id": 21267, + "year_id": 21267, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21268, + "make_id": 20940, + "model_id": 21267, + "year_id": 21268, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21269, + "make_id": 20940, + "model_id": 21269, + "year_id": 21269, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21270, + "make_id": 20940, + "model_id": 21269, + "year_id": 21269, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21271, + "make_id": 20940, + "model_id": 21269, + "year_id": 21269, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21272, + "make_id": 20940, + "model_id": 21269, + "year_id": 21269, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21273, + "make_id": 20940, + "model_id": 21269, + "year_id": 21273, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21274, + "make_id": 20940, + "model_id": 21269, + "year_id": 21273, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21275, + "make_id": 20940, + "model_id": 21269, + "year_id": 21273, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21276, + "make_id": 20940, + "model_id": 21269, + "year_id": 21273, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21277, + "make_id": 20940, + "model_id": 21269, + "year_id": 21277, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21278, + "make_id": 20940, + "model_id": 21269, + "year_id": 21277, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21279, + "make_id": 20940, + "model_id": 21269, + "year_id": 21277, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21280, + "make_id": 20940, + "model_id": 21269, + "year_id": 21277, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21281, + "make_id": 20940, + "model_id": 21269, + "year_id": 21281, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21282, + "make_id": 20940, + "model_id": 21269, + "year_id": 21281, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21283, + "make_id": 20940, + "model_id": 21269, + "year_id": 21281, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21284, + "make_id": 20940, + "model_id": 21269, + "year_id": 21281, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21285, + "make_id": 20940, + "model_id": 21269, + "year_id": 21285, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21286, + "make_id": 20940, + "model_id": 21269, + "year_id": 21285, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21287, + "make_id": 20940, + "model_id": 21269, + "year_id": 21285, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21288, + "make_id": 20940, + "model_id": 21269, + "year_id": 21288, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21289, + "make_id": 20940, + "model_id": 21269, + "year_id": 21288, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21290, + "make_id": 20940, + "model_id": 21269, + "year_id": 21288, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21291, + "make_id": 20940, + "model_id": 21269, + "year_id": 21291, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21292, + "make_id": 20940, + "model_id": 21269, + "year_id": 21291, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21293, + "make_id": 20940, + "model_id": 21269, + "year_id": 21291, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21294, + "make_id": 20940, + "model_id": 21294, + "year_id": 21294, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21295, + "make_id": 20940, + "model_id": 21294, + "year_id": 21294, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21296, + "make_id": 20940, + "model_id": 21294, + "year_id": 21296, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21297, + "make_id": 20940, + "model_id": 21294, + "year_id": 21296, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21298, + "make_id": 20940, + "model_id": 21298, + "year_id": 21298, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21299, + "make_id": 20940, + "model_id": 21298, + "year_id": 21299, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21300, + "make_id": 20940, + "model_id": 21298, + "year_id": 21300, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21301, + "make_id": 20940, + "model_id": 21301, + "year_id": 21301, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 21302, + "make_id": 20940, + "model_id": 21301, + "year_id": 21302, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 21303, + "make_id": 20940, + "model_id": 21303, + "year_id": 21303, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21304, + "make_id": 20940, + "model_id": 21303, + "year_id": 21303, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21305, + "make_id": 20940, + "model_id": 21303, + "year_id": 21305, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21306, + "make_id": 20940, + "model_id": 21303, + "year_id": 21305, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21307, + "make_id": 20940, + "model_id": 21303, + "year_id": 21307, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21308, + "make_id": 20940, + "model_id": 21303, + "year_id": 21307, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21309, + "make_id": 20940, + "model_id": 21303, + "year_id": 21309, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21310, + "make_id": 20940, + "model_id": 21303, + "year_id": 21309, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21311, + "make_id": 20940, + "model_id": 21303, + "year_id": 21311, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21312, + "make_id": 20940, + "model_id": 21303, + "year_id": 21311, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21313, + "make_id": 20940, + "model_id": 21303, + "year_id": 21313, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21314, + "make_id": 20940, + "model_id": 21303, + "year_id": 21313, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21315, + "make_id": 20940, + "model_id": 21303, + "year_id": 21315, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21316, + "make_id": 20940, + "model_id": 21303, + "year_id": 21315, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21317, + "make_id": 20940, + "model_id": 21317, + "year_id": 21317, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21318, + "make_id": 20940, + "model_id": 21317, + "year_id": 21317, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21319, + "make_id": 20940, + "model_id": 21319, + "year_id": 21319, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21320, + "make_id": 20940, + "model_id": 21319, + "year_id": 21319, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21321, + "make_id": 20940, + "model_id": 21321, + "year_id": 21321, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21322, + "make_id": 20940, + "model_id": 21321, + "year_id": 21321, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21323, + "make_id": 20940, + "model_id": 21321, + "year_id": 21321, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21324, + "make_id": 20940, + "model_id": 21321, + "year_id": 21321, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21325, + "make_id": 20940, + "model_id": 21321, + "year_id": 21325, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21326, + "make_id": 20940, + "model_id": 21321, + "year_id": 21325, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21327, + "make_id": 20940, + "model_id": 21321, + "year_id": 21325, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21328, + "make_id": 20940, + "model_id": 21321, + "year_id": 21328, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21329, + "make_id": 20940, + "model_id": 21321, + "year_id": 21328, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21330, + "make_id": 20940, + "model_id": 21321, + "year_id": 21328, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21331, + "make_id": 20940, + "model_id": 21321, + "year_id": 21328, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21332, + "make_id": 20940, + "model_id": 21321, + "year_id": 21332, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21333, + "make_id": 20940, + "model_id": 21321, + "year_id": 21332, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21334, + "make_id": 20940, + "model_id": 21321, + "year_id": 21332, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21335, + "make_id": 20940, + "model_id": 21321, + "year_id": 21332, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21336, + "make_id": 20940, + "model_id": 21321, + "year_id": 21336, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21337, + "make_id": 20940, + "model_id": 21321, + "year_id": 21336, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21338, + "make_id": 20940, + "model_id": 21321, + "year_id": 21336, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21339, + "make_id": 20940, + "model_id": 21321, + "year_id": 21336, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21340, + "make_id": 20940, + "model_id": 21321, + "year_id": 21340, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21341, + "make_id": 20940, + "model_id": 21321, + "year_id": 21340, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21342, + "make_id": 20940, + "model_id": 21321, + "year_id": 21340, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21343, + "make_id": 20940, + "model_id": 21321, + "year_id": 21340, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21344, + "make_id": 20940, + "model_id": 21321, + "year_id": 21344, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21345, + "make_id": 20940, + "model_id": 21321, + "year_id": 21344, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21346, + "make_id": 20940, + "model_id": 21321, + "year_id": 21344, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21347, + "make_id": 20940, + "model_id": 21321, + "year_id": 21344, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21348, + "make_id": 20940, + "model_id": 21321, + "year_id": 21344, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21349, + "make_id": 20940, + "model_id": 21321, + "year_id": 21344, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21350, + "make_id": 20940, + "model_id": 21321, + "year_id": 21344, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21351, + "make_id": 20940, + "model_id": 21321, + "year_id": 21344, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21352, + "make_id": 20940, + "model_id": 21321, + "year_id": 21352, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21353, + "make_id": 20940, + "model_id": 21321, + "year_id": 21352, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21354, + "make_id": 20940, + "model_id": 21321, + "year_id": 21352, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21355, + "make_id": 20940, + "model_id": 21321, + "year_id": 21352, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21356, + "make_id": 20940, + "model_id": 21321, + "year_id": 21356, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21357, + "make_id": 20940, + "model_id": 21321, + "year_id": 21356, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21358, + "make_id": 20940, + "model_id": 21321, + "year_id": 21356, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21359, + "make_id": 20940, + "model_id": 21321, + "year_id": 21356, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21360, + "make_id": 20940, + "model_id": 21321, + "year_id": 21356, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21361, + "make_id": 20940, + "model_id": 21321, + "year_id": 21361, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21362, + "make_id": 20940, + "model_id": 21321, + "year_id": 21361, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21363, + "make_id": 20940, + "model_id": 21321, + "year_id": 21361, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21364, + "make_id": 20940, + "model_id": 21321, + "year_id": 21361, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21365, + "make_id": 20940, + "model_id": 21321, + "year_id": 21361, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21366, + "make_id": 20940, + "model_id": 21321, + "year_id": 21366, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21367, + "make_id": 20940, + "model_id": 21321, + "year_id": 21366, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21368, + "make_id": 20940, + "model_id": 21321, + "year_id": 21366, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21369, + "make_id": 20940, + "model_id": 21321, + "year_id": 21366, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21370, + "make_id": 20940, + "model_id": 21321, + "year_id": 21366, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21371, + "make_id": 20940, + "model_id": 21321, + "year_id": 21371, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21372, + "make_id": 20940, + "model_id": 21321, + "year_id": 21371, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21373, + "make_id": 20940, + "model_id": 21321, + "year_id": 21371, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21374, + "make_id": 20940, + "model_id": 21321, + "year_id": 21371, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21375, + "make_id": 20940, + "model_id": 21321, + "year_id": 21371, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21376, + "make_id": 20940, + "model_id": 21321, + "year_id": 21376, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21377, + "make_id": 20940, + "model_id": 21321, + "year_id": 21376, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21378, + "make_id": 20940, + "model_id": 21321, + "year_id": 21376, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21379, + "make_id": 20940, + "model_id": 21321, + "year_id": 21376, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21380, + "make_id": 20940, + "model_id": 21321, + "year_id": 21376, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21381, + "make_id": 20940, + "model_id": 21321, + "year_id": 21381, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21382, + "make_id": 20940, + "model_id": 21321, + "year_id": 21381, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21383, + "make_id": 20940, + "model_id": 21321, + "year_id": 21381, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21384, + "make_id": 20940, + "model_id": 21321, + "year_id": 21381, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21385, + "make_id": 20940, + "model_id": 21321, + "year_id": 21381, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21386, + "make_id": 20940, + "model_id": 21321, + "year_id": 21386, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21387, + "make_id": 20940, + "model_id": 21321, + "year_id": 21386, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21388, + "make_id": 20940, + "model_id": 21321, + "year_id": 21386, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21389, + "make_id": 20940, + "model_id": 21321, + "year_id": 21386, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21390, + "make_id": 20940, + "model_id": 21321, + "year_id": 21386, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21391, + "make_id": 20940, + "model_id": 21321, + "year_id": 21386, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21392, + "make_id": 20940, + "model_id": 21321, + "year_id": 21392, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21393, + "make_id": 20940, + "model_id": 21321, + "year_id": 21392, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21394, + "make_id": 20940, + "model_id": 21321, + "year_id": 21392, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21395, + "make_id": 20940, + "model_id": 21321, + "year_id": 21392, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21396, + "make_id": 20940, + "model_id": 21321, + "year_id": 21392, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21397, + "make_id": 20940, + "model_id": 21321, + "year_id": 21392, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21398, + "make_id": 20940, + "model_id": 21321, + "year_id": 21398, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21399, + "make_id": 20940, + "model_id": 21321, + "year_id": 21398, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21400, + "make_id": 20940, + "model_id": 21321, + "year_id": 21398, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21401, + "make_id": 20940, + "model_id": 21321, + "year_id": 21398, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21402, + "make_id": 20940, + "model_id": 21321, + "year_id": 21398, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21403, + "make_id": 20940, + "model_id": 21321, + "year_id": 21398, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21404, + "make_id": 20940, + "model_id": 21321, + "year_id": 21404, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21405, + "make_id": 20940, + "model_id": 21321, + "year_id": 21404, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21406, + "make_id": 20940, + "model_id": 21321, + "year_id": 21404, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21407, + "make_id": 20940, + "model_id": 21321, + "year_id": 21404, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21408, + "make_id": 20940, + "model_id": 21321, + "year_id": 21408, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21409, + "make_id": 20940, + "model_id": 21321, + "year_id": 21408, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21410, + "make_id": 20940, + "model_id": 21321, + "year_id": 21408, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21411, + "make_id": 20940, + "model_id": 21321, + "year_id": 21408, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21412, + "make_id": 20940, + "model_id": 21321, + "year_id": 21412, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21413, + "make_id": 20940, + "model_id": 21321, + "year_id": 21412, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21414, + "make_id": 20940, + "model_id": 21321, + "year_id": 21414, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21415, + "make_id": 20940, + "model_id": 21321, + "year_id": 21414, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21416, + "make_id": 20940, + "model_id": 21321, + "year_id": 21414, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21417, + "make_id": 20940, + "model_id": 21321, + "year_id": 21414, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21418, + "make_id": 20940, + "model_id": 21418, + "year_id": 21418, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21419, + "make_id": 20940, + "model_id": 21418, + "year_id": 21418, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21420, + "make_id": 20940, + "model_id": 21420, + "year_id": 21420, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21421, + "make_id": 20940, + "model_id": 21420, + "year_id": 21420, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21422, + "make_id": 20940, + "model_id": 21420, + "year_id": 21422, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21423, + "make_id": 20940, + "model_id": 21420, + "year_id": 21422, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21424, + "make_id": 21424, + "model_id": 21424, + "year_id": 21424, + "cylinders": 8, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21425, + "make_id": 21424, + "model_id": 21424, + "year_id": 21425, + "cylinders": 8, + "displacement": 4.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21426, + "make_id": 21426, + "model_id": 21426, + "year_id": 21426, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21427, + "make_id": 21427, + "model_id": 21427, + "year_id": 21427, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 21428, + "make_id": 21427, + "model_id": 21427, + "year_id": 21428, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21429, + "make_id": 21427, + "model_id": 21427, + "year_id": 21429, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21430, + "make_id": 21427, + "model_id": 21427, + "year_id": 21430, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21431, + "make_id": 21427, + "model_id": 21427, + "year_id": 21431, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21432, + "make_id": 21427, + "model_id": 21427, + "year_id": 21432, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21433, + "make_id": 21427, + "model_id": 21433, + "year_id": 21433, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21434, + "make_id": 21427, + "model_id": 21433, + "year_id": 21434, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21435, + "make_id": 21427, + "model_id": 21433, + "year_id": 21435, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21436, + "make_id": 21427, + "model_id": 21433, + "year_id": 21436, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21437, + "make_id": 21427, + "model_id": 21433, + "year_id": 21437, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21438, + "make_id": 21427, + "model_id": 21438, + "year_id": 21438, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21439, + "make_id": 21427, + "model_id": 21439, + "year_id": 21439, + "cylinders": 12, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21440, + "make_id": 21427, + "model_id": 21439, + "year_id": 21440, + "cylinders": 12, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21441, + "make_id": 21427, + "model_id": 21439, + "year_id": 21441, + "cylinders": 12, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21442, + "make_id": 21427, + "model_id": 21439, + "year_id": 21442, + "cylinders": 12, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21443, + "make_id": 21427, + "model_id": 21439, + "year_id": 21443, + "cylinders": 12, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21444, + "make_id": 21427, + "model_id": 21444, + "year_id": 21444, + "cylinders": 12, + "displacement": 4.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 21445, + "make_id": 21427, + "model_id": 21444, + "year_id": 21444, + "cylinders": 12, + "displacement": 4.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 21446, + "make_id": 21427, + "model_id": 21446, + "year_id": 21446, + "cylinders": 12, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21447, + "make_id": 21427, + "model_id": 21447, + "year_id": 21447, + "cylinders": 12, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21448, + "make_id": 21427, + "model_id": 21447, + "year_id": 21448, + "cylinders": 12, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21449, + "make_id": 21427, + "model_id": 21447, + "year_id": 21449, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21450, + "make_id": 21427, + "model_id": 21450, + "year_id": 21450, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21451, + "make_id": 21427, + "model_id": 21450, + "year_id": 21451, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21452, + "make_id": 21427, + "model_id": 21450, + "year_id": 21452, + "cylinders": 12, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21453, + "make_id": 21427, + "model_id": 21450, + "year_id": 21453, + "cylinders": 12, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21454, + "make_id": 21427, + "model_id": 21450, + "year_id": 21454, + "cylinders": 12, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21455, + "make_id": 21427, + "model_id": 21450, + "year_id": 21455, + "cylinders": 12, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21456, + "make_id": 21427, + "model_id": 21450, + "year_id": 21455, + "cylinders": 12, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21457, + "make_id": 21427, + "model_id": 21450, + "year_id": 21457, + "cylinders": 12, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21458, + "make_id": 21427, + "model_id": 21458, + "year_id": 21458, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21459, + "make_id": 21427, + "model_id": 21458, + "year_id": 21458, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21460, + "make_id": 21427, + "model_id": 21458, + "year_id": 21460, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21461, + "make_id": 21427, + "model_id": 21458, + "year_id": 21460, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21462, + "make_id": 21427, + "model_id": 21458, + "year_id": 21462, + "cylinders": 10, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21463, + "make_id": 21427, + "model_id": 21458, + "year_id": 21462, + "cylinders": 10, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21464, + "make_id": 21427, + "model_id": 21458, + "year_id": 21464, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21465, + "make_id": 21427, + "model_id": 21458, + "year_id": 21464, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21466, + "make_id": 21427, + "model_id": 21458, + "year_id": 21466, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21467, + "make_id": 21427, + "model_id": 21458, + "year_id": 21466, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21468, + "make_id": 21427, + "model_id": 21458, + "year_id": 21468, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21469, + "make_id": 21427, + "model_id": 21458, + "year_id": 21468, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21470, + "make_id": 21427, + "model_id": 21458, + "year_id": 21470, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21471, + "make_id": 21427, + "model_id": 21458, + "year_id": 21470, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21472, + "make_id": 21427, + "model_id": 21458, + "year_id": 21472, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21473, + "make_id": 21427, + "model_id": 21458, + "year_id": 21472, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21474, + "make_id": 21427, + "model_id": 21474, + "year_id": 21474, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21475, + "make_id": 21427, + "model_id": 21474, + "year_id": 21474, + "cylinders": 10, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21476, + "make_id": 21427, + "model_id": 21476, + "year_id": 21476, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21477, + "make_id": 21427, + "model_id": 21476, + "year_id": 21476, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21478, + "make_id": 21427, + "model_id": 21476, + "year_id": 21478, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21479, + "make_id": 21427, + "model_id": 21476, + "year_id": 21478, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21480, + "make_id": 21427, + "model_id": 21476, + "year_id": 21480, + "cylinders": 10, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21481, + "make_id": 21427, + "model_id": 21476, + "year_id": 21480, + "cylinders": 10, + "displacement": 5.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21482, + "make_id": 21427, + "model_id": 21476, + "year_id": 21482, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21483, + "make_id": 21427, + "model_id": 21476, + "year_id": 21482, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21484, + "make_id": 21427, + "model_id": 21476, + "year_id": 21484, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21485, + "make_id": 21427, + "model_id": 21476, + "year_id": 21484, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21486, + "make_id": 21427, + "model_id": 21476, + "year_id": 21486, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21487, + "make_id": 21427, + "model_id": 21476, + "year_id": 21486, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21488, + "make_id": 21427, + "model_id": 21476, + "year_id": 21488, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21489, + "make_id": 21427, + "model_id": 21476, + "year_id": 21488, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21490, + "make_id": 21427, + "model_id": 21476, + "year_id": 21490, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 21491, + "make_id": 21427, + "model_id": 21476, + "year_id": 21490, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21492, + "make_id": 21427, + "model_id": 21492, + "year_id": 21492, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21493, + "make_id": 21427, + "model_id": 21492, + "year_id": 21493, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21494, + "make_id": 21427, + "model_id": 21492, + "year_id": 21494, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21495, + "make_id": 21427, + "model_id": 21492, + "year_id": 21494, + "cylinders": 10, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21496, + "make_id": 21427, + "model_id": 21496, + "year_id": 21496, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21497, + "make_id": 21427, + "model_id": 21496, + "year_id": 21497, + "cylinders": 10, + "displacement": 5.2, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21498, + "make_id": 21427, + "model_id": 21496, + "year_id": 21497, + "cylinders": 10, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21499, + "make_id": 21427, + "model_id": 21499, + "year_id": 21499, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21500, + "make_id": 21427, + "model_id": 21499, + "year_id": 21499, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21501, + "make_id": 21427, + "model_id": 21499, + "year_id": 21501, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21502, + "make_id": 21427, + "model_id": 21499, + "year_id": 21501, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21503, + "make_id": 21427, + "model_id": 21503, + "year_id": 21503, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21504, + "make_id": 21427, + "model_id": 21503, + "year_id": 21503, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21505, + "make_id": 21427, + "model_id": 21503, + "year_id": 21503, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21506, + "make_id": 21427, + "model_id": 21503, + "year_id": 21503, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21507, + "make_id": 21427, + "model_id": 21507, + "year_id": 21507, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21508, + "make_id": 21427, + "model_id": 21507, + "year_id": 21507, + "cylinders": 12, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21509, + "make_id": 21427, + "model_id": 21507, + "year_id": 21509, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21510, + "make_id": 21427, + "model_id": 21507, + "year_id": 21509, + "cylinders": 12, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21511, + "make_id": 21427, + "model_id": 21511, + "year_id": 21511, + "cylinders": 12, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21512, + "make_id": 21427, + "model_id": 21511, + "year_id": 21511, + "cylinders": 12, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21513, + "make_id": 21427, + "model_id": 21511, + "year_id": 21513, + "cylinders": 12, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21514, + "make_id": 21427, + "model_id": 21511, + "year_id": 21513, + "cylinders": 12, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21515, + "make_id": 21427, + "model_id": 21511, + "year_id": 21515, + "cylinders": 12, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21516, + "make_id": 21427, + "model_id": 21511, + "year_id": 21515, + "cylinders": 12, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21517, + "make_id": 21427, + "model_id": 21511, + "year_id": 21517, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21518, + "make_id": 21427, + "model_id": 21511, + "year_id": 21517, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21519, + "make_id": 21427, + "model_id": 21519, + "year_id": 21519, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21520, + "make_id": 21427, + "model_id": 21519, + "year_id": 21519, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21521, + "make_id": 21427, + "model_id": 21519, + "year_id": 21521, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21522, + "make_id": 21427, + "model_id": 21519, + "year_id": 21521, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21523, + "make_id": 21427, + "model_id": 21519, + "year_id": 21523, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 21524, + "make_id": 21427, + "model_id": 21519, + "year_id": 21523, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21525, + "make_id": 21427, + "model_id": 21525, + "year_id": 21525, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21526, + "make_id": 21427, + "model_id": 21526, + "year_id": 21526, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21527, + "make_id": 21427, + "model_id": 21527, + "year_id": 21527, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21528, + "make_id": 21427, + "model_id": 21527, + "year_id": 21527, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21529, + "make_id": 21427, + "model_id": 21527, + "year_id": 21529, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21530, + "make_id": 21427, + "model_id": 21527, + "year_id": 21529, + "cylinders": 12, + "displacement": 6.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21531, + "make_id": 21427, + "model_id": 21527, + "year_id": 21531, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 21532, + "make_id": 21427, + "model_id": 21527, + "year_id": 21531, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21533, + "make_id": 21427, + "model_id": 21533, + "year_id": 21533, + "cylinders": 12, + "displacement": 6.5, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 21534, + "make_id": 21534, + "model_id": 21534, + "year_id": 21534, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21535, + "make_id": 21534, + "model_id": 21535, + "year_id": 21535, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21536, + "make_id": 21534, + "model_id": 21535, + "year_id": 21536, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21537, + "make_id": 21534, + "model_id": 21535, + "year_id": 21537, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21538, + "make_id": 21534, + "model_id": 21538, + "year_id": 21538, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21539, + "make_id": 21534, + "model_id": 21538, + "year_id": 21538, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21540, + "make_id": 21534, + "model_id": 21538, + "year_id": 21540, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21541, + "make_id": 21534, + "model_id": 21538, + "year_id": 21540, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21542, + "make_id": 21534, + "model_id": 21538, + "year_id": 21542, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21543, + "make_id": 21534, + "model_id": 21538, + "year_id": 21543, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21544, + "make_id": 21534, + "model_id": 21538, + "year_id": 21543, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21545, + "make_id": 21534, + "model_id": 21538, + "year_id": 21545, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21546, + "make_id": 21534, + "model_id": 21538, + "year_id": 21545, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21547, + "make_id": 21534, + "model_id": 21538, + "year_id": 21547, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21548, + "make_id": 21534, + "model_id": 21548, + "year_id": 21548, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21549, + "make_id": 21534, + "model_id": 21548, + "year_id": 21549, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21550, + "make_id": 21534, + "model_id": 21548, + "year_id": 21550, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21551, + "make_id": 21534, + "model_id": 21548, + "year_id": 21551, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21552, + "make_id": 21534, + "model_id": 21548, + "year_id": 21552, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21553, + "make_id": 21534, + "model_id": 21548, + "year_id": 21553, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21554, + "make_id": 21534, + "model_id": 21554, + "year_id": 21554, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 21555, + "make_id": 21534, + "model_id": 21554, + "year_id": 21555, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 21556, + "make_id": 21534, + "model_id": 21556, + "year_id": 21556, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21557, + "make_id": 21534, + "model_id": 21556, + "year_id": 21557, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21558, + "make_id": 21534, + "model_id": 21556, + "year_id": 21558, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21559, + "make_id": 21534, + "model_id": 21559, + "year_id": 21559, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21560, + "make_id": 21534, + "model_id": 21560, + "year_id": 21560, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21561, + "make_id": 21534, + "model_id": 21561, + "year_id": 21561, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21562, + "make_id": 21534, + "model_id": 21561, + "year_id": 21562, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21563, + "make_id": 21534, + "model_id": 21561, + "year_id": 21563, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21564, + "make_id": 21534, + "model_id": 21561, + "year_id": 21564, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21565, + "make_id": 21534, + "model_id": 21561, + "year_id": 21565, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21566, + "make_id": 21534, + "model_id": 21561, + "year_id": 21566, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21567, + "make_id": 21534, + "model_id": 21561, + "year_id": 21567, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21568, + "make_id": 21534, + "model_id": 21561, + "year_id": 21568, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 21569, + "make_id": 21534, + "model_id": 21569, + "year_id": 21569, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21570, + "make_id": 21534, + "model_id": 21569, + "year_id": 21569, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21571, + "make_id": 21534, + "model_id": 21569, + "year_id": 21571, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21572, + "make_id": 21534, + "model_id": 21569, + "year_id": 21571, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21573, + "make_id": 21534, + "model_id": 21569, + "year_id": 21573, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21574, + "make_id": 21534, + "model_id": 21569, + "year_id": 21573, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21575, + "make_id": 21534, + "model_id": 21569, + "year_id": 21575, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21576, + "make_id": 21534, + "model_id": 21569, + "year_id": 21576, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21577, + "make_id": 21534, + "model_id": 21577, + "year_id": 21577, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21578, + "make_id": 21534, + "model_id": 21577, + "year_id": 21578, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21579, + "make_id": 21534, + "model_id": 21577, + "year_id": 21579, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21580, + "make_id": 21534, + "model_id": 21577, + "year_id": 21580, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21581, + "make_id": 21534, + "model_id": 21577, + "year_id": 21581, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21582, + "make_id": 21534, + "model_id": 21577, + "year_id": 21582, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21583, + "make_id": 21534, + "model_id": 21577, + "year_id": 21583, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21584, + "make_id": 21534, + "model_id": 21584, + "year_id": 21584, + "cylinders": 8, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21585, + "make_id": 21534, + "model_id": 21584, + "year_id": 21585, + "cylinders": 8, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21586, + "make_id": 21534, + "model_id": 21584, + "year_id": 21586, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21587, + "make_id": 21534, + "model_id": 21584, + "year_id": 21587, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21588, + "make_id": 21534, + "model_id": 21584, + "year_id": 21588, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21589, + "make_id": 21534, + "model_id": 21584, + "year_id": 21589, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21590, + "make_id": 21534, + "model_id": 21584, + "year_id": 21590, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21591, + "make_id": 21534, + "model_id": 21584, + "year_id": 21591, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21592, + "make_id": 21534, + "model_id": 21584, + "year_id": 21591, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21593, + "make_id": 21534, + "model_id": 21584, + "year_id": 21593, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21594, + "make_id": 21534, + "model_id": 21584, + "year_id": 21593, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21595, + "make_id": 21534, + "model_id": 21584, + "year_id": 21595, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21596, + "make_id": 21534, + "model_id": 21584, + "year_id": 21595, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21597, + "make_id": 21534, + "model_id": 21584, + "year_id": 21597, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21598, + "make_id": 21534, + "model_id": 21584, + "year_id": 21597, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21599, + "make_id": 21534, + "model_id": 21584, + "year_id": 21599, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21600, + "make_id": 21534, + "model_id": 21584, + "year_id": 21599, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21601, + "make_id": 21534, + "model_id": 21584, + "year_id": 21601, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21602, + "make_id": 21534, + "model_id": 21584, + "year_id": 21602, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21603, + "make_id": 21534, + "model_id": 21584, + "year_id": 21603, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21604, + "make_id": 21534, + "model_id": 21584, + "year_id": 21604, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21605, + "make_id": 21534, + "model_id": 21584, + "year_id": 21605, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21606, + "make_id": 21534, + "model_id": 21584, + "year_id": 21605, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21607, + "make_id": 21534, + "model_id": 21584, + "year_id": 21607, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21608, + "make_id": 21534, + "model_id": 21584, + "year_id": 21607, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21609, + "make_id": 21534, + "model_id": 21584, + "year_id": 21609, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21610, + "make_id": 21534, + "model_id": 21584, + "year_id": 21609, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21611, + "make_id": 21534, + "model_id": 21584, + "year_id": 21611, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21612, + "make_id": 21534, + "model_id": 21584, + "year_id": 21611, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21613, + "make_id": 21534, + "model_id": 21584, + "year_id": 21613, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21614, + "make_id": 21534, + "model_id": 21584, + "year_id": 21613, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21615, + "make_id": 21534, + "model_id": 21584, + "year_id": 21615, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21616, + "make_id": 21534, + "model_id": 21584, + "year_id": 21615, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21617, + "make_id": 21534, + "model_id": 21584, + "year_id": 21617, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21618, + "make_id": 21534, + "model_id": 21584, + "year_id": 21617, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21619, + "make_id": 21534, + "model_id": 21584, + "year_id": 21619, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21620, + "make_id": 21534, + "model_id": 21584, + "year_id": 21619, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21621, + "make_id": 21534, + "model_id": 21584, + "year_id": 21621, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21622, + "make_id": 21534, + "model_id": 21584, + "year_id": 21621, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21623, + "make_id": 21534, + "model_id": 21584, + "year_id": 21621, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21624, + "make_id": 21534, + "model_id": 21584, + "year_id": 21621, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21625, + "make_id": 21534, + "model_id": 21584, + "year_id": 21625, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21626, + "make_id": 21534, + "model_id": 21584, + "year_id": 21625, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21627, + "make_id": 21534, + "model_id": 21584, + "year_id": 21627, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21628, + "make_id": 21534, + "model_id": 21584, + "year_id": 21627, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21629, + "make_id": 21534, + "model_id": 21629, + "year_id": 21629, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21630, + "make_id": 21534, + "model_id": 21630, + "year_id": 21630, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21631, + "make_id": 21534, + "model_id": 21631, + "year_id": 21631, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21632, + "make_id": 21534, + "model_id": 21631, + "year_id": 21632, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21633, + "make_id": 21534, + "model_id": 21633, + "year_id": 21633, + "cylinders": 8, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21634, + "make_id": 21534, + "model_id": 21634, + "year_id": 21634, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21635, + "make_id": 21534, + "model_id": 21634, + "year_id": 21635, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21636, + "make_id": 21534, + "model_id": 21634, + "year_id": 21636, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21637, + "make_id": 21534, + "model_id": 21637, + "year_id": 21637, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21638, + "make_id": 21534, + "model_id": 21637, + "year_id": 21638, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21639, + "make_id": 21534, + "model_id": 21637, + "year_id": 21639, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 21640, + "make_id": 21534, + "model_id": 21637, + "year_id": 21640, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 21641, + "make_id": 21534, + "model_id": 21637, + "year_id": 21641, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 21642, + "make_id": 21534, + "model_id": 21642, + "year_id": 21642, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 21643, + "make_id": 21534, + "model_id": 21643, + "year_id": 21643, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21644, + "make_id": 21534, + "model_id": 21643, + "year_id": 21643, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21645, + "make_id": 21534, + "model_id": 21643, + "year_id": 21645, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21646, + "make_id": 21534, + "model_id": 21646, + "year_id": 21646, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21647, + "make_id": 21534, + "model_id": 21646, + "year_id": 21647, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21648, + "make_id": 21534, + "model_id": 21646, + "year_id": 21647, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21649, + "make_id": 21534, + "model_id": 21649, + "year_id": 21649, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21650, + "make_id": 21534, + "model_id": 21649, + "year_id": 21649, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21651, + "make_id": 21534, + "model_id": 21649, + "year_id": 21651, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21652, + "make_id": 21534, + "model_id": 21649, + "year_id": 21651, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21653, + "make_id": 21534, + "model_id": 21649, + "year_id": 21653, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21654, + "make_id": 21534, + "model_id": 21649, + "year_id": 21653, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21655, + "make_id": 21534, + "model_id": 21649, + "year_id": 21655, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21656, + "make_id": 21534, + "model_id": 21649, + "year_id": 21655, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21657, + "make_id": 21534, + "model_id": 21649, + "year_id": 21657, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21658, + "make_id": 21534, + "model_id": 21649, + "year_id": 21657, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21659, + "make_id": 21534, + "model_id": 21649, + "year_id": 21659, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21660, + "make_id": 21534, + "model_id": 21649, + "year_id": 21659, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21661, + "make_id": 21534, + "model_id": 21649, + "year_id": 21661, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21662, + "make_id": 21534, + "model_id": 21649, + "year_id": 21661, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21663, + "make_id": 21534, + "model_id": 21649, + "year_id": 21663, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21664, + "make_id": 21534, + "model_id": 21649, + "year_id": 21663, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21665, + "make_id": 21534, + "model_id": 21649, + "year_id": 21665, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21666, + "make_id": 21534, + "model_id": 21649, + "year_id": 21665, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21667, + "make_id": 21534, + "model_id": 21649, + "year_id": 21665, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21668, + "make_id": 21534, + "model_id": 21649, + "year_id": 21665, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21669, + "make_id": 21534, + "model_id": 21649, + "year_id": 21669, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21670, + "make_id": 21534, + "model_id": 21649, + "year_id": 21669, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21671, + "make_id": 21534, + "model_id": 21649, + "year_id": 21669, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21672, + "make_id": 21534, + "model_id": 21649, + "year_id": 21672, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21673, + "make_id": 21534, + "model_id": 21649, + "year_id": 21672, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21674, + "make_id": 21534, + "model_id": 21674, + "year_id": 21674, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21675, + "make_id": 21534, + "model_id": 21675, + "year_id": 21675, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21676, + "make_id": 21676, + "model_id": 21676, + "year_id": 21676, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21677, + "make_id": 21676, + "model_id": 21676, + "year_id": 21677, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21678, + "make_id": 21676, + "model_id": 21676, + "year_id": 21678, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21679, + "make_id": 21676, + "model_id": 21676, + "year_id": 21679, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21680, + "make_id": 21676, + "model_id": 21676, + "year_id": 21680, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21681, + "make_id": 21676, + "model_id": 21676, + "year_id": 21681, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21682, + "make_id": 21676, + "model_id": 21682, + "year_id": 21682, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21683, + "make_id": 21676, + "model_id": 21682, + "year_id": 21682, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21684, + "make_id": 21676, + "model_id": 21682, + "year_id": 21684, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21685, + "make_id": 21676, + "model_id": 21682, + "year_id": 21684, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21686, + "make_id": 21676, + "model_id": 21686, + "year_id": 21686, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21687, + "make_id": 21676, + "model_id": 21686, + "year_id": 21686, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21688, + "make_id": 21676, + "model_id": 21686, + "year_id": 21688, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21689, + "make_id": 21676, + "model_id": 21686, + "year_id": 21688, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21690, + "make_id": 21676, + "model_id": 21686, + "year_id": 21690, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21691, + "make_id": 21676, + "model_id": 21686, + "year_id": 21691, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21692, + "make_id": 21676, + "model_id": 21686, + "year_id": 21692, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21693, + "make_id": 21676, + "model_id": 21686, + "year_id": 21693, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21694, + "make_id": 21676, + "model_id": 21686, + "year_id": 21694, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21695, + "make_id": 21676, + "model_id": 21686, + "year_id": 21695, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21696, + "make_id": 21676, + "model_id": 21686, + "year_id": 21696, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21697, + "make_id": 21676, + "model_id": 21686, + "year_id": 21697, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21698, + "make_id": 21676, + "model_id": 21686, + "year_id": 21698, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21699, + "make_id": 21676, + "model_id": 21686, + "year_id": 21699, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21700, + "make_id": 21676, + "model_id": 21700, + "year_id": 21700, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21701, + "make_id": 21676, + "model_id": 21700, + "year_id": 21701, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21702, + "make_id": 21676, + "model_id": 21700, + "year_id": 21702, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21703, + "make_id": 21676, + "model_id": 21700, + "year_id": 21703, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21704, + "make_id": 21676, + "model_id": 21704, + "year_id": 21704, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21705, + "make_id": 21676, + "model_id": 21704, + "year_id": 21705, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21706, + "make_id": 21676, + "model_id": 21704, + "year_id": 21706, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21707, + "make_id": 21676, + "model_id": 21707, + "year_id": 21707, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21708, + "make_id": 21676, + "model_id": 21707, + "year_id": 21708, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21709, + "make_id": 21676, + "model_id": 21707, + "year_id": 21709, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21710, + "make_id": 21676, + "model_id": 21707, + "year_id": 21710, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21711, + "make_id": 21676, + "model_id": 21707, + "year_id": 21711, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21712, + "make_id": 21676, + "model_id": 21707, + "year_id": 21712, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21713, + "make_id": 21676, + "model_id": 21707, + "year_id": 21713, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21714, + "make_id": 21676, + "model_id": 21707, + "year_id": 21714, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21715, + "make_id": 21676, + "model_id": 21707, + "year_id": 21715, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21716, + "make_id": 21676, + "model_id": 21707, + "year_id": 21716, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21717, + "make_id": 21676, + "model_id": 21717, + "year_id": 21717, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21718, + "make_id": 21676, + "model_id": 21718, + "year_id": 21718, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21719, + "make_id": 21676, + "model_id": 21719, + "year_id": 21719, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21720, + "make_id": 21676, + "model_id": 21719, + "year_id": 21720, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21721, + "make_id": 21676, + "model_id": 21719, + "year_id": 21721, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21722, + "make_id": 21676, + "model_id": 21719, + "year_id": 21722, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21723, + "make_id": 21676, + "model_id": 21719, + "year_id": 21723, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21724, + "make_id": 21676, + "model_id": 21724, + "year_id": 21724, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21725, + "make_id": 21676, + "model_id": 21724, + "year_id": 21724, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21726, + "make_id": 21676, + "model_id": 21724, + "year_id": 21726, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21727, + "make_id": 21676, + "model_id": 21724, + "year_id": 21726, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21728, + "make_id": 21676, + "model_id": 21724, + "year_id": 21728, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21729, + "make_id": 21676, + "model_id": 21724, + "year_id": 21728, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21730, + "make_id": 21676, + "model_id": 21730, + "year_id": 21730, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21731, + "make_id": 21676, + "model_id": 21730, + "year_id": 21730, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21732, + "make_id": 21676, + "model_id": 21730, + "year_id": 21732, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21733, + "make_id": 21676, + "model_id": 21730, + "year_id": 21732, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21734, + "make_id": 21676, + "model_id": 21730, + "year_id": 21734, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21735, + "make_id": 21676, + "model_id": 21730, + "year_id": 21734, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21736, + "make_id": 21676, + "model_id": 21730, + "year_id": 21736, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21737, + "make_id": 21676, + "model_id": 21730, + "year_id": 21736, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21738, + "make_id": 21676, + "model_id": 21730, + "year_id": 21738, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21739, + "make_id": 21676, + "model_id": 21730, + "year_id": 21738, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21740, + "make_id": 21676, + "model_id": 21730, + "year_id": 21740, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21741, + "make_id": 21676, + "model_id": 21730, + "year_id": 21740, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21742, + "make_id": 21676, + "model_id": 21742, + "year_id": 21742, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21743, + "make_id": 21676, + "model_id": 21742, + "year_id": 21742, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21744, + "make_id": 21676, + "model_id": 21742, + "year_id": 21744, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21745, + "make_id": 21676, + "model_id": 21742, + "year_id": 21744, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21746, + "make_id": 21676, + "model_id": 21742, + "year_id": 21746, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21747, + "make_id": 21676, + "model_id": 21742, + "year_id": 21746, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21748, + "make_id": 21676, + "model_id": 21742, + "year_id": 21748, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21749, + "make_id": 21676, + "model_id": 21742, + "year_id": 21748, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21750, + "make_id": 21676, + "model_id": 21742, + "year_id": 21750, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21751, + "make_id": 21676, + "model_id": 21742, + "year_id": 21750, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21752, + "make_id": 21676, + "model_id": 21742, + "year_id": 21752, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21753, + "make_id": 21676, + "model_id": 21742, + "year_id": 21752, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21754, + "make_id": 21676, + "model_id": 21742, + "year_id": 21754, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21755, + "make_id": 21676, + "model_id": 21742, + "year_id": 21754, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21756, + "make_id": 21676, + "model_id": 21742, + "year_id": 21756, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21757, + "make_id": 21676, + "model_id": 21742, + "year_id": 21756, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21758, + "make_id": 21676, + "model_id": 21742, + "year_id": 21758, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21759, + "make_id": 21676, + "model_id": 21742, + "year_id": 21758, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21760, + "make_id": 21676, + "model_id": 21760, + "year_id": 21760, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21761, + "make_id": 21676, + "model_id": 21761, + "year_id": 21761, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21762, + "make_id": 21676, + "model_id": 21762, + "year_id": 21762, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21763, + "make_id": 21676, + "model_id": 21762, + "year_id": 21763, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21764, + "make_id": 21676, + "model_id": 21762, + "year_id": 21764, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21765, + "make_id": 21676, + "model_id": 21762, + "year_id": 21765, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21766, + "make_id": 21676, + "model_id": 21762, + "year_id": 21766, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21767, + "make_id": 21676, + "model_id": 21762, + "year_id": 21767, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21768, + "make_id": 21676, + "model_id": 21762, + "year_id": 21768, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21769, + "make_id": 21676, + "model_id": 21762, + "year_id": 21769, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21770, + "make_id": 21676, + "model_id": 21762, + "year_id": 21770, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21771, + "make_id": 21676, + "model_id": 21771, + "year_id": 21771, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21772, + "make_id": 21676, + "model_id": 21771, + "year_id": 21772, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21773, + "make_id": 21676, + "model_id": 21771, + "year_id": 21773, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21774, + "make_id": 21676, + "model_id": 21771, + "year_id": 21774, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21775, + "make_id": 21676, + "model_id": 21775, + "year_id": 21775, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21776, + "make_id": 21676, + "model_id": 21776, + "year_id": 21776, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21777, + "make_id": 21676, + "model_id": 21777, + "year_id": 21777, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21778, + "make_id": 21676, + "model_id": 21777, + "year_id": 21778, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21779, + "make_id": 21676, + "model_id": 21777, + "year_id": 21779, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21780, + "make_id": 21676, + "model_id": 21777, + "year_id": 21780, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21781, + "make_id": 21676, + "model_id": 21777, + "year_id": 21781, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21782, + "make_id": 21676, + "model_id": 21777, + "year_id": 21782, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21783, + "make_id": 21676, + "model_id": 21777, + "year_id": 21783, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21784, + "make_id": 21676, + "model_id": 21784, + "year_id": 21784, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21785, + "make_id": 21676, + "model_id": 21784, + "year_id": 21785, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21786, + "make_id": 21676, + "model_id": 21784, + "year_id": 21786, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21787, + "make_id": 21676, + "model_id": 21784, + "year_id": 21787, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21788, + "make_id": 21676, + "model_id": 21784, + "year_id": 21788, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21789, + "make_id": 21676, + "model_id": 21784, + "year_id": 21789, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21790, + "make_id": 21676, + "model_id": 21784, + "year_id": 21790, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21791, + "make_id": 21676, + "model_id": 21791, + "year_id": 21791, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21792, + "make_id": 21676, + "model_id": 21791, + "year_id": 21792, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21793, + "make_id": 21676, + "model_id": 21791, + "year_id": 21793, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21794, + "make_id": 21676, + "model_id": 21794, + "year_id": 21794, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21795, + "make_id": 21676, + "model_id": 21795, + "year_id": 21795, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21796, + "make_id": 21676, + "model_id": 21795, + "year_id": 21795, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21797, + "make_id": 21676, + "model_id": 21795, + "year_id": 21795, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21798, + "make_id": 21676, + "model_id": 21795, + "year_id": 21798, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21799, + "make_id": 21676, + "model_id": 21795, + "year_id": 21798, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21800, + "make_id": 21676, + "model_id": 21795, + "year_id": 21798, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21801, + "make_id": 21676, + "model_id": 21795, + "year_id": 21801, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21802, + "make_id": 21676, + "model_id": 21795, + "year_id": 21801, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21803, + "make_id": 21676, + "model_id": 21795, + "year_id": 21801, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21804, + "make_id": 21676, + "model_id": 21795, + "year_id": 21804, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21805, + "make_id": 21676, + "model_id": 21795, + "year_id": 21804, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21806, + "make_id": 21676, + "model_id": 21795, + "year_id": 21804, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21807, + "make_id": 21676, + "model_id": 21795, + "year_id": 21807, + "cylinders": 6, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21808, + "make_id": 21676, + "model_id": 21795, + "year_id": 21808, + "cylinders": 6, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21809, + "make_id": 21676, + "model_id": 21795, + "year_id": 21809, + "cylinders": 6, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21810, + "make_id": 21676, + "model_id": 21795, + "year_id": 21810, + "cylinders": 6, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21811, + "make_id": 21676, + "model_id": 21795, + "year_id": 21811, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21812, + "make_id": 21676, + "model_id": 21795, + "year_id": 21811, + "cylinders": 6, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21813, + "make_id": 21676, + "model_id": 21795, + "year_id": 21813, + "cylinders": 6, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21814, + "make_id": 21676, + "model_id": 21795, + "year_id": 21813, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21815, + "make_id": 21676, + "model_id": 21815, + "year_id": 21815, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21816, + "make_id": 21676, + "model_id": 21815, + "year_id": 21816, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21817, + "make_id": 21676, + "model_id": 21817, + "year_id": 21817, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21818, + "make_id": 21676, + "model_id": 21817, + "year_id": 21817, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21819, + "make_id": 21676, + "model_id": 21817, + "year_id": 21819, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21820, + "make_id": 21676, + "model_id": 21817, + "year_id": 21819, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21821, + "make_id": 21676, + "model_id": 21817, + "year_id": 21821, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 21822, + "make_id": 21676, + "model_id": 21817, + "year_id": 21821, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21823, + "make_id": 21676, + "model_id": 21817, + "year_id": 21823, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21824, + "make_id": 21676, + "model_id": 21824, + "year_id": 21824, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21825, + "make_id": 21676, + "model_id": 21824, + "year_id": 21825, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21826, + "make_id": 21676, + "model_id": 21824, + "year_id": 21825, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21827, + "make_id": 21676, + "model_id": 21824, + "year_id": 21827, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21828, + "make_id": 21676, + "model_id": 21824, + "year_id": 21827, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21829, + "make_id": 21676, + "model_id": 21824, + "year_id": 21829, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21830, + "make_id": 21676, + "model_id": 21824, + "year_id": 21829, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21831, + "make_id": 21676, + "model_id": 21824, + "year_id": 21831, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 21832, + "make_id": 21676, + "model_id": 21824, + "year_id": 21831, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21833, + "make_id": 21676, + "model_id": 21824, + "year_id": 21833, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21834, + "make_id": 21676, + "model_id": 21834, + "year_id": 21834, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21835, + "make_id": 21676, + "model_id": 21834, + "year_id": 21835, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21836, + "make_id": 21676, + "model_id": 21834, + "year_id": 21836, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21837, + "make_id": 21676, + "model_id": 21834, + "year_id": 21837, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21838, + "make_id": 21676, + "model_id": 21834, + "year_id": 21838, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21839, + "make_id": 21676, + "model_id": 21834, + "year_id": 21839, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21840, + "make_id": 21676, + "model_id": 21834, + "year_id": 21840, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21841, + "make_id": 21676, + "model_id": 21834, + "year_id": 21841, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21842, + "make_id": 21676, + "model_id": 21834, + "year_id": 21841, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21843, + "make_id": 21676, + "model_id": 21834, + "year_id": 21843, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21844, + "make_id": 21676, + "model_id": 21834, + "year_id": 21843, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21845, + "make_id": 21676, + "model_id": 21834, + "year_id": 21845, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21846, + "make_id": 21676, + "model_id": 21834, + "year_id": 21845, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21847, + "make_id": 21676, + "model_id": 21847, + "year_id": 21847, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21848, + "make_id": 21676, + "model_id": 21847, + "year_id": 21848, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21849, + "make_id": 21676, + "model_id": 21849, + "year_id": 21849, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21850, + "make_id": 21676, + "model_id": 21849, + "year_id": 21850, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21851, + "make_id": 21676, + "model_id": 21849, + "year_id": 21851, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21852, + "make_id": 21676, + "model_id": 21849, + "year_id": 21852, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21853, + "make_id": 21676, + "model_id": 21853, + "year_id": 21853, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21854, + "make_id": 21676, + "model_id": 21853, + "year_id": 21854, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21855, + "make_id": 21676, + "model_id": 21853, + "year_id": 21855, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21856, + "make_id": 21676, + "model_id": 21853, + "year_id": 21856, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21857, + "make_id": 21676, + "model_id": 21853, + "year_id": 21857, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21858, + "make_id": 21676, + "model_id": 21853, + "year_id": 21858, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21859, + "make_id": 21676, + "model_id": 21853, + "year_id": 21859, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21860, + "make_id": 21676, + "model_id": 21860, + "year_id": 21860, + "cylinders": 10, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21861, + "make_id": 21676, + "model_id": 21861, + "year_id": 21861, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21862, + "make_id": 21676, + "model_id": 21861, + "year_id": 21862, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21863, + "make_id": 21676, + "model_id": 21861, + "year_id": 21863, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21864, + "make_id": 21676, + "model_id": 21861, + "year_id": 21864, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21865, + "make_id": 21676, + "model_id": 21861, + "year_id": 21865, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21866, + "make_id": 21676, + "model_id": 21861, + "year_id": 21866, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21867, + "make_id": 21676, + "model_id": 21861, + "year_id": 21867, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21868, + "make_id": 21676, + "model_id": 21861, + "year_id": 21868, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21869, + "make_id": 21676, + "model_id": 21861, + "year_id": 21869, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21870, + "make_id": 21676, + "model_id": 21861, + "year_id": 21870, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21871, + "make_id": 21676, + "model_id": 21861, + "year_id": 21871, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21872, + "make_id": 21676, + "model_id": 21872, + "year_id": 21872, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21873, + "make_id": 21676, + "model_id": 21872, + "year_id": 21873, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21874, + "make_id": 21676, + "model_id": 21872, + "year_id": 21874, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21875, + "make_id": 21676, + "model_id": 21872, + "year_id": 21875, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21876, + "make_id": 21676, + "model_id": 21872, + "year_id": 21876, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21877, + "make_id": 21676, + "model_id": 21872, + "year_id": 21877, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21878, + "make_id": 21676, + "model_id": 21878, + "year_id": 21878, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21879, + "make_id": 21676, + "model_id": 21878, + "year_id": 21879, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21880, + "make_id": 21676, + "model_id": 21878, + "year_id": 21880, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21881, + "make_id": 21676, + "model_id": 21878, + "year_id": 21880, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21882, + "make_id": 21676, + "model_id": 21878, + "year_id": 21882, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21883, + "make_id": 21676, + "model_id": 21878, + "year_id": 21882, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21884, + "make_id": 21676, + "model_id": 21878, + "year_id": 21884, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21885, + "make_id": 21676, + "model_id": 21878, + "year_id": 21884, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21886, + "make_id": 21676, + "model_id": 21878, + "year_id": 21886, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21887, + "make_id": 21676, + "model_id": 21878, + "year_id": 21886, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21888, + "make_id": 21676, + "model_id": 21878, + "year_id": 21888, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21889, + "make_id": 21676, + "model_id": 21878, + "year_id": 21888, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21890, + "make_id": 21676, + "model_id": 21878, + "year_id": 21890, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21891, + "make_id": 21676, + "model_id": 21878, + "year_id": 21890, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21892, + "make_id": 21676, + "model_id": 21878, + "year_id": 21892, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21893, + "make_id": 21676, + "model_id": 21878, + "year_id": 21892, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21894, + "make_id": 21676, + "model_id": 21878, + "year_id": 21894, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21895, + "make_id": 21676, + "model_id": 21878, + "year_id": 21894, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21896, + "make_id": 21676, + "model_id": 21896, + "year_id": 21896, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21897, + "make_id": 21676, + "model_id": 21896, + "year_id": 21897, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21898, + "make_id": 21676, + "model_id": 21896, + "year_id": 21898, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21899, + "make_id": 21676, + "model_id": 21896, + "year_id": 21898, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21900, + "make_id": 21676, + "model_id": 21896, + "year_id": 21900, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21901, + "make_id": 21676, + "model_id": 21896, + "year_id": 21900, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21902, + "make_id": 21676, + "model_id": 21896, + "year_id": 21902, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21903, + "make_id": 21676, + "model_id": 21896, + "year_id": 21902, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21904, + "make_id": 21676, + "model_id": 21896, + "year_id": 21904, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21905, + "make_id": 21676, + "model_id": 21896, + "year_id": 21904, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21906, + "make_id": 21676, + "model_id": 21896, + "year_id": 21906, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21907, + "make_id": 21676, + "model_id": 21896, + "year_id": 21906, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21908, + "make_id": 21676, + "model_id": 21896, + "year_id": 21908, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21909, + "make_id": 21676, + "model_id": 21896, + "year_id": 21908, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21910, + "make_id": 21676, + "model_id": 21896, + "year_id": 21910, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21911, + "make_id": 21676, + "model_id": 21896, + "year_id": 21910, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21912, + "make_id": 21676, + "model_id": 21896, + "year_id": 21912, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21913, + "make_id": 21676, + "model_id": 21896, + "year_id": 21912, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21914, + "make_id": 21676, + "model_id": 21914, + "year_id": 21914, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21915, + "make_id": 21676, + "model_id": 21914, + "year_id": 21915, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21916, + "make_id": 21676, + "model_id": 21914, + "year_id": 21916, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21917, + "make_id": 21676, + "model_id": 21914, + "year_id": 21917, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21918, + "make_id": 21676, + "model_id": 21914, + "year_id": 21918, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21919, + "make_id": 21676, + "model_id": 21914, + "year_id": 21919, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21920, + "make_id": 21676, + "model_id": 21914, + "year_id": 21920, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21921, + "make_id": 21676, + "model_id": 21914, + "year_id": 21921, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21922, + "make_id": 21676, + "model_id": 21914, + "year_id": 21922, + "cylinders": 8, + "displacement": 5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21923, + "make_id": 21676, + "model_id": 21923, + "year_id": 21923, + "cylinders": 6, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21924, + "make_id": 21676, + "model_id": 21923, + "year_id": 21924, + "cylinders": 6, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21925, + "make_id": 21676, + "model_id": 21925, + "year_id": 21925, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21926, + "make_id": 21676, + "model_id": 21925, + "year_id": 21926, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21927, + "make_id": 21676, + "model_id": 21925, + "year_id": 21927, + "cylinders": 6, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21928, + "make_id": 21676, + "model_id": 21925, + "year_id": 21928, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21929, + "make_id": 21676, + "model_id": 21925, + "year_id": 21929, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21930, + "make_id": 21676, + "model_id": 21925, + "year_id": 21930, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21931, + "make_id": 21676, + "model_id": 21925, + "year_id": 21931, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21932, + "make_id": 21676, + "model_id": 21925, + "year_id": 21932, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21933, + "make_id": 21676, + "model_id": 21925, + "year_id": 21933, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21934, + "make_id": 21676, + "model_id": 21925, + "year_id": 21934, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21935, + "make_id": 21676, + "model_id": 21935, + "year_id": 21935, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21936, + "make_id": 21676, + "model_id": 21935, + "year_id": 21936, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21937, + "make_id": 21676, + "model_id": 21935, + "year_id": 21937, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21938, + "make_id": 21676, + "model_id": 21935, + "year_id": 21938, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21939, + "make_id": 21676, + "model_id": 21935, + "year_id": 21939, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21940, + "make_id": 21676, + "model_id": 21935, + "year_id": 21940, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21941, + "make_id": 21676, + "model_id": 21935, + "year_id": 21941, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21942, + "make_id": 21676, + "model_id": 21935, + "year_id": 21942, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21943, + "make_id": 21676, + "model_id": 21943, + "year_id": 21943, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21944, + "make_id": 21676, + "model_id": 21943, + "year_id": 21943, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21945, + "make_id": 21676, + "model_id": 21943, + "year_id": 21945, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21946, + "make_id": 21676, + "model_id": 21943, + "year_id": 21945, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21947, + "make_id": 21676, + "model_id": 21947, + "year_id": 21947, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21948, + "make_id": 21676, + "model_id": 21947, + "year_id": 21948, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21949, + "make_id": 21676, + "model_id": 21949, + "year_id": 21949, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21950, + "make_id": 21676, + "model_id": 21949, + "year_id": 21949, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21951, + "make_id": 21676, + "model_id": 21949, + "year_id": 21951, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21952, + "make_id": 21676, + "model_id": 21949, + "year_id": 21951, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 21953, + "make_id": 21676, + "model_id": 21953, + "year_id": 21953, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21954, + "make_id": 21676, + "model_id": 21954, + "year_id": 21954, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21955, + "make_id": 21676, + "model_id": 21955, + "year_id": 21955, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21956, + "make_id": 21676, + "model_id": 21955, + "year_id": 21955, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21957, + "make_id": 21676, + "model_id": 21955, + "year_id": 21957, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21958, + "make_id": 21676, + "model_id": 21955, + "year_id": 21957, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21959, + "make_id": 21676, + "model_id": 21959, + "year_id": 21959, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21960, + "make_id": 21676, + "model_id": 21959, + "year_id": 21960, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 21961, + "make_id": 21676, + "model_id": 21961, + "year_id": 21961, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21962, + "make_id": 21676, + "model_id": 21961, + "year_id": 21961, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21963, + "make_id": 21676, + "model_id": 21961, + "year_id": 21963, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21964, + "make_id": 21676, + "model_id": 21961, + "year_id": 21963, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21965, + "make_id": 21676, + "model_id": 21961, + "year_id": 21965, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21966, + "make_id": 21676, + "model_id": 21961, + "year_id": 21965, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21967, + "make_id": 21676, + "model_id": 21961, + "year_id": 21967, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21968, + "make_id": 21676, + "model_id": 21961, + "year_id": 21967, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21969, + "make_id": 21676, + "model_id": 21961, + "year_id": 21969, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21970, + "make_id": 21676, + "model_id": 21961, + "year_id": 21969, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 21971, + "make_id": 21676, + "model_id": 21971, + "year_id": 21971, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21972, + "make_id": 21676, + "model_id": 21971, + "year_id": 21971, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21973, + "make_id": 21676, + "model_id": 21971, + "year_id": 21971, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21974, + "make_id": 21676, + "model_id": 21971, + "year_id": 21971, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21975, + "make_id": 21676, + "model_id": 21971, + "year_id": 21975, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21976, + "make_id": 21676, + "model_id": 21971, + "year_id": 21975, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21977, + "make_id": 21676, + "model_id": 21971, + "year_id": 21975, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21978, + "make_id": 21676, + "model_id": 21971, + "year_id": 21975, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21979, + "make_id": 21676, + "model_id": 21971, + "year_id": 21979, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21980, + "make_id": 21676, + "model_id": 21971, + "year_id": 21979, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21981, + "make_id": 21676, + "model_id": 21971, + "year_id": 21979, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21982, + "make_id": 21676, + "model_id": 21971, + "year_id": 21979, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21983, + "make_id": 21676, + "model_id": 21983, + "year_id": 21983, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21984, + "make_id": 21676, + "model_id": 21983, + "year_id": 21983, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21985, + "make_id": 21676, + "model_id": 21983, + "year_id": 21983, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21986, + "make_id": 21676, + "model_id": 21983, + "year_id": 21983, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21987, + "make_id": 21676, + "model_id": 21983, + "year_id": 21987, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21988, + "make_id": 21676, + "model_id": 21983, + "year_id": 21987, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21989, + "make_id": 21676, + "model_id": 21983, + "year_id": 21987, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21990, + "make_id": 21676, + "model_id": 21983, + "year_id": 21987, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21991, + "make_id": 21676, + "model_id": 21983, + "year_id": 21991, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21992, + "make_id": 21676, + "model_id": 21983, + "year_id": 21991, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21993, + "make_id": 21676, + "model_id": 21983, + "year_id": 21991, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21994, + "make_id": 21676, + "model_id": 21983, + "year_id": 21991, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 21995, + "make_id": 21676, + "model_id": 21983, + "year_id": 21995, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21996, + "make_id": 21676, + "model_id": 21983, + "year_id": 21995, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21997, + "make_id": 21676, + "model_id": 21983, + "year_id": 21997, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21998, + "make_id": 21676, + "model_id": 21983, + "year_id": 21997, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 21999, + "make_id": 21676, + "model_id": 21983, + "year_id": 21999, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22000, + "make_id": 21676, + "model_id": 21983, + "year_id": 21999, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22001, + "make_id": 21676, + "model_id": 21983, + "year_id": 22001, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22002, + "make_id": 21676, + "model_id": 21983, + "year_id": 22001, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22003, + "make_id": 21676, + "model_id": 21983, + "year_id": 22001, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22004, + "make_id": 21676, + "model_id": 21983, + "year_id": 22004, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22005, + "make_id": 21676, + "model_id": 21983, + "year_id": 22004, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22006, + "make_id": 21676, + "model_id": 21983, + "year_id": 22004, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22007, + "make_id": 21676, + "model_id": 21983, + "year_id": 22007, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22008, + "make_id": 21676, + "model_id": 21983, + "year_id": 22007, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22009, + "make_id": 21676, + "model_id": 21983, + "year_id": 22007, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22010, + "make_id": 21676, + "model_id": 21983, + "year_id": 22010, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22011, + "make_id": 21676, + "model_id": 21983, + "year_id": 22010, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22012, + "make_id": 21676, + "model_id": 22012, + "year_id": 22012, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22013, + "make_id": 21676, + "model_id": 22012, + "year_id": 22012, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22014, + "make_id": 21676, + "model_id": 22012, + "year_id": 22014, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22015, + "make_id": 21676, + "model_id": 22012, + "year_id": 22014, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22016, + "make_id": 21676, + "model_id": 22012, + "year_id": 22016, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22017, + "make_id": 21676, + "model_id": 22012, + "year_id": 22016, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22018, + "make_id": 21676, + "model_id": 22018, + "year_id": 22018, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22019, + "make_id": 21676, + "model_id": 22018, + "year_id": 22018, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22020, + "make_id": 21676, + "model_id": 22018, + "year_id": 22020, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22021, + "make_id": 21676, + "model_id": 22018, + "year_id": 22020, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22022, + "make_id": 21676, + "model_id": 22018, + "year_id": 22022, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22023, + "make_id": 21676, + "model_id": 22018, + "year_id": 22022, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22024, + "make_id": 21676, + "model_id": 22018, + "year_id": 22024, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22025, + "make_id": 21676, + "model_id": 22018, + "year_id": 22024, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22026, + "make_id": 21676, + "model_id": 22018, + "year_id": 22026, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22027, + "make_id": 21676, + "model_id": 22018, + "year_id": 22026, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22028, + "make_id": 21676, + "model_id": 22018, + "year_id": 22028, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22029, + "make_id": 21676, + "model_id": 22018, + "year_id": 22028, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22030, + "make_id": 21676, + "model_id": 22018, + "year_id": 22030, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22031, + "make_id": 21676, + "model_id": 22018, + "year_id": 22030, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22032, + "make_id": 21676, + "model_id": 22032, + "year_id": 22032, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22033, + "make_id": 21676, + "model_id": 22032, + "year_id": 22032, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22034, + "make_id": 21676, + "model_id": 22032, + "year_id": 22034, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22035, + "make_id": 21676, + "model_id": 22032, + "year_id": 22034, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22036, + "make_id": 21676, + "model_id": 22036, + "year_id": 22036, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22037, + "make_id": 21676, + "model_id": 22036, + "year_id": 22036, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22038, + "make_id": 21676, + "model_id": 22036, + "year_id": 22036, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22039, + "make_id": 21676, + "model_id": 22036, + "year_id": 22039, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22040, + "make_id": 21676, + "model_id": 22036, + "year_id": 22039, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22041, + "make_id": 21676, + "model_id": 22036, + "year_id": 22039, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22042, + "make_id": 21676, + "model_id": 22036, + "year_id": 22042, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22043, + "make_id": 21676, + "model_id": 22036, + "year_id": 22042, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22044, + "make_id": 21676, + "model_id": 22036, + "year_id": 22042, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22045, + "make_id": 21676, + "model_id": 22036, + "year_id": 22045, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22046, + "make_id": 21676, + "model_id": 22036, + "year_id": 22045, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22047, + "make_id": 21676, + "model_id": 22036, + "year_id": 22045, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22048, + "make_id": 21676, + "model_id": 22036, + "year_id": 22048, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22049, + "make_id": 21676, + "model_id": 22036, + "year_id": 22048, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22050, + "make_id": 21676, + "model_id": 22036, + "year_id": 22048, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22051, + "make_id": 21676, + "model_id": 22036, + "year_id": 22051, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22052, + "make_id": 21676, + "model_id": 22036, + "year_id": 22051, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22053, + "make_id": 21676, + "model_id": 22036, + "year_id": 22051, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22054, + "make_id": 21676, + "model_id": 22036, + "year_id": 22054, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22055, + "make_id": 21676, + "model_id": 22036, + "year_id": 22054, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22056, + "make_id": 21676, + "model_id": 22056, + "year_id": 22056, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22057, + "make_id": 21676, + "model_id": 22056, + "year_id": 22057, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22058, + "make_id": 21676, + "model_id": 22058, + "year_id": 22058, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22059, + "make_id": 21676, + "model_id": 22058, + "year_id": 22059, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22060, + "make_id": 21676, + "model_id": 22058, + "year_id": 22060, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22061, + "make_id": 21676, + "model_id": 22058, + "year_id": 22061, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22062, + "make_id": 21676, + "model_id": 22058, + "year_id": 22062, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22063, + "make_id": 21676, + "model_id": 22058, + "year_id": 22063, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22064, + "make_id": 21676, + "model_id": 22058, + "year_id": 22064, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22065, + "make_id": 22065, + "model_id": 22065, + "year_id": 22065, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22066, + "make_id": 22065, + "model_id": 22065, + "year_id": 22065, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22067, + "make_id": 22065, + "model_id": 22065, + "year_id": 22067, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22068, + "make_id": 22065, + "model_id": 22065, + "year_id": 22067, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22069, + "make_id": 22065, + "model_id": 22065, + "year_id": 22069, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22070, + "make_id": 22065, + "model_id": 22065, + "year_id": 22069, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22071, + "make_id": 22065, + "model_id": 22071, + "year_id": 22071, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22072, + "make_id": 22065, + "model_id": 22071, + "year_id": 22072, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22073, + "make_id": 22065, + "model_id": 22073, + "year_id": 22073, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 22074, + "make_id": 22065, + "model_id": 22073, + "year_id": 22073, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 22075, + "make_id": 22065, + "model_id": 22073, + "year_id": 22073, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 22076, + "make_id": 22065, + "model_id": 22073, + "year_id": 22073, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 22077, + "make_id": 22065, + "model_id": 22073, + "year_id": 22077, + "cylinders": 6, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22078, + "make_id": 22065, + "model_id": 22073, + "year_id": 22077, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22079, + "make_id": 22065, + "model_id": 22073, + "year_id": 22079, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22080, + "make_id": 22065, + "model_id": 22073, + "year_id": 22080, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22081, + "make_id": 22065, + "model_id": 22073, + "year_id": 22081, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22082, + "make_id": 22065, + "model_id": 22073, + "year_id": 22082, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22083, + "make_id": 22065, + "model_id": 22073, + "year_id": 22083, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22084, + "make_id": 22065, + "model_id": 22073, + "year_id": 22084, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22085, + "make_id": 22065, + "model_id": 22073, + "year_id": 22085, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22086, + "make_id": 22065, + "model_id": 22073, + "year_id": 22086, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22087, + "make_id": 22065, + "model_id": 22073, + "year_id": 22087, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22088, + "make_id": 22065, + "model_id": 22073, + "year_id": 22088, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22089, + "make_id": 22065, + "model_id": 22073, + "year_id": 22089, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22090, + "make_id": 22065, + "model_id": 22073, + "year_id": 22090, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22091, + "make_id": 22065, + "model_id": 22073, + "year_id": 22091, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22092, + "make_id": 22065, + "model_id": 22073, + "year_id": 22092, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22093, + "make_id": 22065, + "model_id": 22073, + "year_id": 22093, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22094, + "make_id": 22065, + "model_id": 22073, + "year_id": 22094, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22095, + "make_id": 22065, + "model_id": 22073, + "year_id": 22095, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22096, + "make_id": 22065, + "model_id": 22096, + "year_id": 22096, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22097, + "make_id": 22065, + "model_id": 22096, + "year_id": 22096, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22098, + "make_id": 22065, + "model_id": 22096, + "year_id": 22096, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22099, + "make_id": 22065, + "model_id": 22096, + "year_id": 22096, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22100, + "make_id": 22065, + "model_id": 22096, + "year_id": 22096, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22101, + "make_id": 22065, + "model_id": 22096, + "year_id": 22101, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22102, + "make_id": 22065, + "model_id": 22096, + "year_id": 22101, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22103, + "make_id": 22065, + "model_id": 22096, + "year_id": 22101, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22104, + "make_id": 22065, + "model_id": 22096, + "year_id": 22101, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22105, + "make_id": 22065, + "model_id": 22096, + "year_id": 22101, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22106, + "make_id": 22065, + "model_id": 22096, + "year_id": 22106, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22107, + "make_id": 22065, + "model_id": 22096, + "year_id": 22106, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22108, + "make_id": 22065, + "model_id": 22096, + "year_id": 22106, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22109, + "make_id": 22065, + "model_id": 22096, + "year_id": 22106, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22110, + "make_id": 22065, + "model_id": 22096, + "year_id": 22106, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22111, + "make_id": 22065, + "model_id": 22096, + "year_id": 22111, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22112, + "make_id": 22065, + "model_id": 22096, + "year_id": 22111, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22113, + "make_id": 22065, + "model_id": 22096, + "year_id": 22111, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22114, + "make_id": 22065, + "model_id": 22096, + "year_id": 22111, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22115, + "make_id": 22065, + "model_id": 22096, + "year_id": 22115, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22116, + "make_id": 22065, + "model_id": 22096, + "year_id": 22115, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22117, + "make_id": 22065, + "model_id": 22096, + "year_id": 22115, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22118, + "make_id": 22065, + "model_id": 22096, + "year_id": 22115, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22119, + "make_id": 22065, + "model_id": 22096, + "year_id": 22119, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22120, + "make_id": 22065, + "model_id": 22096, + "year_id": 22119, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22121, + "make_id": 22065, + "model_id": 22096, + "year_id": 22119, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22122, + "make_id": 22065, + "model_id": 22096, + "year_id": 22119, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22123, + "make_id": 22065, + "model_id": 22096, + "year_id": 22123, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22124, + "make_id": 22065, + "model_id": 22096, + "year_id": 22123, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22125, + "make_id": 22065, + "model_id": 22125, + "year_id": 22125, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22126, + "make_id": 22065, + "model_id": 22125, + "year_id": 22125, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22127, + "make_id": 22065, + "model_id": 22125, + "year_id": 22127, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22128, + "make_id": 22065, + "model_id": 22125, + "year_id": 22127, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22129, + "make_id": 22065, + "model_id": 22125, + "year_id": 22129, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22130, + "make_id": 22065, + "model_id": 22125, + "year_id": 22129, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22131, + "make_id": 22065, + "model_id": 22131, + "year_id": 22131, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 22132, + "make_id": 22065, + "model_id": 22131, + "year_id": 22131, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 22133, + "make_id": 22065, + "model_id": 22131, + "year_id": 22131, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 22134, + "make_id": 22065, + "model_id": 22131, + "year_id": 22134, + "cylinders": 6, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22135, + "make_id": 22065, + "model_id": 22131, + "year_id": 22134, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22136, + "make_id": 22065, + "model_id": 22131, + "year_id": 22136, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22137, + "make_id": 22065, + "model_id": 22131, + "year_id": 22137, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22138, + "make_id": 22065, + "model_id": 22131, + "year_id": 22138, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22139, + "make_id": 22065, + "model_id": 22131, + "year_id": 22139, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22140, + "make_id": 22065, + "model_id": 22131, + "year_id": 22140, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22141, + "make_id": 22065, + "model_id": 22131, + "year_id": 22141, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22142, + "make_id": 22065, + "model_id": 22131, + "year_id": 22142, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22143, + "make_id": 22065, + "model_id": 22143, + "year_id": 22143, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22144, + "make_id": 22065, + "model_id": 22143, + "year_id": 22144, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22145, + "make_id": 22065, + "model_id": 22143, + "year_id": 22145, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22146, + "make_id": 22065, + "model_id": 22143, + "year_id": 22146, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22147, + "make_id": 22065, + "model_id": 22143, + "year_id": 22147, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22148, + "make_id": 22065, + "model_id": 22143, + "year_id": 22148, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22149, + "make_id": 22065, + "model_id": 22149, + "year_id": 22149, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22150, + "make_id": 22065, + "model_id": 22149, + "year_id": 22149, + "cylinders": 4, + "displacement": 2.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22151, + "make_id": 22065, + "model_id": 22149, + "year_id": 22149, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22152, + "make_id": 22065, + "model_id": 22149, + "year_id": 22149, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22153, + "make_id": 22065, + "model_id": 22153, + "year_id": 22153, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22154, + "make_id": 22065, + "model_id": 22153, + "year_id": 22153, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22155, + "make_id": 22065, + "model_id": 22153, + "year_id": 22153, + "cylinders": 4, + "displacement": 2.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22156, + "make_id": 22065, + "model_id": 22153, + "year_id": 22156, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22157, + "make_id": 22065, + "model_id": 22153, + "year_id": 22156, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22158, + "make_id": 22065, + "model_id": 22153, + "year_id": 22156, + "cylinders": 4, + "displacement": 2.3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22159, + "make_id": 22065, + "model_id": 22159, + "year_id": 22159, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22160, + "make_id": 22065, + "model_id": 22159, + "year_id": 22159, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22161, + "make_id": 22065, + "model_id": 22159, + "year_id": 22161, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22162, + "make_id": 22065, + "model_id": 22159, + "year_id": 22161, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22163, + "make_id": 22065, + "model_id": 22159, + "year_id": 22161, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22164, + "make_id": 22065, + "model_id": 22159, + "year_id": 22164, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22165, + "make_id": 22065, + "model_id": 22159, + "year_id": 22164, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22166, + "make_id": 22065, + "model_id": 22159, + "year_id": 22164, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22167, + "make_id": 22065, + "model_id": 22159, + "year_id": 22167, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22168, + "make_id": 22065, + "model_id": 22159, + "year_id": 22167, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22169, + "make_id": 22065, + "model_id": 22159, + "year_id": 22167, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22170, + "make_id": 22065, + "model_id": 22159, + "year_id": 22170, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22171, + "make_id": 22065, + "model_id": 22159, + "year_id": 22170, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22172, + "make_id": 22065, + "model_id": 22159, + "year_id": 22170, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22173, + "make_id": 22065, + "model_id": 22159, + "year_id": 22173, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22174, + "make_id": 22065, + "model_id": 22159, + "year_id": 22173, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22175, + "make_id": 22065, + "model_id": 22159, + "year_id": 22173, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22176, + "make_id": 22065, + "model_id": 22159, + "year_id": 22176, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22177, + "make_id": 22065, + "model_id": 22159, + "year_id": 22176, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22178, + "make_id": 22065, + "model_id": 22159, + "year_id": 22176, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22179, + "make_id": 22065, + "model_id": 22159, + "year_id": 22179, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22180, + "make_id": 22065, + "model_id": 22159, + "year_id": 22179, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22181, + "make_id": 22065, + "model_id": 22159, + "year_id": 22179, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22182, + "make_id": 22065, + "model_id": 22182, + "year_id": 22182, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22183, + "make_id": 22065, + "model_id": 22182, + "year_id": 22182, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22184, + "make_id": 22065, + "model_id": 22182, + "year_id": 22182, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22185, + "make_id": 22065, + "model_id": 22182, + "year_id": 22185, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22186, + "make_id": 22065, + "model_id": 22182, + "year_id": 22185, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22187, + "make_id": 22065, + "model_id": 22182, + "year_id": 22185, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22188, + "make_id": 22065, + "model_id": 22182, + "year_id": 22188, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22189, + "make_id": 22065, + "model_id": 22182, + "year_id": 22188, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22190, + "make_id": 22065, + "model_id": 22182, + "year_id": 22190, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22191, + "make_id": 22065, + "model_id": 22182, + "year_id": 22190, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22192, + "make_id": 22065, + "model_id": 22182, + "year_id": 22192, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22193, + "make_id": 22065, + "model_id": 22182, + "year_id": 22192, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22194, + "make_id": 22065, + "model_id": 22182, + "year_id": 22194, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22195, + "make_id": 22065, + "model_id": 22182, + "year_id": 22194, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22196, + "make_id": 22065, + "model_id": 22182, + "year_id": 22196, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22197, + "make_id": 22065, + "model_id": 22182, + "year_id": 22196, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22198, + "make_id": 22065, + "model_id": 22198, + "year_id": 22198, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22199, + "make_id": 22065, + "model_id": 22199, + "year_id": 22199, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22200, + "make_id": 22065, + "model_id": 22199, + "year_id": 22199, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22201, + "make_id": 22065, + "model_id": 22199, + "year_id": 22201, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22202, + "make_id": 22065, + "model_id": 22199, + "year_id": 22201, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22203, + "make_id": 22065, + "model_id": 22199, + "year_id": 22203, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22204, + "make_id": 22065, + "model_id": 22199, + "year_id": 22203, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22205, + "make_id": 22065, + "model_id": 22199, + "year_id": 22205, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22206, + "make_id": 22065, + "model_id": 22199, + "year_id": 22205, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22207, + "make_id": 22065, + "model_id": 22207, + "year_id": 22207, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22208, + "make_id": 22065, + "model_id": 22207, + "year_id": 22207, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22209, + "make_id": 22065, + "model_id": 22207, + "year_id": 22209, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22210, + "make_id": 22065, + "model_id": 22207, + "year_id": 22209, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22211, + "make_id": 22065, + "model_id": 22207, + "year_id": 22211, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22212, + "make_id": 22065, + "model_id": 22207, + "year_id": 22211, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22213, + "make_id": 22065, + "model_id": 22207, + "year_id": 22213, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22214, + "make_id": 22065, + "model_id": 22207, + "year_id": 22213, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22215, + "make_id": 22065, + "model_id": 22207, + "year_id": 22215, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22216, + "make_id": 22065, + "model_id": 22207, + "year_id": 22215, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22217, + "make_id": 22065, + "model_id": 22207, + "year_id": 22217, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22218, + "make_id": 22065, + "model_id": 22207, + "year_id": 22217, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22219, + "make_id": 22065, + "model_id": 22207, + "year_id": 22219, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22220, + "make_id": 22065, + "model_id": 22207, + "year_id": 22219, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22221, + "make_id": 22065, + "model_id": 22207, + "year_id": 22221, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22222, + "make_id": 22065, + "model_id": 22207, + "year_id": 22221, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22223, + "make_id": 22065, + "model_id": 22207, + "year_id": 22223, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22224, + "make_id": 22065, + "model_id": 22207, + "year_id": 22223, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22225, + "make_id": 22065, + "model_id": 22207, + "year_id": 22225, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22226, + "make_id": 22065, + "model_id": 22207, + "year_id": 22225, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22227, + "make_id": 22065, + "model_id": 22207, + "year_id": 22225, + "cylinders": 6, + "displacement": 2.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22228, + "make_id": 22065, + "model_id": 22207, + "year_id": 22225, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22229, + "make_id": 22065, + "model_id": 22229, + "year_id": 22229, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22230, + "make_id": 22065, + "model_id": 22229, + "year_id": 22229, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22231, + "make_id": 22065, + "model_id": 22229, + "year_id": 22231, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22232, + "make_id": 22065, + "model_id": 22229, + "year_id": 22231, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22233, + "make_id": 22065, + "model_id": 22229, + "year_id": 22233, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22234, + "make_id": 22065, + "model_id": 22229, + "year_id": 22233, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22235, + "make_id": 22065, + "model_id": 22229, + "year_id": 22235, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22236, + "make_id": 22065, + "model_id": 22229, + "year_id": 22235, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22237, + "make_id": 22065, + "model_id": 22229, + "year_id": 22237, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22238, + "make_id": 22065, + "model_id": 22229, + "year_id": 22237, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22239, + "make_id": 22065, + "model_id": 22229, + "year_id": 22239, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22240, + "make_id": 22065, + "model_id": 22229, + "year_id": 22239, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22241, + "make_id": 22065, + "model_id": 22229, + "year_id": 22241, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22242, + "make_id": 22065, + "model_id": 22229, + "year_id": 22241, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22243, + "make_id": 22065, + "model_id": 22229, + "year_id": 22241, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22244, + "make_id": 22065, + "model_id": 22229, + "year_id": 22241, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22245, + "make_id": 22065, + "model_id": 22229, + "year_id": 22245, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22246, + "make_id": 22065, + "model_id": 22229, + "year_id": 22245, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22247, + "make_id": 22065, + "model_id": 22229, + "year_id": 22245, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22248, + "make_id": 22065, + "model_id": 22229, + "year_id": 22245, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22249, + "make_id": 22065, + "model_id": 22229, + "year_id": 22249, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22250, + "make_id": 22065, + "model_id": 22229, + "year_id": 22249, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22251, + "make_id": 22065, + "model_id": 22229, + "year_id": 22249, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22252, + "make_id": 22065, + "model_id": 22229, + "year_id": 22249, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22253, + "make_id": 22065, + "model_id": 22229, + "year_id": 22253, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22254, + "make_id": 22065, + "model_id": 22229, + "year_id": 22253, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22255, + "make_id": 22065, + "model_id": 22229, + "year_id": 22253, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22256, + "make_id": 22065, + "model_id": 22229, + "year_id": 22253, + "cylinders": 6, + "displacement": 3.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22257, + "make_id": 22065, + "model_id": 22229, + "year_id": 22257, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22258, + "make_id": 22065, + "model_id": 22229, + "year_id": 22257, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22259, + "make_id": 22065, + "model_id": 22259, + "year_id": 22259, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22260, + "make_id": 22065, + "model_id": 22259, + "year_id": 22260, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22261, + "make_id": 22065, + "model_id": 22259, + "year_id": 22261, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22262, + "make_id": 22065, + "model_id": 22259, + "year_id": 22262, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22263, + "make_id": 22065, + "model_id": 22259, + "year_id": 22263, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22264, + "make_id": 22065, + "model_id": 22259, + "year_id": 22264, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22265, + "make_id": 22065, + "model_id": 22259, + "year_id": 22265, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 22266, + "make_id": 22065, + "model_id": 22266, + "year_id": 22266, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22267, + "make_id": 22065, + "model_id": 22266, + "year_id": 22266, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22268, + "make_id": 22065, + "model_id": 22266, + "year_id": 22268, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22269, + "make_id": 22065, + "model_id": 22266, + "year_id": 22268, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22270, + "make_id": 22065, + "model_id": 22266, + "year_id": 22268, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22271, + "make_id": 22065, + "model_id": 22266, + "year_id": 22268, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22272, + "make_id": 22065, + "model_id": 22266, + "year_id": 22272, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22273, + "make_id": 22065, + "model_id": 22266, + "year_id": 22272, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22274, + "make_id": 22065, + "model_id": 22266, + "year_id": 22274, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22275, + "make_id": 22065, + "model_id": 22266, + "year_id": 22274, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22276, + "make_id": 22065, + "model_id": 22266, + "year_id": 22276, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22277, + "make_id": 22065, + "model_id": 22266, + "year_id": 22276, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22278, + "make_id": 22065, + "model_id": 22266, + "year_id": 22278, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22279, + "make_id": 22065, + "model_id": 22266, + "year_id": 22279, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22280, + "make_id": 22065, + "model_id": 22266, + "year_id": 22280, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22281, + "make_id": 22065, + "model_id": 22266, + "year_id": 22281, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22282, + "make_id": 22065, + "model_id": 22266, + "year_id": 22282, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22283, + "make_id": 22065, + "model_id": 22266, + "year_id": 22283, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22284, + "make_id": 22065, + "model_id": 22266, + "year_id": 22284, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22285, + "make_id": 22065, + "model_id": 22266, + "year_id": 22285, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22286, + "make_id": 22065, + "model_id": 22266, + "year_id": 22286, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22287, + "make_id": 22065, + "model_id": 22266, + "year_id": 22286, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22288, + "make_id": 22065, + "model_id": 22266, + "year_id": 22288, + "cylinders": 8, + "displacement": 5.4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22289, + "make_id": 22065, + "model_id": 22266, + "year_id": 22288, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22290, + "make_id": 22065, + "model_id": 22266, + "year_id": 22290, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22291, + "make_id": 22065, + "model_id": 22266, + "year_id": 22290, + "cylinders": 8, + "displacement": 5.4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22292, + "make_id": 22065, + "model_id": 22266, + "year_id": 22292, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22293, + "make_id": 22065, + "model_id": 22266, + "year_id": 22292, + "cylinders": 8, + "displacement": 5.4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22294, + "make_id": 22065, + "model_id": 22266, + "year_id": 22294, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22295, + "make_id": 22065, + "model_id": 22266, + "year_id": 22294, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22296, + "make_id": 22065, + "model_id": 22266, + "year_id": 22296, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22297, + "make_id": 22065, + "model_id": 22266, + "year_id": 22296, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22298, + "make_id": 22065, + "model_id": 22266, + "year_id": 22298, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22299, + "make_id": 22065, + "model_id": 22266, + "year_id": 22298, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22300, + "make_id": 22065, + "model_id": 22300, + "year_id": 22300, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22301, + "make_id": 22065, + "model_id": 22300, + "year_id": 22300, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22302, + "make_id": 22065, + "model_id": 22300, + "year_id": 22302, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22303, + "make_id": 22065, + "model_id": 22300, + "year_id": 22302, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22304, + "make_id": 22065, + "model_id": 22300, + "year_id": 22304, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22305, + "make_id": 22065, + "model_id": 22300, + "year_id": 22304, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22306, + "make_id": 22065, + "model_id": 22306, + "year_id": 22306, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22307, + "make_id": 22065, + "model_id": 22307, + "year_id": 22307, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 22308, + "make_id": 22065, + "model_id": 22307, + "year_id": 22307, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 22309, + "make_id": 22065, + "model_id": 22307, + "year_id": 22309, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22310, + "make_id": 22065, + "model_id": 22307, + "year_id": 22310, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22311, + "make_id": 22065, + "model_id": 22307, + "year_id": 22311, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22312, + "make_id": 22065, + "model_id": 22307, + "year_id": 22312, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22313, + "make_id": 22065, + "model_id": 22307, + "year_id": 22313, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22314, + "make_id": 22065, + "model_id": 22307, + "year_id": 22314, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22315, + "make_id": 22065, + "model_id": 22307, + "year_id": 22315, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22316, + "make_id": 22065, + "model_id": 22307, + "year_id": 22316, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22317, + "make_id": 22065, + "model_id": 22307, + "year_id": 22316, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22318, + "make_id": 22065, + "model_id": 22307, + "year_id": 22318, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22319, + "make_id": 22065, + "model_id": 22307, + "year_id": 22319, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22320, + "make_id": 22065, + "model_id": 22307, + "year_id": 22320, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22321, + "make_id": 22065, + "model_id": 22307, + "year_id": 22321, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22322, + "make_id": 22065, + "model_id": 22307, + "year_id": 22322, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22323, + "make_id": 22065, + "model_id": 22307, + "year_id": 22323, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22324, + "make_id": 22065, + "model_id": 22307, + "year_id": 22324, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22325, + "make_id": 22065, + "model_id": 22307, + "year_id": 22325, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22326, + "make_id": 22065, + "model_id": 22307, + "year_id": 22326, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22327, + "make_id": 22065, + "model_id": 22307, + "year_id": 22327, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22328, + "make_id": 22065, + "model_id": 22307, + "year_id": 22328, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22329, + "make_id": 22065, + "model_id": 22307, + "year_id": 22329, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22330, + "make_id": 22065, + "model_id": 22307, + "year_id": 22330, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22331, + "make_id": 22065, + "model_id": 22307, + "year_id": 22331, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22332, + "make_id": 22065, + "model_id": 22307, + "year_id": 22331, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22333, + "make_id": 22065, + "model_id": 22307, + "year_id": 22333, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22334, + "make_id": 22065, + "model_id": 22307, + "year_id": 22333, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22335, + "make_id": 22065, + "model_id": 22307, + "year_id": 22335, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22336, + "make_id": 22065, + "model_id": 22307, + "year_id": 22335, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22337, + "make_id": 22065, + "model_id": 22307, + "year_id": 22337, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22338, + "make_id": 22065, + "model_id": 22307, + "year_id": 22338, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22339, + "make_id": 22065, + "model_id": 22307, + "year_id": 22339, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22340, + "make_id": 22065, + "model_id": 22340, + "year_id": 22340, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22341, + "make_id": 22341, + "model_id": 22341, + "year_id": 22341, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22342, + "make_id": 22342, + "model_id": 22342, + "year_id": 22342, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22343, + "make_id": 22343, + "model_id": 22343, + "year_id": 22343, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22344, + "make_id": 22343, + "model_id": 22344, + "year_id": 22344, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22345, + "make_id": 22343, + "model_id": 22344, + "year_id": 22345, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22346, + "make_id": 22343, + "model_id": 22344, + "year_id": 22346, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22347, + "make_id": 22343, + "model_id": 22347, + "year_id": 22347, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22348, + "make_id": 22343, + "model_id": 22348, + "year_id": 22348, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22349, + "make_id": 22343, + "model_id": 22348, + "year_id": 22349, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22350, + "make_id": 22343, + "model_id": 22348, + "year_id": 22349, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22351, + "make_id": 22343, + "model_id": 22348, + "year_id": 22351, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22352, + "make_id": 22343, + "model_id": 22348, + "year_id": 22351, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22353, + "make_id": 22343, + "model_id": 22348, + "year_id": 22353, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22354, + "make_id": 22343, + "model_id": 22348, + "year_id": 22353, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22355, + "make_id": 22343, + "model_id": 22348, + "year_id": 22355, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22356, + "make_id": 22343, + "model_id": 22348, + "year_id": 22355, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22357, + "make_id": 22343, + "model_id": 22348, + "year_id": 22357, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22358, + "make_id": 22343, + "model_id": 22348, + "year_id": 22357, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22359, + "make_id": 22343, + "model_id": 22359, + "year_id": 22359, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22360, + "make_id": 22343, + "model_id": 22360, + "year_id": 22360, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 22361, + "make_id": 22343, + "model_id": 22360, + "year_id": 22360, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 22362, + "make_id": 22343, + "model_id": 22362, + "year_id": 22362, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22363, + "make_id": 22343, + "model_id": 22362, + "year_id": 22363, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22364, + "make_id": 22343, + "model_id": 22362, + "year_id": 22364, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22365, + "make_id": 22343, + "model_id": 22362, + "year_id": 22364, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22366, + "make_id": 22343, + "model_id": 22362, + "year_id": 22364, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22367, + "make_id": 22343, + "model_id": 22362, + "year_id": 22367, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22368, + "make_id": 22343, + "model_id": 22362, + "year_id": 22368, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22369, + "make_id": 22343, + "model_id": 22362, + "year_id": 22369, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22370, + "make_id": 22343, + "model_id": 22362, + "year_id": 22370, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22371, + "make_id": 22343, + "model_id": 22362, + "year_id": 22371, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22372, + "make_id": 22343, + "model_id": 22372, + "year_id": 22372, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22373, + "make_id": 22343, + "model_id": 22372, + "year_id": 22372, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22374, + "make_id": 22343, + "model_id": 22374, + "year_id": 22374, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22375, + "make_id": 22343, + "model_id": 22374, + "year_id": 22375, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22376, + "make_id": 22343, + "model_id": 22374, + "year_id": 22376, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22377, + "make_id": 22343, + "model_id": 22374, + "year_id": 22377, + "cylinders": 8, + "displacement": 3.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 22378, + "make_id": 22343, + "model_id": 22374, + "year_id": 22378, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22379, + "make_id": 22343, + "model_id": 22374, + "year_id": 22379, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22380, + "make_id": 22343, + "model_id": 22380, + "year_id": 22380, + "cylinders": 8, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22381, + "make_id": 22343, + "model_id": 22381, + "year_id": 22381, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22382, + "make_id": 22343, + "model_id": 22381, + "year_id": 22382, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22383, + "make_id": 22343, + "model_id": 22381, + "year_id": 22382, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22384, + "make_id": 22343, + "model_id": 22381, + "year_id": 22382, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22385, + "make_id": 22343, + "model_id": 22381, + "year_id": 22382, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22386, + "make_id": 22343, + "model_id": 22381, + "year_id": 22386, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22387, + "make_id": 22343, + "model_id": 22381, + "year_id": 22386, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22388, + "make_id": 22343, + "model_id": 22381, + "year_id": 22386, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22389, + "make_id": 22343, + "model_id": 22381, + "year_id": 22386, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22390, + "make_id": 22343, + "model_id": 22381, + "year_id": 22390, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22391, + "make_id": 22343, + "model_id": 22381, + "year_id": 22390, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22392, + "make_id": 22343, + "model_id": 22381, + "year_id": 22390, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22393, + "make_id": 22343, + "model_id": 22381, + "year_id": 22390, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22394, + "make_id": 22343, + "model_id": 22381, + "year_id": 22394, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22395, + "make_id": 22343, + "model_id": 22381, + "year_id": 22394, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22396, + "make_id": 22343, + "model_id": 22381, + "year_id": 22394, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22397, + "make_id": 22343, + "model_id": 22381, + "year_id": 22394, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22398, + "make_id": 22398, + "model_id": 22398, + "year_id": 22398, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22399, + "make_id": 22399, + "model_id": 22399, + "year_id": 22399, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22400, + "make_id": 22399, + "model_id": 22400, + "year_id": 22400, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22401, + "make_id": 22399, + "model_id": 22400, + "year_id": 22400, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22402, + "make_id": 22399, + "model_id": 22400, + "year_id": 22402, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22403, + "make_id": 22399, + "model_id": 22400, + "year_id": 22402, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22404, + "make_id": 22399, + "model_id": 22404, + "year_id": 22404, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22405, + "make_id": 22399, + "model_id": 22404, + "year_id": 22404, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22406, + "make_id": 22399, + "model_id": 22404, + "year_id": 22406, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22407, + "make_id": 22399, + "model_id": 22404, + "year_id": 22406, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22408, + "make_id": 22399, + "model_id": 22404, + "year_id": 22408, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22409, + "make_id": 22399, + "model_id": 22409, + "year_id": 22409, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22410, + "make_id": 22399, + "model_id": 22409, + "year_id": 22410, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22411, + "make_id": 22399, + "model_id": 22409, + "year_id": 22410, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22412, + "make_id": 22399, + "model_id": 22412, + "year_id": 22412, + "cylinders": 6, + "displacement": 2.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 22413, + "make_id": 22399, + "model_id": 22412, + "year_id": 22412, + "cylinders": 6, + "displacement": 2.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 22414, + "make_id": 22399, + "model_id": 22412, + "year_id": 22414, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22415, + "make_id": 22399, + "model_id": 22412, + "year_id": 22414, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22416, + "make_id": 22399, + "model_id": 22412, + "year_id": 22414, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22417, + "make_id": 22399, + "model_id": 22412, + "year_id": 22414, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22418, + "make_id": 22399, + "model_id": 22412, + "year_id": 22418, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22419, + "make_id": 22399, + "model_id": 22412, + "year_id": 22419, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22420, + "make_id": 22399, + "model_id": 22412, + "year_id": 22419, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22421, + "make_id": 22399, + "model_id": 22421, + "year_id": 22421, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22422, + "make_id": 22399, + "model_id": 22421, + "year_id": 22422, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22423, + "make_id": 22399, + "model_id": 22421, + "year_id": 22422, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22424, + "make_id": 22399, + "model_id": 22424, + "year_id": 22424, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22425, + "make_id": 22399, + "model_id": 22424, + "year_id": 22425, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22426, + "make_id": 22399, + "model_id": 22424, + "year_id": 22425, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22427, + "make_id": 22399, + "model_id": 22427, + "year_id": 22427, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22428, + "make_id": 22399, + "model_id": 22427, + "year_id": 22427, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22429, + "make_id": 22399, + "model_id": 22429, + "year_id": 22429, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22430, + "make_id": 22399, + "model_id": 22429, + "year_id": 22429, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22431, + "make_id": 22399, + "model_id": 22431, + "year_id": 22431, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22432, + "make_id": 22399, + "model_id": 22431, + "year_id": 22431, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22433, + "make_id": 22399, + "model_id": 22431, + "year_id": 22433, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22434, + "make_id": 22399, + "model_id": 22431, + "year_id": 22433, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22435, + "make_id": 22399, + "model_id": 22435, + "year_id": 22435, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22436, + "make_id": 22399, + "model_id": 22435, + "year_id": 22435, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22437, + "make_id": 22399, + "model_id": 22437, + "year_id": 22437, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22438, + "make_id": 22399, + "model_id": 22438, + "year_id": 22438, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22439, + "make_id": 22399, + "model_id": 22438, + "year_id": 22438, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22440, + "make_id": 22399, + "model_id": 22438, + "year_id": 22440, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22441, + "make_id": 22399, + "model_id": 22438, + "year_id": 22441, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22442, + "make_id": 22399, + "model_id": 22442, + "year_id": 22442, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22443, + "make_id": 22399, + "model_id": 22442, + "year_id": 22443, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22444, + "make_id": 22399, + "model_id": 22444, + "year_id": 22444, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22445, + "make_id": 22399, + "model_id": 22444, + "year_id": 22445, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22446, + "make_id": 22399, + "model_id": 22444, + "year_id": 22446, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22447, + "make_id": 22399, + "model_id": 22444, + "year_id": 22446, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22448, + "make_id": 22399, + "model_id": 22444, + "year_id": 22448, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22449, + "make_id": 22399, + "model_id": 22444, + "year_id": 22448, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22450, + "make_id": 22399, + "model_id": 22444, + "year_id": 22450, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22451, + "make_id": 22399, + "model_id": 22444, + "year_id": 22451, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22452, + "make_id": 22399, + "model_id": 22444, + "year_id": 22452, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22453, + "make_id": 22399, + "model_id": 22444, + "year_id": 22453, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22454, + "make_id": 22399, + "model_id": 22444, + "year_id": 22454, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22455, + "make_id": 22399, + "model_id": 22444, + "year_id": 22455, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22456, + "make_id": 22399, + "model_id": 22456, + "year_id": 22456, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22457, + "make_id": 22399, + "model_id": 22456, + "year_id": 22457, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22458, + "make_id": 22399, + "model_id": 22456, + "year_id": 22458, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22459, + "make_id": 22399, + "model_id": 22456, + "year_id": 22459, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22460, + "make_id": 22399, + "model_id": 22456, + "year_id": 22460, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22461, + "make_id": 22399, + "model_id": 22456, + "year_id": 22461, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22462, + "make_id": 22399, + "model_id": 22456, + "year_id": 22462, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22463, + "make_id": 22399, + "model_id": 22456, + "year_id": 22463, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22464, + "make_id": 22399, + "model_id": 22464, + "year_id": 22464, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22465, + "make_id": 22399, + "model_id": 22464, + "year_id": 22464, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22466, + "make_id": 22399, + "model_id": 22464, + "year_id": 22466, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22467, + "make_id": 22399, + "model_id": 22464, + "year_id": 22466, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22468, + "make_id": 22399, + "model_id": 22468, + "year_id": 22468, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22469, + "make_id": 22399, + "model_id": 22469, + "year_id": 22469, + "cylinders": 8, + "displacement": 4.9, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 22470, + "make_id": 22399, + "model_id": 22469, + "year_id": 22469, + "cylinders": 8, + "displacement": 4.9, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 22471, + "make_id": 22399, + "model_id": 22469, + "year_id": 22471, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22472, + "make_id": 22399, + "model_id": 22469, + "year_id": 22472, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22473, + "make_id": 22399, + "model_id": 22469, + "year_id": 22473, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22474, + "make_id": 22399, + "model_id": 22469, + "year_id": 22474, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22475, + "make_id": 22399, + "model_id": 22469, + "year_id": 22475, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22476, + "make_id": 22399, + "model_id": 22469, + "year_id": 22476, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22477, + "make_id": 22399, + "model_id": 22469, + "year_id": 22477, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22478, + "make_id": 22399, + "model_id": 22469, + "year_id": 22477, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22479, + "make_id": 22399, + "model_id": 22469, + "year_id": 22479, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22480, + "make_id": 22399, + "model_id": 22469, + "year_id": 22479, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22481, + "make_id": 22399, + "model_id": 22469, + "year_id": 22481, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22482, + "make_id": 22399, + "model_id": 22469, + "year_id": 22482, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22483, + "make_id": 22399, + "model_id": 22483, + "year_id": 22483, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22484, + "make_id": 22399, + "model_id": 22483, + "year_id": 22484, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22485, + "make_id": 22399, + "model_id": 22483, + "year_id": 22485, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22486, + "make_id": 22399, + "model_id": 22486, + "year_id": 22486, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22487, + "make_id": 22399, + "model_id": 22487, + "year_id": 22487, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22488, + "make_id": 22399, + "model_id": 22487, + "year_id": 22488, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22489, + "make_id": 22399, + "model_id": 22487, + "year_id": 22489, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 22490, + "make_id": 22399, + "model_id": 22490, + "year_id": 22490, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22491, + "make_id": 22399, + "model_id": 22490, + "year_id": 22490, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22492, + "make_id": 22399, + "model_id": 22492, + "year_id": 22492, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22493, + "make_id": 22399, + "model_id": 22492, + "year_id": 22492, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22494, + "make_id": 22399, + "model_id": 22494, + "year_id": 22494, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22495, + "make_id": 22399, + "model_id": 22494, + "year_id": 22494, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22496, + "make_id": 22399, + "model_id": 22494, + "year_id": 22496, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22497, + "make_id": 22399, + "model_id": 22494, + "year_id": 22496, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22498, + "make_id": 22399, + "model_id": 22498, + "year_id": 22498, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22499, + "make_id": 22399, + "model_id": 22498, + "year_id": 22498, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22500, + "make_id": 22399, + "model_id": 22498, + "year_id": 22500, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22501, + "make_id": 22399, + "model_id": 22498, + "year_id": 22500, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22502, + "make_id": 22399, + "model_id": 22498, + "year_id": 22502, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22503, + "make_id": 22399, + "model_id": 22498, + "year_id": 22502, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22504, + "make_id": 22399, + "model_id": 22504, + "year_id": 22504, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22505, + "make_id": 22399, + "model_id": 22504, + "year_id": 22504, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22506, + "make_id": 22506, + "model_id": 22506, + "year_id": 22506, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22507, + "make_id": 22506, + "model_id": 22506, + "year_id": 22507, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22508, + "make_id": 22506, + "model_id": 22506, + "year_id": 22508, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22509, + "make_id": 22506, + "model_id": 22506, + "year_id": 22509, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22510, + "make_id": 22506, + "model_id": 22506, + "year_id": 22510, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22511, + "make_id": 22506, + "model_id": 22506, + "year_id": 22511, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22512, + "make_id": 22506, + "model_id": 22506, + "year_id": 22512, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22513, + "make_id": 22506, + "model_id": 22506, + "year_id": 22513, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22514, + "make_id": 22506, + "model_id": 22506, + "year_id": 22514, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22515, + "make_id": 22506, + "model_id": 22515, + "year_id": 22515, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22516, + "make_id": 22506, + "model_id": 22515, + "year_id": 22516, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22517, + "make_id": 22506, + "model_id": 22515, + "year_id": 22517, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22518, + "make_id": 22506, + "model_id": 22515, + "year_id": 22518, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22519, + "make_id": 22506, + "model_id": 22515, + "year_id": 22519, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22520, + "make_id": 22506, + "model_id": 22515, + "year_id": 22520, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22521, + "make_id": 22506, + "model_id": 22515, + "year_id": 22521, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22522, + "make_id": 22506, + "model_id": 22515, + "year_id": 22522, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22523, + "make_id": 22506, + "model_id": 22523, + "year_id": 22523, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22524, + "make_id": 22506, + "model_id": 22523, + "year_id": 22524, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22525, + "make_id": 22506, + "model_id": 22525, + "year_id": 22525, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22526, + "make_id": 22506, + "model_id": 22526, + "year_id": 22526, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22527, + "make_id": 22506, + "model_id": 22526, + "year_id": 22527, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22528, + "make_id": 22506, + "model_id": 22526, + "year_id": 22528, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22529, + "make_id": 22506, + "model_id": 22526, + "year_id": 22529, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22530, + "make_id": 22506, + "model_id": 22526, + "year_id": 22530, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22531, + "make_id": 22506, + "model_id": 22531, + "year_id": 22531, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22532, + "make_id": 22506, + "model_id": 22531, + "year_id": 22532, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22533, + "make_id": 22506, + "model_id": 22533, + "year_id": 22533, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22534, + "make_id": 22506, + "model_id": 22533, + "year_id": 22534, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22535, + "make_id": 22506, + "model_id": 22533, + "year_id": 22535, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22536, + "make_id": 22506, + "model_id": 22536, + "year_id": 22536, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22537, + "make_id": 22537, + "model_id": 22537, + "year_id": 22537, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22538, + "make_id": 22537, + "model_id": 22537, + "year_id": 22537, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22539, + "make_id": 22537, + "model_id": 22537, + "year_id": 22539, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22540, + "make_id": 22537, + "model_id": 22537, + "year_id": 22539, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22541, + "make_id": 22537, + "model_id": 22537, + "year_id": 22541, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22542, + "make_id": 22537, + "model_id": 22537, + "year_id": 22541, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22543, + "make_id": 22537, + "model_id": 22537, + "year_id": 22543, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22544, + "make_id": 22537, + "model_id": 22537, + "year_id": 22543, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22545, + "make_id": 22537, + "model_id": 22537, + "year_id": 22545, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22546, + "make_id": 22537, + "model_id": 22537, + "year_id": 22545, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22547, + "make_id": 22537, + "model_id": 22547, + "year_id": 22547, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22548, + "make_id": 22537, + "model_id": 22547, + "year_id": 22547, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22549, + "make_id": 22537, + "model_id": 22547, + "year_id": 22547, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22550, + "make_id": 22537, + "model_id": 22547, + "year_id": 22547, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22551, + "make_id": 22537, + "model_id": 22547, + "year_id": 22547, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22552, + "make_id": 22537, + "model_id": 22547, + "year_id": 22552, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22553, + "make_id": 22537, + "model_id": 22547, + "year_id": 22552, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22554, + "make_id": 22537, + "model_id": 22547, + "year_id": 22552, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22555, + "make_id": 22537, + "model_id": 22547, + "year_id": 22552, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22556, + "make_id": 22537, + "model_id": 22547, + "year_id": 22556, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22557, + "make_id": 22537, + "model_id": 22547, + "year_id": 22556, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22558, + "make_id": 22537, + "model_id": 22547, + "year_id": 22556, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22559, + "make_id": 22537, + "model_id": 22547, + "year_id": 22556, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22560, + "make_id": 22537, + "model_id": 22547, + "year_id": 22560, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22561, + "make_id": 22537, + "model_id": 22547, + "year_id": 22560, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22562, + "make_id": 22537, + "model_id": 22547, + "year_id": 22560, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22563, + "make_id": 22537, + "model_id": 22547, + "year_id": 22560, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22564, + "make_id": 22537, + "model_id": 22547, + "year_id": 22560, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22565, + "make_id": 22537, + "model_id": 22547, + "year_id": 22565, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22566, + "make_id": 22537, + "model_id": 22547, + "year_id": 22565, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22567, + "make_id": 22537, + "model_id": 22547, + "year_id": 22565, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22568, + "make_id": 22537, + "model_id": 22547, + "year_id": 22565, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22569, + "make_id": 22537, + "model_id": 22547, + "year_id": 22569, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22570, + "make_id": 22537, + "model_id": 22547, + "year_id": 22569, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22571, + "make_id": 22537, + "model_id": 22547, + "year_id": 22569, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22572, + "make_id": 22537, + "model_id": 22547, + "year_id": 22569, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22573, + "make_id": 22537, + "model_id": 22547, + "year_id": 22573, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22574, + "make_id": 22537, + "model_id": 22547, + "year_id": 22573, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22575, + "make_id": 22537, + "model_id": 22547, + "year_id": 22573, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22576, + "make_id": 22537, + "model_id": 22547, + "year_id": 22573, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22577, + "make_id": 22537, + "model_id": 22547, + "year_id": 22577, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22578, + "make_id": 22537, + "model_id": 22547, + "year_id": 22577, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22579, + "make_id": 22537, + "model_id": 22547, + "year_id": 22577, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22580, + "make_id": 22537, + "model_id": 22547, + "year_id": 22577, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22581, + "make_id": 22537, + "model_id": 22547, + "year_id": 22581, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22582, + "make_id": 22537, + "model_id": 22547, + "year_id": 22581, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22583, + "make_id": 22537, + "model_id": 22547, + "year_id": 22581, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22584, + "make_id": 22537, + "model_id": 22547, + "year_id": 22581, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22585, + "make_id": 22537, + "model_id": 22547, + "year_id": 22585, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22586, + "make_id": 22537, + "model_id": 22547, + "year_id": 22585, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22587, + "make_id": 22537, + "model_id": 22547, + "year_id": 22585, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22588, + "make_id": 22537, + "model_id": 22547, + "year_id": 22585, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22589, + "make_id": 22537, + "model_id": 22589, + "year_id": 22589, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22590, + "make_id": 22537, + "model_id": 22589, + "year_id": 22589, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22591, + "make_id": 22537, + "model_id": 22589, + "year_id": 22591, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22592, + "make_id": 22537, + "model_id": 22589, + "year_id": 22591, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22593, + "make_id": 22537, + "model_id": 22589, + "year_id": 22593, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22594, + "make_id": 22537, + "model_id": 22589, + "year_id": 22593, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22595, + "make_id": 22537, + "model_id": 22589, + "year_id": 22595, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22596, + "make_id": 22537, + "model_id": 22589, + "year_id": 22595, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22597, + "make_id": 22537, + "model_id": 22589, + "year_id": 22597, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22598, + "make_id": 22537, + "model_id": 22589, + "year_id": 22597, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22599, + "make_id": 22537, + "model_id": 22589, + "year_id": 22599, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22600, + "make_id": 22537, + "model_id": 22589, + "year_id": 22599, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22601, + "make_id": 22537, + "model_id": 22589, + "year_id": 22601, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22602, + "make_id": 22537, + "model_id": 22589, + "year_id": 22601, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22603, + "make_id": 22537, + "model_id": 22589, + "year_id": 22603, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22604, + "make_id": 22537, + "model_id": 22589, + "year_id": 22603, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22605, + "make_id": 22537, + "model_id": 22589, + "year_id": 22605, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22606, + "make_id": 22537, + "model_id": 22606, + "year_id": 22606, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22607, + "make_id": 22537, + "model_id": 22606, + "year_id": 22606, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22608, + "make_id": 22537, + "model_id": 22606, + "year_id": 22606, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22609, + "make_id": 22537, + "model_id": 22606, + "year_id": 22606, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22610, + "make_id": 22537, + "model_id": 22606, + "year_id": 22610, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22611, + "make_id": 22537, + "model_id": 22606, + "year_id": 22610, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22612, + "make_id": 22537, + "model_id": 22606, + "year_id": 22610, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22613, + "make_id": 22537, + "model_id": 22606, + "year_id": 22610, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22614, + "make_id": 22537, + "model_id": 22606, + "year_id": 22614, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22615, + "make_id": 22537, + "model_id": 22606, + "year_id": 22614, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22616, + "make_id": 22537, + "model_id": 22606, + "year_id": 22614, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22617, + "make_id": 22537, + "model_id": 22606, + "year_id": 22614, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22618, + "make_id": 22537, + "model_id": 22606, + "year_id": 22618, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22619, + "make_id": 22537, + "model_id": 22606, + "year_id": 22618, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22620, + "make_id": 22537, + "model_id": 22606, + "year_id": 22618, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22621, + "make_id": 22537, + "model_id": 22606, + "year_id": 22618, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22622, + "make_id": 22537, + "model_id": 22606, + "year_id": 22618, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22623, + "make_id": 22537, + "model_id": 22606, + "year_id": 22623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22624, + "make_id": 22537, + "model_id": 22606, + "year_id": 22623, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22625, + "make_id": 22537, + "model_id": 22606, + "year_id": 22623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22626, + "make_id": 22537, + "model_id": 22606, + "year_id": 22623, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22627, + "make_id": 22537, + "model_id": 22606, + "year_id": 22623, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22628, + "make_id": 22537, + "model_id": 22606, + "year_id": 22628, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22629, + "make_id": 22537, + "model_id": 22606, + "year_id": 22628, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22630, + "make_id": 22537, + "model_id": 22606, + "year_id": 22628, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22631, + "make_id": 22537, + "model_id": 22606, + "year_id": 22628, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22632, + "make_id": 22537, + "model_id": 22606, + "year_id": 22632, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22633, + "make_id": 22537, + "model_id": 22606, + "year_id": 22632, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22634, + "make_id": 22537, + "model_id": 22606, + "year_id": 22632, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22635, + "make_id": 22537, + "model_id": 22606, + "year_id": 22635, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22636, + "make_id": 22537, + "model_id": 22606, + "year_id": 22635, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22637, + "make_id": 22537, + "model_id": 22606, + "year_id": 22635, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22638, + "make_id": 22537, + "model_id": 22606, + "year_id": 22638, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22639, + "make_id": 22537, + "model_id": 22606, + "year_id": 22638, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22640, + "make_id": 22537, + "model_id": 22606, + "year_id": 22638, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22641, + "make_id": 22537, + "model_id": 22606, + "year_id": 22641, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22642, + "make_id": 22537, + "model_id": 22606, + "year_id": 22641, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22643, + "make_id": 22537, + "model_id": 22606, + "year_id": 22641, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22644, + "make_id": 22537, + "model_id": 22606, + "year_id": 22644, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22645, + "make_id": 22537, + "model_id": 22606, + "year_id": 22644, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22646, + "make_id": 22537, + "model_id": 22606, + "year_id": 22644, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22647, + "make_id": 22537, + "model_id": 22606, + "year_id": 22647, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22648, + "make_id": 22537, + "model_id": 22606, + "year_id": 22647, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22649, + "make_id": 22537, + "model_id": 22606, + "year_id": 22647, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22650, + "make_id": 22537, + "model_id": 22606, + "year_id": 22650, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22651, + "make_id": 22537, + "model_id": 22606, + "year_id": 22650, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22652, + "make_id": 22537, + "model_id": 22606, + "year_id": 22650, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22653, + "make_id": 22537, + "model_id": 22606, + "year_id": 22653, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22654, + "make_id": 22537, + "model_id": 22606, + "year_id": 22653, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22655, + "make_id": 22537, + "model_id": 22606, + "year_id": 22653, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22656, + "make_id": 22537, + "model_id": 22656, + "year_id": 22656, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22657, + "make_id": 22537, + "model_id": 22656, + "year_id": 22656, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22658, + "make_id": 22537, + "model_id": 22656, + "year_id": 22656, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22659, + "make_id": 22537, + "model_id": 22656, + "year_id": 22659, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22660, + "make_id": 22537, + "model_id": 22656, + "year_id": 22659, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22661, + "make_id": 22537, + "model_id": 22656, + "year_id": 22659, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22662, + "make_id": 22537, + "model_id": 22656, + "year_id": 22662, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22663, + "make_id": 22537, + "model_id": 22656, + "year_id": 22662, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22664, + "make_id": 22537, + "model_id": 22656, + "year_id": 22662, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22665, + "make_id": 22537, + "model_id": 22656, + "year_id": 22662, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22666, + "make_id": 22537, + "model_id": 22656, + "year_id": 22662, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22667, + "make_id": 22537, + "model_id": 22656, + "year_id": 22667, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22668, + "make_id": 22537, + "model_id": 22656, + "year_id": 22667, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22669, + "make_id": 22537, + "model_id": 22656, + "year_id": 22667, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22670, + "make_id": 22537, + "model_id": 22656, + "year_id": 22667, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22671, + "make_id": 22537, + "model_id": 22656, + "year_id": 22667, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22672, + "make_id": 22537, + "model_id": 22656, + "year_id": 22672, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22673, + "make_id": 22537, + "model_id": 22656, + "year_id": 22672, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22674, + "make_id": 22537, + "model_id": 22656, + "year_id": 22674, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22675, + "make_id": 22537, + "model_id": 22656, + "year_id": 22674, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22676, + "make_id": 22537, + "model_id": 22656, + "year_id": 22674, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22677, + "make_id": 22537, + "model_id": 22656, + "year_id": 22674, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22678, + "make_id": 22537, + "model_id": 22656, + "year_id": 22678, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22679, + "make_id": 22537, + "model_id": 22656, + "year_id": 22678, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22680, + "make_id": 22537, + "model_id": 22656, + "year_id": 22678, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22681, + "make_id": 22537, + "model_id": 22656, + "year_id": 22678, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22682, + "make_id": 22537, + "model_id": 22656, + "year_id": 22682, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22683, + "make_id": 22537, + "model_id": 22656, + "year_id": 22682, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22684, + "make_id": 22537, + "model_id": 22684, + "year_id": 22684, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 22685, + "make_id": 22537, + "model_id": 22684, + "year_id": 22684, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 22686, + "make_id": 22537, + "model_id": 22684, + "year_id": 22684, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 22687, + "make_id": 22537, + "model_id": 22684, + "year_id": 22684, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 22688, + "make_id": 22537, + "model_id": 22684, + "year_id": 22684, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 22689, + "make_id": 22537, + "model_id": 22684, + "year_id": 22684, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 22690, + "make_id": 22537, + "model_id": 22684, + "year_id": 22690, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22691, + "make_id": 22537, + "model_id": 22684, + "year_id": 22690, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22692, + "make_id": 22537, + "model_id": 22684, + "year_id": 22690, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22693, + "make_id": 22537, + "model_id": 22684, + "year_id": 22693, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22694, + "make_id": 22537, + "model_id": 22684, + "year_id": 22693, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22695, + "make_id": 22537, + "model_id": 22684, + "year_id": 22693, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22696, + "make_id": 22537, + "model_id": 22684, + "year_id": 22696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22697, + "make_id": 22537, + "model_id": 22684, + "year_id": 22696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22698, + "make_id": 22537, + "model_id": 22684, + "year_id": 22696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22699, + "make_id": 22537, + "model_id": 22684, + "year_id": 22699, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22700, + "make_id": 22537, + "model_id": 22684, + "year_id": 22699, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22701, + "make_id": 22537, + "model_id": 22684, + "year_id": 22699, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22702, + "make_id": 22537, + "model_id": 22684, + "year_id": 22699, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22703, + "make_id": 22537, + "model_id": 22684, + "year_id": 22703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22704, + "make_id": 22537, + "model_id": 22684, + "year_id": 22703, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22705, + "make_id": 22537, + "model_id": 22684, + "year_id": 22703, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22706, + "make_id": 22537, + "model_id": 22684, + "year_id": 22703, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22707, + "make_id": 22537, + "model_id": 22684, + "year_id": 22707, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22708, + "make_id": 22537, + "model_id": 22684, + "year_id": 22707, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22709, + "make_id": 22537, + "model_id": 22684, + "year_id": 22707, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22710, + "make_id": 22537, + "model_id": 22684, + "year_id": 22707, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22711, + "make_id": 22537, + "model_id": 22684, + "year_id": 22711, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22712, + "make_id": 22537, + "model_id": 22684, + "year_id": 22711, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22713, + "make_id": 22537, + "model_id": 22684, + "year_id": 22711, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22714, + "make_id": 22537, + "model_id": 22684, + "year_id": 22711, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22715, + "make_id": 22537, + "model_id": 22684, + "year_id": 22715, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22716, + "make_id": 22537, + "model_id": 22684, + "year_id": 22715, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22717, + "make_id": 22537, + "model_id": 22684, + "year_id": 22715, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22718, + "make_id": 22537, + "model_id": 22684, + "year_id": 22715, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22719, + "make_id": 22537, + "model_id": 22684, + "year_id": 22719, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22720, + "make_id": 22537, + "model_id": 22684, + "year_id": 22719, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22721, + "make_id": 22537, + "model_id": 22684, + "year_id": 22719, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22722, + "make_id": 22537, + "model_id": 22684, + "year_id": 22719, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22723, + "make_id": 22537, + "model_id": 22684, + "year_id": 22723, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22724, + "make_id": 22537, + "model_id": 22684, + "year_id": 22723, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22725, + "make_id": 22537, + "model_id": 22684, + "year_id": 22723, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22726, + "make_id": 22537, + "model_id": 22684, + "year_id": 22723, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22727, + "make_id": 22537, + "model_id": 22684, + "year_id": 22727, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22728, + "make_id": 22537, + "model_id": 22684, + "year_id": 22727, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22729, + "make_id": 22537, + "model_id": 22684, + "year_id": 22727, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22730, + "make_id": 22537, + "model_id": 22684, + "year_id": 22727, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22731, + "make_id": 22537, + "model_id": 22684, + "year_id": 22731, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22732, + "make_id": 22537, + "model_id": 22684, + "year_id": 22731, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22733, + "make_id": 22537, + "model_id": 22684, + "year_id": 22731, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22734, + "make_id": 22537, + "model_id": 22684, + "year_id": 22731, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22735, + "make_id": 22537, + "model_id": 22684, + "year_id": 22735, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22736, + "make_id": 22537, + "model_id": 22684, + "year_id": 22735, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22737, + "make_id": 22537, + "model_id": 22684, + "year_id": 22735, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22738, + "make_id": 22537, + "model_id": 22684, + "year_id": 22735, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22739, + "make_id": 22537, + "model_id": 22739, + "year_id": 22739, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22740, + "make_id": 22537, + "model_id": 22739, + "year_id": 22739, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22741, + "make_id": 22537, + "model_id": 22739, + "year_id": 22741, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22742, + "make_id": 22537, + "model_id": 22739, + "year_id": 22741, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22743, + "make_id": 22537, + "model_id": 22739, + "year_id": 22743, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22744, + "make_id": 22537, + "model_id": 22739, + "year_id": 22743, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22745, + "make_id": 22537, + "model_id": 22739, + "year_id": 22745, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22746, + "make_id": 22537, + "model_id": 22739, + "year_id": 22745, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22747, + "make_id": 22537, + "model_id": 22739, + "year_id": 22747, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22748, + "make_id": 22537, + "model_id": 22739, + "year_id": 22748, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22749, + "make_id": 22537, + "model_id": 22739, + "year_id": 22749, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22750, + "make_id": 22537, + "model_id": 22739, + "year_id": 22750, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22751, + "make_id": 22537, + "model_id": 22751, + "year_id": 22751, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22752, + "make_id": 22537, + "model_id": 22751, + "year_id": 22751, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22753, + "make_id": 22537, + "model_id": 22753, + "year_id": 22753, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22754, + "make_id": 22537, + "model_id": 22753, + "year_id": 22753, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22755, + "make_id": 22537, + "model_id": 22753, + "year_id": 22753, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22756, + "make_id": 22537, + "model_id": 22753, + "year_id": 22753, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22757, + "make_id": 22537, + "model_id": 22753, + "year_id": 22757, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22758, + "make_id": 22537, + "model_id": 22753, + "year_id": 22757, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22759, + "make_id": 22537, + "model_id": 22753, + "year_id": 22757, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22760, + "make_id": 22537, + "model_id": 22753, + "year_id": 22757, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22761, + "make_id": 22537, + "model_id": 22753, + "year_id": 22757, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22762, + "make_id": 22537, + "model_id": 22753, + "year_id": 22762, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22763, + "make_id": 22537, + "model_id": 22753, + "year_id": 22762, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22764, + "make_id": 22537, + "model_id": 22753, + "year_id": 22762, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22765, + "make_id": 22537, + "model_id": 22753, + "year_id": 22762, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22766, + "make_id": 22537, + "model_id": 22753, + "year_id": 22762, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22767, + "make_id": 22537, + "model_id": 22767, + "year_id": 22767, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22768, + "make_id": 22537, + "model_id": 22767, + "year_id": 22767, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22769, + "make_id": 22537, + "model_id": 22767, + "year_id": 22767, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22770, + "make_id": 22537, + "model_id": 22767, + "year_id": 22767, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22771, + "make_id": 22537, + "model_id": 22767, + "year_id": 22771, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22772, + "make_id": 22537, + "model_id": 22767, + "year_id": 22771, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22773, + "make_id": 22537, + "model_id": 22767, + "year_id": 22771, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22774, + "make_id": 22537, + "model_id": 22767, + "year_id": 22771, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22775, + "make_id": 22537, + "model_id": 22767, + "year_id": 22771, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22776, + "make_id": 22537, + "model_id": 22767, + "year_id": 22776, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22777, + "make_id": 22537, + "model_id": 22767, + "year_id": 22776, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22778, + "make_id": 22537, + "model_id": 22767, + "year_id": 22776, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22779, + "make_id": 22537, + "model_id": 22767, + "year_id": 22776, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22780, + "make_id": 22537, + "model_id": 22767, + "year_id": 22776, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22781, + "make_id": 22537, + "model_id": 22781, + "year_id": 22781, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22782, + "make_id": 22537, + "model_id": 22781, + "year_id": 22781, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22783, + "make_id": 22537, + "model_id": 22781, + "year_id": 22783, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22784, + "make_id": 22537, + "model_id": 22781, + "year_id": 22783, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22785, + "make_id": 22537, + "model_id": 22785, + "year_id": 22785, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22786, + "make_id": 22537, + "model_id": 22785, + "year_id": 22785, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22787, + "make_id": 22537, + "model_id": 22785, + "year_id": 22787, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 22788, + "make_id": 22537, + "model_id": 22785, + "year_id": 22787, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22789, + "make_id": 22537, + "model_id": 22789, + "year_id": 22789, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22790, + "make_id": 22537, + "model_id": 22789, + "year_id": 22789, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22791, + "make_id": 22537, + "model_id": 22791, + "year_id": 22791, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22792, + "make_id": 22537, + "model_id": 22791, + "year_id": 22791, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22793, + "make_id": 22537, + "model_id": 22791, + "year_id": 22793, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22794, + "make_id": 22537, + "model_id": 22791, + "year_id": 22793, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22795, + "make_id": 22537, + "model_id": 22791, + "year_id": 22795, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22796, + "make_id": 22537, + "model_id": 22791, + "year_id": 22795, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22797, + "make_id": 22537, + "model_id": 22797, + "year_id": 22797, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22798, + "make_id": 22537, + "model_id": 22797, + "year_id": 22797, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22799, + "make_id": 22537, + "model_id": 22797, + "year_id": 22797, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22800, + "make_id": 22537, + "model_id": 22797, + "year_id": 22797, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22801, + "make_id": 22537, + "model_id": 22797, + "year_id": 22797, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22802, + "make_id": 22537, + "model_id": 22797, + "year_id": 22797, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22803, + "make_id": 22537, + "model_id": 22797, + "year_id": 22797, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22804, + "make_id": 22537, + "model_id": 22797, + "year_id": 22797, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22805, + "make_id": 22537, + "model_id": 22797, + "year_id": 22805, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22806, + "make_id": 22537, + "model_id": 22797, + "year_id": 22805, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22807, + "make_id": 22537, + "model_id": 22797, + "year_id": 22805, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22808, + "make_id": 22537, + "model_id": 22797, + "year_id": 22805, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22809, + "make_id": 22537, + "model_id": 22797, + "year_id": 22805, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22810, + "make_id": 22537, + "model_id": 22797, + "year_id": 22805, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22811, + "make_id": 22537, + "model_id": 22811, + "year_id": 22811, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22812, + "make_id": 22537, + "model_id": 22811, + "year_id": 22811, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22813, + "make_id": 22537, + "model_id": 22811, + "year_id": 22813, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22814, + "make_id": 22537, + "model_id": 22811, + "year_id": 22813, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22815, + "make_id": 22537, + "model_id": 22811, + "year_id": 22815, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22816, + "make_id": 22537, + "model_id": 22811, + "year_id": 22815, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22817, + "make_id": 22537, + "model_id": 22811, + "year_id": 22817, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22818, + "make_id": 22537, + "model_id": 22811, + "year_id": 22817, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 22819, + "make_id": 22537, + "model_id": 22819, + "year_id": 22819, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22820, + "make_id": 22537, + "model_id": 22819, + "year_id": 22819, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22821, + "make_id": 22537, + "model_id": 22819, + "year_id": 22819, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22822, + "make_id": 22537, + "model_id": 22819, + "year_id": 22819, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22823, + "make_id": 22537, + "model_id": 22819, + "year_id": 22823, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22824, + "make_id": 22537, + "model_id": 22819, + "year_id": 22823, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22825, + "make_id": 22537, + "model_id": 22819, + "year_id": 22823, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22826, + "make_id": 22537, + "model_id": 22819, + "year_id": 22823, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22827, + "make_id": 22537, + "model_id": 22819, + "year_id": 22827, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22828, + "make_id": 22537, + "model_id": 22819, + "year_id": 22827, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22829, + "make_id": 22537, + "model_id": 22819, + "year_id": 22827, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22830, + "make_id": 22537, + "model_id": 22819, + "year_id": 22827, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22831, + "make_id": 22537, + "model_id": 22819, + "year_id": 22831, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22832, + "make_id": 22537, + "model_id": 22819, + "year_id": 22831, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22833, + "make_id": 22537, + "model_id": 22819, + "year_id": 22831, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22834, + "make_id": 22537, + "model_id": 22819, + "year_id": 22831, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22835, + "make_id": 22537, + "model_id": 22819, + "year_id": 22835, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22836, + "make_id": 22537, + "model_id": 22819, + "year_id": 22835, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22837, + "make_id": 22537, + "model_id": 22819, + "year_id": 22835, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22838, + "make_id": 22537, + "model_id": 22819, + "year_id": 22835, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22839, + "make_id": 22537, + "model_id": 22839, + "year_id": 22839, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22840, + "make_id": 22537, + "model_id": 22839, + "year_id": 22839, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22841, + "make_id": 22537, + "model_id": 22841, + "year_id": 22841, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22842, + "make_id": 22537, + "model_id": 22841, + "year_id": 22841, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22843, + "make_id": 22537, + "model_id": 22841, + "year_id": 22841, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22844, + "make_id": 22537, + "model_id": 22841, + "year_id": 22841, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22845, + "make_id": 22537, + "model_id": 22841, + "year_id": 22841, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22846, + "make_id": 22537, + "model_id": 22841, + "year_id": 22841, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22847, + "make_id": 22537, + "model_id": 22841, + "year_id": 22841, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22848, + "make_id": 22537, + "model_id": 22848, + "year_id": 22848, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22849, + "make_id": 22537, + "model_id": 22848, + "year_id": 22848, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22850, + "make_id": 22537, + "model_id": 22848, + "year_id": 22848, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22851, + "make_id": 22537, + "model_id": 22848, + "year_id": 22848, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22852, + "make_id": 22537, + "model_id": 22848, + "year_id": 22848, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22853, + "make_id": 22537, + "model_id": 22848, + "year_id": 22848, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22854, + "make_id": 22537, + "model_id": 22848, + "year_id": 22848, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22855, + "make_id": 22537, + "model_id": 22855, + "year_id": 22855, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22856, + "make_id": 22537, + "model_id": 22855, + "year_id": 22855, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22857, + "make_id": 22537, + "model_id": 22855, + "year_id": 22855, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22858, + "make_id": 22537, + "model_id": 22855, + "year_id": 22855, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22859, + "make_id": 22537, + "model_id": 22855, + "year_id": 22855, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22860, + "make_id": 22537, + "model_id": 22855, + "year_id": 22860, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22861, + "make_id": 22537, + "model_id": 22855, + "year_id": 22860, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22862, + "make_id": 22537, + "model_id": 22855, + "year_id": 22860, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22863, + "make_id": 22537, + "model_id": 22863, + "year_id": 22863, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22864, + "make_id": 22537, + "model_id": 22863, + "year_id": 22863, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22865, + "make_id": 22537, + "model_id": 22863, + "year_id": 22863, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22866, + "make_id": 22537, + "model_id": 22863, + "year_id": 22863, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22867, + "make_id": 22537, + "model_id": 22863, + "year_id": 22863, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22868, + "make_id": 22537, + "model_id": 22863, + "year_id": 22863, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22869, + "make_id": 22537, + "model_id": 22863, + "year_id": 22863, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22870, + "make_id": 22537, + "model_id": 22863, + "year_id": 22870, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22871, + "make_id": 22537, + "model_id": 22863, + "year_id": 22870, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 22872, + "make_id": 22537, + "model_id": 22863, + "year_id": 22870, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22873, + "make_id": 22537, + "model_id": 22863, + "year_id": 22870, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22874, + "make_id": 22537, + "model_id": 22863, + "year_id": 22870, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22875, + "make_id": 22537, + "model_id": 22863, + "year_id": 22870, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22876, + "make_id": 22537, + "model_id": 22863, + "year_id": 22870, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22877, + "make_id": 22537, + "model_id": 22863, + "year_id": 22877, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22878, + "make_id": 22537, + "model_id": 22863, + "year_id": 22877, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22879, + "make_id": 22537, + "model_id": 22863, + "year_id": 22877, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22880, + "make_id": 22537, + "model_id": 22863, + "year_id": 22877, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22881, + "make_id": 22537, + "model_id": 22863, + "year_id": 22877, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22882, + "make_id": 22537, + "model_id": 22863, + "year_id": 22877, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22883, + "make_id": 22537, + "model_id": 22863, + "year_id": 22883, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22884, + "make_id": 22537, + "model_id": 22863, + "year_id": 22883, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22885, + "make_id": 22537, + "model_id": 22863, + "year_id": 22883, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22886, + "make_id": 22537, + "model_id": 22863, + "year_id": 22883, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22887, + "make_id": 22537, + "model_id": 22863, + "year_id": 22883, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22888, + "make_id": 22537, + "model_id": 22863, + "year_id": 22883, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22889, + "make_id": 22537, + "model_id": 22889, + "year_id": 22889, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22890, + "make_id": 22537, + "model_id": 22889, + "year_id": 22889, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22891, + "make_id": 22537, + "model_id": 22889, + "year_id": 22891, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22892, + "make_id": 22537, + "model_id": 22889, + "year_id": 22891, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22893, + "make_id": 22537, + "model_id": 22889, + "year_id": 22893, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22894, + "make_id": 22537, + "model_id": 22889, + "year_id": 22893, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22895, + "make_id": 22537, + "model_id": 22889, + "year_id": 22895, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22896, + "make_id": 22537, + "model_id": 22889, + "year_id": 22895, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22897, + "make_id": 22537, + "model_id": 22889, + "year_id": 22897, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22898, + "make_id": 22537, + "model_id": 22889, + "year_id": 22897, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22899, + "make_id": 22537, + "model_id": 22889, + "year_id": 22899, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22900, + "make_id": 22537, + "model_id": 22889, + "year_id": 22899, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22901, + "make_id": 22537, + "model_id": 22889, + "year_id": 22901, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22902, + "make_id": 22537, + "model_id": 22889, + "year_id": 22901, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22903, + "make_id": 22537, + "model_id": 22889, + "year_id": 22903, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22904, + "make_id": 22537, + "model_id": 22889, + "year_id": 22903, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22905, + "make_id": 22537, + "model_id": 22889, + "year_id": 22905, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22906, + "make_id": 22537, + "model_id": 22889, + "year_id": 22905, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22907, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22908, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22909, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22910, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22911, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22912, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22913, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22914, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22915, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22916, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22917, + "make_id": 22537, + "model_id": 22907, + "year_id": 22907, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22918, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22919, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22920, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22921, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22922, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22923, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22924, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22925, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22926, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22927, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22928, + "make_id": 22537, + "model_id": 22907, + "year_id": 22918, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22929, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22930, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22931, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22932, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22933, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22934, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22935, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22936, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22937, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22938, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22939, + "make_id": 22537, + "model_id": 22907, + "year_id": 22929, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22940, + "make_id": 22537, + "model_id": 22907, + "year_id": 22940, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22941, + "make_id": 22537, + "model_id": 22907, + "year_id": 22940, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22942, + "make_id": 22537, + "model_id": 22907, + "year_id": 22940, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22943, + "make_id": 22537, + "model_id": 22907, + "year_id": 22940, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22944, + "make_id": 22537, + "model_id": 22907, + "year_id": 22940, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22945, + "make_id": 22537, + "model_id": 22907, + "year_id": 22940, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22946, + "make_id": 22537, + "model_id": 22907, + "year_id": 22940, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22947, + "make_id": 22537, + "model_id": 22907, + "year_id": 22940, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22948, + "make_id": 22537, + "model_id": 22907, + "year_id": 22940, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22949, + "make_id": 22537, + "model_id": 22907, + "year_id": 22940, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22950, + "make_id": 22537, + "model_id": 22950, + "year_id": 22950, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22951, + "make_id": 22537, + "model_id": 22950, + "year_id": 22950, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22952, + "make_id": 22537, + "model_id": 22950, + "year_id": 22952, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22953, + "make_id": 22537, + "model_id": 22950, + "year_id": 22952, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22954, + "make_id": 22537, + "model_id": 22954, + "year_id": 22954, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22955, + "make_id": 22537, + "model_id": 22954, + "year_id": 22954, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22956, + "make_id": 22537, + "model_id": 22954, + "year_id": 22954, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22957, + "make_id": 22537, + "model_id": 22954, + "year_id": 22954, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22958, + "make_id": 22537, + "model_id": 22954, + "year_id": 22954, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22959, + "make_id": 22537, + "model_id": 22954, + "year_id": 22954, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22960, + "make_id": 22537, + "model_id": 22954, + "year_id": 22954, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22961, + "make_id": 22537, + "model_id": 22954, + "year_id": 22954, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22962, + "make_id": 22537, + "model_id": 22954, + "year_id": 22954, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22963, + "make_id": 22537, + "model_id": 22954, + "year_id": 22954, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22964, + "make_id": 22537, + "model_id": 22964, + "year_id": 22964, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22965, + "make_id": 22537, + "model_id": 22964, + "year_id": 22964, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22966, + "make_id": 22537, + "model_id": 22964, + "year_id": 22966, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 22967, + "make_id": 22537, + "model_id": 22964, + "year_id": 22966, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22968, + "make_id": 22537, + "model_id": 22968, + "year_id": 22968, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22969, + "make_id": 22537, + "model_id": 22968, + "year_id": 22969, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22970, + "make_id": 22537, + "model_id": 22968, + "year_id": 22969, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22971, + "make_id": 22537, + "model_id": 22968, + "year_id": 22971, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22972, + "make_id": 22537, + "model_id": 22968, + "year_id": 22971, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22973, + "make_id": 22537, + "model_id": 22968, + "year_id": 22973, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22974, + "make_id": 22537, + "model_id": 22968, + "year_id": 22973, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22975, + "make_id": 22537, + "model_id": 22968, + "year_id": 22975, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22976, + "make_id": 22537, + "model_id": 22968, + "year_id": 22975, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22977, + "make_id": 22537, + "model_id": 22977, + "year_id": 22977, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22978, + "make_id": 22537, + "model_id": 22977, + "year_id": 22977, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22979, + "make_id": 22537, + "model_id": 22977, + "year_id": 22977, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22980, + "make_id": 22537, + "model_id": 22977, + "year_id": 22977, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22981, + "make_id": 22537, + "model_id": 22977, + "year_id": 22981, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22982, + "make_id": 22537, + "model_id": 22977, + "year_id": 22981, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22983, + "make_id": 22537, + "model_id": 22977, + "year_id": 22981, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 22984, + "make_id": 22537, + "model_id": 22977, + "year_id": 22981, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22985, + "make_id": 22537, + "model_id": 22977, + "year_id": 22985, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22986, + "make_id": 22537, + "model_id": 22977, + "year_id": 22985, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22987, + "make_id": 22537, + "model_id": 22977, + "year_id": 22985, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22988, + "make_id": 22537, + "model_id": 22977, + "year_id": 22985, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22989, + "make_id": 22537, + "model_id": 22977, + "year_id": 22989, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22990, + "make_id": 22537, + "model_id": 22977, + "year_id": 22989, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22991, + "make_id": 22537, + "model_id": 22977, + "year_id": 22989, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22992, + "make_id": 22537, + "model_id": 22977, + "year_id": 22989, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22993, + "make_id": 22537, + "model_id": 22977, + "year_id": 22989, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22994, + "make_id": 22537, + "model_id": 22977, + "year_id": 22994, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22995, + "make_id": 22537, + "model_id": 22977, + "year_id": 22994, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22996, + "make_id": 22537, + "model_id": 22977, + "year_id": 22994, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22997, + "make_id": 22537, + "model_id": 22977, + "year_id": 22994, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 22998, + "make_id": 22537, + "model_id": 22977, + "year_id": 22994, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 22999, + "make_id": 22537, + "model_id": 22977, + "year_id": 22999, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23000, + "make_id": 22537, + "model_id": 22977, + "year_id": 22999, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23001, + "make_id": 22537, + "model_id": 22977, + "year_id": 23001, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23002, + "make_id": 22537, + "model_id": 22977, + "year_id": 23001, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23003, + "make_id": 22537, + "model_id": 22977, + "year_id": 23003, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23004, + "make_id": 22537, + "model_id": 22977, + "year_id": 23003, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23005, + "make_id": 22537, + "model_id": 22977, + "year_id": 23005, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23006, + "make_id": 22537, + "model_id": 22977, + "year_id": 23005, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23007, + "make_id": 22537, + "model_id": 22977, + "year_id": 23007, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23008, + "make_id": 22537, + "model_id": 22977, + "year_id": 23007, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23009, + "make_id": 22537, + "model_id": 23009, + "year_id": 23009, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23010, + "make_id": 22537, + "model_id": 23010, + "year_id": 23010, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23011, + "make_id": 22537, + "model_id": 23010, + "year_id": 23010, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23012, + "make_id": 22537, + "model_id": 23010, + "year_id": 23010, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23013, + "make_id": 22537, + "model_id": 23010, + "year_id": 23010, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23014, + "make_id": 22537, + "model_id": 23010, + "year_id": 23014, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23015, + "make_id": 22537, + "model_id": 23010, + "year_id": 23014, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23016, + "make_id": 22537, + "model_id": 23010, + "year_id": 23014, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23017, + "make_id": 22537, + "model_id": 23010, + "year_id": 23014, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23018, + "make_id": 22537, + "model_id": 23010, + "year_id": 23018, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23019, + "make_id": 22537, + "model_id": 23010, + "year_id": 23018, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23020, + "make_id": 22537, + "model_id": 23010, + "year_id": 23018, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23021, + "make_id": 22537, + "model_id": 23010, + "year_id": 23018, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23022, + "make_id": 22537, + "model_id": 23010, + "year_id": 23022, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23023, + "make_id": 22537, + "model_id": 23010, + "year_id": 23022, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23024, + "make_id": 22537, + "model_id": 23010, + "year_id": 23022, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23025, + "make_id": 22537, + "model_id": 23010, + "year_id": 23022, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23026, + "make_id": 22537, + "model_id": 23010, + "year_id": 23026, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23027, + "make_id": 22537, + "model_id": 23010, + "year_id": 23026, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23028, + "make_id": 22537, + "model_id": 23010, + "year_id": 23026, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23029, + "make_id": 22537, + "model_id": 23010, + "year_id": 23026, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23030, + "make_id": 22537, + "model_id": 23010, + "year_id": 23030, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23031, + "make_id": 22537, + "model_id": 23010, + "year_id": 23030, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23032, + "make_id": 22537, + "model_id": 23010, + "year_id": 23030, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23033, + "make_id": 22537, + "model_id": 23010, + "year_id": 23030, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23034, + "make_id": 22537, + "model_id": 23010, + "year_id": 23034, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23035, + "make_id": 22537, + "model_id": 23010, + "year_id": 23034, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23036, + "make_id": 22537, + "model_id": 23010, + "year_id": 23034, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23037, + "make_id": 22537, + "model_id": 23010, + "year_id": 23034, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23038, + "make_id": 22537, + "model_id": 23010, + "year_id": 23038, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23039, + "make_id": 22537, + "model_id": 23010, + "year_id": 23038, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23040, + "make_id": 22537, + "model_id": 23010, + "year_id": 23038, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23041, + "make_id": 22537, + "model_id": 23010, + "year_id": 23038, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23042, + "make_id": 22537, + "model_id": 23010, + "year_id": 23042, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23043, + "make_id": 22537, + "model_id": 23010, + "year_id": 23042, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23044, + "make_id": 22537, + "model_id": 23010, + "year_id": 23042, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23045, + "make_id": 22537, + "model_id": 23010, + "year_id": 23045, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23046, + "make_id": 22537, + "model_id": 23010, + "year_id": 23045, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23047, + "make_id": 22537, + "model_id": 23010, + "year_id": 23045, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23048, + "make_id": 22537, + "model_id": 23010, + "year_id": 23048, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23049, + "make_id": 22537, + "model_id": 23010, + "year_id": 23048, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23050, + "make_id": 22537, + "model_id": 23050, + "year_id": 23050, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23051, + "make_id": 22537, + "model_id": 23050, + "year_id": 23050, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23052, + "make_id": 22537, + "model_id": 23050, + "year_id": 23052, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23053, + "make_id": 22537, + "model_id": 23050, + "year_id": 23052, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23054, + "make_id": 22537, + "model_id": 23054, + "year_id": 23054, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23055, + "make_id": 22537, + "model_id": 23054, + "year_id": 23054, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23056, + "make_id": 22537, + "model_id": 23054, + "year_id": 23054, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23057, + "make_id": 22537, + "model_id": 23054, + "year_id": 23057, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23058, + "make_id": 22537, + "model_id": 23054, + "year_id": 23057, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23059, + "make_id": 22537, + "model_id": 23054, + "year_id": 23057, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23060, + "make_id": 22537, + "model_id": 23054, + "year_id": 23057, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23061, + "make_id": 22537, + "model_id": 23054, + "year_id": 23057, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23062, + "make_id": 22537, + "model_id": 23054, + "year_id": 23062, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23063, + "make_id": 22537, + "model_id": 23054, + "year_id": 23062, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23064, + "make_id": 22537, + "model_id": 23054, + "year_id": 23062, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23065, + "make_id": 22537, + "model_id": 23054, + "year_id": 23062, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23066, + "make_id": 22537, + "model_id": 23054, + "year_id": 23062, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23067, + "make_id": 22537, + "model_id": 23054, + "year_id": 23067, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23068, + "make_id": 22537, + "model_id": 23054, + "year_id": 23067, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23069, + "make_id": 22537, + "model_id": 23054, + "year_id": 23067, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23070, + "make_id": 22537, + "model_id": 23070, + "year_id": 23070, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23071, + "make_id": 22537, + "model_id": 23070, + "year_id": 23070, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23072, + "make_id": 22537, + "model_id": 23070, + "year_id": 23072, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23073, + "make_id": 22537, + "model_id": 23070, + "year_id": 23072, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23074, + "make_id": 22537, + "model_id": 23070, + "year_id": 23074, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23075, + "make_id": 22537, + "model_id": 23070, + "year_id": 23074, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23076, + "make_id": 22537, + "model_id": 23070, + "year_id": 23076, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23077, + "make_id": 22537, + "model_id": 23070, + "year_id": 23076, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23078, + "make_id": 22537, + "model_id": 23070, + "year_id": 23076, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23079, + "make_id": 22537, + "model_id": 23070, + "year_id": 23079, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23080, + "make_id": 22537, + "model_id": 23070, + "year_id": 23079, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23081, + "make_id": 22537, + "model_id": 23070, + "year_id": 23079, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23082, + "make_id": 22537, + "model_id": 23070, + "year_id": 23082, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23083, + "make_id": 22537, + "model_id": 23070, + "year_id": 23082, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23084, + "make_id": 22537, + "model_id": 23070, + "year_id": 23082, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23085, + "make_id": 22537, + "model_id": 23085, + "year_id": 23085, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23086, + "make_id": 22537, + "model_id": 23085, + "year_id": 23085, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23087, + "make_id": 22537, + "model_id": 23085, + "year_id": 23087, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23088, + "make_id": 22537, + "model_id": 23085, + "year_id": 23087, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23089, + "make_id": 22537, + "model_id": 23085, + "year_id": 23089, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23090, + "make_id": 22537, + "model_id": 23085, + "year_id": 23089, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23091, + "make_id": 22537, + "model_id": 23085, + "year_id": 23091, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23092, + "make_id": 22537, + "model_id": 23085, + "year_id": 23091, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23093, + "make_id": 22537, + "model_id": 23085, + "year_id": 23093, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23094, + "make_id": 22537, + "model_id": 23085, + "year_id": 23093, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23095, + "make_id": 22537, + "model_id": 23085, + "year_id": 23095, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23096, + "make_id": 22537, + "model_id": 23085, + "year_id": 23095, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23097, + "make_id": 22537, + "model_id": 23085, + "year_id": 23097, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23098, + "make_id": 22537, + "model_id": 23085, + "year_id": 23097, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23099, + "make_id": 22537, + "model_id": 23085, + "year_id": 23099, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23100, + "make_id": 22537, + "model_id": 23085, + "year_id": 23099, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23101, + "make_id": 22537, + "model_id": 23085, + "year_id": 23101, + "cylinders": 6, + "displacement": 3.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23102, + "make_id": 22537, + "model_id": 23085, + "year_id": 23101, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23103, + "make_id": 22537, + "model_id": 23085, + "year_id": 23103, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23104, + "make_id": 22537, + "model_id": 23085, + "year_id": 23103, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23105, + "make_id": 22537, + "model_id": 23105, + "year_id": 23105, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 23106, + "make_id": 22537, + "model_id": 23105, + "year_id": 23105, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 23107, + "make_id": 22537, + "model_id": 23105, + "year_id": 23105, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23108, + "make_id": 22537, + "model_id": 23105, + "year_id": 23105, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 23109, + "make_id": 22537, + "model_id": 23105, + "year_id": 23105, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 23110, + "make_id": 22537, + "model_id": 23105, + "year_id": 23105, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23111, + "make_id": 22537, + "model_id": 23105, + "year_id": 23111, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 23112, + "make_id": 22537, + "model_id": 23105, + "year_id": 23111, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 23113, + "make_id": 22537, + "model_id": 23105, + "year_id": 23111, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23114, + "make_id": 22537, + "model_id": 23105, + "year_id": 23111, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 23115, + "make_id": 22537, + "model_id": 23115, + "year_id": 23115, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 23116, + "make_id": 22537, + "model_id": 23115, + "year_id": 23115, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 23117, + "make_id": 22537, + "model_id": 23115, + "year_id": 23115, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23118, + "make_id": 22537, + "model_id": 23115, + "year_id": 23118, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 23119, + "make_id": 22537, + "model_id": 23115, + "year_id": 23118, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 23120, + "make_id": 22537, + "model_id": 23115, + "year_id": 23118, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23121, + "make_id": 22537, + "model_id": 23115, + "year_id": 23121, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 23122, + "make_id": 22537, + "model_id": 23115, + "year_id": 23121, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 23123, + "make_id": 22537, + "model_id": 23115, + "year_id": 23121, + "cylinders": 4, + "displacement": 1.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23124, + "make_id": 22537, + "model_id": 23124, + "year_id": 23124, + "cylinders": 6, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23125, + "make_id": 22537, + "model_id": 23124, + "year_id": 23124, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23126, + "make_id": 22537, + "model_id": 23124, + "year_id": 23126, + "cylinders": 6, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23127, + "make_id": 22537, + "model_id": 23124, + "year_id": 23126, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23128, + "make_id": 22537, + "model_id": 23124, + "year_id": 23128, + "cylinders": 6, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23129, + "make_id": 22537, + "model_id": 23124, + "year_id": 23128, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23130, + "make_id": 22537, + "model_id": 23124, + "year_id": 23130, + "cylinders": 6, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23131, + "make_id": 22537, + "model_id": 23124, + "year_id": 23130, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23132, + "make_id": 22537, + "model_id": 23124, + "year_id": 23132, + "cylinders": 6, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23133, + "make_id": 22537, + "model_id": 23124, + "year_id": 23132, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23134, + "make_id": 22537, + "model_id": 23124, + "year_id": 23134, + "cylinders": 6, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23135, + "make_id": 22537, + "model_id": 23124, + "year_id": 23134, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23136, + "make_id": 22537, + "model_id": 23124, + "year_id": 23136, + "cylinders": 6, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23137, + "make_id": 22537, + "model_id": 23124, + "year_id": 23136, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23138, + "make_id": 22537, + "model_id": 23124, + "year_id": 23138, + "cylinders": 6, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23139, + "make_id": 22537, + "model_id": 23124, + "year_id": 23138, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23140, + "make_id": 22537, + "model_id": 23140, + "year_id": 23140, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23141, + "make_id": 22537, + "model_id": 23140, + "year_id": 23140, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23142, + "make_id": 22537, + "model_id": 23140, + "year_id": 23140, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23143, + "make_id": 22537, + "model_id": 23140, + "year_id": 23140, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23144, + "make_id": 22537, + "model_id": 23140, + "year_id": 23140, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23145, + "make_id": 22537, + "model_id": 23140, + "year_id": 23140, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23146, + "make_id": 22537, + "model_id": 23140, + "year_id": 23140, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23147, + "make_id": 22537, + "model_id": 23140, + "year_id": 23147, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23148, + "make_id": 22537, + "model_id": 23140, + "year_id": 23147, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23149, + "make_id": 22537, + "model_id": 23140, + "year_id": 23147, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23150, + "make_id": 22537, + "model_id": 23140, + "year_id": 23147, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23151, + "make_id": 22537, + "model_id": 23140, + "year_id": 23151, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23152, + "make_id": 22537, + "model_id": 23140, + "year_id": 23151, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23153, + "make_id": 22537, + "model_id": 23140, + "year_id": 23151, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23154, + "make_id": 22537, + "model_id": 23140, + "year_id": 23154, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23155, + "make_id": 22537, + "model_id": 23140, + "year_id": 23154, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23156, + "make_id": 22537, + "model_id": 23140, + "year_id": 23156, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23157, + "make_id": 22537, + "model_id": 23140, + "year_id": 23156, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23158, + "make_id": 22537, + "model_id": 23140, + "year_id": 23158, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23159, + "make_id": 22537, + "model_id": 23140, + "year_id": 23158, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23160, + "make_id": 22537, + "model_id": 23140, + "year_id": 23158, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23161, + "make_id": 22537, + "model_id": 23140, + "year_id": 23161, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23162, + "make_id": 22537, + "model_id": 23140, + "year_id": 23161, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23163, + "make_id": 22537, + "model_id": 23140, + "year_id": 23163, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23164, + "make_id": 22537, + "model_id": 23140, + "year_id": 23164, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23165, + "make_id": 22537, + "model_id": 23140, + "year_id": 23165, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23166, + "make_id": 22537, + "model_id": 23140, + "year_id": 23166, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23167, + "make_id": 22537, + "model_id": 23140, + "year_id": 23167, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23168, + "make_id": 22537, + "model_id": 23140, + "year_id": 23168, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23169, + "make_id": 22537, + "model_id": 23140, + "year_id": 23169, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23170, + "make_id": 22537, + "model_id": 23140, + "year_id": 23170, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23171, + "make_id": 22537, + "model_id": 23140, + "year_id": 23171, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23172, + "make_id": 22537, + "model_id": 23140, + "year_id": 23172, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23173, + "make_id": 22537, + "model_id": 23173, + "year_id": 23173, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23174, + "make_id": 22537, + "model_id": 23173, + "year_id": 23173, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23175, + "make_id": 22537, + "model_id": 23173, + "year_id": 23175, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23176, + "make_id": 22537, + "model_id": 23173, + "year_id": 23175, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23177, + "make_id": 22537, + "model_id": 23173, + "year_id": 23177, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23178, + "make_id": 22537, + "model_id": 23173, + "year_id": 23177, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23179, + "make_id": 22537, + "model_id": 23173, + "year_id": 23179, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23180, + "make_id": 22537, + "model_id": 23173, + "year_id": 23180, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23181, + "make_id": 22537, + "model_id": 23173, + "year_id": 23180, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23182, + "make_id": 22537, + "model_id": 23173, + "year_id": 23182, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23183, + "make_id": 22537, + "model_id": 23173, + "year_id": 23183, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23184, + "make_id": 22537, + "model_id": 23173, + "year_id": 23184, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23185, + "make_id": 22537, + "model_id": 23173, + "year_id": 23185, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23186, + "make_id": 22537, + "model_id": 23186, + "year_id": 23186, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23187, + "make_id": 22537, + "model_id": 23186, + "year_id": 23186, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23188, + "make_id": 22537, + "model_id": 23186, + "year_id": 23186, + "cylinders": 6, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23189, + "make_id": 22537, + "model_id": 23186, + "year_id": 23186, + "cylinders": 6, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23190, + "make_id": 22537, + "model_id": 23186, + "year_id": 23190, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23191, + "make_id": 22537, + "model_id": 23186, + "year_id": 23190, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23192, + "make_id": 22537, + "model_id": 23186, + "year_id": 23190, + "cylinders": 6, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23193, + "make_id": 22537, + "model_id": 23186, + "year_id": 23190, + "cylinders": 6, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23194, + "make_id": 22537, + "model_id": 23186, + "year_id": 23194, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23195, + "make_id": 22537, + "model_id": 23186, + "year_id": 23194, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23196, + "make_id": 22537, + "model_id": 23186, + "year_id": 23194, + "cylinders": 6, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23197, + "make_id": 22537, + "model_id": 23186, + "year_id": 23194, + "cylinders": 6, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23198, + "make_id": 22537, + "model_id": 23186, + "year_id": 23198, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23199, + "make_id": 22537, + "model_id": 23186, + "year_id": 23198, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23200, + "make_id": 22537, + "model_id": 23186, + "year_id": 23198, + "cylinders": 6, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23201, + "make_id": 22537, + "model_id": 23186, + "year_id": 23198, + "cylinders": 6, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23202, + "make_id": 22537, + "model_id": 23186, + "year_id": 23202, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23203, + "make_id": 22537, + "model_id": 23186, + "year_id": 23202, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23204, + "make_id": 22537, + "model_id": 23186, + "year_id": 23202, + "cylinders": 6, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23205, + "make_id": 22537, + "model_id": 23186, + "year_id": 23202, + "cylinders": 6, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23206, + "make_id": 22537, + "model_id": 23206, + "year_id": 23206, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23207, + "make_id": 22537, + "model_id": 23206, + "year_id": 23206, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23208, + "make_id": 22537, + "model_id": 23206, + "year_id": 23206, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23209, + "make_id": 22537, + "model_id": 23206, + "year_id": 23209, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23210, + "make_id": 22537, + "model_id": 23206, + "year_id": 23209, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23211, + "make_id": 22537, + "model_id": 23206, + "year_id": 23209, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23212, + "make_id": 22537, + "model_id": 23206, + "year_id": 23212, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23213, + "make_id": 22537, + "model_id": 23206, + "year_id": 23212, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23214, + "make_id": 22537, + "model_id": 23206, + "year_id": 23212, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23215, + "make_id": 22537, + "model_id": 23206, + "year_id": 23215, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23216, + "make_id": 22537, + "model_id": 23206, + "year_id": 23215, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23217, + "make_id": 22537, + "model_id": 23206, + "year_id": 23215, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23218, + "make_id": 22537, + "model_id": 23206, + "year_id": 23218, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23219, + "make_id": 22537, + "model_id": 23206, + "year_id": 23218, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23220, + "make_id": 22537, + "model_id": 23206, + "year_id": 23218, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23221, + "make_id": 22537, + "model_id": 23206, + "year_id": 23221, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23222, + "make_id": 22537, + "model_id": 23206, + "year_id": 23221, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23223, + "make_id": 22537, + "model_id": 23206, + "year_id": 23221, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23224, + "make_id": 22537, + "model_id": 23206, + "year_id": 23224, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23225, + "make_id": 22537, + "model_id": 23206, + "year_id": 23224, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23226, + "make_id": 22537, + "model_id": 23206, + "year_id": 23224, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23227, + "make_id": 22537, + "model_id": 23206, + "year_id": 23227, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23228, + "make_id": 22537, + "model_id": 23206, + "year_id": 23227, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23229, + "make_id": 22537, + "model_id": 23206, + "year_id": 23227, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23230, + "make_id": 22537, + "model_id": 23206, + "year_id": 23230, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23231, + "make_id": 22537, + "model_id": 23206, + "year_id": 23230, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23232, + "make_id": 22537, + "model_id": 23206, + "year_id": 23230, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23233, + "make_id": 22537, + "model_id": 23206, + "year_id": 23233, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23234, + "make_id": 22537, + "model_id": 23206, + "year_id": 23233, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23235, + "make_id": 22537, + "model_id": 23206, + "year_id": 23233, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23236, + "make_id": 22537, + "model_id": 23206, + "year_id": 23236, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23237, + "make_id": 22537, + "model_id": 23206, + "year_id": 23236, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23238, + "make_id": 22537, + "model_id": 23238, + "year_id": 23238, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23239, + "make_id": 22537, + "model_id": 23238, + "year_id": 23238, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23240, + "make_id": 22537, + "model_id": 23238, + "year_id": 23240, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23241, + "make_id": 22537, + "model_id": 23238, + "year_id": 23240, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23242, + "make_id": 22537, + "model_id": 23238, + "year_id": 23242, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23243, + "make_id": 22537, + "model_id": 23238, + "year_id": 23242, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23244, + "make_id": 22537, + "model_id": 23238, + "year_id": 23244, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23245, + "make_id": 22537, + "model_id": 23238, + "year_id": 23244, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23246, + "make_id": 22537, + "model_id": 23238, + "year_id": 23246, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23247, + "make_id": 22537, + "model_id": 23238, + "year_id": 23246, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23248, + "make_id": 22537, + "model_id": 23238, + "year_id": 23248, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23249, + "make_id": 22537, + "model_id": 23238, + "year_id": 23248, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23250, + "make_id": 22537, + "model_id": 23238, + "year_id": 23250, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23251, + "make_id": 22537, + "model_id": 23238, + "year_id": 23250, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23252, + "make_id": 22537, + "model_id": 23238, + "year_id": 23252, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23253, + "make_id": 22537, + "model_id": 23238, + "year_id": 23252, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23254, + "make_id": 22537, + "model_id": 23238, + "year_id": 23254, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23255, + "make_id": 22537, + "model_id": 23238, + "year_id": 23254, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23256, + "make_id": 22537, + "model_id": 23238, + "year_id": 23254, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23257, + "make_id": 22537, + "model_id": 23238, + "year_id": 23257, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23258, + "make_id": 22537, + "model_id": 23238, + "year_id": 23257, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23259, + "make_id": 22537, + "model_id": 23238, + "year_id": 23257, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23260, + "make_id": 22537, + "model_id": 23238, + "year_id": 23260, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23261, + "make_id": 22537, + "model_id": 23238, + "year_id": 23260, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23262, + "make_id": 22537, + "model_id": 23238, + "year_id": 23260, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23263, + "make_id": 22537, + "model_id": 23238, + "year_id": 23263, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23264, + "make_id": 22537, + "model_id": 23238, + "year_id": 23263, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23265, + "make_id": 22537, + "model_id": 23238, + "year_id": 23263, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23266, + "make_id": 22537, + "model_id": 23238, + "year_id": 23266, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23267, + "make_id": 22537, + "model_id": 23238, + "year_id": 23266, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23268, + "make_id": 22537, + "model_id": 23238, + "year_id": 23266, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23269, + "make_id": 22537, + "model_id": 23238, + "year_id": 23269, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23270, + "make_id": 22537, + "model_id": 23238, + "year_id": 23269, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23271, + "make_id": 22537, + "model_id": 23238, + "year_id": 23269, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23272, + "make_id": 22537, + "model_id": 23238, + "year_id": 23269, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23273, + "make_id": 22537, + "model_id": 23238, + "year_id": 23273, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23274, + "make_id": 22537, + "model_id": 23238, + "year_id": 23273, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23275, + "make_id": 22537, + "model_id": 23238, + "year_id": 23273, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23276, + "make_id": 22537, + "model_id": 23238, + "year_id": 23273, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23277, + "make_id": 22537, + "model_id": 23277, + "year_id": 23277, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23278, + "make_id": 22537, + "model_id": 23277, + "year_id": 23277, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23279, + "make_id": 22537, + "model_id": 23277, + "year_id": 23277, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23280, + "make_id": 22537, + "model_id": 23277, + "year_id": 23277, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23281, + "make_id": 22537, + "model_id": 23277, + "year_id": 23281, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23282, + "make_id": 22537, + "model_id": 23277, + "year_id": 23281, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23283, + "make_id": 22537, + "model_id": 23277, + "year_id": 23281, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23284, + "make_id": 22537, + "model_id": 23277, + "year_id": 23281, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23285, + "make_id": 22537, + "model_id": 23277, + "year_id": 23285, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23286, + "make_id": 22537, + "model_id": 23277, + "year_id": 23285, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23287, + "make_id": 22537, + "model_id": 23277, + "year_id": 23285, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23288, + "make_id": 22537, + "model_id": 23277, + "year_id": 23285, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23289, + "make_id": 22537, + "model_id": 23277, + "year_id": 23289, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23290, + "make_id": 22537, + "model_id": 23277, + "year_id": 23289, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23291, + "make_id": 22537, + "model_id": 23277, + "year_id": 23289, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23292, + "make_id": 22537, + "model_id": 23277, + "year_id": 23289, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23293, + "make_id": 22537, + "model_id": 23277, + "year_id": 23293, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23294, + "make_id": 22537, + "model_id": 23277, + "year_id": 23293, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23295, + "make_id": 22537, + "model_id": 23277, + "year_id": 23293, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23296, + "make_id": 22537, + "model_id": 23277, + "year_id": 23293, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23297, + "make_id": 22537, + "model_id": 23297, + "year_id": 23297, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23298, + "make_id": 22537, + "model_id": 23297, + "year_id": 23297, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23299, + "make_id": 22537, + "model_id": 23297, + "year_id": 23297, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23300, + "make_id": 22537, + "model_id": 23297, + "year_id": 23297, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23301, + "make_id": 22537, + "model_id": 23297, + "year_id": 23301, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23302, + "make_id": 22537, + "model_id": 23297, + "year_id": 23301, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23303, + "make_id": 22537, + "model_id": 23297, + "year_id": 23303, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23304, + "make_id": 22537, + "model_id": 23297, + "year_id": 23303, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23305, + "make_id": 22537, + "model_id": 23297, + "year_id": 23305, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23306, + "make_id": 22537, + "model_id": 23297, + "year_id": 23305, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23307, + "make_id": 22537, + "model_id": 23307, + "year_id": 23307, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23308, + "make_id": 22537, + "model_id": 23307, + "year_id": 23307, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23309, + "make_id": 22537, + "model_id": 23307, + "year_id": 23309, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23310, + "make_id": 22537, + "model_id": 23307, + "year_id": 23309, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23311, + "make_id": 22537, + "model_id": 23307, + "year_id": 23311, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23312, + "make_id": 22537, + "model_id": 23307, + "year_id": 23311, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23313, + "make_id": 22537, + "model_id": 23313, + "year_id": 23313, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23314, + "make_id": 22537, + "model_id": 23313, + "year_id": 23313, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23315, + "make_id": 22537, + "model_id": 23313, + "year_id": 23313, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23316, + "make_id": 22537, + "model_id": 23313, + "year_id": 23313, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23317, + "make_id": 22537, + "model_id": 23313, + "year_id": 23317, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23318, + "make_id": 22537, + "model_id": 23313, + "year_id": 23317, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23319, + "make_id": 22537, + "model_id": 23313, + "year_id": 23317, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23320, + "make_id": 22537, + "model_id": 23313, + "year_id": 23317, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23321, + "make_id": 22537, + "model_id": 23313, + "year_id": 23321, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23322, + "make_id": 22537, + "model_id": 23313, + "year_id": 23321, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23323, + "make_id": 22537, + "model_id": 23313, + "year_id": 23321, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23324, + "make_id": 22537, + "model_id": 23313, + "year_id": 23321, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23325, + "make_id": 22537, + "model_id": 23313, + "year_id": 23325, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23326, + "make_id": 22537, + "model_id": 23313, + "year_id": 23325, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23327, + "make_id": 22537, + "model_id": 23313, + "year_id": 23325, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23328, + "make_id": 22537, + "model_id": 23313, + "year_id": 23325, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23329, + "make_id": 22537, + "model_id": 23313, + "year_id": 23325, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23330, + "make_id": 22537, + "model_id": 23313, + "year_id": 23325, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23331, + "make_id": 22537, + "model_id": 23313, + "year_id": 23331, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23332, + "make_id": 22537, + "model_id": 23313, + "year_id": 23331, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23333, + "make_id": 22537, + "model_id": 23313, + "year_id": 23331, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23334, + "make_id": 22537, + "model_id": 23313, + "year_id": 23331, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23335, + "make_id": 22537, + "model_id": 23313, + "year_id": 23335, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23336, + "make_id": 22537, + "model_id": 23313, + "year_id": 23335, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23337, + "make_id": 22537, + "model_id": 23313, + "year_id": 23335, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23338, + "make_id": 22537, + "model_id": 23313, + "year_id": 23335, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23339, + "make_id": 22537, + "model_id": 23313, + "year_id": 23339, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23340, + "make_id": 22537, + "model_id": 23313, + "year_id": 23339, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23341, + "make_id": 22537, + "model_id": 23313, + "year_id": 23339, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23342, + "make_id": 22537, + "model_id": 23313, + "year_id": 23339, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23343, + "make_id": 22537, + "model_id": 23313, + "year_id": 23343, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23344, + "make_id": 22537, + "model_id": 23313, + "year_id": 23343, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23345, + "make_id": 22537, + "model_id": 23313, + "year_id": 23343, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23346, + "make_id": 22537, + "model_id": 23313, + "year_id": 23343, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23347, + "make_id": 22537, + "model_id": 23313, + "year_id": 23347, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23348, + "make_id": 22537, + "model_id": 23313, + "year_id": 23347, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23349, + "make_id": 22537, + "model_id": 23313, + "year_id": 23347, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23350, + "make_id": 22537, + "model_id": 23313, + "year_id": 23347, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23351, + "make_id": 22537, + "model_id": 23351, + "year_id": 23351, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23352, + "make_id": 22537, + "model_id": 23351, + "year_id": 23351, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23353, + "make_id": 22537, + "model_id": 23351, + "year_id": 23351, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23354, + "make_id": 22537, + "model_id": 23351, + "year_id": 23354, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23355, + "make_id": 22537, + "model_id": 23351, + "year_id": 23354, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23356, + "make_id": 22537, + "model_id": 23351, + "year_id": 23354, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23357, + "make_id": 22537, + "model_id": 23351, + "year_id": 23354, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23358, + "make_id": 22537, + "model_id": 23358, + "year_id": 23358, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23359, + "make_id": 22537, + "model_id": 23358, + "year_id": 23358, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23360, + "make_id": 22537, + "model_id": 23358, + "year_id": 23358, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23361, + "make_id": 22537, + "model_id": 23358, + "year_id": 23358, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23362, + "make_id": 22537, + "model_id": 23362, + "year_id": 23362, + "cylinders": 2, + "displacement": 1.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23363, + "make_id": 22537, + "model_id": 23362, + "year_id": 23362, + "cylinders": 2, + "displacement": 1.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23364, + "make_id": 22537, + "model_id": 23362, + "year_id": 23362, + "cylinders": 2, + "displacement": 1.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23365, + "make_id": 22537, + "model_id": 23362, + "year_id": 23362, + "cylinders": 2, + "displacement": 1.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23366, + "make_id": 22537, + "model_id": 23362, + "year_id": 23362, + "cylinders": 2, + "displacement": 1.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23367, + "make_id": 22537, + "model_id": 23362, + "year_id": 23362, + "cylinders": 2, + "displacement": 1.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23368, + "make_id": 22537, + "model_id": 23362, + "year_id": 23368, + "cylinders": 2, + "displacement": 1.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23369, + "make_id": 22537, + "model_id": 23362, + "year_id": 23368, + "cylinders": 2, + "displacement": 1.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23370, + "make_id": 22537, + "model_id": 23362, + "year_id": 23368, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23371, + "make_id": 22537, + "model_id": 23362, + "year_id": 23368, + "cylinders": 2, + "displacement": 1.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23372, + "make_id": 22537, + "model_id": 23362, + "year_id": 23368, + "cylinders": 2, + "displacement": 1.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23373, + "make_id": 22537, + "model_id": 23362, + "year_id": 23373, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23374, + "make_id": 22537, + "model_id": 23362, + "year_id": 23373, + "cylinders": 0, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23375, + "make_id": 22537, + "model_id": 23362, + "year_id": 23375, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23376, + "make_id": 22537, + "model_id": 23362, + "year_id": 23375, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23377, + "make_id": 22537, + "model_id": 23362, + "year_id": 23375, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23378, + "make_id": 22537, + "model_id": 23362, + "year_id": 23378, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23379, + "make_id": 22537, + "model_id": 23362, + "year_id": 23378, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23380, + "make_id": 22537, + "model_id": 23362, + "year_id": 23378, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23381, + "make_id": 22537, + "model_id": 23362, + "year_id": 23381, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23382, + "make_id": 22537, + "model_id": 23362, + "year_id": 23381, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23383, + "make_id": 22537, + "model_id": 23362, + "year_id": 23381, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23384, + "make_id": 22537, + "model_id": 23362, + "year_id": 23384, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23385, + "make_id": 22537, + "model_id": 23362, + "year_id": 23384, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23386, + "make_id": 22537, + "model_id": 23362, + "year_id": 23384, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23387, + "make_id": 22537, + "model_id": 23362, + "year_id": 23387, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23388, + "make_id": 22537, + "model_id": 23362, + "year_id": 23387, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23389, + "make_id": 22537, + "model_id": 23362, + "year_id": 23387, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23390, + "make_id": 22537, + "model_id": 23362, + "year_id": 23390, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23391, + "make_id": 22537, + "model_id": 23362, + "year_id": 23390, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23392, + "make_id": 22537, + "model_id": 23362, + "year_id": 23392, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23393, + "make_id": 22537, + "model_id": 23362, + "year_id": 23392, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23394, + "make_id": 22537, + "model_id": 23362, + "year_id": 23394, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23395, + "make_id": 22537, + "model_id": 23362, + "year_id": 23394, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23396, + "make_id": 22537, + "model_id": 23362, + "year_id": 23396, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23397, + "make_id": 22537, + "model_id": 23362, + "year_id": 23396, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23398, + "make_id": 22537, + "model_id": 23398, + "year_id": 23398, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23399, + "make_id": 22537, + "model_id": 23398, + "year_id": 23398, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23400, + "make_id": 22537, + "model_id": 23398, + "year_id": 23400, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23401, + "make_id": 22537, + "model_id": 23398, + "year_id": 23400, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23402, + "make_id": 22537, + "model_id": 23398, + "year_id": 23402, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23403, + "make_id": 22537, + "model_id": 23398, + "year_id": 23402, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23404, + "make_id": 22537, + "model_id": 23398, + "year_id": 23404, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23405, + "make_id": 22537, + "model_id": 23398, + "year_id": 23404, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23406, + "make_id": 22537, + "model_id": 23398, + "year_id": 23406, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23407, + "make_id": 22537, + "model_id": 23398, + "year_id": 23406, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23408, + "make_id": 22537, + "model_id": 23398, + "year_id": 23408, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23409, + "make_id": 22537, + "model_id": 23398, + "year_id": 23408, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23410, + "make_id": 22537, + "model_id": 23398, + "year_id": 23410, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23411, + "make_id": 22537, + "model_id": 23398, + "year_id": 23410, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23412, + "make_id": 22537, + "model_id": 23398, + "year_id": 23412, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23413, + "make_id": 22537, + "model_id": 23398, + "year_id": 23412, + "cylinders": 2, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23414, + "make_id": 22537, + "model_id": 23414, + "year_id": 23414, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23415, + "make_id": 22537, + "model_id": 23414, + "year_id": 23415, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23416, + "make_id": 22537, + "model_id": 23414, + "year_id": 23416, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23417, + "make_id": 22537, + "model_id": 23414, + "year_id": 23417, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23418, + "make_id": 22537, + "model_id": 23414, + "year_id": 23418, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23419, + "make_id": 22537, + "model_id": 23414, + "year_id": 23419, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23420, + "make_id": 22537, + "model_id": 23420, + "year_id": 23420, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23421, + "make_id": 22537, + "model_id": 23420, + "year_id": 23420, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23422, + "make_id": 22537, + "model_id": 23420, + "year_id": 23420, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23423, + "make_id": 22537, + "model_id": 23420, + "year_id": 23420, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23424, + "make_id": 22537, + "model_id": 23420, + "year_id": 23424, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23425, + "make_id": 22537, + "model_id": 23420, + "year_id": 23424, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23426, + "make_id": 22537, + "model_id": 23420, + "year_id": 23424, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23427, + "make_id": 22537, + "model_id": 23420, + "year_id": 23424, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23428, + "make_id": 22537, + "model_id": 23420, + "year_id": 23428, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23429, + "make_id": 22537, + "model_id": 23420, + "year_id": 23428, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23430, + "make_id": 22537, + "model_id": 23420, + "year_id": 23428, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23431, + "make_id": 22537, + "model_id": 23420, + "year_id": 23428, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23432, + "make_id": 22537, + "model_id": 23420, + "year_id": 23432, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23433, + "make_id": 22537, + "model_id": 23420, + "year_id": 23432, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23434, + "make_id": 22537, + "model_id": 23420, + "year_id": 23432, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23435, + "make_id": 22537, + "model_id": 23420, + "year_id": 23432, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23436, + "make_id": 22537, + "model_id": 23420, + "year_id": 23436, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23437, + "make_id": 22537, + "model_id": 23420, + "year_id": 23436, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23438, + "make_id": 22537, + "model_id": 23420, + "year_id": 23436, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23439, + "make_id": 22537, + "model_id": 23420, + "year_id": 23436, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23440, + "make_id": 22537, + "model_id": 23420, + "year_id": 23436, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23441, + "make_id": 22537, + "model_id": 23420, + "year_id": 23436, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23442, + "make_id": 22537, + "model_id": 23420, + "year_id": 23442, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23443, + "make_id": 22537, + "model_id": 23420, + "year_id": 23442, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23444, + "make_id": 22537, + "model_id": 23420, + "year_id": 23442, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23445, + "make_id": 22537, + "model_id": 23420, + "year_id": 23442, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23446, + "make_id": 22537, + "model_id": 23420, + "year_id": 23442, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23447, + "make_id": 22537, + "model_id": 23420, + "year_id": 23442, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23448, + "make_id": 22537, + "model_id": 23420, + "year_id": 23448, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23449, + "make_id": 22537, + "model_id": 23420, + "year_id": 23448, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23450, + "make_id": 22537, + "model_id": 23420, + "year_id": 23448, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23451, + "make_id": 22537, + "model_id": 23420, + "year_id": 23448, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23452, + "make_id": 22537, + "model_id": 23420, + "year_id": 23448, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23453, + "make_id": 22537, + "model_id": 23420, + "year_id": 23453, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23454, + "make_id": 22537, + "model_id": 23420, + "year_id": 23453, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23455, + "make_id": 22537, + "model_id": 23420, + "year_id": 23453, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23456, + "make_id": 22537, + "model_id": 23420, + "year_id": 23453, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23457, + "make_id": 22537, + "model_id": 23420, + "year_id": 23453, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23458, + "make_id": 22537, + "model_id": 23420, + "year_id": 23458, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23459, + "make_id": 22537, + "model_id": 23420, + "year_id": 23458, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23460, + "make_id": 22537, + "model_id": 23420, + "year_id": 23458, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23461, + "make_id": 22537, + "model_id": 23420, + "year_id": 23458, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23462, + "make_id": 22537, + "model_id": 23420, + "year_id": 23458, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23463, + "make_id": 22537, + "model_id": 23420, + "year_id": 23463, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23464, + "make_id": 22537, + "model_id": 23420, + "year_id": 23463, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23465, + "make_id": 22537, + "model_id": 23420, + "year_id": 23463, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23466, + "make_id": 22537, + "model_id": 23420, + "year_id": 23463, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23467, + "make_id": 22537, + "model_id": 23420, + "year_id": 23463, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 23468, + "make_id": 22537, + "model_id": 23468, + "year_id": 23468, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 23469, + "make_id": 22537, + "model_id": 23468, + "year_id": 23469, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 23470, + "make_id": 22537, + "model_id": 23468, + "year_id": 23469, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 23471, + "make_id": 22537, + "model_id": 23468, + "year_id": 23471, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 23472, + "make_id": 22537, + "model_id": 23468, + "year_id": 23471, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 23473, + "make_id": 22537, + "model_id": 23468, + "year_id": 23473, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 23474, + "make_id": 22537, + "model_id": 23468, + "year_id": 23473, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 23475, + "make_id": 22537, + "model_id": 23468, + "year_id": 23475, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 23476, + "make_id": 22537, + "model_id": 23468, + "year_id": 23475, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 23477, + "make_id": 23477, + "model_id": 23477, + "year_id": 23477, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23478, + "make_id": 23477, + "model_id": 23477, + "year_id": 23478, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23479, + "make_id": 23477, + "model_id": 23479, + "year_id": 23479, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23480, + "make_id": 23477, + "model_id": 23479, + "year_id": 23480, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23481, + "make_id": 23477, + "model_id": 23481, + "year_id": 23481, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23482, + "make_id": 23477, + "model_id": 23482, + "year_id": 23482, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23483, + "make_id": 23483, + "model_id": 23483, + "year_id": 23483, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23484, + "make_id": 23483, + "model_id": 23484, + "year_id": 23484, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23485, + "make_id": 23483, + "model_id": 23484, + "year_id": 23485, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23486, + "make_id": 23483, + "model_id": 23486, + "year_id": 23486, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23487, + "make_id": 23483, + "model_id": 23486, + "year_id": 23487, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23488, + "make_id": 23483, + "model_id": 23488, + "year_id": 23488, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23489, + "make_id": 23483, + "model_id": 23489, + "year_id": 23489, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23490, + "make_id": 23483, + "model_id": 23489, + "year_id": 23490, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23491, + "make_id": 23483, + "model_id": 23491, + "year_id": 23491, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23492, + "make_id": 23483, + "model_id": 23492, + "year_id": 23492, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23493, + "make_id": 23483, + "model_id": 23492, + "year_id": 23493, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23494, + "make_id": 23494, + "model_id": 23494, + "year_id": 23494, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23495, + "make_id": 23494, + "model_id": 23494, + "year_id": 23494, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23496, + "make_id": 23494, + "model_id": 23494, + "year_id": 23494, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23497, + "make_id": 23494, + "model_id": 23494, + "year_id": 23494, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23498, + "make_id": 23494, + "model_id": 23494, + "year_id": 23498, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23499, + "make_id": 23494, + "model_id": 23494, + "year_id": 23498, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23500, + "make_id": 23494, + "model_id": 23494, + "year_id": 23498, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23501, + "make_id": 23494, + "model_id": 23494, + "year_id": 23498, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23502, + "make_id": 23494, + "model_id": 23494, + "year_id": 23498, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23503, + "make_id": 23494, + "model_id": 23494, + "year_id": 23498, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23504, + "make_id": 23494, + "model_id": 23504, + "year_id": 23504, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23505, + "make_id": 23494, + "model_id": 23504, + "year_id": 23504, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23506, + "make_id": 23494, + "model_id": 23504, + "year_id": 23504, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23507, + "make_id": 23494, + "model_id": 23504, + "year_id": 23504, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23508, + "make_id": 23494, + "model_id": 23504, + "year_id": 23504, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23509, + "make_id": 23494, + "model_id": 23504, + "year_id": 23504, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23510, + "make_id": 23494, + "model_id": 23504, + "year_id": 23504, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23511, + "make_id": 23494, + "model_id": 23504, + "year_id": 23504, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23512, + "make_id": 23494, + "model_id": 23504, + "year_id": 23504, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23513, + "make_id": 23494, + "model_id": 23504, + "year_id": 23504, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 23514, + "make_id": 23494, + "model_id": 23514, + "year_id": 23514, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23515, + "make_id": 23494, + "model_id": 23514, + "year_id": 23514, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23516, + "make_id": 23494, + "model_id": 23514, + "year_id": 23516, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23517, + "make_id": 23494, + "model_id": 23514, + "year_id": 23517, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23518, + "make_id": 23494, + "model_id": 23518, + "year_id": 23518, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23519, + "make_id": 23494, + "model_id": 23519, + "year_id": 23519, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 23520, + "make_id": 23494, + "model_id": 23519, + "year_id": 23519, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23521, + "make_id": 23494, + "model_id": 23521, + "year_id": 23521, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23522, + "make_id": 23494, + "model_id": 23521, + "year_id": 23521, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23523, + "make_id": 23494, + "model_id": 23521, + "year_id": 23523, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23524, + "make_id": 23494, + "model_id": 23521, + "year_id": 23523, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23525, + "make_id": 23494, + "model_id": 23521, + "year_id": 23525, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23526, + "make_id": 23494, + "model_id": 23521, + "year_id": 23525, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23527, + "make_id": 23494, + "model_id": 23521, + "year_id": 23527, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23528, + "make_id": 23494, + "model_id": 23521, + "year_id": 23527, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23529, + "make_id": 23494, + "model_id": 23521, + "year_id": 23529, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23530, + "make_id": 23494, + "model_id": 23521, + "year_id": 23529, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23531, + "make_id": 23494, + "model_id": 23531, + "year_id": 23531, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23532, + "make_id": 23494, + "model_id": 23531, + "year_id": 23531, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23533, + "make_id": 23494, + "model_id": 23533, + "year_id": 23533, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23534, + "make_id": 23494, + "model_id": 23533, + "year_id": 23534, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23535, + "make_id": 23494, + "model_id": 23533, + "year_id": 23534, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23536, + "make_id": 23494, + "model_id": 23533, + "year_id": 23536, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23537, + "make_id": 23494, + "model_id": 23533, + "year_id": 23536, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23538, + "make_id": 23494, + "model_id": 23533, + "year_id": 23538, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23539, + "make_id": 23494, + "model_id": 23533, + "year_id": 23538, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23540, + "make_id": 23494, + "model_id": 23533, + "year_id": 23540, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23541, + "make_id": 23494, + "model_id": 23533, + "year_id": 23540, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23542, + "make_id": 23494, + "model_id": 23533, + "year_id": 23542, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23543, + "make_id": 23494, + "model_id": 23533, + "year_id": 23542, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23544, + "make_id": 23494, + "model_id": 23533, + "year_id": 23544, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23545, + "make_id": 23494, + "model_id": 23533, + "year_id": 23544, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23546, + "make_id": 23494, + "model_id": 23546, + "year_id": 23546, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 23547, + "make_id": 23494, + "model_id": 23547, + "year_id": 23547, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 23548, + "make_id": 23494, + "model_id": 23548, + "year_id": 23548, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 23549, + "make_id": 23494, + "model_id": 23548, + "year_id": 23548, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23550, + "make_id": 23494, + "model_id": 23550, + "year_id": 23550, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 23551, + "make_id": 23494, + "model_id": 23551, + "year_id": 23551, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23552, + "make_id": 23494, + "model_id": 23551, + "year_id": 23552, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23553, + "make_id": 23494, + "model_id": 23551, + "year_id": 23552, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23554, + "make_id": 23494, + "model_id": 23551, + "year_id": 23554, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23555, + "make_id": 23494, + "model_id": 23551, + "year_id": 23555, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23556, + "make_id": 23494, + "model_id": 23556, + "year_id": 23556, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23557, + "make_id": 23494, + "model_id": 23556, + "year_id": 23557, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23558, + "make_id": 23494, + "model_id": 23556, + "year_id": 23558, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23559, + "make_id": 23494, + "model_id": 23556, + "year_id": 23559, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23560, + "make_id": 23494, + "model_id": 23556, + "year_id": 23560, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23561, + "make_id": 23494, + "model_id": 23556, + "year_id": 23561, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23562, + "make_id": 23494, + "model_id": 23562, + "year_id": 23562, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23563, + "make_id": 23494, + "model_id": 23563, + "year_id": 23563, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23564, + "make_id": 23494, + "model_id": 23563, + "year_id": 23564, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23565, + "make_id": 23494, + "model_id": 23563, + "year_id": 23565, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23566, + "make_id": 23494, + "model_id": 23563, + "year_id": 23566, + "cylinders": 5, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23567, + "make_id": 23494, + "model_id": 23567, + "year_id": 23567, + "cylinders": 5, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23568, + "make_id": 23494, + "model_id": 23567, + "year_id": 23567, + "cylinders": 5, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23569, + "make_id": 23494, + "model_id": 23567, + "year_id": 23567, + "cylinders": 5, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23570, + "make_id": 23494, + "model_id": 23567, + "year_id": 23570, + "cylinders": 5, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23571, + "make_id": 23494, + "model_id": 23567, + "year_id": 23570, + "cylinders": 5, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23572, + "make_id": 23494, + "model_id": 23572, + "year_id": 23572, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23573, + "make_id": 23494, + "model_id": 23572, + "year_id": 23572, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23574, + "make_id": 23494, + "model_id": 23572, + "year_id": 23574, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23575, + "make_id": 23494, + "model_id": 23572, + "year_id": 23575, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23576, + "make_id": 23494, + "model_id": 23572, + "year_id": 23575, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23577, + "make_id": 23494, + "model_id": 23572, + "year_id": 23577, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23578, + "make_id": 23494, + "model_id": 23572, + "year_id": 23578, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23579, + "make_id": 23494, + "model_id": 23572, + "year_id": 23579, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23580, + "make_id": 23494, + "model_id": 23572, + "year_id": 23579, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23581, + "make_id": 23494, + "model_id": 23572, + "year_id": 23581, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23582, + "make_id": 23494, + "model_id": 23572, + "year_id": 23582, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23583, + "make_id": 23494, + "model_id": 23583, + "year_id": 23583, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23584, + "make_id": 23494, + "model_id": 23583, + "year_id": 23584, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23585, + "make_id": 23494, + "model_id": 23583, + "year_id": 23585, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23586, + "make_id": 23494, + "model_id": 23586, + "year_id": 23586, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23587, + "make_id": 23494, + "model_id": 23587, + "year_id": 23587, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23588, + "make_id": 23494, + "model_id": 23587, + "year_id": 23588, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23589, + "make_id": 23494, + "model_id": 23587, + "year_id": 23589, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23590, + "make_id": 23494, + "model_id": 23587, + "year_id": 23590, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23591, + "make_id": 23494, + "model_id": 23591, + "year_id": 23591, + "cylinders": 5, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23592, + "make_id": 23494, + "model_id": 23591, + "year_id": 23591, + "cylinders": 5, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23593, + "make_id": 23494, + "model_id": 23591, + "year_id": 23593, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23594, + "make_id": 23494, + "model_id": 23591, + "year_id": 23594, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23595, + "make_id": 23494, + "model_id": 23595, + "year_id": 23595, + "cylinders": 5, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23596, + "make_id": 23494, + "model_id": 23595, + "year_id": 23595, + "cylinders": 5, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23597, + "make_id": 23494, + "model_id": 23595, + "year_id": 23595, + "cylinders": 8, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23598, + "make_id": 23494, + "model_id": 23595, + "year_id": 23595, + "cylinders": 5, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23599, + "make_id": 23494, + "model_id": 23595, + "year_id": 23595, + "cylinders": 8, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23600, + "make_id": 23494, + "model_id": 23600, + "year_id": 23600, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23601, + "make_id": 23494, + "model_id": 23600, + "year_id": 23601, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23602, + "make_id": 23494, + "model_id": 23602, + "year_id": 23602, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23603, + "make_id": 23494, + "model_id": 23602, + "year_id": 23603, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23604, + "make_id": 23494, + "model_id": 23602, + "year_id": 23604, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23605, + "make_id": 23494, + "model_id": 23602, + "year_id": 23605, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23606, + "make_id": 23494, + "model_id": 23602, + "year_id": 23606, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23607, + "make_id": 23494, + "model_id": 23602, + "year_id": 23607, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23608, + "make_id": 23494, + "model_id": 23608, + "year_id": 23608, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23609, + "make_id": 23494, + "model_id": 23608, + "year_id": 23609, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23610, + "make_id": 23494, + "model_id": 23608, + "year_id": 23609, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23611, + "make_id": 23494, + "model_id": 23608, + "year_id": 23611, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23612, + "make_id": 23494, + "model_id": 23608, + "year_id": 23612, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23613, + "make_id": 23494, + "model_id": 23608, + "year_id": 23612, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23614, + "make_id": 23494, + "model_id": 23608, + "year_id": 23612, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23615, + "make_id": 23494, + "model_id": 23608, + "year_id": 23612, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23616, + "make_id": 23494, + "model_id": 23616, + "year_id": 23616, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23617, + "make_id": 23494, + "model_id": 23616, + "year_id": 23616, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23618, + "make_id": 23494, + "model_id": 23616, + "year_id": 23618, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23619, + "make_id": 23494, + "model_id": 23616, + "year_id": 23618, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23620, + "make_id": 23494, + "model_id": 23616, + "year_id": 23618, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23621, + "make_id": 23494, + "model_id": 23616, + "year_id": 23621, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23622, + "make_id": 23494, + "model_id": 23616, + "year_id": 23621, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23623, + "make_id": 23494, + "model_id": 23616, + "year_id": 23623, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23624, + "make_id": 23494, + "model_id": 23616, + "year_id": 23623, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 23625, + "make_id": 23494, + "model_id": 23625, + "year_id": 23625, + "cylinders": 5, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23626, + "make_id": 23494, + "model_id": 23625, + "year_id": 23625, + "cylinders": 5, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23627, + "make_id": 23494, + "model_id": 23625, + "year_id": 23625, + "cylinders": 5, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23628, + "make_id": 23494, + "model_id": 23625, + "year_id": 23628, + "cylinders": 5, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23629, + "make_id": 23494, + "model_id": 23625, + "year_id": 23628, + "cylinders": 5, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23630, + "make_id": 23494, + "model_id": 23625, + "year_id": 23630, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23631, + "make_id": 23494, + "model_id": 23631, + "year_id": 23631, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23632, + "make_id": 23494, + "model_id": 23631, + "year_id": 23632, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23633, + "make_id": 23494, + "model_id": 23631, + "year_id": 23633, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23634, + "make_id": 23494, + "model_id": 23631, + "year_id": 23634, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23635, + "make_id": 23494, + "model_id": 23631, + "year_id": 23635, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23636, + "make_id": 23494, + "model_id": 23631, + "year_id": 23636, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23637, + "make_id": 23494, + "model_id": 23637, + "year_id": 23637, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23638, + "make_id": 23494, + "model_id": 23637, + "year_id": 23638, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23639, + "make_id": 23494, + "model_id": 23637, + "year_id": 23639, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23640, + "make_id": 23494, + "model_id": 23637, + "year_id": 23640, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23641, + "make_id": 23494, + "model_id": 23641, + "year_id": 23641, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23642, + "make_id": 23494, + "model_id": 23642, + "year_id": 23642, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23643, + "make_id": 23494, + "model_id": 23642, + "year_id": 23643, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23644, + "make_id": 23494, + "model_id": 23644, + "year_id": 23644, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23645, + "make_id": 23494, + "model_id": 23645, + "year_id": 23645, + "cylinders": 8, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23646, + "make_id": 23494, + "model_id": 23645, + "year_id": 23645, + "cylinders": 8, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23647, + "make_id": 23494, + "model_id": 23645, + "year_id": 23647, + "cylinders": 8, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23648, + "make_id": 23494, + "model_id": 23648, + "year_id": 23648, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23649, + "make_id": 23494, + "model_id": 23648, + "year_id": 23649, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23650, + "make_id": 23494, + "model_id": 23650, + "year_id": 23650, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23651, + "make_id": 23494, + "model_id": 23651, + "year_id": 23651, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23652, + "make_id": 23494, + "model_id": 23652, + "year_id": 23652, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23653, + "make_id": 23494, + "model_id": 23653, + "year_id": 23653, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23654, + "make_id": 23494, + "model_id": 23654, + "year_id": 23654, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23655, + "make_id": 23494, + "model_id": 23654, + "year_id": 23655, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23656, + "make_id": 23494, + "model_id": 23654, + "year_id": 23656, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23657, + "make_id": 23494, + "model_id": 23654, + "year_id": 23657, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23658, + "make_id": 23494, + "model_id": 23654, + "year_id": 23658, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23659, + "make_id": 23494, + "model_id": 23654, + "year_id": 23659, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23660, + "make_id": 23494, + "model_id": 23660, + "year_id": 23660, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23661, + "make_id": 23494, + "model_id": 23660, + "year_id": 23661, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23662, + "make_id": 23494, + "model_id": 23662, + "year_id": 23662, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23663, + "make_id": 23494, + "model_id": 23662, + "year_id": 23662, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23664, + "make_id": 23494, + "model_id": 23662, + "year_id": 23664, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23665, + "make_id": 23494, + "model_id": 23665, + "year_id": 23665, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23666, + "make_id": 23494, + "model_id": 23665, + "year_id": 23665, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23667, + "make_id": 23494, + "model_id": 23665, + "year_id": 23667, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23668, + "make_id": 23494, + "model_id": 23665, + "year_id": 23667, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23669, + "make_id": 23494, + "model_id": 23665, + "year_id": 23667, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23670, + "make_id": 23494, + "model_id": 23665, + "year_id": 23670, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23671, + "make_id": 23494, + "model_id": 23665, + "year_id": 23671, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23672, + "make_id": 23494, + "model_id": 23672, + "year_id": 23672, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23673, + "make_id": 23494, + "model_id": 23672, + "year_id": 23672, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 23674, + "make_id": 23494, + "model_id": 23672, + "year_id": 23674, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23675, + "make_id": 23494, + "model_id": 23672, + "year_id": 23674, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23676, + "make_id": 23494, + "model_id": 23672, + "year_id": 23674, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23677, + "make_id": 23494, + "model_id": 23672, + "year_id": 23677, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23678, + "make_id": 23494, + "model_id": 23678, + "year_id": 23678, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23679, + "make_id": 23494, + "model_id": 23679, + "year_id": 23679, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23680, + "make_id": 23494, + "model_id": 23680, + "year_id": 23680, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23681, + "make_id": 23494, + "model_id": 23680, + "year_id": 23680, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23682, + "make_id": 23494, + "model_id": 23680, + "year_id": 23682, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23683, + "make_id": 23494, + "model_id": 23680, + "year_id": 23683, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23684, + "make_id": 23494, + "model_id": 23680, + "year_id": 23683, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23685, + "make_id": 23494, + "model_id": 23680, + "year_id": 23685, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23686, + "make_id": 23494, + "model_id": 23680, + "year_id": 23685, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23687, + "make_id": 23494, + "model_id": 23680, + "year_id": 23687, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23688, + "make_id": 23494, + "model_id": 23688, + "year_id": 23688, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23689, + "make_id": 23494, + "model_id": 23689, + "year_id": 23689, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23690, + "make_id": 23494, + "model_id": 23689, + "year_id": 23690, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23691, + "make_id": 23494, + "model_id": 23689, + "year_id": 23691, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23692, + "make_id": 23494, + "model_id": 23689, + "year_id": 23692, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23693, + "make_id": 23494, + "model_id": 23689, + "year_id": 23693, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23694, + "make_id": 23494, + "model_id": 23689, + "year_id": 23694, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23695, + "make_id": 23494, + "model_id": 23689, + "year_id": 23695, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23696, + "make_id": 23494, + "model_id": 23696, + "year_id": 23696, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23697, + "make_id": 23494, + "model_id": 23696, + "year_id": 23697, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23698, + "make_id": 23494, + "model_id": 23696, + "year_id": 23698, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23699, + "make_id": 23494, + "model_id": 23696, + "year_id": 23699, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23700, + "make_id": 23494, + "model_id": 23696, + "year_id": 23700, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23701, + "make_id": 23494, + "model_id": 23696, + "year_id": 23701, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23702, + "make_id": 23494, + "model_id": 23696, + "year_id": 23702, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23703, + "make_id": 23494, + "model_id": 23703, + "year_id": 23703, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23704, + "make_id": 23494, + "model_id": 23703, + "year_id": 23704, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23705, + "make_id": 23494, + "model_id": 23703, + "year_id": 23705, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23706, + "make_id": 23494, + "model_id": 23703, + "year_id": 23706, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23707, + "make_id": 23494, + "model_id": 23703, + "year_id": 23707, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23708, + "make_id": 23494, + "model_id": 23708, + "year_id": 23708, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23709, + "make_id": 23494, + "model_id": 23709, + "year_id": 23709, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23710, + "make_id": 23494, + "model_id": 23710, + "year_id": 23710, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23711, + "make_id": 23494, + "model_id": 23711, + "year_id": 23711, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23712, + "make_id": 23494, + "model_id": 23711, + "year_id": 23712, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23713, + "make_id": 23494, + "model_id": 23713, + "year_id": 23713, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23714, + "make_id": 23494, + "model_id": 23713, + "year_id": 23714, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23715, + "make_id": 23494, + "model_id": 23715, + "year_id": 23715, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23716, + "make_id": 23494, + "model_id": 23716, + "year_id": 23716, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23717, + "make_id": 23494, + "model_id": 23717, + "year_id": 23717, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23718, + "make_id": 23494, + "model_id": 23718, + "year_id": 23718, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23719, + "make_id": 23494, + "model_id": 23719, + "year_id": 23719, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23720, + "make_id": 23494, + "model_id": 23720, + "year_id": 23720, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23721, + "make_id": 23494, + "model_id": 23721, + "year_id": 23721, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23722, + "make_id": 23494, + "model_id": 23722, + "year_id": 23722, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23723, + "make_id": 23494, + "model_id": 23723, + "year_id": 23723, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23724, + "make_id": 23494, + "model_id": 23724, + "year_id": 23724, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23725, + "make_id": 23494, + "model_id": 23725, + "year_id": 23725, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23726, + "make_id": 23494, + "model_id": 23726, + "year_id": 23726, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23727, + "make_id": 23494, + "model_id": 23727, + "year_id": 23727, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23728, + "make_id": 23494, + "model_id": 23728, + "year_id": 23728, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23729, + "make_id": 23494, + "model_id": 23729, + "year_id": 23729, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23730, + "make_id": 23494, + "model_id": 23730, + "year_id": 23730, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23731, + "make_id": 23494, + "model_id": 23731, + "year_id": 23731, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23732, + "make_id": 23494, + "model_id": 23732, + "year_id": 23732, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23733, + "make_id": 23494, + "model_id": 23733, + "year_id": 23733, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23734, + "make_id": 23494, + "model_id": 23734, + "year_id": 23734, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23735, + "make_id": 23494, + "model_id": 23735, + "year_id": 23735, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23736, + "make_id": 23494, + "model_id": 23736, + "year_id": 23736, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 23737, + "make_id": 23494, + "model_id": 23736, + "year_id": 23737, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 23738, + "make_id": 23494, + "model_id": 23738, + "year_id": 23738, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 23739, + "make_id": 23494, + "model_id": 23739, + "year_id": 23739, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23740, + "make_id": 23494, + "model_id": 23739, + "year_id": 23740, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23741, + "make_id": 23494, + "model_id": 23739, + "year_id": 23741, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23742, + "make_id": 23494, + "model_id": 23742, + "year_id": 23742, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23743, + "make_id": 23494, + "model_id": 23742, + "year_id": 23743, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23744, + "make_id": 23494, + "model_id": 23742, + "year_id": 23744, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23745, + "make_id": 23494, + "model_id": 23742, + "year_id": 23744, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23746, + "make_id": 23494, + "model_id": 23742, + "year_id": 23746, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23747, + "make_id": 23494, + "model_id": 23742, + "year_id": 23746, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23748, + "make_id": 23494, + "model_id": 23748, + "year_id": 23748, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23749, + "make_id": 23494, + "model_id": 23748, + "year_id": 23749, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23750, + "make_id": 23494, + "model_id": 23748, + "year_id": 23750, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23751, + "make_id": 23494, + "model_id": 23748, + "year_id": 23750, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23752, + "make_id": 23494, + "model_id": 23748, + "year_id": 23752, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23753, + "make_id": 23494, + "model_id": 23748, + "year_id": 23752, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23754, + "make_id": 23494, + "model_id": 23748, + "year_id": 23752, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23755, + "make_id": 23494, + "model_id": 23748, + "year_id": 23752, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23756, + "make_id": 23494, + "model_id": 23748, + "year_id": 23756, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23757, + "make_id": 23494, + "model_id": 23748, + "year_id": 23756, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23758, + "make_id": 23494, + "model_id": 23748, + "year_id": 23758, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23759, + "make_id": 23494, + "model_id": 23748, + "year_id": 23758, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23760, + "make_id": 23494, + "model_id": 23760, + "year_id": 23760, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23761, + "make_id": 23494, + "model_id": 23760, + "year_id": 23760, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23762, + "make_id": 23494, + "model_id": 23760, + "year_id": 23762, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23763, + "make_id": 23494, + "model_id": 23760, + "year_id": 23762, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23764, + "make_id": 23494, + "model_id": 23764, + "year_id": 23764, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23765, + "make_id": 23494, + "model_id": 23764, + "year_id": 23764, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23766, + "make_id": 23494, + "model_id": 23764, + "year_id": 23766, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23767, + "make_id": 23494, + "model_id": 23764, + "year_id": 23766, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23768, + "make_id": 23494, + "model_id": 23764, + "year_id": 23768, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23769, + "make_id": 23494, + "model_id": 23764, + "year_id": 23768, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23770, + "make_id": 23494, + "model_id": 23764, + "year_id": 23770, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23771, + "make_id": 23494, + "model_id": 23764, + "year_id": 23770, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23772, + "make_id": 23494, + "model_id": 23764, + "year_id": 23770, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23773, + "make_id": 23494, + "model_id": 23764, + "year_id": 23773, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23774, + "make_id": 23494, + "model_id": 23774, + "year_id": 23774, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23775, + "make_id": 23494, + "model_id": 23774, + "year_id": 23774, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23776, + "make_id": 23494, + "model_id": 23774, + "year_id": 23776, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23777, + "make_id": 23494, + "model_id": 23774, + "year_id": 23776, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23778, + "make_id": 23494, + "model_id": 23774, + "year_id": 23776, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23779, + "make_id": 23494, + "model_id": 23774, + "year_id": 23779, + "cylinders": 6, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23780, + "make_id": 23494, + "model_id": 23780, + "year_id": 23780, + "cylinders": 6, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23781, + "make_id": 23494, + "model_id": 23780, + "year_id": 23781, + "cylinders": 6, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23782, + "make_id": 23494, + "model_id": 23780, + "year_id": 23782, + "cylinders": 6, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23783, + "make_id": 23494, + "model_id": 23783, + "year_id": 23783, + "cylinders": 6, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23784, + "make_id": 23494, + "model_id": 23783, + "year_id": 23784, + "cylinders": 6, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23785, + "make_id": 23494, + "model_id": 23783, + "year_id": 23785, + "cylinders": 6, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23786, + "make_id": 23494, + "model_id": 23786, + "year_id": 23786, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23787, + "make_id": 23494, + "model_id": 23786, + "year_id": 23787, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23788, + "make_id": 23494, + "model_id": 23786, + "year_id": 23788, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23789, + "make_id": 23494, + "model_id": 23789, + "year_id": 23789, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23790, + "make_id": 23494, + "model_id": 23789, + "year_id": 23790, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23791, + "make_id": 23494, + "model_id": 23789, + "year_id": 23791, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23792, + "make_id": 23494, + "model_id": 23789, + "year_id": 23792, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23793, + "make_id": 23494, + "model_id": 23793, + "year_id": 23793, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23794, + "make_id": 23494, + "model_id": 23793, + "year_id": 23794, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23795, + "make_id": 23494, + "model_id": 23793, + "year_id": 23795, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23796, + "make_id": 23494, + "model_id": 23793, + "year_id": 23796, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23797, + "make_id": 23494, + "model_id": 23793, + "year_id": 23797, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23798, + "make_id": 23494, + "model_id": 23793, + "year_id": 23798, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23799, + "make_id": 23494, + "model_id": 23793, + "year_id": 23799, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23800, + "make_id": 23494, + "model_id": 23793, + "year_id": 23800, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23801, + "make_id": 23494, + "model_id": 23793, + "year_id": 23801, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23802, + "make_id": 23494, + "model_id": 23802, + "year_id": 23802, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23803, + "make_id": 23494, + "model_id": 23802, + "year_id": 23803, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23804, + "make_id": 23494, + "model_id": 23804, + "year_id": 23804, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23805, + "make_id": 23494, + "model_id": 23804, + "year_id": 23804, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23806, + "make_id": 23494, + "model_id": 23804, + "year_id": 23806, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23807, + "make_id": 23494, + "model_id": 23804, + "year_id": 23807, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23808, + "make_id": 23494, + "model_id": 23804, + "year_id": 23807, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23809, + "make_id": 23494, + "model_id": 23804, + "year_id": 23807, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23810, + "make_id": 23494, + "model_id": 23804, + "year_id": 23810, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23811, + "make_id": 23494, + "model_id": 23804, + "year_id": 23810, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23812, + "make_id": 23494, + "model_id": 23804, + "year_id": 23810, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23813, + "make_id": 23494, + "model_id": 23804, + "year_id": 23813, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23814, + "make_id": 23494, + "model_id": 23804, + "year_id": 23814, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23815, + "make_id": 23494, + "model_id": 23815, + "year_id": 23815, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23816, + "make_id": 23494, + "model_id": 23815, + "year_id": 23816, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23817, + "make_id": 23494, + "model_id": 23815, + "year_id": 23817, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23818, + "make_id": 23494, + "model_id": 23815, + "year_id": 23817, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23819, + "make_id": 23494, + "model_id": 23815, + "year_id": 23819, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23820, + "make_id": 23494, + "model_id": 23815, + "year_id": 23819, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23821, + "make_id": 23494, + "model_id": 23815, + "year_id": 23821, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23822, + "make_id": 23494, + "model_id": 23815, + "year_id": 23821, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23823, + "make_id": 23494, + "model_id": 23815, + "year_id": 23823, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23824, + "make_id": 23494, + "model_id": 23815, + "year_id": 23823, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23825, + "make_id": 23494, + "model_id": 23815, + "year_id": 23825, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23826, + "make_id": 23494, + "model_id": 23815, + "year_id": 23825, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23827, + "make_id": 23494, + "model_id": 23815, + "year_id": 23825, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23828, + "make_id": 23494, + "model_id": 23815, + "year_id": 23828, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23829, + "make_id": 23494, + "model_id": 23815, + "year_id": 23829, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23830, + "make_id": 23494, + "model_id": 23830, + "year_id": 23830, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23831, + "make_id": 23494, + "model_id": 23831, + "year_id": 23831, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23832, + "make_id": 23494, + "model_id": 23832, + "year_id": 23832, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23833, + "make_id": 23494, + "model_id": 23832, + "year_id": 23833, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23834, + "make_id": 23494, + "model_id": 23832, + "year_id": 23834, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23835, + "make_id": 23494, + "model_id": 23835, + "year_id": 23835, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23836, + "make_id": 23494, + "model_id": 23835, + "year_id": 23836, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23837, + "make_id": 23494, + "model_id": 23835, + "year_id": 23837, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23838, + "make_id": 23494, + "model_id": 23835, + "year_id": 23837, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23839, + "make_id": 23494, + "model_id": 23835, + "year_id": 23839, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23840, + "make_id": 23494, + "model_id": 23835, + "year_id": 23839, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23841, + "make_id": 23494, + "model_id": 23835, + "year_id": 23841, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23842, + "make_id": 23494, + "model_id": 23835, + "year_id": 23841, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23843, + "make_id": 23494, + "model_id": 23843, + "year_id": 23843, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23844, + "make_id": 23494, + "model_id": 23843, + "year_id": 23844, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23845, + "make_id": 23494, + "model_id": 23843, + "year_id": 23844, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23846, + "make_id": 23494, + "model_id": 23843, + "year_id": 23846, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23847, + "make_id": 23494, + "model_id": 23847, + "year_id": 23847, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23848, + "make_id": 23494, + "model_id": 23847, + "year_id": 23848, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23849, + "make_id": 23494, + "model_id": 23849, + "year_id": 23849, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23850, + "make_id": 23494, + "model_id": 23849, + "year_id": 23850, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23851, + "make_id": 23494, + "model_id": 23851, + "year_id": 23851, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23852, + "make_id": 23494, + "model_id": 23852, + "year_id": 23852, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23853, + "make_id": 23494, + "model_id": 23852, + "year_id": 23852, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23854, + "make_id": 23494, + "model_id": 23852, + "year_id": 23854, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23855, + "make_id": 23494, + "model_id": 23852, + "year_id": 23854, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23856, + "make_id": 23494, + "model_id": 23852, + "year_id": 23856, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23857, + "make_id": 23494, + "model_id": 23852, + "year_id": 23856, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23858, + "make_id": 23494, + "model_id": 23858, + "year_id": 23858, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23859, + "make_id": 23494, + "model_id": 23858, + "year_id": 23858, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23860, + "make_id": 23494, + "model_id": 23858, + "year_id": 23860, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23861, + "make_id": 23494, + "model_id": 23858, + "year_id": 23860, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 23862, + "make_id": 23494, + "model_id": 23858, + "year_id": 23862, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23863, + "make_id": 23494, + "model_id": 23858, + "year_id": 23863, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23864, + "make_id": 23494, + "model_id": 23858, + "year_id": 23864, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23865, + "make_id": 23494, + "model_id": 23858, + "year_id": 23865, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23866, + "make_id": 23494, + "model_id": 23858, + "year_id": 23866, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23867, + "make_id": 23494, + "model_id": 23858, + "year_id": 23866, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23868, + "make_id": 23494, + "model_id": 23858, + "year_id": 23868, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23869, + "make_id": 23494, + "model_id": 23858, + "year_id": 23868, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23870, + "make_id": 23494, + "model_id": 23858, + "year_id": 23868, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23871, + "make_id": 23494, + "model_id": 23858, + "year_id": 23871, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23872, + "make_id": 23494, + "model_id": 23858, + "year_id": 23871, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23873, + "make_id": 23494, + "model_id": 23858, + "year_id": 23871, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23874, + "make_id": 23494, + "model_id": 23874, + "year_id": 23874, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23875, + "make_id": 23494, + "model_id": 23874, + "year_id": 23875, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23876, + "make_id": 23494, + "model_id": 23876, + "year_id": 23876, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23877, + "make_id": 23494, + "model_id": 23876, + "year_id": 23877, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23878, + "make_id": 23494, + "model_id": 23876, + "year_id": 23878, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23879, + "make_id": 23494, + "model_id": 23876, + "year_id": 23879, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23880, + "make_id": 23494, + "model_id": 23880, + "year_id": 23880, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23881, + "make_id": 23494, + "model_id": 23880, + "year_id": 23881, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23882, + "make_id": 23494, + "model_id": 23880, + "year_id": 23882, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23883, + "make_id": 23494, + "model_id": 23880, + "year_id": 23883, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23884, + "make_id": 23494, + "model_id": 23884, + "year_id": 23884, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23885, + "make_id": 23494, + "model_id": 23885, + "year_id": 23885, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 23886, + "make_id": 23494, + "model_id": 23885, + "year_id": 23886, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23887, + "make_id": 23494, + "model_id": 23887, + "year_id": 23887, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23888, + "make_id": 23494, + "model_id": 23888, + "year_id": 23888, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23889, + "make_id": 23494, + "model_id": 23889, + "year_id": 23889, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23890, + "make_id": 23494, + "model_id": 23889, + "year_id": 23890, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23891, + "make_id": 23494, + "model_id": 23891, + "year_id": 23891, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23892, + "make_id": 23494, + "model_id": 23892, + "year_id": 23892, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23893, + "make_id": 23494, + "model_id": 23892, + "year_id": 23893, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23894, + "make_id": 23494, + "model_id": 23894, + "year_id": 23894, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23895, + "make_id": 23494, + "model_id": 23894, + "year_id": 23895, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23896, + "make_id": 23494, + "model_id": 23894, + "year_id": 23896, + "cylinders": 8, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23897, + "make_id": 23494, + "model_id": 23894, + "year_id": 23897, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23898, + "make_id": 23494, + "model_id": 23894, + "year_id": 23898, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23899, + "make_id": 23494, + "model_id": 23894, + "year_id": 23899, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23900, + "make_id": 23494, + "model_id": 23894, + "year_id": 23900, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23901, + "make_id": 23494, + "model_id": 23901, + "year_id": 23901, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23902, + "make_id": 23494, + "model_id": 23901, + "year_id": 23902, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23903, + "make_id": 23494, + "model_id": 23903, + "year_id": 23903, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23904, + "make_id": 23494, + "model_id": 23903, + "year_id": 23904, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23905, + "make_id": 23494, + "model_id": 23903, + "year_id": 23905, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23906, + "make_id": 23494, + "model_id": 23903, + "year_id": 23906, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23907, + "make_id": 23494, + "model_id": 23907, + "year_id": 23907, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23908, + "make_id": 23494, + "model_id": 23907, + "year_id": 23908, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23909, + "make_id": 23494, + "model_id": 23907, + "year_id": 23909, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23910, + "make_id": 23494, + "model_id": 23907, + "year_id": 23910, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23911, + "make_id": 23494, + "model_id": 23907, + "year_id": 23911, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23912, + "make_id": 23494, + "model_id": 23907, + "year_id": 23912, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23913, + "make_id": 23494, + "model_id": 23907, + "year_id": 23913, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23914, + "make_id": 23494, + "model_id": 23907, + "year_id": 23914, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23915, + "make_id": 23494, + "model_id": 23907, + "year_id": 23915, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23916, + "make_id": 23494, + "model_id": 23916, + "year_id": 23916, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23917, + "make_id": 23494, + "model_id": 23916, + "year_id": 23917, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23918, + "make_id": 23494, + "model_id": 23916, + "year_id": 23918, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23919, + "make_id": 23494, + "model_id": 23916, + "year_id": 23919, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23920, + "make_id": 23494, + "model_id": 23916, + "year_id": 23920, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23921, + "make_id": 23494, + "model_id": 23916, + "year_id": 23921, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23922, + "make_id": 23494, + "model_id": 23922, + "year_id": 23922, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23923, + "make_id": 23494, + "model_id": 23922, + "year_id": 23923, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23924, + "make_id": 23494, + "model_id": 23924, + "year_id": 23924, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23925, + "make_id": 23494, + "model_id": 23924, + "year_id": 23925, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23926, + "make_id": 23494, + "model_id": 23924, + "year_id": 23926, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23927, + "make_id": 23494, + "model_id": 23924, + "year_id": 23927, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23928, + "make_id": 23494, + "model_id": 23924, + "year_id": 23928, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23929, + "make_id": 23494, + "model_id": 23924, + "year_id": 23929, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23930, + "make_id": 23494, + "model_id": 23930, + "year_id": 23930, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23931, + "make_id": 23494, + "model_id": 23930, + "year_id": 23931, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23932, + "make_id": 23494, + "model_id": 23930, + "year_id": 23932, + "cylinders": 12, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23933, + "make_id": 23494, + "model_id": 23930, + "year_id": 23933, + "cylinders": 12, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23934, + "make_id": 23494, + "model_id": 23930, + "year_id": 23934, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23935, + "make_id": 23494, + "model_id": 23930, + "year_id": 23935, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23936, + "make_id": 23494, + "model_id": 23930, + "year_id": 23936, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23937, + "make_id": 23494, + "model_id": 23930, + "year_id": 23937, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23938, + "make_id": 23494, + "model_id": 23930, + "year_id": 23938, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23939, + "make_id": 23494, + "model_id": 23930, + "year_id": 23939, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23940, + "make_id": 23494, + "model_id": 23930, + "year_id": 23940, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23941, + "make_id": 23494, + "model_id": 23930, + "year_id": 23941, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23942, + "make_id": 23494, + "model_id": 23930, + "year_id": 23942, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23943, + "make_id": 23494, + "model_id": 23930, + "year_id": 23943, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23944, + "make_id": 23494, + "model_id": 23930, + "year_id": 23944, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23945, + "make_id": 23494, + "model_id": 23930, + "year_id": 23945, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23946, + "make_id": 23494, + "model_id": 23946, + "year_id": 23946, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23947, + "make_id": 23494, + "model_id": 23946, + "year_id": 23947, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23948, + "make_id": 23494, + "model_id": 23946, + "year_id": 23948, + "cylinders": 8, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23949, + "make_id": 23494, + "model_id": 23946, + "year_id": 23949, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23950, + "make_id": 23494, + "model_id": 23946, + "year_id": 23950, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23951, + "make_id": 23494, + "model_id": 23946, + "year_id": 23951, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23952, + "make_id": 23494, + "model_id": 23946, + "year_id": 23952, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23953, + "make_id": 23494, + "model_id": 23953, + "year_id": 23953, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23954, + "make_id": 23494, + "model_id": 23953, + "year_id": 23954, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23955, + "make_id": 23494, + "model_id": 23953, + "year_id": 23955, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23956, + "make_id": 23494, + "model_id": 23953, + "year_id": 23956, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23957, + "make_id": 23494, + "model_id": 23953, + "year_id": 23957, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23958, + "make_id": 23494, + "model_id": 23953, + "year_id": 23958, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23959, + "make_id": 23494, + "model_id": 23953, + "year_id": 23959, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23960, + "make_id": 23494, + "model_id": 23953, + "year_id": 23960, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23961, + "make_id": 23494, + "model_id": 23953, + "year_id": 23961, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23962, + "make_id": 23494, + "model_id": 23962, + "year_id": 23962, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23963, + "make_id": 23494, + "model_id": 23962, + "year_id": 23963, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23964, + "make_id": 23494, + "model_id": 23962, + "year_id": 23964, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23965, + "make_id": 23494, + "model_id": 23965, + "year_id": 23965, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23966, + "make_id": 23494, + "model_id": 23965, + "year_id": 23966, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23967, + "make_id": 23494, + "model_id": 23965, + "year_id": 23966, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23968, + "make_id": 23494, + "model_id": 23965, + "year_id": 23968, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23969, + "make_id": 23494, + "model_id": 23965, + "year_id": 23968, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23970, + "make_id": 23494, + "model_id": 23970, + "year_id": 23970, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23971, + "make_id": 23494, + "model_id": 23970, + "year_id": 23971, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 23972, + "make_id": 23494, + "model_id": 23972, + "year_id": 23972, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23973, + "make_id": 23494, + "model_id": 23972, + "year_id": 23973, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23974, + "make_id": 23494, + "model_id": 23972, + "year_id": 23974, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23975, + "make_id": 23494, + "model_id": 23972, + "year_id": 23975, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23976, + "make_id": 23494, + "model_id": 23972, + "year_id": 23976, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23977, + "make_id": 23494, + "model_id": 23972, + "year_id": 23977, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23978, + "make_id": 23494, + "model_id": 23972, + "year_id": 23978, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23979, + "make_id": 23494, + "model_id": 23972, + "year_id": 23979, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23980, + "make_id": 23494, + "model_id": 23980, + "year_id": 23980, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23981, + "make_id": 23494, + "model_id": 23980, + "year_id": 23981, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23982, + "make_id": 23494, + "model_id": 23980, + "year_id": 23982, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23983, + "make_id": 23494, + "model_id": 23980, + "year_id": 23983, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23984, + "make_id": 23494, + "model_id": 23980, + "year_id": 23984, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23985, + "make_id": 23494, + "model_id": 23980, + "year_id": 23985, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23986, + "make_id": 23494, + "model_id": 23986, + "year_id": 23986, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23987, + "make_id": 23494, + "model_id": 23987, + "year_id": 23987, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23988, + "make_id": 23494, + "model_id": 23987, + "year_id": 23988, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23989, + "make_id": 23494, + "model_id": 23987, + "year_id": 23989, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23990, + "make_id": 23494, + "model_id": 23987, + "year_id": 23990, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23991, + "make_id": 23494, + "model_id": 23991, + "year_id": 23991, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23992, + "make_id": 23494, + "model_id": 23991, + "year_id": 23992, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23993, + "make_id": 23494, + "model_id": 23991, + "year_id": 23993, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23994, + "make_id": 23494, + "model_id": 23991, + "year_id": 23994, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 23995, + "make_id": 23494, + "model_id": 23995, + "year_id": 23995, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23996, + "make_id": 23494, + "model_id": 23995, + "year_id": 23996, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23997, + "make_id": 23494, + "model_id": 23995, + "year_id": 23997, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23998, + "make_id": 23494, + "model_id": 23995, + "year_id": 23998, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 23999, + "make_id": 23494, + "model_id": 23999, + "year_id": 23999, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24000, + "make_id": 23494, + "model_id": 23999, + "year_id": 24000, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24001, + "make_id": 23494, + "model_id": 23999, + "year_id": 24001, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24002, + "make_id": 23494, + "model_id": 23999, + "year_id": 24002, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24003, + "make_id": 23494, + "model_id": 24003, + "year_id": 24003, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24004, + "make_id": 23494, + "model_id": 24003, + "year_id": 24004, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24005, + "make_id": 23494, + "model_id": 24003, + "year_id": 24005, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24006, + "make_id": 23494, + "model_id": 24003, + "year_id": 24006, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24007, + "make_id": 23494, + "model_id": 24007, + "year_id": 24007, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24008, + "make_id": 23494, + "model_id": 24007, + "year_id": 24008, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24009, + "make_id": 23494, + "model_id": 24007, + "year_id": 24009, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24010, + "make_id": 23494, + "model_id": 24010, + "year_id": 24010, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24011, + "make_id": 23494, + "model_id": 24010, + "year_id": 24011, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24012, + "make_id": 23494, + "model_id": 24010, + "year_id": 24012, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24013, + "make_id": 23494, + "model_id": 24010, + "year_id": 24013, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24014, + "make_id": 23494, + "model_id": 24010, + "year_id": 24014, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24015, + "make_id": 23494, + "model_id": 24015, + "year_id": 24015, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24016, + "make_id": 23494, + "model_id": 24015, + "year_id": 24016, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24017, + "make_id": 23494, + "model_id": 24015, + "year_id": 24017, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24018, + "make_id": 23494, + "model_id": 24015, + "year_id": 24018, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24019, + "make_id": 23494, + "model_id": 24019, + "year_id": 24019, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24020, + "make_id": 23494, + "model_id": 24019, + "year_id": 24020, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24021, + "make_id": 23494, + "model_id": 24019, + "year_id": 24021, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24022, + "make_id": 23494, + "model_id": 24022, + "year_id": 24022, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24023, + "make_id": 23494, + "model_id": 24022, + "year_id": 24023, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24024, + "make_id": 23494, + "model_id": 24022, + "year_id": 24024, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24025, + "make_id": 23494, + "model_id": 24025, + "year_id": 24025, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24026, + "make_id": 23494, + "model_id": 24026, + "year_id": 24026, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24027, + "make_id": 23494, + "model_id": 24026, + "year_id": 24027, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24028, + "make_id": 23494, + "model_id": 24028, + "year_id": 24028, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24029, + "make_id": 23494, + "model_id": 24028, + "year_id": 24029, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24030, + "make_id": 23494, + "model_id": 24030, + "year_id": 24030, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24031, + "make_id": 23494, + "model_id": 24030, + "year_id": 24031, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24032, + "make_id": 23494, + "model_id": 24032, + "year_id": 24032, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24033, + "make_id": 23494, + "model_id": 24033, + "year_id": 24033, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24034, + "make_id": 23494, + "model_id": 24034, + "year_id": 24034, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24035, + "make_id": 23494, + "model_id": 24034, + "year_id": 24035, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24036, + "make_id": 23494, + "model_id": 24034, + "year_id": 24036, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24037, + "make_id": 23494, + "model_id": 24034, + "year_id": 24037, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24038, + "make_id": 23494, + "model_id": 24034, + "year_id": 24038, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24039, + "make_id": 23494, + "model_id": 24034, + "year_id": 24039, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24040, + "make_id": 23494, + "model_id": 24034, + "year_id": 24040, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24041, + "make_id": 23494, + "model_id": 24034, + "year_id": 24041, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24042, + "make_id": 23494, + "model_id": 24034, + "year_id": 24042, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24043, + "make_id": 23494, + "model_id": 24034, + "year_id": 24043, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24044, + "make_id": 23494, + "model_id": 24044, + "year_id": 24044, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24045, + "make_id": 23494, + "model_id": 24044, + "year_id": 24045, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24046, + "make_id": 23494, + "model_id": 24044, + "year_id": 24046, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24047, + "make_id": 23494, + "model_id": 24044, + "year_id": 24047, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24048, + "make_id": 23494, + "model_id": 24044, + "year_id": 24048, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24049, + "make_id": 23494, + "model_id": 24049, + "year_id": 24049, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24050, + "make_id": 23494, + "model_id": 24049, + "year_id": 24050, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24051, + "make_id": 23494, + "model_id": 24049, + "year_id": 24051, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24052, + "make_id": 23494, + "model_id": 24049, + "year_id": 24052, + "cylinders": 8, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24053, + "make_id": 23494, + "model_id": 24049, + "year_id": 24053, + "cylinders": 8, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24054, + "make_id": 23494, + "model_id": 24049, + "year_id": 24054, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24055, + "make_id": 23494, + "model_id": 24049, + "year_id": 24055, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24056, + "make_id": 23494, + "model_id": 24049, + "year_id": 24056, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24057, + "make_id": 23494, + "model_id": 24057, + "year_id": 24057, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24058, + "make_id": 23494, + "model_id": 24058, + "year_id": 24058, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24059, + "make_id": 23494, + "model_id": 24059, + "year_id": 24059, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24060, + "make_id": 23494, + "model_id": 24059, + "year_id": 24060, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24061, + "make_id": 23494, + "model_id": 24061, + "year_id": 24061, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24062, + "make_id": 23494, + "model_id": 24061, + "year_id": 24062, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24063, + "make_id": 23494, + "model_id": 24061, + "year_id": 24063, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24064, + "make_id": 23494, + "model_id": 24064, + "year_id": 24064, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24065, + "make_id": 23494, + "model_id": 24064, + "year_id": 24065, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24066, + "make_id": 23494, + "model_id": 24064, + "year_id": 24066, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24067, + "make_id": 23494, + "model_id": 24067, + "year_id": 24067, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24068, + "make_id": 23494, + "model_id": 24068, + "year_id": 24068, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24069, + "make_id": 23494, + "model_id": 24069, + "year_id": 24069, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24070, + "make_id": 23494, + "model_id": 24069, + "year_id": 24070, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24071, + "make_id": 23494, + "model_id": 24069, + "year_id": 24071, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24072, + "make_id": 23494, + "model_id": 24072, + "year_id": 24072, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24073, + "make_id": 23494, + "model_id": 24072, + "year_id": 24073, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24074, + "make_id": 23494, + "model_id": 24074, + "year_id": 24074, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24075, + "make_id": 23494, + "model_id": 24074, + "year_id": 24075, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24076, + "make_id": 23494, + "model_id": 24074, + "year_id": 24076, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24077, + "make_id": 23494, + "model_id": 24074, + "year_id": 24077, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24078, + "make_id": 23494, + "model_id": 24074, + "year_id": 24078, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24079, + "make_id": 23494, + "model_id": 24074, + "year_id": 24079, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24080, + "make_id": 23494, + "model_id": 24074, + "year_id": 24080, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24081, + "make_id": 23494, + "model_id": 24074, + "year_id": 24081, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24082, + "make_id": 23494, + "model_id": 24082, + "year_id": 24082, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24083, + "make_id": 23494, + "model_id": 24082, + "year_id": 24083, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24084, + "make_id": 23494, + "model_id": 24082, + "year_id": 24084, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24085, + "make_id": 23494, + "model_id": 24082, + "year_id": 24085, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24086, + "make_id": 23494, + "model_id": 24082, + "year_id": 24086, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24087, + "make_id": 23494, + "model_id": 24082, + "year_id": 24087, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24088, + "make_id": 23494, + "model_id": 24088, + "year_id": 24088, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24089, + "make_id": 23494, + "model_id": 24088, + "year_id": 24089, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24090, + "make_id": 23494, + "model_id": 24088, + "year_id": 24090, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24091, + "make_id": 23494, + "model_id": 24091, + "year_id": 24091, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24092, + "make_id": 23494, + "model_id": 24091, + "year_id": 24092, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24093, + "make_id": 23494, + "model_id": 24093, + "year_id": 24093, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24094, + "make_id": 23494, + "model_id": 24093, + "year_id": 24094, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24095, + "make_id": 23494, + "model_id": 24093, + "year_id": 24095, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24096, + "make_id": 23494, + "model_id": 24093, + "year_id": 24096, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24097, + "make_id": 23494, + "model_id": 24097, + "year_id": 24097, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24098, + "make_id": 23494, + "model_id": 24097, + "year_id": 24098, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24099, + "make_id": 23494, + "model_id": 24099, + "year_id": 24099, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24100, + "make_id": 23494, + "model_id": 24099, + "year_id": 24100, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24101, + "make_id": 23494, + "model_id": 24099, + "year_id": 24101, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24102, + "make_id": 23494, + "model_id": 24102, + "year_id": 24102, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24103, + "make_id": 23494, + "model_id": 24102, + "year_id": 24103, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24104, + "make_id": 23494, + "model_id": 24104, + "year_id": 24104, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24105, + "make_id": 23494, + "model_id": 24104, + "year_id": 24105, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24106, + "make_id": 23494, + "model_id": 24106, + "year_id": 24106, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24107, + "make_id": 23494, + "model_id": 24106, + "year_id": 24107, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24108, + "make_id": 23494, + "model_id": 24108, + "year_id": 24108, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24109, + "make_id": 23494, + "model_id": 24108, + "year_id": 24109, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24110, + "make_id": 23494, + "model_id": 24108, + "year_id": 24110, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24111, + "make_id": 23494, + "model_id": 24108, + "year_id": 24110, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24112, + "make_id": 23494, + "model_id": 24108, + "year_id": 24112, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24113, + "make_id": 23494, + "model_id": 24113, + "year_id": 24113, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24114, + "make_id": 23494, + "model_id": 24114, + "year_id": 24114, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24115, + "make_id": 23494, + "model_id": 24114, + "year_id": 24115, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24116, + "make_id": 23494, + "model_id": 24114, + "year_id": 24116, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24117, + "make_id": 23494, + "model_id": 24114, + "year_id": 24116, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24118, + "make_id": 23494, + "model_id": 24114, + "year_id": 24118, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24119, + "make_id": 23494, + "model_id": 24119, + "year_id": 24119, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24120, + "make_id": 23494, + "model_id": 24120, + "year_id": 24120, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24121, + "make_id": 23494, + "model_id": 24120, + "year_id": 24121, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24122, + "make_id": 23494, + "model_id": 24120, + "year_id": 24122, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24123, + "make_id": 23494, + "model_id": 24120, + "year_id": 24123, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24124, + "make_id": 23494, + "model_id": 24120, + "year_id": 24124, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24125, + "make_id": 23494, + "model_id": 24120, + "year_id": 24125, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24126, + "make_id": 23494, + "model_id": 24120, + "year_id": 24126, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24127, + "make_id": 23494, + "model_id": 24120, + "year_id": 24127, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24128, + "make_id": 23494, + "model_id": 24120, + "year_id": 24127, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24129, + "make_id": 23494, + "model_id": 24120, + "year_id": 24127, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24130, + "make_id": 23494, + "model_id": 24120, + "year_id": 24130, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24131, + "make_id": 23494, + "model_id": 24120, + "year_id": 24130, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24132, + "make_id": 23494, + "model_id": 24120, + "year_id": 24130, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24133, + "make_id": 23494, + "model_id": 24120, + "year_id": 24133, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24134, + "make_id": 23494, + "model_id": 24120, + "year_id": 24133, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24135, + "make_id": 23494, + "model_id": 24120, + "year_id": 24135, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24136, + "make_id": 23494, + "model_id": 24120, + "year_id": 24135, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24137, + "make_id": 23494, + "model_id": 24137, + "year_id": 24137, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24138, + "make_id": 23494, + "model_id": 24138, + "year_id": 24138, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24139, + "make_id": 23494, + "model_id": 24138, + "year_id": 24139, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24140, + "make_id": 23494, + "model_id": 24138, + "year_id": 24140, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24141, + "make_id": 23494, + "model_id": 24138, + "year_id": 24141, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24142, + "make_id": 23494, + "model_id": 24138, + "year_id": 24142, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24143, + "make_id": 23494, + "model_id": 24138, + "year_id": 24143, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24144, + "make_id": 23494, + "model_id": 24138, + "year_id": 24144, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24145, + "make_id": 23494, + "model_id": 24138, + "year_id": 24145, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24146, + "make_id": 23494, + "model_id": 24138, + "year_id": 24145, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24147, + "make_id": 23494, + "model_id": 24147, + "year_id": 24147, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24148, + "make_id": 23494, + "model_id": 24138, + "year_id": 24148, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24149, + "make_id": 23494, + "model_id": 24138, + "year_id": 24148, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24150, + "make_id": 23494, + "model_id": 24138, + "year_id": 24148, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24151, + "make_id": 23494, + "model_id": 24138, + "year_id": 24151, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24152, + "make_id": 23494, + "model_id": 24138, + "year_id": 24151, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24153, + "make_id": 23494, + "model_id": 24138, + "year_id": 24153, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24154, + "make_id": 23494, + "model_id": 24138, + "year_id": 24153, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24155, + "make_id": 23494, + "model_id": 24155, + "year_id": 24155, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24156, + "make_id": 23494, + "model_id": 24155, + "year_id": 24156, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24157, + "make_id": 23494, + "model_id": 24155, + "year_id": 24157, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24158, + "make_id": 23494, + "model_id": 24155, + "year_id": 24158, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24159, + "make_id": 23494, + "model_id": 24155, + "year_id": 24159, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24160, + "make_id": 23494, + "model_id": 24155, + "year_id": 24160, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24161, + "make_id": 23494, + "model_id": 24155, + "year_id": 24161, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24162, + "make_id": 23494, + "model_id": 24155, + "year_id": 24162, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24163, + "make_id": 23494, + "model_id": 24155, + "year_id": 24163, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24164, + "make_id": 23494, + "model_id": 24155, + "year_id": 24164, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24165, + "make_id": 23494, + "model_id": 24165, + "year_id": 24165, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24166, + "make_id": 23494, + "model_id": 24165, + "year_id": 24165, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24167, + "make_id": 23494, + "model_id": 24165, + "year_id": 24167, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24168, + "make_id": 23494, + "model_id": 24165, + "year_id": 24167, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24169, + "make_id": 23494, + "model_id": 24165, + "year_id": 24167, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24170, + "make_id": 23494, + "model_id": 24165, + "year_id": 24170, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24171, + "make_id": 23494, + "model_id": 24165, + "year_id": 24170, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24172, + "make_id": 23494, + "model_id": 24165, + "year_id": 24170, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24173, + "make_id": 23494, + "model_id": 24173, + "year_id": 24173, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24174, + "make_id": 23494, + "model_id": 24173, + "year_id": 24174, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24175, + "make_id": 23494, + "model_id": 24173, + "year_id": 24175, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24176, + "make_id": 23494, + "model_id": 24176, + "year_id": 24176, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24177, + "make_id": 23494, + "model_id": 24176, + "year_id": 24177, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24178, + "make_id": 23494, + "model_id": 24176, + "year_id": 24177, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24179, + "make_id": 23494, + "model_id": 24176, + "year_id": 24179, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24180, + "make_id": 23494, + "model_id": 24176, + "year_id": 24179, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24181, + "make_id": 23494, + "model_id": 24176, + "year_id": 24181, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24182, + "make_id": 23494, + "model_id": 24176, + "year_id": 24181, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24183, + "make_id": 23494, + "model_id": 24176, + "year_id": 24183, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24184, + "make_id": 23494, + "model_id": 24184, + "year_id": 24184, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24185, + "make_id": 23494, + "model_id": 24184, + "year_id": 24185, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24186, + "make_id": 23494, + "model_id": 24184, + "year_id": 24186, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24187, + "make_id": 23494, + "model_id": 24184, + "year_id": 24186, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24188, + "make_id": 23494, + "model_id": 24184, + "year_id": 24188, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24189, + "make_id": 23494, + "model_id": 24184, + "year_id": 24188, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24190, + "make_id": 23494, + "model_id": 24184, + "year_id": 24188, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24191, + "make_id": 23494, + "model_id": 24184, + "year_id": 24191, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24192, + "make_id": 23494, + "model_id": 24184, + "year_id": 24191, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24193, + "make_id": 23494, + "model_id": 24184, + "year_id": 24191, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24194, + "make_id": 23494, + "model_id": 24184, + "year_id": 24194, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24195, + "make_id": 23494, + "model_id": 24195, + "year_id": 24195, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24196, + "make_id": 23494, + "model_id": 24195, + "year_id": 24196, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24197, + "make_id": 23494, + "model_id": 24197, + "year_id": 24197, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24198, + "make_id": 23494, + "model_id": 24197, + "year_id": 24198, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24199, + "make_id": 23494, + "model_id": 24199, + "year_id": 24199, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24200, + "make_id": 23494, + "model_id": 24200, + "year_id": 24200, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24201, + "make_id": 23494, + "model_id": 24200, + "year_id": 24201, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24202, + "make_id": 23494, + "model_id": 24202, + "year_id": 24202, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24203, + "make_id": 23494, + "model_id": 24202, + "year_id": 24203, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24204, + "make_id": 23494, + "model_id": 24204, + "year_id": 24204, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24205, + "make_id": 23494, + "model_id": 24204, + "year_id": 24205, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24206, + "make_id": 23494, + "model_id": 24206, + "year_id": 24206, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24207, + "make_id": 23494, + "model_id": 24206, + "year_id": 24207, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24208, + "make_id": 23494, + "model_id": 24206, + "year_id": 24208, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24209, + "make_id": 23494, + "model_id": 24209, + "year_id": 24209, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24210, + "make_id": 23494, + "model_id": 24209, + "year_id": 24210, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24211, + "make_id": 23494, + "model_id": 24209, + "year_id": 24211, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24212, + "make_id": 23494, + "model_id": 24212, + "year_id": 24212, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24213, + "make_id": 23494, + "model_id": 24212, + "year_id": 24213, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24214, + "make_id": 23494, + "model_id": 24212, + "year_id": 24214, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24215, + "make_id": 23494, + "model_id": 24212, + "year_id": 24215, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24216, + "make_id": 23494, + "model_id": 24216, + "year_id": 24216, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24217, + "make_id": 23494, + "model_id": 24216, + "year_id": 24217, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24218, + "make_id": 23494, + "model_id": 24216, + "year_id": 24218, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24219, + "make_id": 23494, + "model_id": 24219, + "year_id": 24219, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24220, + "make_id": 23494, + "model_id": 24219, + "year_id": 24220, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24221, + "make_id": 23494, + "model_id": 24219, + "year_id": 24221, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24222, + "make_id": 23494, + "model_id": 24219, + "year_id": 24222, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24223, + "make_id": 23494, + "model_id": 24219, + "year_id": 24223, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24224, + "make_id": 23494, + "model_id": 24224, + "year_id": 24224, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24225, + "make_id": 23494, + "model_id": 24225, + "year_id": 24225, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24226, + "make_id": 23494, + "model_id": 24225, + "year_id": 24226, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24227, + "make_id": 23494, + "model_id": 24225, + "year_id": 24227, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24228, + "make_id": 23494, + "model_id": 24228, + "year_id": 24228, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24229, + "make_id": 23494, + "model_id": 24228, + "year_id": 24229, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24230, + "make_id": 23494, + "model_id": 24230, + "year_id": 24230, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24231, + "make_id": 23494, + "model_id": 24231, + "year_id": 24231, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24232, + "make_id": 23494, + "model_id": 24231, + "year_id": 24232, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24233, + "make_id": 23494, + "model_id": 24231, + "year_id": 24233, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24234, + "make_id": 23494, + "model_id": 24231, + "year_id": 24234, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24235, + "make_id": 23494, + "model_id": 24231, + "year_id": 24235, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24236, + "make_id": 23494, + "model_id": 24231, + "year_id": 24236, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24237, + "make_id": 23494, + "model_id": 24231, + "year_id": 24237, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24238, + "make_id": 23494, + "model_id": 24231, + "year_id": 24238, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24239, + "make_id": 23494, + "model_id": 24239, + "year_id": 24239, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24240, + "make_id": 23494, + "model_id": 24240, + "year_id": 24240, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24241, + "make_id": 23494, + "model_id": 24241, + "year_id": 24241, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24242, + "make_id": 23494, + "model_id": 24241, + "year_id": 24242, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24243, + "make_id": 23494, + "model_id": 24241, + "year_id": 24243, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24244, + "make_id": 23494, + "model_id": 24241, + "year_id": 24244, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24245, + "make_id": 23494, + "model_id": 24241, + "year_id": 24245, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24246, + "make_id": 23494, + "model_id": 24246, + "year_id": 24246, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24247, + "make_id": 23494, + "model_id": 24246, + "year_id": 24247, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24248, + "make_id": 23494, + "model_id": 24246, + "year_id": 24248, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24249, + "make_id": 23494, + "model_id": 24246, + "year_id": 24249, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24250, + "make_id": 23494, + "model_id": 24246, + "year_id": 24250, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24251, + "make_id": 23494, + "model_id": 24246, + "year_id": 24251, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24252, + "make_id": 23494, + "model_id": 24246, + "year_id": 24252, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24253, + "make_id": 23494, + "model_id": 24246, + "year_id": 24253, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24254, + "make_id": 23494, + "model_id": 24246, + "year_id": 24254, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24255, + "make_id": 23494, + "model_id": 24255, + "year_id": 24255, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24256, + "make_id": 23494, + "model_id": 24255, + "year_id": 24256, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24257, + "make_id": 23494, + "model_id": 24255, + "year_id": 24257, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24258, + "make_id": 23494, + "model_id": 24255, + "year_id": 24258, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24259, + "make_id": 23494, + "model_id": 24255, + "year_id": 24259, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24260, + "make_id": 23494, + "model_id": 24255, + "year_id": 24260, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24261, + "make_id": 23494, + "model_id": 24261, + "year_id": 24261, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24262, + "make_id": 23494, + "model_id": 24261, + "year_id": 24262, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24263, + "make_id": 23494, + "model_id": 24261, + "year_id": 24263, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24264, + "make_id": 23494, + "model_id": 24261, + "year_id": 24264, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24265, + "make_id": 23494, + "model_id": 24261, + "year_id": 24265, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24266, + "make_id": 23494, + "model_id": 24261, + "year_id": 24266, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24267, + "make_id": 23494, + "model_id": 24261, + "year_id": 24267, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24268, + "make_id": 23494, + "model_id": 24268, + "year_id": 24268, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24269, + "make_id": 23494, + "model_id": 24268, + "year_id": 24269, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24270, + "make_id": 23494, + "model_id": 24268, + "year_id": 24270, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24271, + "make_id": 23494, + "model_id": 24268, + "year_id": 24271, + "cylinders": 8, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24272, + "make_id": 23494, + "model_id": 24268, + "year_id": 24272, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24273, + "make_id": 23494, + "model_id": 24268, + "year_id": 24273, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24274, + "make_id": 23494, + "model_id": 24268, + "year_id": 24274, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24275, + "make_id": 23494, + "model_id": 24268, + "year_id": 24275, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24276, + "make_id": 23494, + "model_id": 24276, + "year_id": 24276, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24277, + "make_id": 23494, + "model_id": 24276, + "year_id": 24277, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24278, + "make_id": 23494, + "model_id": 24276, + "year_id": 24278, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24279, + "make_id": 23494, + "model_id": 24276, + "year_id": 24279, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24280, + "make_id": 23494, + "model_id": 24276, + "year_id": 24280, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24281, + "make_id": 23494, + "model_id": 24281, + "year_id": 24281, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24282, + "make_id": 23494, + "model_id": 24281, + "year_id": 24282, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24283, + "make_id": 23494, + "model_id": 24283, + "year_id": 24283, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24284, + "make_id": 23494, + "model_id": 24284, + "year_id": 24284, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24285, + "make_id": 23494, + "model_id": 24285, + "year_id": 24285, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24286, + "make_id": 23494, + "model_id": 24285, + "year_id": 24286, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24287, + "make_id": 23494, + "model_id": 24287, + "year_id": 24287, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24288, + "make_id": 23494, + "model_id": 24287, + "year_id": 24288, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24289, + "make_id": 23494, + "model_id": 24289, + "year_id": 24289, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24290, + "make_id": 23494, + "model_id": 24289, + "year_id": 24290, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24291, + "make_id": 23494, + "model_id": 24289, + "year_id": 24291, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24292, + "make_id": 23494, + "model_id": 24289, + "year_id": 24292, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24293, + "make_id": 23494, + "model_id": 24289, + "year_id": 24293, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24294, + "make_id": 23494, + "model_id": 24289, + "year_id": 24294, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24295, + "make_id": 23494, + "model_id": 24289, + "year_id": 24295, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24296, + "make_id": 23494, + "model_id": 24296, + "year_id": 24296, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24297, + "make_id": 23494, + "model_id": 24296, + "year_id": 24297, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24298, + "make_id": 23494, + "model_id": 24296, + "year_id": 24298, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24299, + "make_id": 23494, + "model_id": 24296, + "year_id": 24299, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24300, + "make_id": 23494, + "model_id": 24296, + "year_id": 24300, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24301, + "make_id": 23494, + "model_id": 24296, + "year_id": 24301, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24302, + "make_id": 23494, + "model_id": 24296, + "year_id": 24302, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24303, + "make_id": 23494, + "model_id": 24296, + "year_id": 24303, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24304, + "make_id": 23494, + "model_id": 24296, + "year_id": 24304, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24305, + "make_id": 23494, + "model_id": 24305, + "year_id": 24305, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24306, + "make_id": 23494, + "model_id": 24305, + "year_id": 24306, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24307, + "make_id": 23494, + "model_id": 24305, + "year_id": 24307, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24308, + "make_id": 23494, + "model_id": 24305, + "year_id": 24308, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24309, + "make_id": 23494, + "model_id": 24305, + "year_id": 24309, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24310, + "make_id": 23494, + "model_id": 24305, + "year_id": 24310, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24311, + "make_id": 23494, + "model_id": 24305, + "year_id": 24311, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24312, + "make_id": 23494, + "model_id": 24312, + "year_id": 24312, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24313, + "make_id": 23494, + "model_id": 24312, + "year_id": 24313, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24314, + "make_id": 23494, + "model_id": 24312, + "year_id": 24314, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24315, + "make_id": 23494, + "model_id": 24315, + "year_id": 24315, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24316, + "make_id": 23494, + "model_id": 24316, + "year_id": 24316, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24317, + "make_id": 23494, + "model_id": 24316, + "year_id": 24317, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24318, + "make_id": 23494, + "model_id": 24318, + "year_id": 24318, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24319, + "make_id": 23494, + "model_id": 24319, + "year_id": 24319, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24320, + "make_id": 23494, + "model_id": 24319, + "year_id": 24320, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24321, + "make_id": 23494, + "model_id": 24319, + "year_id": 24321, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24322, + "make_id": 23494, + "model_id": 24319, + "year_id": 24322, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24323, + "make_id": 23494, + "model_id": 24319, + "year_id": 24323, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24324, + "make_id": 23494, + "model_id": 24319, + "year_id": 24324, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24325, + "make_id": 23494, + "model_id": 24325, + "year_id": 24325, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24326, + "make_id": 23494, + "model_id": 24325, + "year_id": 24326, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24327, + "make_id": 23494, + "model_id": 24325, + "year_id": 24327, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24328, + "make_id": 23494, + "model_id": 24325, + "year_id": 24328, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24329, + "make_id": 23494, + "model_id": 24325, + "year_id": 24329, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24330, + "make_id": 23494, + "model_id": 24325, + "year_id": 24330, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24331, + "make_id": 23494, + "model_id": 24325, + "year_id": 24331, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24332, + "make_id": 23494, + "model_id": 24325, + "year_id": 24332, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24333, + "make_id": 23494, + "model_id": 24325, + "year_id": 24333, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24334, + "make_id": 23494, + "model_id": 24325, + "year_id": 24334, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24335, + "make_id": 23494, + "model_id": 24335, + "year_id": 24335, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24336, + "make_id": 23494, + "model_id": 24335, + "year_id": 24336, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24337, + "make_id": 23494, + "model_id": 24335, + "year_id": 24337, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24338, + "make_id": 23494, + "model_id": 24335, + "year_id": 24338, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24339, + "make_id": 23494, + "model_id": 24335, + "year_id": 24339, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24340, + "make_id": 23494, + "model_id": 24335, + "year_id": 24340, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24341, + "make_id": 23494, + "model_id": 24335, + "year_id": 24341, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24342, + "make_id": 23494, + "model_id": 24335, + "year_id": 24342, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24343, + "make_id": 23494, + "model_id": 24335, + "year_id": 24343, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24344, + "make_id": 23494, + "model_id": 24344, + "year_id": 24344, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24345, + "make_id": 23494, + "model_id": 24344, + "year_id": 24345, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24346, + "make_id": 23494, + "model_id": 24344, + "year_id": 24346, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24347, + "make_id": 23494, + "model_id": 24347, + "year_id": 24347, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24348, + "make_id": 23494, + "model_id": 24347, + "year_id": 24348, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24349, + "make_id": 23494, + "model_id": 24349, + "year_id": 24349, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24350, + "make_id": 23494, + "model_id": 24349, + "year_id": 24349, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24351, + "make_id": 23494, + "model_id": 24349, + "year_id": 24351, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24352, + "make_id": 23494, + "model_id": 24349, + "year_id": 24351, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24353, + "make_id": 23494, + "model_id": 24353, + "year_id": 24353, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24354, + "make_id": 23494, + "model_id": 24354, + "year_id": 24354, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24355, + "make_id": 23494, + "model_id": 24355, + "year_id": 24355, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24356, + "make_id": 23494, + "model_id": 24356, + "year_id": 24356, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24357, + "make_id": 23494, + "model_id": 24357, + "year_id": 24357, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24358, + "make_id": 23494, + "model_id": 24358, + "year_id": 24358, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24359, + "make_id": 23494, + "model_id": 24358, + "year_id": 24358, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24360, + "make_id": 23494, + "model_id": 24360, + "year_id": 24360, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24361, + "make_id": 23494, + "model_id": 24361, + "year_id": 24361, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24362, + "make_id": 23494, + "model_id": 24362, + "year_id": 24362, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24363, + "make_id": 23494, + "model_id": 24363, + "year_id": 24363, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24364, + "make_id": 23494, + "model_id": 24364, + "year_id": 24364, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24365, + "make_id": 23494, + "model_id": 24365, + "year_id": 24365, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24366, + "make_id": 23494, + "model_id": 24365, + "year_id": 24366, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24367, + "make_id": 23494, + "model_id": 24365, + "year_id": 24367, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24368, + "make_id": 23494, + "model_id": 24368, + "year_id": 24368, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24369, + "make_id": 23494, + "model_id": 24368, + "year_id": 24369, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24370, + "make_id": 23494, + "model_id": 24368, + "year_id": 24370, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24371, + "make_id": 23494, + "model_id": 24368, + "year_id": 24371, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24372, + "make_id": 23494, + "model_id": 24368, + "year_id": 24371, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24373, + "make_id": 23494, + "model_id": 24368, + "year_id": 24373, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24374, + "make_id": 23494, + "model_id": 24368, + "year_id": 24373, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24375, + "make_id": 23494, + "model_id": 24368, + "year_id": 24375, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24376, + "make_id": 23494, + "model_id": 24368, + "year_id": 24375, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24377, + "make_id": 23494, + "model_id": 24377, + "year_id": 24377, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24378, + "make_id": 23494, + "model_id": 24377, + "year_id": 24378, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24379, + "make_id": 23494, + "model_id": 24377, + "year_id": 24379, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24380, + "make_id": 23494, + "model_id": 24377, + "year_id": 24380, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24381, + "make_id": 23494, + "model_id": 24377, + "year_id": 24380, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24382, + "make_id": 23494, + "model_id": 24377, + "year_id": 24382, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24383, + "make_id": 23494, + "model_id": 24377, + "year_id": 24382, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24384, + "make_id": 23494, + "model_id": 24377, + "year_id": 24384, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24385, + "make_id": 23494, + "model_id": 24377, + "year_id": 24384, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24386, + "make_id": 23494, + "model_id": 24386, + "year_id": 24386, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24387, + "make_id": 23494, + "model_id": 24387, + "year_id": 24387, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24388, + "make_id": 23494, + "model_id": 24388, + "year_id": 24388, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24389, + "make_id": 23494, + "model_id": 24389, + "year_id": 24389, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24390, + "make_id": 23494, + "model_id": 24390, + "year_id": 24390, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24391, + "make_id": 23494, + "model_id": 24391, + "year_id": 24391, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24392, + "make_id": 23494, + "model_id": 24392, + "year_id": 24392, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24393, + "make_id": 23494, + "model_id": 24392, + "year_id": 24393, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24394, + "make_id": 23494, + "model_id": 24392, + "year_id": 24394, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24395, + "make_id": 23494, + "model_id": 24392, + "year_id": 24395, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24396, + "make_id": 23494, + "model_id": 24392, + "year_id": 24396, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24397, + "make_id": 23494, + "model_id": 24392, + "year_id": 24397, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24398, + "make_id": 23494, + "model_id": 24398, + "year_id": 24398, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24399, + "make_id": 23494, + "model_id": 24399, + "year_id": 24399, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24400, + "make_id": 23494, + "model_id": 24399, + "year_id": 24400, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24401, + "make_id": 23494, + "model_id": 24401, + "year_id": 24401, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24402, + "make_id": 23494, + "model_id": 24401, + "year_id": 24402, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24403, + "make_id": 23494, + "model_id": 24401, + "year_id": 24403, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24404, + "make_id": 23494, + "model_id": 24401, + "year_id": 24404, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24405, + "make_id": 23494, + "model_id": 24401, + "year_id": 24405, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24406, + "make_id": 23494, + "model_id": 24401, + "year_id": 24406, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24407, + "make_id": 23494, + "model_id": 24401, + "year_id": 24407, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24408, + "make_id": 23494, + "model_id": 24401, + "year_id": 24408, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24409, + "make_id": 23494, + "model_id": 24401, + "year_id": 24409, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24410, + "make_id": 23494, + "model_id": 24401, + "year_id": 24410, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24411, + "make_id": 23494, + "model_id": 24411, + "year_id": 24411, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24412, + "make_id": 23494, + "model_id": 24411, + "year_id": 24412, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24413, + "make_id": 23494, + "model_id": 24411, + "year_id": 24413, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24414, + "make_id": 23494, + "model_id": 24411, + "year_id": 24414, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24415, + "make_id": 23494, + "model_id": 24411, + "year_id": 24415, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24416, + "make_id": 23494, + "model_id": 24411, + "year_id": 24416, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24417, + "make_id": 23494, + "model_id": 24411, + "year_id": 24416, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24418, + "make_id": 23494, + "model_id": 24411, + "year_id": 24418, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24419, + "make_id": 23494, + "model_id": 24411, + "year_id": 24418, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24420, + "make_id": 23494, + "model_id": 24411, + "year_id": 24420, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24421, + "make_id": 23494, + "model_id": 24411, + "year_id": 24420, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24422, + "make_id": 23494, + "model_id": 24411, + "year_id": 24422, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24423, + "make_id": 23494, + "model_id": 24411, + "year_id": 24422, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24424, + "make_id": 23494, + "model_id": 24424, + "year_id": 24424, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24425, + "make_id": 23494, + "model_id": 24425, + "year_id": 24425, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24426, + "make_id": 23494, + "model_id": 24425, + "year_id": 24426, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24427, + "make_id": 23494, + "model_id": 24425, + "year_id": 24427, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24428, + "make_id": 23494, + "model_id": 24425, + "year_id": 24428, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24429, + "make_id": 23494, + "model_id": 24429, + "year_id": 24429, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24430, + "make_id": 23494, + "model_id": 24430, + "year_id": 24430, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24431, + "make_id": 23494, + "model_id": 24430, + "year_id": 24431, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24432, + "make_id": 23494, + "model_id": 24430, + "year_id": 24432, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24433, + "make_id": 23494, + "model_id": 24433, + "year_id": 24433, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 24434, + "make_id": 23494, + "model_id": 24433, + "year_id": 24434, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 24435, + "make_id": 23494, + "model_id": 24435, + "year_id": 24435, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24436, + "make_id": 23494, + "model_id": 24435, + "year_id": 24436, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24437, + "make_id": 23494, + "model_id": 24435, + "year_id": 24437, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24438, + "make_id": 23494, + "model_id": 24435, + "year_id": 24438, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24439, + "make_id": 23494, + "model_id": 24435, + "year_id": 24439, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24440, + "make_id": 23494, + "model_id": 24440, + "year_id": 24440, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24441, + "make_id": 23494, + "model_id": 24441, + "year_id": 24441, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24442, + "make_id": 23494, + "model_id": 24442, + "year_id": 24442, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24443, + "make_id": 23494, + "model_id": 24442, + "year_id": 24443, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24444, + "make_id": 23494, + "model_id": 24442, + "year_id": 24444, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24445, + "make_id": 23494, + "model_id": 24445, + "year_id": 24445, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24446, + "make_id": 23494, + "model_id": 24445, + "year_id": 24446, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24447, + "make_id": 23494, + "model_id": 24445, + "year_id": 24447, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24448, + "make_id": 23494, + "model_id": 24445, + "year_id": 24448, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24449, + "make_id": 23494, + "model_id": 24445, + "year_id": 24449, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24450, + "make_id": 23494, + "model_id": 24445, + "year_id": 24450, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24451, + "make_id": 23494, + "model_id": 24445, + "year_id": 24451, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24452, + "make_id": 23494, + "model_id": 24452, + "year_id": 24452, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24453, + "make_id": 23494, + "model_id": 24452, + "year_id": 24453, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24454, + "make_id": 23494, + "model_id": 24452, + "year_id": 24454, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24455, + "make_id": 23494, + "model_id": 24452, + "year_id": 24455, + "cylinders": 8, + "displacement": 6.3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24456, + "make_id": 23494, + "model_id": 24452, + "year_id": 24456, + "cylinders": 8, + "displacement": 6.3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24457, + "make_id": 23494, + "model_id": 24452, + "year_id": 24457, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24458, + "make_id": 23494, + "model_id": 24452, + "year_id": 24458, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24459, + "make_id": 23494, + "model_id": 24452, + "year_id": 24459, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24460, + "make_id": 23494, + "model_id": 24452, + "year_id": 24460, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24461, + "make_id": 23494, + "model_id": 24461, + "year_id": 24461, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24462, + "make_id": 23494, + "model_id": 24462, + "year_id": 24462, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24463, + "make_id": 23494, + "model_id": 24462, + "year_id": 24463, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24464, + "make_id": 23494, + "model_id": 24464, + "year_id": 24464, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24465, + "make_id": 23494, + "model_id": 24464, + "year_id": 24465, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24466, + "make_id": 23494, + "model_id": 24466, + "year_id": 24466, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24467, + "make_id": 23494, + "model_id": 24466, + "year_id": 24467, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24468, + "make_id": 23494, + "model_id": 24466, + "year_id": 24468, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24469, + "make_id": 23494, + "model_id": 24466, + "year_id": 24469, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24470, + "make_id": 23494, + "model_id": 24466, + "year_id": 24470, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24471, + "make_id": 23494, + "model_id": 24466, + "year_id": 24471, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24472, + "make_id": 23494, + "model_id": 24466, + "year_id": 24472, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24473, + "make_id": 23494, + "model_id": 24473, + "year_id": 24473, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24474, + "make_id": 23494, + "model_id": 24474, + "year_id": 24474, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24475, + "make_id": 23494, + "model_id": 24474, + "year_id": 24475, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24476, + "make_id": 23494, + "model_id": 24476, + "year_id": 24476, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24477, + "make_id": 23494, + "model_id": 24477, + "year_id": 24477, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24478, + "make_id": 23494, + "model_id": 24478, + "year_id": 24478, + "cylinders": 8, + "displacement": 6.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24479, + "make_id": 23494, + "model_id": 24479, + "year_id": 24479, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24480, + "make_id": 23494, + "model_id": 24479, + "year_id": 24480, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24481, + "make_id": 23494, + "model_id": 24479, + "year_id": 24480, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24482, + "make_id": 23494, + "model_id": 24479, + "year_id": 24482, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24483, + "make_id": 23494, + "model_id": 24479, + "year_id": 24482, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24484, + "make_id": 23494, + "model_id": 24479, + "year_id": 24484, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24485, + "make_id": 23494, + "model_id": 24479, + "year_id": 24484, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24486, + "make_id": 23494, + "model_id": 24479, + "year_id": 24486, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24487, + "make_id": 23494, + "model_id": 24479, + "year_id": 24486, + "cylinders": 6, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24488, + "make_id": 23494, + "model_id": 24479, + "year_id": 24486, + "cylinders": 6, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24489, + "make_id": 23494, + "model_id": 24479, + "year_id": 24486, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24490, + "make_id": 23494, + "model_id": 24479, + "year_id": 24490, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24491, + "make_id": 23494, + "model_id": 24479, + "year_id": 24490, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24492, + "make_id": 23494, + "model_id": 24492, + "year_id": 24492, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24493, + "make_id": 23494, + "model_id": 24492, + "year_id": 24493, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24494, + "make_id": 23494, + "model_id": 24494, + "year_id": 24494, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24495, + "make_id": 23494, + "model_id": 24494, + "year_id": 24495, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24496, + "make_id": 23494, + "model_id": 24496, + "year_id": 24496, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24497, + "make_id": 23494, + "model_id": 24497, + "year_id": 24497, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24498, + "make_id": 23494, + "model_id": 24497, + "year_id": 24498, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24499, + "make_id": 23494, + "model_id": 24497, + "year_id": 24499, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24500, + "make_id": 23494, + "model_id": 24497, + "year_id": 24500, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24501, + "make_id": 23494, + "model_id": 24501, + "year_id": 24501, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24502, + "make_id": 23494, + "model_id": 24501, + "year_id": 24502, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24503, + "make_id": 23494, + "model_id": 24501, + "year_id": 24503, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24504, + "make_id": 23494, + "model_id": 24501, + "year_id": 24504, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24505, + "make_id": 23494, + "model_id": 24501, + "year_id": 24505, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24506, + "make_id": 23494, + "model_id": 24501, + "year_id": 24506, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24507, + "make_id": 23494, + "model_id": 24507, + "year_id": 24507, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24508, + "make_id": 23494, + "model_id": 24507, + "year_id": 24508, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24509, + "make_id": 23494, + "model_id": 24507, + "year_id": 24509, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24510, + "make_id": 23494, + "model_id": 24507, + "year_id": 24510, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24511, + "make_id": 23494, + "model_id": 24507, + "year_id": 24511, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24512, + "make_id": 23494, + "model_id": 24507, + "year_id": 24512, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24513, + "make_id": 23494, + "model_id": 24507, + "year_id": 24513, + "cylinders": 8, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24514, + "make_id": 23494, + "model_id": 24514, + "year_id": 24514, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24515, + "make_id": 23494, + "model_id": 24514, + "year_id": 24515, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24516, + "make_id": 23494, + "model_id": 24514, + "year_id": 24516, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24517, + "make_id": 23494, + "model_id": 24514, + "year_id": 24517, + "cylinders": 8, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24518, + "make_id": 23494, + "model_id": 24518, + "year_id": 24518, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24519, + "make_id": 23494, + "model_id": 24518, + "year_id": 24519, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24520, + "make_id": 23494, + "model_id": 24518, + "year_id": 24520, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24521, + "make_id": 23494, + "model_id": 24518, + "year_id": 24521, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24522, + "make_id": 23494, + "model_id": 24518, + "year_id": 24522, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24523, + "make_id": 23494, + "model_id": 24518, + "year_id": 24523, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24524, + "make_id": 23494, + "model_id": 24518, + "year_id": 24524, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24525, + "make_id": 23494, + "model_id": 24518, + "year_id": 24525, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24526, + "make_id": 23494, + "model_id": 24518, + "year_id": 24526, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24527, + "make_id": 23494, + "model_id": 24518, + "year_id": 24527, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24528, + "make_id": 23494, + "model_id": 24518, + "year_id": 24528, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24529, + "make_id": 23494, + "model_id": 24529, + "year_id": 24529, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24530, + "make_id": 23494, + "model_id": 24529, + "year_id": 24530, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24531, + "make_id": 23494, + "model_id": 24529, + "year_id": 24531, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24532, + "make_id": 23494, + "model_id": 24529, + "year_id": 24532, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24533, + "make_id": 23494, + "model_id": 24533, + "year_id": 24533, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24534, + "make_id": 23494, + "model_id": 24533, + "year_id": 24534, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24535, + "make_id": 23494, + "model_id": 24533, + "year_id": 24535, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24536, + "make_id": 23494, + "model_id": 24533, + "year_id": 24536, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24537, + "make_id": 23494, + "model_id": 24537, + "year_id": 24537, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24538, + "make_id": 23494, + "model_id": 24537, + "year_id": 24538, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24539, + "make_id": 23494, + "model_id": 24539, + "year_id": 24539, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24540, + "make_id": 23494, + "model_id": 24539, + "year_id": 24540, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24541, + "make_id": 23494, + "model_id": 24539, + "year_id": 24541, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24542, + "make_id": 23494, + "model_id": 24539, + "year_id": 24542, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24543, + "make_id": 23494, + "model_id": 24539, + "year_id": 24543, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24544, + "make_id": 23494, + "model_id": 24539, + "year_id": 24544, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24545, + "make_id": 23494, + "model_id": 24545, + "year_id": 24545, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24546, + "make_id": 23494, + "model_id": 24545, + "year_id": 24546, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24547, + "make_id": 23494, + "model_id": 24545, + "year_id": 24547, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24548, + "make_id": 23494, + "model_id": 24545, + "year_id": 24548, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24549, + "make_id": 23494, + "model_id": 24545, + "year_id": 24549, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24550, + "make_id": 23494, + "model_id": 24545, + "year_id": 24550, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24551, + "make_id": 23494, + "model_id": 24545, + "year_id": 24551, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24552, + "make_id": 23494, + "model_id": 24545, + "year_id": 24552, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24553, + "make_id": 23494, + "model_id": 24545, + "year_id": 24553, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24554, + "make_id": 23494, + "model_id": 24545, + "year_id": 24554, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24555, + "make_id": 23494, + "model_id": 24555, + "year_id": 24555, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24556, + "make_id": 23494, + "model_id": 24555, + "year_id": 24556, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24557, + "make_id": 23494, + "model_id": 24555, + "year_id": 24557, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24558, + "make_id": 23494, + "model_id": 24555, + "year_id": 24558, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24559, + "make_id": 23494, + "model_id": 24555, + "year_id": 24559, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24560, + "make_id": 23494, + "model_id": 24555, + "year_id": 24560, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24561, + "make_id": 23494, + "model_id": 24555, + "year_id": 24561, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24562, + "make_id": 23494, + "model_id": 24555, + "year_id": 24562, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24563, + "make_id": 23494, + "model_id": 24555, + "year_id": 24563, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24564, + "make_id": 23494, + "model_id": 24555, + "year_id": 24564, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24565, + "make_id": 23494, + "model_id": 24565, + "year_id": 24565, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24566, + "make_id": 23494, + "model_id": 24565, + "year_id": 24566, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24567, + "make_id": 23494, + "model_id": 24567, + "year_id": 24567, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24568, + "make_id": 23494, + "model_id": 24567, + "year_id": 24568, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24569, + "make_id": 23494, + "model_id": 24569, + "year_id": 24569, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24570, + "make_id": 23494, + "model_id": 24569, + "year_id": 24570, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24571, + "make_id": 23494, + "model_id": 24569, + "year_id": 24571, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24572, + "make_id": 23494, + "model_id": 24569, + "year_id": 24572, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24573, + "make_id": 23494, + "model_id": 24569, + "year_id": 24573, + "cylinders": 12, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24574, + "make_id": 23494, + "model_id": 24569, + "year_id": 24574, + "cylinders": 12, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24575, + "make_id": 23494, + "model_id": 24569, + "year_id": 24575, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24576, + "make_id": 23494, + "model_id": 24569, + "year_id": 24576, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24577, + "make_id": 23494, + "model_id": 24569, + "year_id": 24577, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24578, + "make_id": 23494, + "model_id": 24569, + "year_id": 24578, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24579, + "make_id": 23494, + "model_id": 24569, + "year_id": 24579, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24580, + "make_id": 23494, + "model_id": 24569, + "year_id": 24580, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24581, + "make_id": 23494, + "model_id": 24569, + "year_id": 24581, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24582, + "make_id": 23494, + "model_id": 24569, + "year_id": 24582, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24583, + "make_id": 23494, + "model_id": 24569, + "year_id": 24583, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24584, + "make_id": 23494, + "model_id": 24569, + "year_id": 24584, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24585, + "make_id": 23494, + "model_id": 24569, + "year_id": 24585, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24586, + "make_id": 23494, + "model_id": 24569, + "year_id": 24586, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24587, + "make_id": 23494, + "model_id": 24569, + "year_id": 24587, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24588, + "make_id": 23494, + "model_id": 24588, + "year_id": 24588, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24589, + "make_id": 23494, + "model_id": 24588, + "year_id": 24589, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24590, + "make_id": 23494, + "model_id": 24588, + "year_id": 24590, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24591, + "make_id": 23494, + "model_id": 24588, + "year_id": 24591, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24592, + "make_id": 23494, + "model_id": 24592, + "year_id": 24592, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24593, + "make_id": 23494, + "model_id": 24592, + "year_id": 24593, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24594, + "make_id": 23494, + "model_id": 24594, + "year_id": 24594, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24595, + "make_id": 23494, + "model_id": 24594, + "year_id": 24595, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24596, + "make_id": 23494, + "model_id": 24594, + "year_id": 24596, + "cylinders": 8, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24597, + "make_id": 23494, + "model_id": 24594, + "year_id": 24597, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24598, + "make_id": 23494, + "model_id": 24594, + "year_id": 24598, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24599, + "make_id": 23494, + "model_id": 24594, + "year_id": 24599, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24600, + "make_id": 23494, + "model_id": 24600, + "year_id": 24600, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24601, + "make_id": 23494, + "model_id": 24600, + "year_id": 24601, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24602, + "make_id": 23494, + "model_id": 24602, + "year_id": 24602, + "cylinders": 8, + "displacement": 5.5, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24603, + "make_id": 23494, + "model_id": 24603, + "year_id": 24603, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24604, + "make_id": 23494, + "model_id": 24603, + "year_id": 24604, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24605, + "make_id": 23494, + "model_id": 24603, + "year_id": 24605, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24606, + "make_id": 23494, + "model_id": 24603, + "year_id": 24606, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24607, + "make_id": 23494, + "model_id": 24603, + "year_id": 24607, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24608, + "make_id": 23494, + "model_id": 24603, + "year_id": 24608, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24609, + "make_id": 23494, + "model_id": 24603, + "year_id": 24609, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24610, + "make_id": 23494, + "model_id": 24603, + "year_id": 24610, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24611, + "make_id": 23494, + "model_id": 24603, + "year_id": 24611, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24612, + "make_id": 23494, + "model_id": 24612, + "year_id": 24612, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24613, + "make_id": 23494, + "model_id": 24613, + "year_id": 24613, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24614, + "make_id": 23494, + "model_id": 24613, + "year_id": 24614, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24615, + "make_id": 23494, + "model_id": 24613, + "year_id": 24615, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24616, + "make_id": 23494, + "model_id": 24613, + "year_id": 24616, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24617, + "make_id": 23494, + "model_id": 24617, + "year_id": 24617, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24618, + "make_id": 23494, + "model_id": 24617, + "year_id": 24618, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24619, + "make_id": 23494, + "model_id": 24619, + "year_id": 24619, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24620, + "make_id": 23494, + "model_id": 24619, + "year_id": 24620, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24621, + "make_id": 23494, + "model_id": 24619, + "year_id": 24621, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24622, + "make_id": 23494, + "model_id": 24619, + "year_id": 24622, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24623, + "make_id": 23494, + "model_id": 24619, + "year_id": 24623, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24624, + "make_id": 23494, + "model_id": 24619, + "year_id": 24624, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24625, + "make_id": 23494, + "model_id": 24619, + "year_id": 24625, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24626, + "make_id": 23494, + "model_id": 24619, + "year_id": 24626, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24627, + "make_id": 23494, + "model_id": 24619, + "year_id": 24627, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24628, + "make_id": 23494, + "model_id": 24619, + "year_id": 24628, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24629, + "make_id": 23494, + "model_id": 24619, + "year_id": 24629, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24630, + "make_id": 23494, + "model_id": 24619, + "year_id": 24630, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24631, + "make_id": 23494, + "model_id": 24619, + "year_id": 24631, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24632, + "make_id": 23494, + "model_id": 24632, + "year_id": 24632, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24633, + "make_id": 23494, + "model_id": 24632, + "year_id": 24633, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24634, + "make_id": 23494, + "model_id": 24632, + "year_id": 24634, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24635, + "make_id": 23494, + "model_id": 24632, + "year_id": 24635, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24636, + "make_id": 23494, + "model_id": 24632, + "year_id": 24636, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24637, + "make_id": 23494, + "model_id": 24632, + "year_id": 24637, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24638, + "make_id": 23494, + "model_id": 24638, + "year_id": 24638, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24639, + "make_id": 23494, + "model_id": 24638, + "year_id": 24639, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24640, + "make_id": 23494, + "model_id": 24638, + "year_id": 24640, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24641, + "make_id": 23494, + "model_id": 24638, + "year_id": 24641, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24642, + "make_id": 23494, + "model_id": 24638, + "year_id": 24642, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24643, + "make_id": 23494, + "model_id": 24638, + "year_id": 24643, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24644, + "make_id": 23494, + "model_id": 24638, + "year_id": 24644, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24645, + "make_id": 23494, + "model_id": 24638, + "year_id": 24645, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24646, + "make_id": 23494, + "model_id": 24638, + "year_id": 24646, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24647, + "make_id": 23494, + "model_id": 24647, + "year_id": 24647, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24648, + "make_id": 23494, + "model_id": 24647, + "year_id": 24648, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24649, + "make_id": 23494, + "model_id": 24647, + "year_id": 24649, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24650, + "make_id": 23494, + "model_id": 24647, + "year_id": 24650, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24651, + "make_id": 23494, + "model_id": 24647, + "year_id": 24651, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24652, + "make_id": 23494, + "model_id": 24647, + "year_id": 24652, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24653, + "make_id": 23494, + "model_id": 24647, + "year_id": 24653, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24654, + "make_id": 23494, + "model_id": 24647, + "year_id": 24654, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24655, + "make_id": 23494, + "model_id": 24647, + "year_id": 24655, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24656, + "make_id": 23494, + "model_id": 24647, + "year_id": 24656, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24657, + "make_id": 23494, + "model_id": 24647, + "year_id": 24657, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24658, + "make_id": 23494, + "model_id": 24647, + "year_id": 24658, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24659, + "make_id": 23494, + "model_id": 24647, + "year_id": 24659, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24660, + "make_id": 23494, + "model_id": 24647, + "year_id": 24660, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24661, + "make_id": 23494, + "model_id": 24647, + "year_id": 24661, + "cylinders": 12, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24662, + "make_id": 23494, + "model_id": 24662, + "year_id": 24662, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24663, + "make_id": 23494, + "model_id": 24662, + "year_id": 24663, + "cylinders": 8, + "displacement": 6.3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24664, + "make_id": 23494, + "model_id": 24662, + "year_id": 24664, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24665, + "make_id": 23494, + "model_id": 24662, + "year_id": 24665, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24666, + "make_id": 23494, + "model_id": 24662, + "year_id": 24666, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24667, + "make_id": 23494, + "model_id": 24662, + "year_id": 24667, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24668, + "make_id": 23494, + "model_id": 24668, + "year_id": 24668, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24669, + "make_id": 23494, + "model_id": 24668, + "year_id": 24669, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24670, + "make_id": 23494, + "model_id": 24668, + "year_id": 24670, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24671, + "make_id": 23494, + "model_id": 24668, + "year_id": 24671, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24672, + "make_id": 23494, + "model_id": 24668, + "year_id": 24672, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24673, + "make_id": 23494, + "model_id": 24668, + "year_id": 24673, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24674, + "make_id": 23494, + "model_id": 24668, + "year_id": 24674, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24675, + "make_id": 23494, + "model_id": 24668, + "year_id": 24675, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24676, + "make_id": 23494, + "model_id": 24668, + "year_id": 24676, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24677, + "make_id": 23494, + "model_id": 24677, + "year_id": 24677, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24678, + "make_id": 23494, + "model_id": 24677, + "year_id": 24677, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24679, + "make_id": 23494, + "model_id": 24679, + "year_id": 24679, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24680, + "make_id": 23494, + "model_id": 24679, + "year_id": 24679, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24681, + "make_id": 23494, + "model_id": 24679, + "year_id": 24681, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24682, + "make_id": 23494, + "model_id": 24679, + "year_id": 24681, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24683, + "make_id": 23494, + "model_id": 24679, + "year_id": 24683, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24684, + "make_id": 23494, + "model_id": 24679, + "year_id": 24683, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24685, + "make_id": 23494, + "model_id": 24679, + "year_id": 24685, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24686, + "make_id": 23494, + "model_id": 24679, + "year_id": 24685, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24687, + "make_id": 23494, + "model_id": 24679, + "year_id": 24687, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24688, + "make_id": 23494, + "model_id": 24679, + "year_id": 24687, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24689, + "make_id": 23494, + "model_id": 24689, + "year_id": 24689, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24690, + "make_id": 23494, + "model_id": 24689, + "year_id": 24689, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24691, + "make_id": 23494, + "model_id": 24689, + "year_id": 24691, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24692, + "make_id": 23494, + "model_id": 24689, + "year_id": 24691, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24693, + "make_id": 23494, + "model_id": 24689, + "year_id": 24693, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24694, + "make_id": 23494, + "model_id": 24689, + "year_id": 24693, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24695, + "make_id": 23494, + "model_id": 24689, + "year_id": 24695, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24696, + "make_id": 23494, + "model_id": 24689, + "year_id": 24695, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24697, + "make_id": 23494, + "model_id": 24697, + "year_id": 24697, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24698, + "make_id": 23494, + "model_id": 24697, + "year_id": 24697, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24699, + "make_id": 23494, + "model_id": 24697, + "year_id": 24699, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24700, + "make_id": 23494, + "model_id": 24697, + "year_id": 24699, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24701, + "make_id": 23494, + "model_id": 24697, + "year_id": 24701, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24702, + "make_id": 23494, + "model_id": 24697, + "year_id": 24701, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24703, + "make_id": 23494, + "model_id": 24703, + "year_id": 24703, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24704, + "make_id": 23494, + "model_id": 24703, + "year_id": 24703, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24705, + "make_id": 23494, + "model_id": 24703, + "year_id": 24705, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24706, + "make_id": 23494, + "model_id": 24703, + "year_id": 24705, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24707, + "make_id": 23494, + "model_id": 24703, + "year_id": 24707, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24708, + "make_id": 23494, + "model_id": 24703, + "year_id": 24707, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24709, + "make_id": 23494, + "model_id": 24703, + "year_id": 24709, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 24710, + "make_id": 23494, + "model_id": 24710, + "year_id": 24710, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24711, + "make_id": 23494, + "model_id": 24710, + "year_id": 24711, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24712, + "make_id": 23494, + "model_id": 24710, + "year_id": 24712, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24713, + "make_id": 23494, + "model_id": 24713, + "year_id": 24713, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24714, + "make_id": 23494, + "model_id": 24713, + "year_id": 24713, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24715, + "make_id": 23494, + "model_id": 24713, + "year_id": 24715, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24716, + "make_id": 23494, + "model_id": 24713, + "year_id": 24715, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24717, + "make_id": 23494, + "model_id": 24713, + "year_id": 24717, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24718, + "make_id": 23494, + "model_id": 24713, + "year_id": 24717, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24719, + "make_id": 23494, + "model_id": 24713, + "year_id": 24719, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24720, + "make_id": 23494, + "model_id": 24713, + "year_id": 24719, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24721, + "make_id": 23494, + "model_id": 24721, + "year_id": 24721, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24722, + "make_id": 23494, + "model_id": 24721, + "year_id": 24721, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24723, + "make_id": 23494, + "model_id": 24721, + "year_id": 24723, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24724, + "make_id": 23494, + "model_id": 24721, + "year_id": 24723, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24725, + "make_id": 23494, + "model_id": 24721, + "year_id": 24725, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24726, + "make_id": 23494, + "model_id": 24721, + "year_id": 24725, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24727, + "make_id": 23494, + "model_id": 24721, + "year_id": 24727, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24728, + "make_id": 23494, + "model_id": 24721, + "year_id": 24727, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24729, + "make_id": 23494, + "model_id": 24721, + "year_id": 24729, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24730, + "make_id": 23494, + "model_id": 24721, + "year_id": 24729, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24731, + "make_id": 23494, + "model_id": 24721, + "year_id": 24731, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24732, + "make_id": 23494, + "model_id": 24721, + "year_id": 24731, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24733, + "make_id": 23494, + "model_id": 24721, + "year_id": 24733, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 24734, + "make_id": 23494, + "model_id": 24721, + "year_id": 24733, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24735, + "make_id": 23494, + "model_id": 24721, + "year_id": 24735, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24736, + "make_id": 23494, + "model_id": 24721, + "year_id": 24736, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24737, + "make_id": 23494, + "model_id": 24721, + "year_id": 24737, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24738, + "make_id": 23494, + "model_id": 24721, + "year_id": 24738, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24739, + "make_id": 23494, + "model_id": 24721, + "year_id": 24739, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24740, + "make_id": 23494, + "model_id": 24740, + "year_id": 24740, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24741, + "make_id": 23494, + "model_id": 24740, + "year_id": 24741, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24742, + "make_id": 23494, + "model_id": 24740, + "year_id": 24742, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24743, + "make_id": 23494, + "model_id": 24740, + "year_id": 24743, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24744, + "make_id": 23494, + "model_id": 24740, + "year_id": 24744, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24745, + "make_id": 23494, + "model_id": 24740, + "year_id": 24745, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24746, + "make_id": 23494, + "model_id": 24740, + "year_id": 24746, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24747, + "make_id": 23494, + "model_id": 24740, + "year_id": 24747, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24748, + "make_id": 23494, + "model_id": 24740, + "year_id": 24748, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24749, + "make_id": 23494, + "model_id": 24740, + "year_id": 24749, + "cylinders": 8, + "displacement": 5.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 24750, + "make_id": 23494, + "model_id": 24750, + "year_id": 24750, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24751, + "make_id": 23494, + "model_id": 24750, + "year_id": 24751, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24752, + "make_id": 23494, + "model_id": 24750, + "year_id": 24752, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24753, + "make_id": 23494, + "model_id": 24750, + "year_id": 24753, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24754, + "make_id": 23494, + "model_id": 24750, + "year_id": 24754, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 24755, + "make_id": 23494, + "model_id": 24755, + "year_id": 24755, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24756, + "make_id": 23494, + "model_id": 24755, + "year_id": 24756, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24757, + "make_id": 23494, + "model_id": 24757, + "year_id": 24757, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24758, + "make_id": 23494, + "model_id": 24758, + "year_id": 24758, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24759, + "make_id": 23494, + "model_id": 24758, + "year_id": 24759, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24760, + "make_id": 23494, + "model_id": 24760, + "year_id": 24760, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24761, + "make_id": 23494, + "model_id": 24760, + "year_id": 24761, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24762, + "make_id": 23494, + "model_id": 24760, + "year_id": 24762, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24763, + "make_id": 23494, + "model_id": 24763, + "year_id": 24763, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24764, + "make_id": 23494, + "model_id": 24763, + "year_id": 24764, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24765, + "make_id": 23494, + "model_id": 24763, + "year_id": 24765, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24766, + "make_id": 23494, + "model_id": 24766, + "year_id": 24766, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24767, + "make_id": 23494, + "model_id": 24766, + "year_id": 24767, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24768, + "make_id": 23494, + "model_id": 24766, + "year_id": 24768, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 24769, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24770, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 24771, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24772, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24773, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24774, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 24775, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24776, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 24777, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24778, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24779, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24780, + "make_id": 24769, + "model_id": 24769, + "year_id": 24769, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 24781, + "make_id": 24769, + "model_id": 24769, + "year_id": 24781, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24782, + "make_id": 24769, + "model_id": 24769, + "year_id": 24781, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24783, + "make_id": 24769, + "model_id": 24769, + "year_id": 24781, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24784, + "make_id": 24769, + "model_id": 24769, + "year_id": 24781, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24785, + "make_id": 24769, + "model_id": 24769, + "year_id": 24781, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24786, + "make_id": 24769, + "model_id": 24769, + "year_id": 24781, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24787, + "make_id": 24769, + "model_id": 24769, + "year_id": 24781, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24788, + "make_id": 24769, + "model_id": 24769, + "year_id": 24781, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24789, + "make_id": 24769, + "model_id": 24769, + "year_id": 24789, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24790, + "make_id": 24769, + "model_id": 24769, + "year_id": 24789, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24791, + "make_id": 24769, + "model_id": 24769, + "year_id": 24789, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24792, + "make_id": 24769, + "model_id": 24769, + "year_id": 24789, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24793, + "make_id": 24769, + "model_id": 24769, + "year_id": 24789, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24794, + "make_id": 24769, + "model_id": 24769, + "year_id": 24794, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24795, + "make_id": 24769, + "model_id": 24769, + "year_id": 24794, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24796, + "make_id": 24769, + "model_id": 24769, + "year_id": 24794, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24797, + "make_id": 24769, + "model_id": 24769, + "year_id": 24797, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24798, + "make_id": 24769, + "model_id": 24769, + "year_id": 24797, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24799, + "make_id": 24769, + "model_id": 24769, + "year_id": 24797, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24800, + "make_id": 24769, + "model_id": 24769, + "year_id": 24800, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24801, + "make_id": 24769, + "model_id": 24769, + "year_id": 24800, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24802, + "make_id": 24769, + "model_id": 24769, + "year_id": 24800, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24803, + "make_id": 24769, + "model_id": 24769, + "year_id": 24803, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24804, + "make_id": 24769, + "model_id": 24769, + "year_id": 24803, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24805, + "make_id": 24769, + "model_id": 24769, + "year_id": 24803, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24806, + "make_id": 24769, + "model_id": 24806, + "year_id": 24806, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24807, + "make_id": 24769, + "model_id": 24806, + "year_id": 24806, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24808, + "make_id": 24769, + "model_id": 24806, + "year_id": 24806, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24809, + "make_id": 24769, + "model_id": 24806, + "year_id": 24806, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 24810, + "make_id": 24769, + "model_id": 24806, + "year_id": 24806, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 24811, + "make_id": 24769, + "model_id": 24806, + "year_id": 24806, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24812, + "make_id": 24769, + "model_id": 24806, + "year_id": 24806, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24813, + "make_id": 24769, + "model_id": 24806, + "year_id": 24806, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24814, + "make_id": 24769, + "model_id": 24806, + "year_id": 24806, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 24815, + "make_id": 24769, + "model_id": 24806, + "year_id": 24806, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 24816, + "make_id": 24769, + "model_id": 24806, + "year_id": 24816, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24817, + "make_id": 24769, + "model_id": 24806, + "year_id": 24816, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24818, + "make_id": 24769, + "model_id": 24806, + "year_id": 24816, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24819, + "make_id": 24769, + "model_id": 24806, + "year_id": 24816, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24820, + "make_id": 24769, + "model_id": 24806, + "year_id": 24816, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24821, + "make_id": 24769, + "model_id": 24806, + "year_id": 24816, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24822, + "make_id": 24769, + "model_id": 24806, + "year_id": 24822, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24823, + "make_id": 24769, + "model_id": 24806, + "year_id": 24822, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24824, + "make_id": 24769, + "model_id": 24806, + "year_id": 24822, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24825, + "make_id": 24769, + "model_id": 24806, + "year_id": 24822, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24826, + "make_id": 24769, + "model_id": 24806, + "year_id": 24822, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24827, + "make_id": 24769, + "model_id": 24806, + "year_id": 24827, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24828, + "make_id": 24769, + "model_id": 24806, + "year_id": 24827, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24829, + "make_id": 24769, + "model_id": 24806, + "year_id": 24829, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24830, + "make_id": 24769, + "model_id": 24806, + "year_id": 24829, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24831, + "make_id": 24769, + "model_id": 24806, + "year_id": 24831, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24832, + "make_id": 24769, + "model_id": 24806, + "year_id": 24831, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24833, + "make_id": 24769, + "model_id": 24806, + "year_id": 24831, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24834, + "make_id": 24769, + "model_id": 24806, + "year_id": 24834, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24835, + "make_id": 24769, + "model_id": 24806, + "year_id": 24834, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24836, + "make_id": 24769, + "model_id": 24806, + "year_id": 24834, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24837, + "make_id": 24769, + "model_id": 24806, + "year_id": 24837, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24838, + "make_id": 24769, + "model_id": 24806, + "year_id": 24837, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24839, + "make_id": 24769, + "model_id": 24806, + "year_id": 24839, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24840, + "make_id": 24769, + "model_id": 24806, + "year_id": 24839, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24841, + "make_id": 24769, + "model_id": 24806, + "year_id": 24841, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24842, + "make_id": 24769, + "model_id": 24806, + "year_id": 24841, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24843, + "make_id": 24769, + "model_id": 24806, + "year_id": 24843, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24844, + "make_id": 24769, + "model_id": 24806, + "year_id": 24843, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24845, + "make_id": 24769, + "model_id": 24806, + "year_id": 24845, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24846, + "make_id": 24769, + "model_id": 24806, + "year_id": 24845, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24847, + "make_id": 24769, + "model_id": 24806, + "year_id": 24847, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24848, + "make_id": 24769, + "model_id": 24806, + "year_id": 24847, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24849, + "make_id": 24769, + "model_id": 24806, + "year_id": 24849, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24850, + "make_id": 24769, + "model_id": 24806, + "year_id": 24849, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24851, + "make_id": 24769, + "model_id": 24806, + "year_id": 24851, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24852, + "make_id": 24769, + "model_id": 24806, + "year_id": 24851, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24853, + "make_id": 24769, + "model_id": 24806, + "year_id": 24851, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24854, + "make_id": 24769, + "model_id": 24806, + "year_id": 24851, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24855, + "make_id": 24769, + "model_id": 24806, + "year_id": 24855, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24856, + "make_id": 24769, + "model_id": 24806, + "year_id": 24855, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24857, + "make_id": 24769, + "model_id": 24806, + "year_id": 24855, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24858, + "make_id": 24769, + "model_id": 24806, + "year_id": 24858, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24859, + "make_id": 24769, + "model_id": 24806, + "year_id": 24858, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24860, + "make_id": 24769, + "model_id": 24806, + "year_id": 24858, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24861, + "make_id": 24769, + "model_id": 24806, + "year_id": 24861, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24862, + "make_id": 24769, + "model_id": 24806, + "year_id": 24861, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24863, + "make_id": 24769, + "model_id": 24806, + "year_id": 24861, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24864, + "make_id": 24769, + "model_id": 24864, + "year_id": 24864, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 24865, + "make_id": 24769, + "model_id": 24864, + "year_id": 24864, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 24866, + "make_id": 24769, + "model_id": 24864, + "year_id": 24866, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24867, + "make_id": 24769, + "model_id": 24864, + "year_id": 24867, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24868, + "make_id": 24769, + "model_id": 24864, + "year_id": 24868, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24869, + "make_id": 24769, + "model_id": 24864, + "year_id": 24869, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24870, + "make_id": 24769, + "model_id": 24864, + "year_id": 24870, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24871, + "make_id": 24769, + "model_id": 24864, + "year_id": 24871, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24872, + "make_id": 24769, + "model_id": 24864, + "year_id": 24872, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24873, + "make_id": 24769, + "model_id": 24864, + "year_id": 24873, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24874, + "make_id": 24769, + "model_id": 24864, + "year_id": 24873, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24875, + "make_id": 24769, + "model_id": 24864, + "year_id": 24875, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24876, + "make_id": 24769, + "model_id": 24864, + "year_id": 24876, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24877, + "make_id": 24769, + "model_id": 24864, + "year_id": 24877, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24878, + "make_id": 24769, + "model_id": 24864, + "year_id": 24878, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24879, + "make_id": 24769, + "model_id": 24864, + "year_id": 24879, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24880, + "make_id": 24769, + "model_id": 24864, + "year_id": 24880, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24881, + "make_id": 24769, + "model_id": 24864, + "year_id": 24881, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24882, + "make_id": 24769, + "model_id": 24864, + "year_id": 24882, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24883, + "make_id": 24769, + "model_id": 24864, + "year_id": 24883, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24884, + "make_id": 24769, + "model_id": 24864, + "year_id": 24884, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24885, + "make_id": 24769, + "model_id": 24864, + "year_id": 24885, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24886, + "make_id": 24769, + "model_id": 24864, + "year_id": 24886, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24887, + "make_id": 24769, + "model_id": 24864, + "year_id": 24887, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24888, + "make_id": 24769, + "model_id": 24864, + "year_id": 24888, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24889, + "make_id": 24769, + "model_id": 24864, + "year_id": 24888, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24890, + "make_id": 24769, + "model_id": 24864, + "year_id": 24890, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24891, + "make_id": 24769, + "model_id": 24864, + "year_id": 24890, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24892, + "make_id": 24769, + "model_id": 24864, + "year_id": 24892, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24893, + "make_id": 24769, + "model_id": 24864, + "year_id": 24893, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24894, + "make_id": 24769, + "model_id": 24864, + "year_id": 24894, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24895, + "make_id": 24769, + "model_id": 24864, + "year_id": 24895, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24896, + "make_id": 24769, + "model_id": 24896, + "year_id": 24896, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 24897, + "make_id": 24769, + "model_id": 24896, + "year_id": 24896, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 24898, + "make_id": 24769, + "model_id": 24896, + "year_id": 24898, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24899, + "make_id": 24769, + "model_id": 24896, + "year_id": 24899, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24900, + "make_id": 24769, + "model_id": 24896, + "year_id": 24900, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24901, + "make_id": 24769, + "model_id": 24896, + "year_id": 24901, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24902, + "make_id": 24769, + "model_id": 24896, + "year_id": 24902, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24903, + "make_id": 24769, + "model_id": 24896, + "year_id": 24903, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24904, + "make_id": 24769, + "model_id": 24896, + "year_id": 24904, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24905, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24906, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 24907, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 24908, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24909, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24910, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24911, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24912, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24913, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24914, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24915, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 24916, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24917, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24918, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24919, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24920, + "make_id": 24769, + "model_id": 24905, + "year_id": 24905, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24921, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24922, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24923, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24924, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24925, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24926, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24927, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24928, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24929, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24930, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24931, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24932, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24933, + "make_id": 24769, + "model_id": 24905, + "year_id": 24921, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24934, + "make_id": 24769, + "model_id": 24905, + "year_id": 24934, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24935, + "make_id": 24769, + "model_id": 24905, + "year_id": 24934, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24936, + "make_id": 24769, + "model_id": 24905, + "year_id": 24934, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24937, + "make_id": 24769, + "model_id": 24905, + "year_id": 24934, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24938, + "make_id": 24769, + "model_id": 24905, + "year_id": 24934, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24939, + "make_id": 24769, + "model_id": 24905, + "year_id": 24934, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24940, + "make_id": 24769, + "model_id": 24905, + "year_id": 24940, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24941, + "make_id": 24769, + "model_id": 24905, + "year_id": 24940, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24942, + "make_id": 24769, + "model_id": 24905, + "year_id": 24940, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24943, + "make_id": 24769, + "model_id": 24905, + "year_id": 24940, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24944, + "make_id": 24769, + "model_id": 24905, + "year_id": 24940, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24945, + "make_id": 24769, + "model_id": 24945, + "year_id": 24945, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24946, + "make_id": 24769, + "model_id": 24945, + "year_id": 24945, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 24947, + "make_id": 24769, + "model_id": 24945, + "year_id": 24945, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24948, + "make_id": 24769, + "model_id": 24945, + "year_id": 24945, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24949, + "make_id": 24769, + "model_id": 24945, + "year_id": 24945, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 24950, + "make_id": 24769, + "model_id": 24945, + "year_id": 24945, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 24951, + "make_id": 24769, + "model_id": 24945, + "year_id": 24945, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24952, + "make_id": 24769, + "model_id": 24945, + "year_id": 24945, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 24953, + "make_id": 24769, + "model_id": 24945, + "year_id": 24953, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24954, + "make_id": 24769, + "model_id": 24945, + "year_id": 24953, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24955, + "make_id": 24769, + "model_id": 24945, + "year_id": 24953, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24956, + "make_id": 24769, + "model_id": 24945, + "year_id": 24953, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24957, + "make_id": 24769, + "model_id": 24945, + "year_id": 24953, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24958, + "make_id": 24769, + "model_id": 24945, + "year_id": 24953, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24959, + "make_id": 24769, + "model_id": 24945, + "year_id": 24953, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24960, + "make_id": 24769, + "model_id": 24945, + "year_id": 24953, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24961, + "make_id": 24769, + "model_id": 24945, + "year_id": 24953, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24962, + "make_id": 24769, + "model_id": 24945, + "year_id": 24962, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24963, + "make_id": 24769, + "model_id": 24945, + "year_id": 24962, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24964, + "make_id": 24769, + "model_id": 24945, + "year_id": 24962, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24965, + "make_id": 24769, + "model_id": 24945, + "year_id": 24962, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24966, + "make_id": 24769, + "model_id": 24945, + "year_id": 24966, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 24967, + "make_id": 24769, + "model_id": 24945, + "year_id": 24966, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 24968, + "make_id": 24769, + "model_id": 24945, + "year_id": 24966, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 24969, + "make_id": 24769, + "model_id": 24969, + "year_id": 24969, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24970, + "make_id": 24769, + "model_id": 24969, + "year_id": 24970, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24971, + "make_id": 24769, + "model_id": 24971, + "year_id": 24971, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24972, + "make_id": 24769, + "model_id": 24971, + "year_id": 24971, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24973, + "make_id": 24769, + "model_id": 24971, + "year_id": 24971, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24974, + "make_id": 24769, + "model_id": 24971, + "year_id": 24971, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24975, + "make_id": 24769, + "model_id": 24971, + "year_id": 24975, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24976, + "make_id": 24769, + "model_id": 24971, + "year_id": 24975, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24977, + "make_id": 24769, + "model_id": 24971, + "year_id": 24975, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24978, + "make_id": 24769, + "model_id": 24971, + "year_id": 24975, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24979, + "make_id": 24769, + "model_id": 24971, + "year_id": 24979, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24980, + "make_id": 24769, + "model_id": 24971, + "year_id": 24979, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24981, + "make_id": 24769, + "model_id": 24971, + "year_id": 24979, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24982, + "make_id": 24769, + "model_id": 24971, + "year_id": 24979, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24983, + "make_id": 24769, + "model_id": 24971, + "year_id": 24983, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24984, + "make_id": 24769, + "model_id": 24971, + "year_id": 24983, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24985, + "make_id": 24769, + "model_id": 24971, + "year_id": 24983, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24986, + "make_id": 24769, + "model_id": 24971, + "year_id": 24983, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 24987, + "make_id": 24769, + "model_id": 24971, + "year_id": 24987, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24988, + "make_id": 24769, + "model_id": 24971, + "year_id": 24987, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24989, + "make_id": 24769, + "model_id": 24971, + "year_id": 24987, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24990, + "make_id": 24769, + "model_id": 24971, + "year_id": 24987, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24991, + "make_id": 24769, + "model_id": 24971, + "year_id": 24991, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24992, + "make_id": 24769, + "model_id": 24971, + "year_id": 24991, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24993, + "make_id": 24769, + "model_id": 24971, + "year_id": 24991, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24994, + "make_id": 24769, + "model_id": 24971, + "year_id": 24991, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24995, + "make_id": 24769, + "model_id": 24971, + "year_id": 24995, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24996, + "make_id": 24769, + "model_id": 24971, + "year_id": 24995, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24997, + "make_id": 24769, + "model_id": 24971, + "year_id": 24995, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24998, + "make_id": 24769, + "model_id": 24971, + "year_id": 24995, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 24999, + "make_id": 24769, + "model_id": 24999, + "year_id": 24999, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25000, + "make_id": 24769, + "model_id": 24999, + "year_id": 25000, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25001, + "make_id": 24769, + "model_id": 24999, + "year_id": 25001, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25002, + "make_id": 24769, + "model_id": 24999, + "year_id": 25001, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25003, + "make_id": 24769, + "model_id": 24999, + "year_id": 25003, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25004, + "make_id": 24769, + "model_id": 24999, + "year_id": 25003, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25005, + "make_id": 24769, + "model_id": 24999, + "year_id": 25005, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25006, + "make_id": 24769, + "model_id": 24999, + "year_id": 25005, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25007, + "make_id": 24769, + "model_id": 24999, + "year_id": 25007, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25008, + "make_id": 24769, + "model_id": 24999, + "year_id": 25007, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25009, + "make_id": 24769, + "model_id": 25009, + "year_id": 25009, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25010, + "make_id": 24769, + "model_id": 25009, + "year_id": 25009, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25011, + "make_id": 24769, + "model_id": 25009, + "year_id": 25009, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 25012, + "make_id": 24769, + "model_id": 25009, + "year_id": 25009, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25013, + "make_id": 24769, + "model_id": 25009, + "year_id": 25009, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 25014, + "make_id": 24769, + "model_id": 25009, + "year_id": 25009, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25015, + "make_id": 24769, + "model_id": 25009, + "year_id": 25009, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25016, + "make_id": 24769, + "model_id": 25009, + "year_id": 25009, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 25017, + "make_id": 24769, + "model_id": 25009, + "year_id": 25009, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 25018, + "make_id": 24769, + "model_id": 25009, + "year_id": 25018, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25019, + "make_id": 24769, + "model_id": 25009, + "year_id": 25018, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25020, + "make_id": 24769, + "model_id": 25009, + "year_id": 25018, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25021, + "make_id": 24769, + "model_id": 25009, + "year_id": 25018, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25022, + "make_id": 24769, + "model_id": 25009, + "year_id": 25018, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25023, + "make_id": 24769, + "model_id": 25009, + "year_id": 25023, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25024, + "make_id": 24769, + "model_id": 25009, + "year_id": 25023, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25025, + "make_id": 24769, + "model_id": 25025, + "year_id": 25025, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25026, + "make_id": 24769, + "model_id": 25025, + "year_id": 25025, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 25027, + "make_id": 24769, + "model_id": 25025, + "year_id": 25025, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25028, + "make_id": 24769, + "model_id": 25025, + "year_id": 25025, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25029, + "make_id": 24769, + "model_id": 25025, + "year_id": 25025, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 25030, + "make_id": 24769, + "model_id": 25025, + "year_id": 25030, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25031, + "make_id": 24769, + "model_id": 25025, + "year_id": 25030, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25032, + "make_id": 24769, + "model_id": 25025, + "year_id": 25032, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25033, + "make_id": 24769, + "model_id": 25033, + "year_id": 25033, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25034, + "make_id": 24769, + "model_id": 25033, + "year_id": 25033, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25035, + "make_id": 24769, + "model_id": 25033, + "year_id": 25033, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25036, + "make_id": 24769, + "model_id": 25033, + "year_id": 25036, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25037, + "make_id": 24769, + "model_id": 25033, + "year_id": 25036, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25038, + "make_id": 24769, + "model_id": 25033, + "year_id": 25036, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25039, + "make_id": 24769, + "model_id": 25033, + "year_id": 25036, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25040, + "make_id": 24769, + "model_id": 25033, + "year_id": 25040, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25041, + "make_id": 24769, + "model_id": 25033, + "year_id": 25040, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25042, + "make_id": 24769, + "model_id": 25033, + "year_id": 25040, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25043, + "make_id": 24769, + "model_id": 25033, + "year_id": 25040, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25044, + "make_id": 24769, + "model_id": 25033, + "year_id": 25044, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25045, + "make_id": 24769, + "model_id": 25033, + "year_id": 25044, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25046, + "make_id": 24769, + "model_id": 25033, + "year_id": 25044, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25047, + "make_id": 24769, + "model_id": 25033, + "year_id": 25044, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25048, + "make_id": 24769, + "model_id": 25033, + "year_id": 25048, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25049, + "make_id": 24769, + "model_id": 25033, + "year_id": 25048, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25050, + "make_id": 24769, + "model_id": 25033, + "year_id": 25048, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25051, + "make_id": 24769, + "model_id": 25033, + "year_id": 25048, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25052, + "make_id": 24769, + "model_id": 25033, + "year_id": 25052, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25053, + "make_id": 24769, + "model_id": 25033, + "year_id": 25052, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25054, + "make_id": 24769, + "model_id": 25033, + "year_id": 25052, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25055, + "make_id": 24769, + "model_id": 25033, + "year_id": 25052, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25056, + "make_id": 24769, + "model_id": 25056, + "year_id": 25056, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25057, + "make_id": 24769, + "model_id": 25056, + "year_id": 25057, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25058, + "make_id": 24769, + "model_id": 25058, + "year_id": 25058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25059, + "make_id": 24769, + "model_id": 25058, + "year_id": 25058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25060, + "make_id": 24769, + "model_id": 25058, + "year_id": 25060, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25061, + "make_id": 24769, + "model_id": 25061, + "year_id": 25061, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25062, + "make_id": 24769, + "model_id": 25061, + "year_id": 25061, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25063, + "make_id": 24769, + "model_id": 25061, + "year_id": 25061, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25064, + "make_id": 24769, + "model_id": 25061, + "year_id": 25064, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25065, + "make_id": 24769, + "model_id": 25061, + "year_id": 25064, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25066, + "make_id": 24769, + "model_id": 25061, + "year_id": 25064, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25067, + "make_id": 24769, + "model_id": 25061, + "year_id": 25067, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25068, + "make_id": 24769, + "model_id": 25061, + "year_id": 25067, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25069, + "make_id": 24769, + "model_id": 25069, + "year_id": 25069, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25070, + "make_id": 24769, + "model_id": 25069, + "year_id": 25070, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25071, + "make_id": 24769, + "model_id": 25069, + "year_id": 25071, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25072, + "make_id": 24769, + "model_id": 25069, + "year_id": 25072, + "cylinders": 6, + "displacement": 4.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25073, + "make_id": 24769, + "model_id": 25073, + "year_id": 25073, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25074, + "make_id": 24769, + "model_id": 25073, + "year_id": 25073, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25075, + "make_id": 24769, + "model_id": 25073, + "year_id": 25075, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25076, + "make_id": 24769, + "model_id": 25073, + "year_id": 25075, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25077, + "make_id": 24769, + "model_id": 25073, + "year_id": 25075, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25078, + "make_id": 24769, + "model_id": 25073, + "year_id": 25075, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25079, + "make_id": 24769, + "model_id": 25073, + "year_id": 25079, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25080, + "make_id": 24769, + "model_id": 25073, + "year_id": 25079, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25081, + "make_id": 24769, + "model_id": 25073, + "year_id": 25079, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25082, + "make_id": 24769, + "model_id": 25073, + "year_id": 25079, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25083, + "make_id": 24769, + "model_id": 25073, + "year_id": 25083, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25084, + "make_id": 24769, + "model_id": 25073, + "year_id": 25083, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25085, + "make_id": 24769, + "model_id": 25073, + "year_id": 25083, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25086, + "make_id": 24769, + "model_id": 25073, + "year_id": 25083, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25087, + "make_id": 24769, + "model_id": 25073, + "year_id": 25087, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25088, + "make_id": 24769, + "model_id": 25073, + "year_id": 25087, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25089, + "make_id": 24769, + "model_id": 25073, + "year_id": 25087, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25090, + "make_id": 24769, + "model_id": 25073, + "year_id": 25087, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25091, + "make_id": 24769, + "model_id": 25073, + "year_id": 25091, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25092, + "make_id": 24769, + "model_id": 25073, + "year_id": 25091, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25093, + "make_id": 24769, + "model_id": 25073, + "year_id": 25091, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25094, + "make_id": 24769, + "model_id": 25073, + "year_id": 25091, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25095, + "make_id": 24769, + "model_id": 25073, + "year_id": 25091, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25096, + "make_id": 24769, + "model_id": 25073, + "year_id": 25091, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25097, + "make_id": 24769, + "model_id": 25073, + "year_id": 25097, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25098, + "make_id": 24769, + "model_id": 25073, + "year_id": 25097, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25099, + "make_id": 24769, + "model_id": 25073, + "year_id": 25097, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25100, + "make_id": 24769, + "model_id": 25073, + "year_id": 25097, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25101, + "make_id": 24769, + "model_id": 25073, + "year_id": 25101, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25102, + "make_id": 24769, + "model_id": 25073, + "year_id": 25101, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25103, + "make_id": 24769, + "model_id": 25073, + "year_id": 25101, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25104, + "make_id": 24769, + "model_id": 25073, + "year_id": 25101, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25105, + "make_id": 24769, + "model_id": 25073, + "year_id": 25101, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25106, + "make_id": 24769, + "model_id": 25073, + "year_id": 25101, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25107, + "make_id": 24769, + "model_id": 25073, + "year_id": 25107, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25108, + "make_id": 24769, + "model_id": 25073, + "year_id": 25107, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25109, + "make_id": 24769, + "model_id": 25073, + "year_id": 25107, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25110, + "make_id": 24769, + "model_id": 25073, + "year_id": 25107, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25111, + "make_id": 24769, + "model_id": 25073, + "year_id": 25107, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25112, + "make_id": 24769, + "model_id": 25073, + "year_id": 25107, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25113, + "make_id": 24769, + "model_id": 25073, + "year_id": 25107, + "cylinders": 6, + "displacement": 4, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25114, + "make_id": 24769, + "model_id": 25073, + "year_id": 25114, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25115, + "make_id": 24769, + "model_id": 25073, + "year_id": 25114, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25116, + "make_id": 24769, + "model_id": 25073, + "year_id": 25114, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25117, + "make_id": 24769, + "model_id": 25073, + "year_id": 25114, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25118, + "make_id": 24769, + "model_id": 25073, + "year_id": 25118, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25119, + "make_id": 24769, + "model_id": 25073, + "year_id": 25118, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25120, + "make_id": 24769, + "model_id": 25073, + "year_id": 25118, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25121, + "make_id": 24769, + "model_id": 25073, + "year_id": 25118, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25122, + "make_id": 24769, + "model_id": 25073, + "year_id": 25122, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25123, + "make_id": 24769, + "model_id": 25073, + "year_id": 25122, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25124, + "make_id": 24769, + "model_id": 25073, + "year_id": 25122, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25125, + "make_id": 24769, + "model_id": 25073, + "year_id": 25122, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25126, + "make_id": 24769, + "model_id": 25073, + "year_id": 25126, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25127, + "make_id": 24769, + "model_id": 25073, + "year_id": 25126, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25128, + "make_id": 24769, + "model_id": 25073, + "year_id": 25126, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25129, + "make_id": 24769, + "model_id": 25073, + "year_id": 25126, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25130, + "make_id": 24769, + "model_id": 25073, + "year_id": 25130, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25131, + "make_id": 24769, + "model_id": 25073, + "year_id": 25130, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25132, + "make_id": 24769, + "model_id": 25073, + "year_id": 25130, + "cylinders": 8, + "displacement": 4.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25133, + "make_id": 24769, + "model_id": 25073, + "year_id": 25130, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25134, + "make_id": 24769, + "model_id": 25134, + "year_id": 25134, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25135, + "make_id": 24769, + "model_id": 25134, + "year_id": 25134, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25136, + "make_id": 24769, + "model_id": 25134, + "year_id": 25134, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25137, + "make_id": 24769, + "model_id": 25134, + "year_id": 25134, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25138, + "make_id": 24769, + "model_id": 25134, + "year_id": 25138, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25139, + "make_id": 24769, + "model_id": 25134, + "year_id": 25138, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25140, + "make_id": 24769, + "model_id": 25134, + "year_id": 25138, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25141, + "make_id": 24769, + "model_id": 25134, + "year_id": 25138, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25142, + "make_id": 24769, + "model_id": 25134, + "year_id": 25142, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25143, + "make_id": 24769, + "model_id": 25134, + "year_id": 25142, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25144, + "make_id": 24769, + "model_id": 25134, + "year_id": 25142, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25145, + "make_id": 24769, + "model_id": 25134, + "year_id": 25142, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25146, + "make_id": 24769, + "model_id": 25134, + "year_id": 25146, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25147, + "make_id": 24769, + "model_id": 25134, + "year_id": 25146, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25148, + "make_id": 24769, + "model_id": 25134, + "year_id": 25146, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25149, + "make_id": 24769, + "model_id": 25134, + "year_id": 25146, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25150, + "make_id": 24769, + "model_id": 25134, + "year_id": 25150, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25151, + "make_id": 24769, + "model_id": 25134, + "year_id": 25150, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25152, + "make_id": 24769, + "model_id": 25134, + "year_id": 25150, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25153, + "make_id": 24769, + "model_id": 25134, + "year_id": 25150, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25154, + "make_id": 24769, + "model_id": 25134, + "year_id": 25154, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25155, + "make_id": 24769, + "model_id": 25134, + "year_id": 25154, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25156, + "make_id": 24769, + "model_id": 25134, + "year_id": 25154, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25157, + "make_id": 24769, + "model_id": 25134, + "year_id": 25154, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25158, + "make_id": 24769, + "model_id": 25158, + "year_id": 25158, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25159, + "make_id": 24769, + "model_id": 25158, + "year_id": 25158, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25160, + "make_id": 24769, + "model_id": 25158, + "year_id": 25160, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25161, + "make_id": 24769, + "model_id": 25158, + "year_id": 25161, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25162, + "make_id": 24769, + "model_id": 25158, + "year_id": 25161, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25163, + "make_id": 24769, + "model_id": 25158, + "year_id": 25163, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25164, + "make_id": 24769, + "model_id": 25158, + "year_id": 25163, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25165, + "make_id": 24769, + "model_id": 25158, + "year_id": 25165, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25166, + "make_id": 24769, + "model_id": 25158, + "year_id": 25165, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25167, + "make_id": 24769, + "model_id": 25158, + "year_id": 25167, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25168, + "make_id": 24769, + "model_id": 25158, + "year_id": 25167, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25169, + "make_id": 24769, + "model_id": 25158, + "year_id": 25169, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25170, + "make_id": 24769, + "model_id": 25158, + "year_id": 25169, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25171, + "make_id": 24769, + "model_id": 25158, + "year_id": 25171, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25172, + "make_id": 24769, + "model_id": 25158, + "year_id": 25171, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25173, + "make_id": 24769, + "model_id": 25158, + "year_id": 25173, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25174, + "make_id": 24769, + "model_id": 25158, + "year_id": 25173, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25175, + "make_id": 24769, + "model_id": 25158, + "year_id": 25175, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25176, + "make_id": 24769, + "model_id": 25158, + "year_id": 25175, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25177, + "make_id": 24769, + "model_id": 25158, + "year_id": 25177, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25178, + "make_id": 24769, + "model_id": 25158, + "year_id": 25177, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25179, + "make_id": 24769, + "model_id": 25158, + "year_id": 25179, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25180, + "make_id": 24769, + "model_id": 25158, + "year_id": 25179, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25181, + "make_id": 24769, + "model_id": 25158, + "year_id": 25181, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25182, + "make_id": 24769, + "model_id": 25158, + "year_id": 25181, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25183, + "make_id": 24769, + "model_id": 25158, + "year_id": 25183, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25184, + "make_id": 24769, + "model_id": 25158, + "year_id": 25183, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25185, + "make_id": 24769, + "model_id": 25158, + "year_id": 25185, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25186, + "make_id": 24769, + "model_id": 25158, + "year_id": 25185, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25187, + "make_id": 24769, + "model_id": 25158, + "year_id": 25187, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25188, + "make_id": 24769, + "model_id": 25158, + "year_id": 25187, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25189, + "make_id": 24769, + "model_id": 25158, + "year_id": 25189, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25190, + "make_id": 24769, + "model_id": 25158, + "year_id": 25189, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25191, + "make_id": 24769, + "model_id": 25158, + "year_id": 25189, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25192, + "make_id": 24769, + "model_id": 25158, + "year_id": 25192, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25193, + "make_id": 24769, + "model_id": 25158, + "year_id": 25192, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25194, + "make_id": 24769, + "model_id": 25158, + "year_id": 25192, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25195, + "make_id": 24769, + "model_id": 25158, + "year_id": 25195, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25196, + "make_id": 24769, + "model_id": 25158, + "year_id": 25195, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25197, + "make_id": 24769, + "model_id": 25158, + "year_id": 25195, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25198, + "make_id": 24769, + "model_id": 25158, + "year_id": 25198, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25199, + "make_id": 24769, + "model_id": 25158, + "year_id": 25198, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25200, + "make_id": 24769, + "model_id": 25158, + "year_id": 25198, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25201, + "make_id": 24769, + "model_id": 25158, + "year_id": 25201, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25202, + "make_id": 24769, + "model_id": 25158, + "year_id": 25201, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25203, + "make_id": 24769, + "model_id": 25158, + "year_id": 25203, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25204, + "make_id": 24769, + "model_id": 25158, + "year_id": 25203, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25205, + "make_id": 24769, + "model_id": 25205, + "year_id": 25205, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25206, + "make_id": 24769, + "model_id": 25206, + "year_id": 25206, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25207, + "make_id": 24769, + "model_id": 25206, + "year_id": 25206, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25208, + "make_id": 24769, + "model_id": 25206, + "year_id": 25208, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25209, + "make_id": 24769, + "model_id": 25206, + "year_id": 25209, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25210, + "make_id": 24769, + "model_id": 25206, + "year_id": 25210, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25211, + "make_id": 24769, + "model_id": 25206, + "year_id": 25210, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25212, + "make_id": 24769, + "model_id": 25206, + "year_id": 25212, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25213, + "make_id": 24769, + "model_id": 25206, + "year_id": 25212, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25214, + "make_id": 24769, + "model_id": 25206, + "year_id": 25214, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25215, + "make_id": 24769, + "model_id": 25206, + "year_id": 25214, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25216, + "make_id": 24769, + "model_id": 25206, + "year_id": 25216, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25217, + "make_id": 24769, + "model_id": 25206, + "year_id": 25216, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25218, + "make_id": 24769, + "model_id": 25206, + "year_id": 25218, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25219, + "make_id": 24769, + "model_id": 25206, + "year_id": 25218, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25220, + "make_id": 24769, + "model_id": 25206, + "year_id": 25220, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25221, + "make_id": 24769, + "model_id": 25206, + "year_id": 25220, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25222, + "make_id": 24769, + "model_id": 25206, + "year_id": 25222, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25223, + "make_id": 24769, + "model_id": 25206, + "year_id": 25222, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25224, + "make_id": 24769, + "model_id": 25206, + "year_id": 25224, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25225, + "make_id": 24769, + "model_id": 25206, + "year_id": 25224, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25226, + "make_id": 24769, + "model_id": 25206, + "year_id": 25226, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25227, + "make_id": 24769, + "model_id": 25206, + "year_id": 25226, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25228, + "make_id": 24769, + "model_id": 25206, + "year_id": 25228, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25229, + "make_id": 24769, + "model_id": 25206, + "year_id": 25228, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25230, + "make_id": 24769, + "model_id": 25206, + "year_id": 25230, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25231, + "make_id": 24769, + "model_id": 25206, + "year_id": 25230, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25232, + "make_id": 24769, + "model_id": 25206, + "year_id": 25232, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25233, + "make_id": 24769, + "model_id": 25206, + "year_id": 25232, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25234, + "make_id": 24769, + "model_id": 25206, + "year_id": 25234, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25235, + "make_id": 24769, + "model_id": 25206, + "year_id": 25234, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25236, + "make_id": 24769, + "model_id": 25206, + "year_id": 25236, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25237, + "make_id": 24769, + "model_id": 25206, + "year_id": 25236, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25238, + "make_id": 24769, + "model_id": 25206, + "year_id": 25236, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25239, + "make_id": 24769, + "model_id": 25206, + "year_id": 25239, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25240, + "make_id": 24769, + "model_id": 25206, + "year_id": 25239, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25241, + "make_id": 24769, + "model_id": 25206, + "year_id": 25239, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25242, + "make_id": 24769, + "model_id": 25206, + "year_id": 25242, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25243, + "make_id": 24769, + "model_id": 25206, + "year_id": 25242, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25244, + "make_id": 24769, + "model_id": 25206, + "year_id": 25242, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25245, + "make_id": 24769, + "model_id": 25206, + "year_id": 25245, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25246, + "make_id": 24769, + "model_id": 25206, + "year_id": 25245, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25247, + "make_id": 24769, + "model_id": 25206, + "year_id": 25245, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25248, + "make_id": 24769, + "model_id": 25248, + "year_id": 25248, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25249, + "make_id": 24769, + "model_id": 25249, + "year_id": 25249, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25250, + "make_id": 24769, + "model_id": 25250, + "year_id": 25250, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25251, + "make_id": 24769, + "model_id": 25250, + "year_id": 25250, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25252, + "make_id": 24769, + "model_id": 25250, + "year_id": 25250, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25253, + "make_id": 24769, + "model_id": 25250, + "year_id": 25253, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25254, + "make_id": 24769, + "model_id": 25250, + "year_id": 25253, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25255, + "make_id": 24769, + "model_id": 25250, + "year_id": 25255, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25256, + "make_id": 24769, + "model_id": 25256, + "year_id": 25256, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 25257, + "make_id": 24769, + "model_id": 25256, + "year_id": 25256, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25258, + "make_id": 24769, + "model_id": 25256, + "year_id": 25256, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25259, + "make_id": 24769, + "model_id": 25256, + "year_id": 25256, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 25260, + "make_id": 24769, + "model_id": 25256, + "year_id": 25256, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 25261, + "make_id": 24769, + "model_id": 25256, + "year_id": 25256, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25262, + "make_id": 24769, + "model_id": 25256, + "year_id": 25256, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 25263, + "make_id": 24769, + "model_id": 25256, + "year_id": 25263, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25264, + "make_id": 24769, + "model_id": 25256, + "year_id": 25263, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25265, + "make_id": 24769, + "model_id": 25256, + "year_id": 25263, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25266, + "make_id": 24769, + "model_id": 25256, + "year_id": 25263, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25267, + "make_id": 24769, + "model_id": 25256, + "year_id": 25263, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25268, + "make_id": 24769, + "model_id": 25256, + "year_id": 25263, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25269, + "make_id": 24769, + "model_id": 25256, + "year_id": 25263, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25270, + "make_id": 24769, + "model_id": 25256, + "year_id": 25270, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25271, + "make_id": 24769, + "model_id": 25256, + "year_id": 25270, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25272, + "make_id": 24769, + "model_id": 25256, + "year_id": 25270, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25273, + "make_id": 24769, + "model_id": 25256, + "year_id": 25270, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25274, + "make_id": 24769, + "model_id": 25256, + "year_id": 25274, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25275, + "make_id": 24769, + "model_id": 25256, + "year_id": 25274, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25276, + "make_id": 24769, + "model_id": 25256, + "year_id": 25274, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25277, + "make_id": 24769, + "model_id": 25256, + "year_id": 25274, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25278, + "make_id": 24769, + "model_id": 25256, + "year_id": 25278, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25279, + "make_id": 24769, + "model_id": 25256, + "year_id": 25278, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25280, + "make_id": 24769, + "model_id": 25256, + "year_id": 25278, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25281, + "make_id": 24769, + "model_id": 25256, + "year_id": 25278, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25282, + "make_id": 24769, + "model_id": 25256, + "year_id": 25282, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25283, + "make_id": 24769, + "model_id": 25256, + "year_id": 25282, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25284, + "make_id": 24769, + "model_id": 25256, + "year_id": 25282, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25285, + "make_id": 24769, + "model_id": 25256, + "year_id": 25282, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25286, + "make_id": 24769, + "model_id": 25256, + "year_id": 25286, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25287, + "make_id": 24769, + "model_id": 25256, + "year_id": 25286, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25288, + "make_id": 24769, + "model_id": 25256, + "year_id": 25286, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25289, + "make_id": 24769, + "model_id": 25256, + "year_id": 25286, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25290, + "make_id": 24769, + "model_id": 25256, + "year_id": 25290, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25291, + "make_id": 24769, + "model_id": 25256, + "year_id": 25290, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25292, + "make_id": 24769, + "model_id": 25256, + "year_id": 25290, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25293, + "make_id": 24769, + "model_id": 25256, + "year_id": 25290, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25294, + "make_id": 24769, + "model_id": 25256, + "year_id": 25294, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25295, + "make_id": 24769, + "model_id": 25256, + "year_id": 25294, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25296, + "make_id": 24769, + "model_id": 25256, + "year_id": 25294, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25297, + "make_id": 24769, + "model_id": 25256, + "year_id": 25294, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25298, + "make_id": 24769, + "model_id": 25256, + "year_id": 25298, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25299, + "make_id": 24769, + "model_id": 25256, + "year_id": 25298, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25300, + "make_id": 24769, + "model_id": 25256, + "year_id": 25298, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25301, + "make_id": 24769, + "model_id": 25256, + "year_id": 25298, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25302, + "make_id": 24769, + "model_id": 25256, + "year_id": 25302, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25303, + "make_id": 24769, + "model_id": 25256, + "year_id": 25302, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25304, + "make_id": 24769, + "model_id": 25256, + "year_id": 25302, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25305, + "make_id": 24769, + "model_id": 25256, + "year_id": 25302, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25306, + "make_id": 24769, + "model_id": 25306, + "year_id": 25306, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25307, + "make_id": 24769, + "model_id": 25306, + "year_id": 25306, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25308, + "make_id": 24769, + "model_id": 25306, + "year_id": 25308, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25309, + "make_id": 24769, + "model_id": 25306, + "year_id": 25308, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25310, + "make_id": 24769, + "model_id": 25306, + "year_id": 25310, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25311, + "make_id": 24769, + "model_id": 25306, + "year_id": 25310, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25312, + "make_id": 24769, + "model_id": 25306, + "year_id": 25310, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25313, + "make_id": 24769, + "model_id": 25306, + "year_id": 25310, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25314, + "make_id": 24769, + "model_id": 25306, + "year_id": 25314, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25315, + "make_id": 24769, + "model_id": 25306, + "year_id": 25314, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25316, + "make_id": 24769, + "model_id": 25306, + "year_id": 25314, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25317, + "make_id": 24769, + "model_id": 25306, + "year_id": 25314, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25318, + "make_id": 24769, + "model_id": 25306, + "year_id": 25318, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25319, + "make_id": 24769, + "model_id": 25306, + "year_id": 25318, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25320, + "make_id": 24769, + "model_id": 25306, + "year_id": 25318, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25321, + "make_id": 24769, + "model_id": 25306, + "year_id": 25318, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25322, + "make_id": 24769, + "model_id": 25306, + "year_id": 25322, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25323, + "make_id": 24769, + "model_id": 25306, + "year_id": 25322, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25324, + "make_id": 24769, + "model_id": 25306, + "year_id": 25322, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25325, + "make_id": 24769, + "model_id": 25306, + "year_id": 25322, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25326, + "make_id": 24769, + "model_id": 25306, + "year_id": 25326, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25327, + "make_id": 24769, + "model_id": 25306, + "year_id": 25326, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25328, + "make_id": 24769, + "model_id": 25306, + "year_id": 25326, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25329, + "make_id": 24769, + "model_id": 25306, + "year_id": 25326, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25330, + "make_id": 24769, + "model_id": 25306, + "year_id": 25330, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25331, + "make_id": 24769, + "model_id": 25306, + "year_id": 25330, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25332, + "make_id": 24769, + "model_id": 25306, + "year_id": 25330, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25333, + "make_id": 24769, + "model_id": 25306, + "year_id": 25330, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25334, + "make_id": 24769, + "model_id": 25306, + "year_id": 25334, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25335, + "make_id": 24769, + "model_id": 25306, + "year_id": 25334, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25336, + "make_id": 24769, + "model_id": 25306, + "year_id": 25336, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25337, + "make_id": 24769, + "model_id": 25306, + "year_id": 25336, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25338, + "make_id": 24769, + "model_id": 25306, + "year_id": 25338, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25339, + "make_id": 24769, + "model_id": 25306, + "year_id": 25338, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25340, + "make_id": 24769, + "model_id": 25340, + "year_id": 25340, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25341, + "make_id": 24769, + "model_id": 25340, + "year_id": 25340, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25342, + "make_id": 24769, + "model_id": 25340, + "year_id": 25342, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25343, + "make_id": 24769, + "model_id": 25340, + "year_id": 25342, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25344, + "make_id": 24769, + "model_id": 25340, + "year_id": 25344, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25345, + "make_id": 24769, + "model_id": 25340, + "year_id": 25344, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25346, + "make_id": 24769, + "model_id": 25340, + "year_id": 25346, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25347, + "make_id": 24769, + "model_id": 25340, + "year_id": 25346, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25348, + "make_id": 24769, + "model_id": 25340, + "year_id": 25348, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25349, + "make_id": 24769, + "model_id": 25340, + "year_id": 25348, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25350, + "make_id": 24769, + "model_id": 25340, + "year_id": 25350, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25351, + "make_id": 24769, + "model_id": 25340, + "year_id": 25350, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25352, + "make_id": 24769, + "model_id": 25340, + "year_id": 25352, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25353, + "make_id": 24769, + "model_id": 25340, + "year_id": 25352, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25354, + "make_id": 24769, + "model_id": 25340, + "year_id": 25354, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25355, + "make_id": 24769, + "model_id": 25340, + "year_id": 25354, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25356, + "make_id": 24769, + "model_id": 25340, + "year_id": 25356, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25357, + "make_id": 24769, + "model_id": 25340, + "year_id": 25356, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25358, + "make_id": 24769, + "model_id": 25340, + "year_id": 25358, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25359, + "make_id": 24769, + "model_id": 25340, + "year_id": 25358, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25360, + "make_id": 24769, + "model_id": 25340, + "year_id": 25360, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25361, + "make_id": 24769, + "model_id": 25340, + "year_id": 25360, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25362, + "make_id": 24769, + "model_id": 25362, + "year_id": 25362, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25363, + "make_id": 24769, + "model_id": 25362, + "year_id": 25363, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25364, + "make_id": 24769, + "model_id": 25362, + "year_id": 25364, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25365, + "make_id": 24769, + "model_id": 25362, + "year_id": 25365, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25366, + "make_id": 24769, + "model_id": 25362, + "year_id": 25366, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25367, + "make_id": 24769, + "model_id": 25362, + "year_id": 25367, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25368, + "make_id": 24769, + "model_id": 25368, + "year_id": 25368, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25369, + "make_id": 24769, + "model_id": 25368, + "year_id": 25369, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25370, + "make_id": 24769, + "model_id": 25368, + "year_id": 25370, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25371, + "make_id": 24769, + "model_id": 25368, + "year_id": 25371, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25372, + "make_id": 24769, + "model_id": 25368, + "year_id": 25372, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25373, + "make_id": 24769, + "model_id": 25368, + "year_id": 25373, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25374, + "make_id": 24769, + "model_id": 25368, + "year_id": 25374, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25375, + "make_id": 24769, + "model_id": 25368, + "year_id": 25375, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25376, + "make_id": 24769, + "model_id": 25368, + "year_id": 25376, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25377, + "make_id": 24769, + "model_id": 25368, + "year_id": 25377, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25378, + "make_id": 25378, + "model_id": 25378, + "year_id": 25378, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25379, + "make_id": 25378, + "model_id": 25378, + "year_id": 25378, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25380, + "make_id": 25378, + "model_id": 25378, + "year_id": 25380, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25381, + "make_id": 25378, + "model_id": 25378, + "year_id": 25380, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25382, + "make_id": 25378, + "model_id": 25382, + "year_id": 25382, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25383, + "make_id": 25378, + "model_id": 25382, + "year_id": 25382, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25384, + "make_id": 25378, + "model_id": 25382, + "year_id": 25384, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25385, + "make_id": 25378, + "model_id": 25382, + "year_id": 25384, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25386, + "make_id": 25378, + "model_id": 25382, + "year_id": 25386, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25387, + "make_id": 25378, + "model_id": 25382, + "year_id": 25386, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25388, + "make_id": 25378, + "model_id": 25382, + "year_id": 25388, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25389, + "make_id": 25378, + "model_id": 25382, + "year_id": 25388, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25390, + "make_id": 25378, + "model_id": 25382, + "year_id": 25390, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25391, + "make_id": 25378, + "model_id": 25382, + "year_id": 25390, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25392, + "make_id": 25392, + "model_id": 25392, + "year_id": 25392, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25393, + "make_id": 25392, + "model_id": 25392, + "year_id": 25392, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25394, + "make_id": 25392, + "model_id": 25392, + "year_id": 25394, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25395, + "make_id": 25392, + "model_id": 25392, + "year_id": 25394, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25396, + "make_id": 25392, + "model_id": 25392, + "year_id": 25396, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25397, + "make_id": 25392, + "model_id": 25392, + "year_id": 25396, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25398, + "make_id": 25392, + "model_id": 25392, + "year_id": 25398, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25399, + "make_id": 25392, + "model_id": 25392, + "year_id": 25398, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25400, + "make_id": 25392, + "model_id": 25400, + "year_id": 25400, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25401, + "make_id": 25392, + "model_id": 25400, + "year_id": 25400, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25402, + "make_id": 25392, + "model_id": 25400, + "year_id": 25402, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25403, + "make_id": 25392, + "model_id": 25400, + "year_id": 25402, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25404, + "make_id": 25392, + "model_id": 25400, + "year_id": 25404, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25405, + "make_id": 25392, + "model_id": 25400, + "year_id": 25404, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25406, + "make_id": 25392, + "model_id": 25406, + "year_id": 25406, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25407, + "make_id": 25392, + "model_id": 25406, + "year_id": 25407, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25408, + "make_id": 25392, + "model_id": 25406, + "year_id": 25407, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25409, + "make_id": 25392, + "model_id": 25406, + "year_id": 25409, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25410, + "make_id": 25392, + "model_id": 25406, + "year_id": 25409, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25411, + "make_id": 25392, + "model_id": 25406, + "year_id": 25411, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25412, + "make_id": 25392, + "model_id": 25406, + "year_id": 25411, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25413, + "make_id": 25392, + "model_id": 25406, + "year_id": 25413, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25414, + "make_id": 25392, + "model_id": 25406, + "year_id": 25413, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25415, + "make_id": 25392, + "model_id": 25406, + "year_id": 25415, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25416, + "make_id": 25392, + "model_id": 25406, + "year_id": 25415, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25417, + "make_id": 25392, + "model_id": 25406, + "year_id": 25417, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25418, + "make_id": 25392, + "model_id": 25406, + "year_id": 25417, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25419, + "make_id": 25392, + "model_id": 25406, + "year_id": 25419, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25420, + "make_id": 25392, + "model_id": 25406, + "year_id": 25419, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25421, + "make_id": 25392, + "model_id": 25406, + "year_id": 25421, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25422, + "make_id": 25392, + "model_id": 25406, + "year_id": 25421, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25423, + "make_id": 25392, + "model_id": 25406, + "year_id": 25423, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25424, + "make_id": 25392, + "model_id": 25406, + "year_id": 25423, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25425, + "make_id": 25392, + "model_id": 25406, + "year_id": 25425, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25426, + "make_id": 25392, + "model_id": 25406, + "year_id": 25425, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25427, + "make_id": 25392, + "model_id": 25406, + "year_id": 25427, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25428, + "make_id": 25392, + "model_id": 25406, + "year_id": 25427, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25429, + "make_id": 25392, + "model_id": 25429, + "year_id": 25429, + "cylinders": 3, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25430, + "make_id": 25392, + "model_id": 25429, + "year_id": 25429, + "cylinders": 3, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25431, + "make_id": 25392, + "model_id": 25429, + "year_id": 25431, + "cylinders": 3, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25432, + "make_id": 25392, + "model_id": 25429, + "year_id": 25431, + "cylinders": 3, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25433, + "make_id": 25392, + "model_id": 25433, + "year_id": 25433, + "cylinders": 3, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25434, + "make_id": 25392, + "model_id": 25433, + "year_id": 25433, + "cylinders": 3, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25435, + "make_id": 25392, + "model_id": 25435, + "year_id": 25435, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25436, + "make_id": 25392, + "model_id": 25435, + "year_id": 25435, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25437, + "make_id": 25392, + "model_id": 25435, + "year_id": 25437, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25438, + "make_id": 25392, + "model_id": 25435, + "year_id": 25437, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25439, + "make_id": 25392, + "model_id": 25435, + "year_id": 25439, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25440, + "make_id": 25392, + "model_id": 25435, + "year_id": 25439, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25441, + "make_id": 25392, + "model_id": 25435, + "year_id": 25441, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25442, + "make_id": 25392, + "model_id": 25435, + "year_id": 25441, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25443, + "make_id": 25392, + "model_id": 25443, + "year_id": 25443, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25444, + "make_id": 25392, + "model_id": 25443, + "year_id": 25443, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25445, + "make_id": 25392, + "model_id": 25443, + "year_id": 25445, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25446, + "make_id": 25392, + "model_id": 25443, + "year_id": 25445, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25447, + "make_id": 25392, + "model_id": 25447, + "year_id": 25447, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25448, + "make_id": 25392, + "model_id": 25447, + "year_id": 25447, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25449, + "make_id": 25392, + "model_id": 25447, + "year_id": 25449, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25450, + "make_id": 25392, + "model_id": 25447, + "year_id": 25449, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25451, + "make_id": 25392, + "model_id": 25447, + "year_id": 25451, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25452, + "make_id": 25392, + "model_id": 25447, + "year_id": 25451, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25453, + "make_id": 25392, + "model_id": 25447, + "year_id": 25453, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 25454, + "make_id": 25392, + "model_id": 25447, + "year_id": 25453, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25455, + "make_id": 25392, + "model_id": 25447, + "year_id": 25455, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25456, + "make_id": 25392, + "model_id": 25447, + "year_id": 25455, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25457, + "make_id": 25392, + "model_id": 25447, + "year_id": 25457, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25458, + "make_id": 25392, + "model_id": 25447, + "year_id": 25457, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25459, + "make_id": 25392, + "model_id": 25447, + "year_id": 25459, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25460, + "make_id": 25392, + "model_id": 25447, + "year_id": 25459, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25461, + "make_id": 25392, + "model_id": 25447, + "year_id": 25461, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25462, + "make_id": 25392, + "model_id": 25447, + "year_id": 25461, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25463, + "make_id": 25392, + "model_id": 25447, + "year_id": 25463, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25464, + "make_id": 25392, + "model_id": 25447, + "year_id": 25463, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25465, + "make_id": 25392, + "model_id": 25447, + "year_id": 25465, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25466, + "make_id": 25392, + "model_id": 25447, + "year_id": 25465, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25467, + "make_id": 25392, + "model_id": 25447, + "year_id": 25467, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25468, + "make_id": 25392, + "model_id": 25447, + "year_id": 25467, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25469, + "make_id": 25392, + "model_id": 25447, + "year_id": 25469, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25470, + "make_id": 25392, + "model_id": 25447, + "year_id": 25469, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25471, + "make_id": 25392, + "model_id": 25471, + "year_id": 25471, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25472, + "make_id": 25392, + "model_id": 25471, + "year_id": 25471, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25473, + "make_id": 25392, + "model_id": 25471, + "year_id": 25473, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25474, + "make_id": 25392, + "model_id": 25471, + "year_id": 25473, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25475, + "make_id": 25392, + "model_id": 25471, + "year_id": 25475, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25476, + "make_id": 25392, + "model_id": 25471, + "year_id": 25475, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25477, + "make_id": 25392, + "model_id": 25471, + "year_id": 25477, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25478, + "make_id": 25392, + "model_id": 25471, + "year_id": 25477, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25479, + "make_id": 25392, + "model_id": 25471, + "year_id": 25479, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25480, + "make_id": 25392, + "model_id": 25471, + "year_id": 25479, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25481, + "make_id": 25392, + "model_id": 25471, + "year_id": 25481, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25482, + "make_id": 25392, + "model_id": 25471, + "year_id": 25481, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25483, + "make_id": 25392, + "model_id": 25483, + "year_id": 25483, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25484, + "make_id": 25392, + "model_id": 25483, + "year_id": 25483, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25485, + "make_id": 25392, + "model_id": 25485, + "year_id": 25485, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25486, + "make_id": 25392, + "model_id": 25485, + "year_id": 25485, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25487, + "make_id": 25392, + "model_id": 25485, + "year_id": 25487, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25488, + "make_id": 25392, + "model_id": 25485, + "year_id": 25487, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25489, + "make_id": 25392, + "model_id": 25485, + "year_id": 25489, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25490, + "make_id": 25392, + "model_id": 25485, + "year_id": 25489, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25491, + "make_id": 25392, + "model_id": 25485, + "year_id": 25491, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25492, + "make_id": 25392, + "model_id": 25485, + "year_id": 25491, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25493, + "make_id": 25392, + "model_id": 25493, + "year_id": 25493, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25494, + "make_id": 25392, + "model_id": 25493, + "year_id": 25493, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25495, + "make_id": 25392, + "model_id": 25495, + "year_id": 25495, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25496, + "make_id": 25392, + "model_id": 25495, + "year_id": 25495, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25497, + "make_id": 25392, + "model_id": 25497, + "year_id": 25497, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25498, + "make_id": 25392, + "model_id": 25497, + "year_id": 25497, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25499, + "make_id": 25392, + "model_id": 25497, + "year_id": 25499, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25500, + "make_id": 25392, + "model_id": 25497, + "year_id": 25499, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25501, + "make_id": 25392, + "model_id": 25497, + "year_id": 25501, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25502, + "make_id": 25392, + "model_id": 25497, + "year_id": 25501, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25503, + "make_id": 25392, + "model_id": 25503, + "year_id": 25503, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25504, + "make_id": 25392, + "model_id": 25503, + "year_id": 25503, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25505, + "make_id": 25392, + "model_id": 25503, + "year_id": 25505, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25506, + "make_id": 25392, + "model_id": 25503, + "year_id": 25505, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25507, + "make_id": 25392, + "model_id": 25503, + "year_id": 25507, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25508, + "make_id": 25392, + "model_id": 25503, + "year_id": 25507, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25509, + "make_id": 25392, + "model_id": 25503, + "year_id": 25509, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25510, + "make_id": 25392, + "model_id": 25503, + "year_id": 25509, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25511, + "make_id": 25392, + "model_id": 25511, + "year_id": 25511, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25512, + "make_id": 25392, + "model_id": 25511, + "year_id": 25512, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25513, + "make_id": 25392, + "model_id": 25511, + "year_id": 25513, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25514, + "make_id": 25392, + "model_id": 25511, + "year_id": 25513, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25515, + "make_id": 25392, + "model_id": 25511, + "year_id": 25515, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25516, + "make_id": 25392, + "model_id": 25511, + "year_id": 25515, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25517, + "make_id": 25392, + "model_id": 25511, + "year_id": 25517, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25518, + "make_id": 25392, + "model_id": 25511, + "year_id": 25517, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25519, + "make_id": 25392, + "model_id": 25511, + "year_id": 25519, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25520, + "make_id": 25392, + "model_id": 25511, + "year_id": 25519, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25521, + "make_id": 25392, + "model_id": 25511, + "year_id": 25521, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25522, + "make_id": 25392, + "model_id": 25511, + "year_id": 25521, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25523, + "make_id": 25392, + "model_id": 25511, + "year_id": 25523, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25524, + "make_id": 25392, + "model_id": 25511, + "year_id": 25523, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25525, + "make_id": 25392, + "model_id": 25511, + "year_id": 25525, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25526, + "make_id": 25392, + "model_id": 25511, + "year_id": 25525, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25527, + "make_id": 25392, + "model_id": 25511, + "year_id": 25527, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25528, + "make_id": 25392, + "model_id": 25511, + "year_id": 25527, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25529, + "make_id": 25392, + "model_id": 25511, + "year_id": 25529, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25530, + "make_id": 25392, + "model_id": 25511, + "year_id": 25529, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25531, + "make_id": 25392, + "model_id": 25531, + "year_id": 25531, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25532, + "make_id": 25392, + "model_id": 25531, + "year_id": 25531, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25533, + "make_id": 25392, + "model_id": 25531, + "year_id": 25533, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25534, + "make_id": 25392, + "model_id": 25531, + "year_id": 25533, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25535, + "make_id": 25392, + "model_id": 25535, + "year_id": 25535, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25536, + "make_id": 25392, + "model_id": 25535, + "year_id": 25535, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25537, + "make_id": 25392, + "model_id": 25537, + "year_id": 25537, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25538, + "make_id": 25392, + "model_id": 25537, + "year_id": 25537, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25539, + "make_id": 25392, + "model_id": 25537, + "year_id": 25539, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25540, + "make_id": 25392, + "model_id": 25537, + "year_id": 25539, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25541, + "make_id": 25392, + "model_id": 25537, + "year_id": 25541, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25542, + "make_id": 25392, + "model_id": 25537, + "year_id": 25541, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25543, + "make_id": 25392, + "model_id": 25537, + "year_id": 25543, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25544, + "make_id": 25392, + "model_id": 25537, + "year_id": 25543, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25545, + "make_id": 25392, + "model_id": 25537, + "year_id": 25545, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 25546, + "make_id": 25392, + "model_id": 25537, + "year_id": 25545, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25547, + "make_id": 25392, + "model_id": 25547, + "year_id": 25547, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 25548, + "make_id": 25392, + "model_id": 25547, + "year_id": 25547, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25549, + "make_id": 25392, + "model_id": 25549, + "year_id": 25549, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25550, + "make_id": 25392, + "model_id": 25549, + "year_id": 25549, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25551, + "make_id": 25392, + "model_id": 25549, + "year_id": 25551, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25552, + "make_id": 25392, + "model_id": 25549, + "year_id": 25551, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25553, + "make_id": 25392, + "model_id": 25549, + "year_id": 25553, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25554, + "make_id": 25392, + "model_id": 25549, + "year_id": 25553, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25555, + "make_id": 25392, + "model_id": 25549, + "year_id": 25555, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25556, + "make_id": 25392, + "model_id": 25549, + "year_id": 25555, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25557, + "make_id": 25392, + "model_id": 25549, + "year_id": 25557, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25558, + "make_id": 25392, + "model_id": 25549, + "year_id": 25557, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25559, + "make_id": 25392, + "model_id": 25549, + "year_id": 25559, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25560, + "make_id": 25392, + "model_id": 25549, + "year_id": 25559, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25561, + "make_id": 25392, + "model_id": 25549, + "year_id": 25561, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25562, + "make_id": 25392, + "model_id": 25549, + "year_id": 25561, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25563, + "make_id": 25392, + "model_id": 25549, + "year_id": 25563, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25564, + "make_id": 25392, + "model_id": 25549, + "year_id": 25563, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25565, + "make_id": 25392, + "model_id": 25549, + "year_id": 25565, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25566, + "make_id": 25392, + "model_id": 25549, + "year_id": 25565, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25567, + "make_id": 25392, + "model_id": 25549, + "year_id": 25567, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25568, + "make_id": 25392, + "model_id": 25549, + "year_id": 25567, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25569, + "make_id": 25392, + "model_id": 25549, + "year_id": 25569, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25570, + "make_id": 25392, + "model_id": 25549, + "year_id": 25569, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25571, + "make_id": 25392, + "model_id": 25549, + "year_id": 25571, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25572, + "make_id": 25392, + "model_id": 25549, + "year_id": 25571, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25573, + "make_id": 25392, + "model_id": 25573, + "year_id": 25573, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25574, + "make_id": 25392, + "model_id": 25573, + "year_id": 25573, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25575, + "make_id": 25392, + "model_id": 25573, + "year_id": 25575, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25576, + "make_id": 25392, + "model_id": 25573, + "year_id": 25575, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25577, + "make_id": 25392, + "model_id": 25573, + "year_id": 25577, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25578, + "make_id": 25392, + "model_id": 25573, + "year_id": 25577, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25579, + "make_id": 25392, + "model_id": 25573, + "year_id": 25579, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25580, + "make_id": 25392, + "model_id": 25573, + "year_id": 25579, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25581, + "make_id": 25392, + "model_id": 25573, + "year_id": 25581, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25582, + "make_id": 25392, + "model_id": 25573, + "year_id": 25581, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25583, + "make_id": 25392, + "model_id": 25573, + "year_id": 25583, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25584, + "make_id": 25392, + "model_id": 25573, + "year_id": 25583, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25585, + "make_id": 25392, + "model_id": 25585, + "year_id": 25585, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25586, + "make_id": 25392, + "model_id": 25585, + "year_id": 25585, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25587, + "make_id": 25392, + "model_id": 25585, + "year_id": 25587, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25588, + "make_id": 25392, + "model_id": 25585, + "year_id": 25587, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25589, + "make_id": 25392, + "model_id": 25585, + "year_id": 25589, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25590, + "make_id": 25392, + "model_id": 25585, + "year_id": 25589, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25591, + "make_id": 25392, + "model_id": 25585, + "year_id": 25591, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25592, + "make_id": 25392, + "model_id": 25585, + "year_id": 25591, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25593, + "make_id": 25392, + "model_id": 25585, + "year_id": 25593, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25594, + "make_id": 25392, + "model_id": 25585, + "year_id": 25593, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25595, + "make_id": 25392, + "model_id": 25585, + "year_id": 25595, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25596, + "make_id": 25392, + "model_id": 25585, + "year_id": 25595, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25597, + "make_id": 25392, + "model_id": 25597, + "year_id": 25597, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25598, + "make_id": 25392, + "model_id": 25597, + "year_id": 25597, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25599, + "make_id": 25392, + "model_id": 25599, + "year_id": 25599, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25600, + "make_id": 25392, + "model_id": 25599, + "year_id": 25599, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25601, + "make_id": 25392, + "model_id": 25601, + "year_id": 25601, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25602, + "make_id": 25392, + "model_id": 25601, + "year_id": 25601, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25603, + "make_id": 25392, + "model_id": 25601, + "year_id": 25603, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25604, + "make_id": 25392, + "model_id": 25601, + "year_id": 25603, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25605, + "make_id": 25392, + "model_id": 25601, + "year_id": 25605, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25606, + "make_id": 25392, + "model_id": 25601, + "year_id": 25605, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25607, + "make_id": 25392, + "model_id": 25601, + "year_id": 25607, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25608, + "make_id": 25392, + "model_id": 25601, + "year_id": 25607, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25609, + "make_id": 25392, + "model_id": 25609, + "year_id": 25609, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25610, + "make_id": 25392, + "model_id": 25609, + "year_id": 25609, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25611, + "make_id": 25392, + "model_id": 25611, + "year_id": 25611, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25612, + "make_id": 25392, + "model_id": 25611, + "year_id": 25611, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25613, + "make_id": 25392, + "model_id": 25613, + "year_id": 25613, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25614, + "make_id": 25392, + "model_id": 25614, + "year_id": 25614, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25615, + "make_id": 25392, + "model_id": 25614, + "year_id": 25614, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25616, + "make_id": 25392, + "model_id": 25614, + "year_id": 25616, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25617, + "make_id": 25392, + "model_id": 25614, + "year_id": 25616, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25618, + "make_id": 25392, + "model_id": 25614, + "year_id": 25618, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25619, + "make_id": 25392, + "model_id": 25614, + "year_id": 25618, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25620, + "make_id": 25392, + "model_id": 25620, + "year_id": 25620, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25621, + "make_id": 25392, + "model_id": 25620, + "year_id": 25620, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25622, + "make_id": 25392, + "model_id": 25620, + "year_id": 25622, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25623, + "make_id": 25392, + "model_id": 25620, + "year_id": 25622, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25624, + "make_id": 25392, + "model_id": 25620, + "year_id": 25624, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25625, + "make_id": 25392, + "model_id": 25620, + "year_id": 25624, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25626, + "make_id": 25392, + "model_id": 25626, + "year_id": 25626, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25627, + "make_id": 25392, + "model_id": 25626, + "year_id": 25626, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25628, + "make_id": 25392, + "model_id": 25626, + "year_id": 25628, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25629, + "make_id": 25392, + "model_id": 25626, + "year_id": 25628, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25630, + "make_id": 25392, + "model_id": 25626, + "year_id": 25630, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25631, + "make_id": 25392, + "model_id": 25626, + "year_id": 25630, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25632, + "make_id": 25392, + "model_id": 25626, + "year_id": 25632, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25633, + "make_id": 25392, + "model_id": 25626, + "year_id": 25632, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25634, + "make_id": 25392, + "model_id": 25634, + "year_id": 25634, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25635, + "make_id": 25392, + "model_id": 25634, + "year_id": 25634, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25636, + "make_id": 25392, + "model_id": 25634, + "year_id": 25636, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25637, + "make_id": 25392, + "model_id": 25634, + "year_id": 25636, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25638, + "make_id": 25392, + "model_id": 25634, + "year_id": 25638, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25639, + "make_id": 25392, + "model_id": 25634, + "year_id": 25638, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25640, + "make_id": 25392, + "model_id": 25634, + "year_id": 25640, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25641, + "make_id": 25392, + "model_id": 25634, + "year_id": 25640, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25642, + "make_id": 25392, + "model_id": 25642, + "year_id": 25642, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25643, + "make_id": 25392, + "model_id": 25642, + "year_id": 25642, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25644, + "make_id": 25392, + "model_id": 25644, + "year_id": 25644, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25645, + "make_id": 25392, + "model_id": 25644, + "year_id": 25644, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25646, + "make_id": 25392, + "model_id": 25644, + "year_id": 25646, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25647, + "make_id": 25392, + "model_id": 25644, + "year_id": 25646, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25648, + "make_id": 25392, + "model_id": 25644, + "year_id": 25648, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25649, + "make_id": 25392, + "model_id": 25644, + "year_id": 25648, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25650, + "make_id": 25392, + "model_id": 25650, + "year_id": 25650, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25651, + "make_id": 25392, + "model_id": 25650, + "year_id": 25651, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25652, + "make_id": 25392, + "model_id": 25650, + "year_id": 25652, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25653, + "make_id": 25392, + "model_id": 25650, + "year_id": 25653, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25654, + "make_id": 25392, + "model_id": 25650, + "year_id": 25654, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25655, + "make_id": 25392, + "model_id": 25650, + "year_id": 25654, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25656, + "make_id": 25392, + "model_id": 25656, + "year_id": 25656, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25657, + "make_id": 25392, + "model_id": 25656, + "year_id": 25657, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25658, + "make_id": 25392, + "model_id": 25656, + "year_id": 25658, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25659, + "make_id": 25392, + "model_id": 25656, + "year_id": 25659, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25660, + "make_id": 25392, + "model_id": 25656, + "year_id": 25660, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25661, + "make_id": 25392, + "model_id": 25656, + "year_id": 25660, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25662, + "make_id": 25392, + "model_id": 25656, + "year_id": 25662, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25663, + "make_id": 25392, + "model_id": 25656, + "year_id": 25662, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25664, + "make_id": 25392, + "model_id": 25664, + "year_id": 25664, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25665, + "make_id": 25392, + "model_id": 25664, + "year_id": 25665, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25666, + "make_id": 25392, + "model_id": 25664, + "year_id": 25666, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25667, + "make_id": 25392, + "model_id": 25664, + "year_id": 25667, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25668, + "make_id": 25392, + "model_id": 25664, + "year_id": 25668, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25669, + "make_id": 25392, + "model_id": 25664, + "year_id": 25668, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25670, + "make_id": 25392, + "model_id": 25664, + "year_id": 25670, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25671, + "make_id": 25392, + "model_id": 25664, + "year_id": 25670, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25672, + "make_id": 25392, + "model_id": 25664, + "year_id": 25672, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25673, + "make_id": 25392, + "model_id": 25664, + "year_id": 25672, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25674, + "make_id": 25392, + "model_id": 25664, + "year_id": 25674, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25675, + "make_id": 25392, + "model_id": 25664, + "year_id": 25674, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25676, + "make_id": 25392, + "model_id": 25676, + "year_id": 25676, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25677, + "make_id": 25392, + "model_id": 25676, + "year_id": 25677, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25678, + "make_id": 25392, + "model_id": 25676, + "year_id": 25677, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25679, + "make_id": 25392, + "model_id": 25676, + "year_id": 25679, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25680, + "make_id": 25392, + "model_id": 25676, + "year_id": 25679, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25681, + "make_id": 25392, + "model_id": 25676, + "year_id": 25681, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25682, + "make_id": 25392, + "model_id": 25676, + "year_id": 25681, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25683, + "make_id": 25392, + "model_id": 25683, + "year_id": 25683, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25684, + "make_id": 25392, + "model_id": 25684, + "year_id": 25684, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25685, + "make_id": 25392, + "model_id": 25684, + "year_id": 25684, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25686, + "make_id": 25392, + "model_id": 25684, + "year_id": 25686, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25687, + "make_id": 25392, + "model_id": 25684, + "year_id": 25686, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25688, + "make_id": 25392, + "model_id": 25688, + "year_id": 25688, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25689, + "make_id": 25392, + "model_id": 25688, + "year_id": 25689, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25690, + "make_id": 25392, + "model_id": 25688, + "year_id": 25689, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25691, + "make_id": 25392, + "model_id": 25688, + "year_id": 25691, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25692, + "make_id": 25392, + "model_id": 25688, + "year_id": 25691, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25693, + "make_id": 25392, + "model_id": 25688, + "year_id": 25693, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 25694, + "make_id": 25392, + "model_id": 25688, + "year_id": 25693, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25695, + "make_id": 25392, + "model_id": 25695, + "year_id": 25695, + "cylinders": 0, + "displacement": 0, + "drive": "", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 25696, + "make_id": 25696, + "model_id": 25696, + "year_id": 25696, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25697, + "make_id": 25696, + "model_id": 25696, + "year_id": 25696, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25698, + "make_id": 25696, + "model_id": 25696, + "year_id": 25696, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25699, + "make_id": 25696, + "model_id": 25696, + "year_id": 25699, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25700, + "make_id": 25696, + "model_id": 25696, + "year_id": 25699, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25701, + "make_id": 25696, + "model_id": 25696, + "year_id": 25699, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25702, + "make_id": 25696, + "model_id": 25696, + "year_id": 25702, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25703, + "make_id": 25696, + "model_id": 25696, + "year_id": 25702, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25704, + "make_id": 25696, + "model_id": 25696, + "year_id": 25702, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25705, + "make_id": 25696, + "model_id": 25696, + "year_id": 25705, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25706, + "make_id": 25696, + "model_id": 25696, + "year_id": 25705, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25707, + "make_id": 25696, + "model_id": 25696, + "year_id": 25705, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25708, + "make_id": 25696, + "model_id": 25696, + "year_id": 25708, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25709, + "make_id": 25696, + "model_id": 25696, + "year_id": 25708, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25710, + "make_id": 25696, + "model_id": 25696, + "year_id": 25708, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25711, + "make_id": 25696, + "model_id": 25696, + "year_id": 25711, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25712, + "make_id": 25696, + "model_id": 25696, + "year_id": 25711, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25713, + "make_id": 25696, + "model_id": 25696, + "year_id": 25711, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25714, + "make_id": 25696, + "model_id": 25696, + "year_id": 25714, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25715, + "make_id": 25696, + "model_id": 25696, + "year_id": 25714, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25716, + "make_id": 25696, + "model_id": 25696, + "year_id": 25714, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25717, + "make_id": 25696, + "model_id": 25696, + "year_id": 25714, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25718, + "make_id": 25696, + "model_id": 25696, + "year_id": 25714, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25719, + "make_id": 25696, + "model_id": 25696, + "year_id": 25719, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25720, + "make_id": 25696, + "model_id": 25696, + "year_id": 25719, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25721, + "make_id": 25696, + "model_id": 25696, + "year_id": 25719, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25722, + "make_id": 25696, + "model_id": 25696, + "year_id": 25719, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25723, + "make_id": 25696, + "model_id": 25696, + "year_id": 25719, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25724, + "make_id": 25696, + "model_id": 25724, + "year_id": 25724, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25725, + "make_id": 25696, + "model_id": 25724, + "year_id": 25724, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25726, + "make_id": 25696, + "model_id": 25724, + "year_id": 25726, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25727, + "make_id": 25696, + "model_id": 25724, + "year_id": 25726, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25728, + "make_id": 25696, + "model_id": 25724, + "year_id": 25728, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25729, + "make_id": 25696, + "model_id": 25724, + "year_id": 25728, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25730, + "make_id": 25696, + "model_id": 25724, + "year_id": 25730, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25731, + "make_id": 25696, + "model_id": 25724, + "year_id": 25730, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25732, + "make_id": 25696, + "model_id": 25732, + "year_id": 25732, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25733, + "make_id": 25696, + "model_id": 25732, + "year_id": 25732, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25734, + "make_id": 25696, + "model_id": 25732, + "year_id": 25732, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25735, + "make_id": 25696, + "model_id": 25732, + "year_id": 25732, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25736, + "make_id": 25696, + "model_id": 25732, + "year_id": 25732, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25737, + "make_id": 25696, + "model_id": 25737, + "year_id": 25737, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 25738, + "make_id": 25696, + "model_id": 25737, + "year_id": 25737, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25739, + "make_id": 25696, + "model_id": 25737, + "year_id": 25737, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 25740, + "make_id": 25696, + "model_id": 25737, + "year_id": 25737, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 25741, + "make_id": 25696, + "model_id": 25737, + "year_id": 25737, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 25742, + "make_id": 25696, + "model_id": 25737, + "year_id": 25737, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 25743, + "make_id": 25696, + "model_id": 25737, + "year_id": 25743, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25744, + "make_id": 25696, + "model_id": 25737, + "year_id": 25743, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25745, + "make_id": 25696, + "model_id": 25737, + "year_id": 25743, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25746, + "make_id": 25696, + "model_id": 25737, + "year_id": 25743, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25747, + "make_id": 25696, + "model_id": 25737, + "year_id": 25743, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25748, + "make_id": 25696, + "model_id": 25737, + "year_id": 25743, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25749, + "make_id": 25696, + "model_id": 25737, + "year_id": 25749, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25750, + "make_id": 25696, + "model_id": 25737, + "year_id": 25749, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25751, + "make_id": 25696, + "model_id": 25737, + "year_id": 25749, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25752, + "make_id": 25696, + "model_id": 25737, + "year_id": 25752, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25753, + "make_id": 25696, + "model_id": 25737, + "year_id": 25752, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25754, + "make_id": 25696, + "model_id": 25737, + "year_id": 25752, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25755, + "make_id": 25696, + "model_id": 25737, + "year_id": 25755, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25756, + "make_id": 25696, + "model_id": 25737, + "year_id": 25755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 25757, + "make_id": 25696, + "model_id": 25737, + "year_id": 25755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25758, + "make_id": 25696, + "model_id": 25758, + "year_id": 25758, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25759, + "make_id": 25696, + "model_id": 25758, + "year_id": 25758, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25760, + "make_id": 25696, + "model_id": 25758, + "year_id": 25760, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25761, + "make_id": 25696, + "model_id": 25758, + "year_id": 25760, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25762, + "make_id": 25696, + "model_id": 25758, + "year_id": 25762, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25763, + "make_id": 25696, + "model_id": 25758, + "year_id": 25762, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25764, + "make_id": 25696, + "model_id": 25758, + "year_id": 25764, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25765, + "make_id": 25696, + "model_id": 25758, + "year_id": 25764, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25766, + "make_id": 25696, + "model_id": 25758, + "year_id": 25766, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25767, + "make_id": 25696, + "model_id": 25758, + "year_id": 25766, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25768, + "make_id": 25696, + "model_id": 25758, + "year_id": 25768, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25769, + "make_id": 25696, + "model_id": 25758, + "year_id": 25769, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25770, + "make_id": 25696, + "model_id": 25758, + "year_id": 25770, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25771, + "make_id": 25696, + "model_id": 25758, + "year_id": 25771, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25772, + "make_id": 25696, + "model_id": 25758, + "year_id": 25772, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25773, + "make_id": 25696, + "model_id": 25758, + "year_id": 25773, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25774, + "make_id": 25696, + "model_id": 25774, + "year_id": 25774, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25775, + "make_id": 25696, + "model_id": 25774, + "year_id": 25775, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25776, + "make_id": 25696, + "model_id": 25774, + "year_id": 25775, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25777, + "make_id": 25696, + "model_id": 25774, + "year_id": 25777, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25778, + "make_id": 25696, + "model_id": 25778, + "year_id": 25778, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25779, + "make_id": 25696, + "model_id": 25778, + "year_id": 25779, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25780, + "make_id": 25696, + "model_id": 25780, + "year_id": 25780, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25781, + "make_id": 25696, + "model_id": 25780, + "year_id": 25780, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25782, + "make_id": 25696, + "model_id": 25780, + "year_id": 25780, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25783, + "make_id": 25696, + "model_id": 25780, + "year_id": 25780, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25784, + "make_id": 25696, + "model_id": 25780, + "year_id": 25780, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25785, + "make_id": 25696, + "model_id": 25780, + "year_id": 25780, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25786, + "make_id": 25696, + "model_id": 25780, + "year_id": 25786, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25787, + "make_id": 25696, + "model_id": 25780, + "year_id": 25786, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25788, + "make_id": 25696, + "model_id": 25780, + "year_id": 25786, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25789, + "make_id": 25696, + "model_id": 25780, + "year_id": 25786, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25790, + "make_id": 25696, + "model_id": 25780, + "year_id": 25786, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25791, + "make_id": 25696, + "model_id": 25780, + "year_id": 25786, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25792, + "make_id": 25696, + "model_id": 25780, + "year_id": 25786, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25793, + "make_id": 25696, + "model_id": 25780, + "year_id": 25786, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25794, + "make_id": 25696, + "model_id": 25780, + "year_id": 25794, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25795, + "make_id": 25696, + "model_id": 25780, + "year_id": 25794, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25796, + "make_id": 25696, + "model_id": 25780, + "year_id": 25794, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25797, + "make_id": 25696, + "model_id": 25780, + "year_id": 25794, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25798, + "make_id": 25696, + "model_id": 25780, + "year_id": 25794, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25799, + "make_id": 25696, + "model_id": 25780, + "year_id": 25794, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25800, + "make_id": 25696, + "model_id": 25780, + "year_id": 25794, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25801, + "make_id": 25696, + "model_id": 25780, + "year_id": 25794, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25802, + "make_id": 25696, + "model_id": 25780, + "year_id": 25802, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25803, + "make_id": 25696, + "model_id": 25780, + "year_id": 25802, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25804, + "make_id": 25696, + "model_id": 25780, + "year_id": 25802, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25805, + "make_id": 25696, + "model_id": 25780, + "year_id": 25802, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25806, + "make_id": 25696, + "model_id": 25780, + "year_id": 25802, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25807, + "make_id": 25696, + "model_id": 25780, + "year_id": 25802, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25808, + "make_id": 25696, + "model_id": 25780, + "year_id": 25802, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25809, + "make_id": 25696, + "model_id": 25780, + "year_id": 25802, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25810, + "make_id": 25696, + "model_id": 25780, + "year_id": 25810, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25811, + "make_id": 25696, + "model_id": 25780, + "year_id": 25810, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25812, + "make_id": 25696, + "model_id": 25780, + "year_id": 25810, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25813, + "make_id": 25696, + "model_id": 25780, + "year_id": 25810, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25814, + "make_id": 25696, + "model_id": 25780, + "year_id": 25810, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25815, + "make_id": 25696, + "model_id": 25780, + "year_id": 25810, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25816, + "make_id": 25696, + "model_id": 25780, + "year_id": 25810, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25817, + "make_id": 25696, + "model_id": 25780, + "year_id": 25810, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25818, + "make_id": 25696, + "model_id": 25780, + "year_id": 25818, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25819, + "make_id": 25696, + "model_id": 25780, + "year_id": 25818, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25820, + "make_id": 25696, + "model_id": 25780, + "year_id": 25818, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25821, + "make_id": 25696, + "model_id": 25780, + "year_id": 25818, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25822, + "make_id": 25696, + "model_id": 25780, + "year_id": 25818, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25823, + "make_id": 25696, + "model_id": 25780, + "year_id": 25818, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25824, + "make_id": 25696, + "model_id": 25780, + "year_id": 25818, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25825, + "make_id": 25696, + "model_id": 25780, + "year_id": 25818, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25826, + "make_id": 25696, + "model_id": 25780, + "year_id": 25826, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25827, + "make_id": 25696, + "model_id": 25780, + "year_id": 25826, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25828, + "make_id": 25696, + "model_id": 25780, + "year_id": 25826, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25829, + "make_id": 25696, + "model_id": 25780, + "year_id": 25826, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25830, + "make_id": 25696, + "model_id": 25780, + "year_id": 25826, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25831, + "make_id": 25696, + "model_id": 25780, + "year_id": 25826, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25832, + "make_id": 25696, + "model_id": 25780, + "year_id": 25832, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25833, + "make_id": 25696, + "model_id": 25780, + "year_id": 25832, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25834, + "make_id": 25696, + "model_id": 25780, + "year_id": 25832, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25835, + "make_id": 25696, + "model_id": 25780, + "year_id": 25832, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25836, + "make_id": 25696, + "model_id": 25780, + "year_id": 25832, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25837, + "make_id": 25696, + "model_id": 25780, + "year_id": 25832, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25838, + "make_id": 25696, + "model_id": 25780, + "year_id": 25838, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25839, + "make_id": 25696, + "model_id": 25780, + "year_id": 25838, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25840, + "make_id": 25696, + "model_id": 25780, + "year_id": 25838, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25841, + "make_id": 25696, + "model_id": 25780, + "year_id": 25838, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25842, + "make_id": 25696, + "model_id": 25780, + "year_id": 25838, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25843, + "make_id": 25696, + "model_id": 25780, + "year_id": 25838, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25844, + "make_id": 25696, + "model_id": 25780, + "year_id": 25844, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25845, + "make_id": 25696, + "model_id": 25780, + "year_id": 25844, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25846, + "make_id": 25696, + "model_id": 25780, + "year_id": 25844, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25847, + "make_id": 25696, + "model_id": 25780, + "year_id": 25844, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25848, + "make_id": 25696, + "model_id": 25780, + "year_id": 25844, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25849, + "make_id": 25696, + "model_id": 25780, + "year_id": 25844, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25850, + "make_id": 25696, + "model_id": 25780, + "year_id": 25850, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25851, + "make_id": 25696, + "model_id": 25780, + "year_id": 25850, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25852, + "make_id": 25696, + "model_id": 25780, + "year_id": 25850, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25853, + "make_id": 25696, + "model_id": 25780, + "year_id": 25850, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25854, + "make_id": 25696, + "model_id": 25780, + "year_id": 25850, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25855, + "make_id": 25696, + "model_id": 25780, + "year_id": 25855, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25856, + "make_id": 25696, + "model_id": 25780, + "year_id": 25855, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25857, + "make_id": 25696, + "model_id": 25780, + "year_id": 25855, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25858, + "make_id": 25696, + "model_id": 25780, + "year_id": 25855, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25859, + "make_id": 25696, + "model_id": 25780, + "year_id": 25855, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25860, + "make_id": 25696, + "model_id": 25780, + "year_id": 25860, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25861, + "make_id": 25696, + "model_id": 25780, + "year_id": 25860, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25862, + "make_id": 25696, + "model_id": 25780, + "year_id": 25860, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25863, + "make_id": 25696, + "model_id": 25780, + "year_id": 25860, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25864, + "make_id": 25696, + "model_id": 25780, + "year_id": 25860, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25865, + "make_id": 25696, + "model_id": 25780, + "year_id": 25865, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25866, + "make_id": 25696, + "model_id": 25780, + "year_id": 25865, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25867, + "make_id": 25696, + "model_id": 25780, + "year_id": 25865, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25868, + "make_id": 25696, + "model_id": 25780, + "year_id": 25865, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25869, + "make_id": 25696, + "model_id": 25780, + "year_id": 25865, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25870, + "make_id": 25696, + "model_id": 25780, + "year_id": 25865, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25871, + "make_id": 25696, + "model_id": 25780, + "year_id": 25865, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25872, + "make_id": 25696, + "model_id": 25780, + "year_id": 25865, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25873, + "make_id": 25696, + "model_id": 25780, + "year_id": 25873, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25874, + "make_id": 25696, + "model_id": 25780, + "year_id": 25873, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25875, + "make_id": 25696, + "model_id": 25780, + "year_id": 25873, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25876, + "make_id": 25696, + "model_id": 25780, + "year_id": 25873, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25877, + "make_id": 25696, + "model_id": 25780, + "year_id": 25873, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25878, + "make_id": 25696, + "model_id": 25780, + "year_id": 25873, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25879, + "make_id": 25696, + "model_id": 25780, + "year_id": 25873, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25880, + "make_id": 25696, + "model_id": 25780, + "year_id": 25880, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25881, + "make_id": 25696, + "model_id": 25780, + "year_id": 25880, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25882, + "make_id": 25696, + "model_id": 25780, + "year_id": 25880, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25883, + "make_id": 25696, + "model_id": 25780, + "year_id": 25880, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25884, + "make_id": 25696, + "model_id": 25780, + "year_id": 25880, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25885, + "make_id": 25696, + "model_id": 25780, + "year_id": 25880, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25886, + "make_id": 25696, + "model_id": 25780, + "year_id": 25880, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25887, + "make_id": 25696, + "model_id": 25780, + "year_id": 25887, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25888, + "make_id": 25696, + "model_id": 25780, + "year_id": 25887, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25889, + "make_id": 25696, + "model_id": 25780, + "year_id": 25887, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25890, + "make_id": 25696, + "model_id": 25780, + "year_id": 25887, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25891, + "make_id": 25696, + "model_id": 25780, + "year_id": 25891, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25892, + "make_id": 25696, + "model_id": 25780, + "year_id": 25891, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25893, + "make_id": 25696, + "model_id": 25780, + "year_id": 25891, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25894, + "make_id": 25696, + "model_id": 25780, + "year_id": 25891, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25895, + "make_id": 25696, + "model_id": 25780, + "year_id": 25895, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25896, + "make_id": 25696, + "model_id": 25780, + "year_id": 25895, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25897, + "make_id": 25696, + "model_id": 25780, + "year_id": 25895, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25898, + "make_id": 25696, + "model_id": 25780, + "year_id": 25895, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25899, + "make_id": 25696, + "model_id": 25780, + "year_id": 25899, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25900, + "make_id": 25696, + "model_id": 25780, + "year_id": 25899, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25901, + "make_id": 25696, + "model_id": 25780, + "year_id": 25899, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25902, + "make_id": 25696, + "model_id": 25780, + "year_id": 25899, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25903, + "make_id": 25696, + "model_id": 25780, + "year_id": 25903, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25904, + "make_id": 25696, + "model_id": 25780, + "year_id": 25903, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25905, + "make_id": 25696, + "model_id": 25780, + "year_id": 25903, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25906, + "make_id": 25696, + "model_id": 25780, + "year_id": 25903, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25907, + "make_id": 25696, + "model_id": 25780, + "year_id": 25907, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25908, + "make_id": 25696, + "model_id": 25780, + "year_id": 25907, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25909, + "make_id": 25696, + "model_id": 25780, + "year_id": 25907, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25910, + "make_id": 25696, + "model_id": 25780, + "year_id": 25910, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25911, + "make_id": 25696, + "model_id": 25780, + "year_id": 25910, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25912, + "make_id": 25696, + "model_id": 25780, + "year_id": 25910, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25913, + "make_id": 25696, + "model_id": 25913, + "year_id": 25913, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25914, + "make_id": 25696, + "model_id": 25913, + "year_id": 25913, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25915, + "make_id": 25696, + "model_id": 25913, + "year_id": 25913, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25916, + "make_id": 25696, + "model_id": 25913, + "year_id": 25913, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25917, + "make_id": 25696, + "model_id": 25913, + "year_id": 25917, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25918, + "make_id": 25696, + "model_id": 25913, + "year_id": 25917, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25919, + "make_id": 25696, + "model_id": 25913, + "year_id": 25917, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25920, + "make_id": 25696, + "model_id": 25913, + "year_id": 25917, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25921, + "make_id": 25696, + "model_id": 25913, + "year_id": 25921, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25922, + "make_id": 25696, + "model_id": 25913, + "year_id": 25921, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25923, + "make_id": 25696, + "model_id": 25913, + "year_id": 25921, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25924, + "make_id": 25696, + "model_id": 25913, + "year_id": 25921, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25925, + "make_id": 25696, + "model_id": 25913, + "year_id": 25925, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25926, + "make_id": 25696, + "model_id": 25913, + "year_id": 25925, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25927, + "make_id": 25696, + "model_id": 25913, + "year_id": 25925, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25928, + "make_id": 25696, + "model_id": 25913, + "year_id": 25925, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25929, + "make_id": 25696, + "model_id": 25929, + "year_id": 25929, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25930, + "make_id": 25696, + "model_id": 25929, + "year_id": 25929, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25931, + "make_id": 25696, + "model_id": 25929, + "year_id": 25929, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25932, + "make_id": 25696, + "model_id": 25929, + "year_id": 25929, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25933, + "make_id": 25696, + "model_id": 25929, + "year_id": 25933, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25934, + "make_id": 25696, + "model_id": 25929, + "year_id": 25933, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25935, + "make_id": 25696, + "model_id": 25929, + "year_id": 25933, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25936, + "make_id": 25696, + "model_id": 25929, + "year_id": 25933, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25937, + "make_id": 25696, + "model_id": 25929, + "year_id": 25937, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25938, + "make_id": 25696, + "model_id": 25929, + "year_id": 25937, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25939, + "make_id": 25696, + "model_id": 25929, + "year_id": 25937, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25940, + "make_id": 25696, + "model_id": 25929, + "year_id": 25937, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25941, + "make_id": 25696, + "model_id": 25929, + "year_id": 25937, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25942, + "make_id": 25696, + "model_id": 25929, + "year_id": 25937, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25943, + "make_id": 25696, + "model_id": 25929, + "year_id": 25943, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25944, + "make_id": 25696, + "model_id": 25929, + "year_id": 25943, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25945, + "make_id": 25696, + "model_id": 25929, + "year_id": 25943, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25946, + "make_id": 25696, + "model_id": 25929, + "year_id": 25943, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25947, + "make_id": 25696, + "model_id": 25929, + "year_id": 25943, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25948, + "make_id": 25696, + "model_id": 25929, + "year_id": 25943, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25949, + "make_id": 25696, + "model_id": 25929, + "year_id": 25949, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25950, + "make_id": 25696, + "model_id": 25929, + "year_id": 25949, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25951, + "make_id": 25696, + "model_id": 25929, + "year_id": 25949, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25952, + "make_id": 25696, + "model_id": 25929, + "year_id": 25949, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25953, + "make_id": 25696, + "model_id": 25929, + "year_id": 25949, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25954, + "make_id": 25696, + "model_id": 25929, + "year_id": 25949, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25955, + "make_id": 25696, + "model_id": 25929, + "year_id": 25955, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25956, + "make_id": 25696, + "model_id": 25929, + "year_id": 25955, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25957, + "make_id": 25696, + "model_id": 25929, + "year_id": 25955, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25958, + "make_id": 25696, + "model_id": 25929, + "year_id": 25955, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25959, + "make_id": 25696, + "model_id": 25929, + "year_id": 25959, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25960, + "make_id": 25696, + "model_id": 25929, + "year_id": 25959, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25961, + "make_id": 25696, + "model_id": 25929, + "year_id": 25959, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25962, + "make_id": 25696, + "model_id": 25929, + "year_id": 25959, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25963, + "make_id": 25696, + "model_id": 25929, + "year_id": 25963, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 25964, + "make_id": 25696, + "model_id": 25929, + "year_id": 25963, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25965, + "make_id": 25696, + "model_id": 25929, + "year_id": 25963, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25966, + "make_id": 25696, + "model_id": 25929, + "year_id": 25963, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25967, + "make_id": 25696, + "model_id": 25929, + "year_id": 25967, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25968, + "make_id": 25696, + "model_id": 25929, + "year_id": 25967, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25969, + "make_id": 25696, + "model_id": 25929, + "year_id": 25969, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25970, + "make_id": 25696, + "model_id": 25929, + "year_id": 25969, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25971, + "make_id": 25696, + "model_id": 25929, + "year_id": 25971, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25972, + "make_id": 25696, + "model_id": 25929, + "year_id": 25971, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 25973, + "make_id": 25696, + "model_id": 25973, + "year_id": 25973, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25974, + "make_id": 25696, + "model_id": 25973, + "year_id": 25973, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25975, + "make_id": 25696, + "model_id": 25973, + "year_id": 25975, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25976, + "make_id": 25696, + "model_id": 25973, + "year_id": 25975, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25977, + "make_id": 25696, + "model_id": 25973, + "year_id": 25977, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25978, + "make_id": 25696, + "model_id": 25973, + "year_id": 25977, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25979, + "make_id": 25696, + "model_id": 25973, + "year_id": 25979, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25980, + "make_id": 25696, + "model_id": 25973, + "year_id": 25979, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25981, + "make_id": 25696, + "model_id": 25973, + "year_id": 25981, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25982, + "make_id": 25696, + "model_id": 25973, + "year_id": 25981, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25983, + "make_id": 25696, + "model_id": 25973, + "year_id": 25983, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25984, + "make_id": 25696, + "model_id": 25973, + "year_id": 25983, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25985, + "make_id": 25696, + "model_id": 25973, + "year_id": 25985, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25986, + "make_id": 25696, + "model_id": 25973, + "year_id": 25985, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25987, + "make_id": 25696, + "model_id": 25973, + "year_id": 25987, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25988, + "make_id": 25696, + "model_id": 25973, + "year_id": 25987, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25989, + "make_id": 25696, + "model_id": 25989, + "year_id": 25989, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25990, + "make_id": 25696, + "model_id": 25989, + "year_id": 25989, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25991, + "make_id": 25696, + "model_id": 25989, + "year_id": 25989, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25992, + "make_id": 25696, + "model_id": 25989, + "year_id": 25989, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25993, + "make_id": 25696, + "model_id": 25989, + "year_id": 25993, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25994, + "make_id": 25696, + "model_id": 25989, + "year_id": 25993, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25995, + "make_id": 25696, + "model_id": 25989, + "year_id": 25993, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25996, + "make_id": 25696, + "model_id": 25989, + "year_id": 25993, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 25997, + "make_id": 25696, + "model_id": 25989, + "year_id": 25997, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25998, + "make_id": 25696, + "model_id": 25989, + "year_id": 25997, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 25999, + "make_id": 25696, + "model_id": 25989, + "year_id": 25997, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26000, + "make_id": 25696, + "model_id": 25989, + "year_id": 25997, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26001, + "make_id": 25696, + "model_id": 25989, + "year_id": 26001, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26002, + "make_id": 25696, + "model_id": 25989, + "year_id": 26001, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26003, + "make_id": 25696, + "model_id": 25989, + "year_id": 26001, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26004, + "make_id": 25696, + "model_id": 25989, + "year_id": 26001, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26005, + "make_id": 25696, + "model_id": 25989, + "year_id": 26005, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26006, + "make_id": 25696, + "model_id": 26006, + "year_id": 26006, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26007, + "make_id": 25696, + "model_id": 26006, + "year_id": 26006, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26008, + "make_id": 25696, + "model_id": 26006, + "year_id": 26006, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26009, + "make_id": 25696, + "model_id": 26006, + "year_id": 26006, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26010, + "make_id": 25696, + "model_id": 26006, + "year_id": 26010, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26011, + "make_id": 25696, + "model_id": 26006, + "year_id": 26010, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26012, + "make_id": 25696, + "model_id": 26006, + "year_id": 26010, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26013, + "make_id": 25696, + "model_id": 26006, + "year_id": 26010, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26014, + "make_id": 25696, + "model_id": 26006, + "year_id": 26010, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26015, + "make_id": 25696, + "model_id": 26006, + "year_id": 26010, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26016, + "make_id": 25696, + "model_id": 26006, + "year_id": 26010, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26017, + "make_id": 25696, + "model_id": 26006, + "year_id": 26010, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26018, + "make_id": 25696, + "model_id": 26006, + "year_id": 26018, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26019, + "make_id": 25696, + "model_id": 26006, + "year_id": 26018, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26020, + "make_id": 25696, + "model_id": 26006, + "year_id": 26018, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26021, + "make_id": 25696, + "model_id": 26006, + "year_id": 26018, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26022, + "make_id": 25696, + "model_id": 26006, + "year_id": 26022, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26023, + "make_id": 25696, + "model_id": 26006, + "year_id": 26022, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26024, + "make_id": 25696, + "model_id": 26024, + "year_id": 26024, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26025, + "make_id": 25696, + "model_id": 26024, + "year_id": 26024, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26026, + "make_id": 25696, + "model_id": 26024, + "year_id": 26026, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26027, + "make_id": 25696, + "model_id": 26024, + "year_id": 26027, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26028, + "make_id": 25696, + "model_id": 26024, + "year_id": 26027, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26029, + "make_id": 25696, + "model_id": 26024, + "year_id": 26029, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26030, + "make_id": 25696, + "model_id": 26024, + "year_id": 26029, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26031, + "make_id": 25696, + "model_id": 26024, + "year_id": 26029, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26032, + "make_id": 25696, + "model_id": 26024, + "year_id": 26032, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26033, + "make_id": 25696, + "model_id": 26024, + "year_id": 26032, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26034, + "make_id": 25696, + "model_id": 26024, + "year_id": 26032, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26035, + "make_id": 25696, + "model_id": 26024, + "year_id": 26032, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26036, + "make_id": 25696, + "model_id": 26024, + "year_id": 26032, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26037, + "make_id": 25696, + "model_id": 26024, + "year_id": 26037, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26038, + "make_id": 25696, + "model_id": 26024, + "year_id": 26037, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26039, + "make_id": 25696, + "model_id": 26024, + "year_id": 26037, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26040, + "make_id": 25696, + "model_id": 26024, + "year_id": 26037, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26041, + "make_id": 25696, + "model_id": 26024, + "year_id": 26037, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26042, + "make_id": 25696, + "model_id": 26024, + "year_id": 26037, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26043, + "make_id": 25696, + "model_id": 26024, + "year_id": 26037, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26044, + "make_id": 25696, + "model_id": 26024, + "year_id": 26044, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26045, + "make_id": 25696, + "model_id": 26024, + "year_id": 26044, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26046, + "make_id": 25696, + "model_id": 26024, + "year_id": 26044, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26047, + "make_id": 25696, + "model_id": 26024, + "year_id": 26044, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26048, + "make_id": 25696, + "model_id": 26024, + "year_id": 26044, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26049, + "make_id": 25696, + "model_id": 26024, + "year_id": 26044, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26050, + "make_id": 25696, + "model_id": 26024, + "year_id": 26044, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26051, + "make_id": 25696, + "model_id": 26024, + "year_id": 26051, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26052, + "make_id": 25696, + "model_id": 26024, + "year_id": 26051, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26053, + "make_id": 25696, + "model_id": 26024, + "year_id": 26051, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26054, + "make_id": 25696, + "model_id": 26024, + "year_id": 26054, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26055, + "make_id": 25696, + "model_id": 26024, + "year_id": 26054, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26056, + "make_id": 25696, + "model_id": 26024, + "year_id": 26054, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26057, + "make_id": 25696, + "model_id": 26024, + "year_id": 26054, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26058, + "make_id": 25696, + "model_id": 26024, + "year_id": 26058, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26059, + "make_id": 25696, + "model_id": 26024, + "year_id": 26058, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26060, + "make_id": 25696, + "model_id": 26024, + "year_id": 26058, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26061, + "make_id": 25696, + "model_id": 26024, + "year_id": 26061, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26062, + "make_id": 25696, + "model_id": 26024, + "year_id": 26061, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26063, + "make_id": 25696, + "model_id": 26024, + "year_id": 26063, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26064, + "make_id": 25696, + "model_id": 26024, + "year_id": 26063, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26065, + "make_id": 25696, + "model_id": 26024, + "year_id": 26063, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26066, + "make_id": 25696, + "model_id": 26024, + "year_id": 26066, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26067, + "make_id": 25696, + "model_id": 26024, + "year_id": 26066, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26068, + "make_id": 25696, + "model_id": 26024, + "year_id": 26068, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26069, + "make_id": 25696, + "model_id": 26024, + "year_id": 26068, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26070, + "make_id": 25696, + "model_id": 26024, + "year_id": 26068, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26071, + "make_id": 25696, + "model_id": 26024, + "year_id": 26071, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26072, + "make_id": 25696, + "model_id": 26024, + "year_id": 26071, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26073, + "make_id": 25696, + "model_id": 26024, + "year_id": 26073, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26074, + "make_id": 25696, + "model_id": 26024, + "year_id": 26073, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26075, + "make_id": 25696, + "model_id": 26024, + "year_id": 26075, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26076, + "make_id": 25696, + "model_id": 26024, + "year_id": 26075, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26077, + "make_id": 25696, + "model_id": 26024, + "year_id": 26075, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26078, + "make_id": 25696, + "model_id": 26024, + "year_id": 26078, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26079, + "make_id": 25696, + "model_id": 26024, + "year_id": 26078, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26080, + "make_id": 25696, + "model_id": 26024, + "year_id": 26078, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26081, + "make_id": 25696, + "model_id": 26024, + "year_id": 26081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26082, + "make_id": 25696, + "model_id": 26024, + "year_id": 26081, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26083, + "make_id": 25696, + "model_id": 26024, + "year_id": 26083, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26084, + "make_id": 25696, + "model_id": 26024, + "year_id": 26083, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26085, + "make_id": 25696, + "model_id": 26024, + "year_id": 26085, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26086, + "make_id": 25696, + "model_id": 26024, + "year_id": 26085, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26087, + "make_id": 25696, + "model_id": 26024, + "year_id": 26087, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26088, + "make_id": 25696, + "model_id": 26024, + "year_id": 26087, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26089, + "make_id": 25696, + "model_id": 26024, + "year_id": 26089, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26090, + "make_id": 25696, + "model_id": 26024, + "year_id": 26089, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26091, + "make_id": 25696, + "model_id": 26024, + "year_id": 26091, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26092, + "make_id": 25696, + "model_id": 26024, + "year_id": 26091, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26093, + "make_id": 25696, + "model_id": 26024, + "year_id": 26093, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26094, + "make_id": 25696, + "model_id": 26024, + "year_id": 26094, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26095, + "make_id": 25696, + "model_id": 26024, + "year_id": 26095, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26096, + "make_id": 25696, + "model_id": 26096, + "year_id": 26096, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26097, + "make_id": 25696, + "model_id": 26096, + "year_id": 26096, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26098, + "make_id": 25696, + "model_id": 26098, + "year_id": 26098, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 26099, + "make_id": 25696, + "model_id": 26098, + "year_id": 26099, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 26100, + "make_id": 25696, + "model_id": 26098, + "year_id": 26100, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 26101, + "make_id": 25696, + "model_id": 26098, + "year_id": 26101, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 26102, + "make_id": 25696, + "model_id": 26098, + "year_id": 26102, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 26103, + "make_id": 25696, + "model_id": 26103, + "year_id": 26103, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26104, + "make_id": 25696, + "model_id": 26103, + "year_id": 26103, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26105, + "make_id": 25696, + "model_id": 26103, + "year_id": 26103, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26106, + "make_id": 25696, + "model_id": 26103, + "year_id": 26103, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26107, + "make_id": 25696, + "model_id": 26103, + "year_id": 26107, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26108, + "make_id": 25696, + "model_id": 26103, + "year_id": 26107, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26109, + "make_id": 25696, + "model_id": 26103, + "year_id": 26107, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26110, + "make_id": 25696, + "model_id": 26103, + "year_id": 26107, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26111, + "make_id": 25696, + "model_id": 26103, + "year_id": 26111, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26112, + "make_id": 25696, + "model_id": 26103, + "year_id": 26111, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26113, + "make_id": 25696, + "model_id": 26103, + "year_id": 26111, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26114, + "make_id": 25696, + "model_id": 26103, + "year_id": 26111, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26115, + "make_id": 25696, + "model_id": 26103, + "year_id": 26115, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26116, + "make_id": 25696, + "model_id": 26103, + "year_id": 26115, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26117, + "make_id": 25696, + "model_id": 26103, + "year_id": 26115, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26118, + "make_id": 25696, + "model_id": 26103, + "year_id": 26115, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26119, + "make_id": 25696, + "model_id": 26103, + "year_id": 26119, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26120, + "make_id": 25696, + "model_id": 26103, + "year_id": 26119, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26121, + "make_id": 25696, + "model_id": 26103, + "year_id": 26119, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26122, + "make_id": 25696, + "model_id": 26103, + "year_id": 26119, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26123, + "make_id": 25696, + "model_id": 26103, + "year_id": 26123, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26124, + "make_id": 25696, + "model_id": 26103, + "year_id": 26123, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26125, + "make_id": 25696, + "model_id": 26103, + "year_id": 26125, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26126, + "make_id": 25696, + "model_id": 26103, + "year_id": 26125, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26127, + "make_id": 25696, + "model_id": 26103, + "year_id": 26127, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26128, + "make_id": 25696, + "model_id": 26103, + "year_id": 26127, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26129, + "make_id": 25696, + "model_id": 26103, + "year_id": 26127, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26130, + "make_id": 25696, + "model_id": 26103, + "year_id": 26127, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26131, + "make_id": 25696, + "model_id": 26103, + "year_id": 26127, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26132, + "make_id": 25696, + "model_id": 26103, + "year_id": 26132, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26133, + "make_id": 25696, + "model_id": 26103, + "year_id": 26132, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26134, + "make_id": 25696, + "model_id": 26103, + "year_id": 26132, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26135, + "make_id": 25696, + "model_id": 26103, + "year_id": 26132, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26136, + "make_id": 25696, + "model_id": 26103, + "year_id": 26132, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26137, + "make_id": 25696, + "model_id": 26103, + "year_id": 26137, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26138, + "make_id": 25696, + "model_id": 26103, + "year_id": 26137, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26139, + "make_id": 25696, + "model_id": 26103, + "year_id": 26137, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26140, + "make_id": 25696, + "model_id": 26103, + "year_id": 26137, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26141, + "make_id": 25696, + "model_id": 26103, + "year_id": 26137, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26142, + "make_id": 25696, + "model_id": 26103, + "year_id": 26142, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26143, + "make_id": 25696, + "model_id": 26103, + "year_id": 26142, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26144, + "make_id": 25696, + "model_id": 26103, + "year_id": 26142, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26145, + "make_id": 25696, + "model_id": 26103, + "year_id": 26142, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26146, + "make_id": 25696, + "model_id": 26103, + "year_id": 26142, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26147, + "make_id": 25696, + "model_id": 26103, + "year_id": 26142, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26148, + "make_id": 25696, + "model_id": 26103, + "year_id": 26148, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26149, + "make_id": 25696, + "model_id": 26103, + "year_id": 26148, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26150, + "make_id": 25696, + "model_id": 26103, + "year_id": 26148, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26151, + "make_id": 25696, + "model_id": 26103, + "year_id": 26148, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26152, + "make_id": 25696, + "model_id": 26103, + "year_id": 26148, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26153, + "make_id": 25696, + "model_id": 26103, + "year_id": 26148, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26154, + "make_id": 25696, + "model_id": 26103, + "year_id": 26154, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26155, + "make_id": 25696, + "model_id": 26103, + "year_id": 26154, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26156, + "make_id": 25696, + "model_id": 26103, + "year_id": 26154, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26157, + "make_id": 25696, + "model_id": 26103, + "year_id": 26154, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26158, + "make_id": 25696, + "model_id": 26103, + "year_id": 26154, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26159, + "make_id": 25696, + "model_id": 26103, + "year_id": 26154, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26160, + "make_id": 25696, + "model_id": 26103, + "year_id": 26160, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26161, + "make_id": 25696, + "model_id": 26103, + "year_id": 26160, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26162, + "make_id": 25696, + "model_id": 26103, + "year_id": 26160, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26163, + "make_id": 25696, + "model_id": 26103, + "year_id": 26160, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26164, + "make_id": 25696, + "model_id": 26103, + "year_id": 26160, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26165, + "make_id": 25696, + "model_id": 26103, + "year_id": 26160, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26166, + "make_id": 25696, + "model_id": 26103, + "year_id": 26166, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26167, + "make_id": 25696, + "model_id": 26103, + "year_id": 26166, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26168, + "make_id": 25696, + "model_id": 26103, + "year_id": 26166, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26169, + "make_id": 25696, + "model_id": 26103, + "year_id": 26166, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26170, + "make_id": 25696, + "model_id": 26103, + "year_id": 26166, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26171, + "make_id": 25696, + "model_id": 26171, + "year_id": 26171, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26172, + "make_id": 25696, + "model_id": 26171, + "year_id": 26172, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26173, + "make_id": 25696, + "model_id": 26171, + "year_id": 26173, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26174, + "make_id": 25696, + "model_id": 26171, + "year_id": 26173, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26175, + "make_id": 25696, + "model_id": 26171, + "year_id": 26175, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26176, + "make_id": 25696, + "model_id": 26171, + "year_id": 26175, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26177, + "make_id": 25696, + "model_id": 26171, + "year_id": 26177, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26178, + "make_id": 25696, + "model_id": 26171, + "year_id": 26177, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26179, + "make_id": 25696, + "model_id": 26171, + "year_id": 26179, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26180, + "make_id": 25696, + "model_id": 26171, + "year_id": 26179, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26181, + "make_id": 25696, + "model_id": 26171, + "year_id": 26181, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26182, + "make_id": 25696, + "model_id": 26171, + "year_id": 26181, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26183, + "make_id": 25696, + "model_id": 26171, + "year_id": 26183, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26184, + "make_id": 25696, + "model_id": 26171, + "year_id": 26183, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26185, + "make_id": 25696, + "model_id": 26171, + "year_id": 26185, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26186, + "make_id": 25696, + "model_id": 26171, + "year_id": 26185, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26187, + "make_id": 25696, + "model_id": 26171, + "year_id": 26187, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26188, + "make_id": 25696, + "model_id": 26171, + "year_id": 26187, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26189, + "make_id": 25696, + "model_id": 26171, + "year_id": 26189, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26190, + "make_id": 25696, + "model_id": 26171, + "year_id": 26189, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26191, + "make_id": 25696, + "model_id": 26171, + "year_id": 26191, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26192, + "make_id": 25696, + "model_id": 26171, + "year_id": 26191, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26193, + "make_id": 25696, + "model_id": 26193, + "year_id": 26193, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26194, + "make_id": 25696, + "model_id": 26193, + "year_id": 26194, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26195, + "make_id": 25696, + "model_id": 26193, + "year_id": 26195, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26196, + "make_id": 25696, + "model_id": 26193, + "year_id": 26196, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26197, + "make_id": 25696, + "model_id": 26193, + "year_id": 26196, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26198, + "make_id": 25696, + "model_id": 26193, + "year_id": 26196, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26199, + "make_id": 25696, + "model_id": 26193, + "year_id": 26199, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26200, + "make_id": 25696, + "model_id": 26193, + "year_id": 26199, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26201, + "make_id": 25696, + "model_id": 26193, + "year_id": 26199, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26202, + "make_id": 25696, + "model_id": 26193, + "year_id": 26202, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26203, + "make_id": 25696, + "model_id": 26193, + "year_id": 26202, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26204, + "make_id": 25696, + "model_id": 26193, + "year_id": 26202, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 26205, + "make_id": 25696, + "model_id": 26193, + "year_id": 26202, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26206, + "make_id": 25696, + "model_id": 26193, + "year_id": 26202, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26207, + "make_id": 25696, + "model_id": 26193, + "year_id": 26207, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26208, + "make_id": 25696, + "model_id": 26193, + "year_id": 26207, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26209, + "make_id": 25696, + "model_id": 26193, + "year_id": 26209, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26210, + "make_id": 25696, + "model_id": 26193, + "year_id": 26209, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26211, + "make_id": 25696, + "model_id": 26193, + "year_id": 26211, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26212, + "make_id": 25696, + "model_id": 26193, + "year_id": 26211, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26213, + "make_id": 25696, + "model_id": 26213, + "year_id": 26213, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26214, + "make_id": 25696, + "model_id": 26213, + "year_id": 26213, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26215, + "make_id": 25696, + "model_id": 26213, + "year_id": 26213, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26216, + "make_id": 25696, + "model_id": 26213, + "year_id": 26213, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26217, + "make_id": 25696, + "model_id": 26213, + "year_id": 26213, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26218, + "make_id": 25696, + "model_id": 26213, + "year_id": 26213, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26219, + "make_id": 25696, + "model_id": 26213, + "year_id": 26213, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26220, + "make_id": 25696, + "model_id": 26213, + "year_id": 26213, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26221, + "make_id": 25696, + "model_id": 26213, + "year_id": 26213, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26222, + "make_id": 25696, + "model_id": 26213, + "year_id": 26222, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26223, + "make_id": 25696, + "model_id": 26213, + "year_id": 26222, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26224, + "make_id": 25696, + "model_id": 26213, + "year_id": 26222, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26225, + "make_id": 25696, + "model_id": 26213, + "year_id": 26222, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26226, + "make_id": 25696, + "model_id": 26213, + "year_id": 26222, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26227, + "make_id": 25696, + "model_id": 26213, + "year_id": 26227, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26228, + "make_id": 25696, + "model_id": 26213, + "year_id": 26227, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26229, + "make_id": 25696, + "model_id": 26213, + "year_id": 26227, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26230, + "make_id": 25696, + "model_id": 26213, + "year_id": 26227, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26231, + "make_id": 25696, + "model_id": 26213, + "year_id": 26227, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26232, + "make_id": 25696, + "model_id": 26213, + "year_id": 26232, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26233, + "make_id": 25696, + "model_id": 26213, + "year_id": 26232, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26234, + "make_id": 25696, + "model_id": 26213, + "year_id": 26232, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26235, + "make_id": 25696, + "model_id": 26213, + "year_id": 26232, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26236, + "make_id": 25696, + "model_id": 26213, + "year_id": 26232, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26237, + "make_id": 25696, + "model_id": 26213, + "year_id": 26237, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26238, + "make_id": 25696, + "model_id": 26213, + "year_id": 26237, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26239, + "make_id": 25696, + "model_id": 26213, + "year_id": 26237, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26240, + "make_id": 25696, + "model_id": 26213, + "year_id": 26237, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26241, + "make_id": 25696, + "model_id": 26213, + "year_id": 26241, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26242, + "make_id": 25696, + "model_id": 26213, + "year_id": 26241, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26243, + "make_id": 25696, + "model_id": 26213, + "year_id": 26241, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26244, + "make_id": 25696, + "model_id": 26213, + "year_id": 26241, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26245, + "make_id": 25696, + "model_id": 26213, + "year_id": 26241, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26246, + "make_id": 25696, + "model_id": 26213, + "year_id": 26246, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26247, + "make_id": 25696, + "model_id": 26213, + "year_id": 26246, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26248, + "make_id": 25696, + "model_id": 26213, + "year_id": 26246, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26249, + "make_id": 25696, + "model_id": 26213, + "year_id": 26246, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26250, + "make_id": 25696, + "model_id": 26213, + "year_id": 26246, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26251, + "make_id": 25696, + "model_id": 26213, + "year_id": 26246, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26252, + "make_id": 25696, + "model_id": 26213, + "year_id": 26246, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26253, + "make_id": 25696, + "model_id": 26213, + "year_id": 26246, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26254, + "make_id": 25696, + "model_id": 26213, + "year_id": 26254, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26255, + "make_id": 25696, + "model_id": 26213, + "year_id": 26254, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26256, + "make_id": 25696, + "model_id": 26213, + "year_id": 26254, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26257, + "make_id": 25696, + "model_id": 26213, + "year_id": 26254, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26258, + "make_id": 25696, + "model_id": 26213, + "year_id": 26254, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26259, + "make_id": 25696, + "model_id": 26213, + "year_id": 26254, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26260, + "make_id": 25696, + "model_id": 26213, + "year_id": 26260, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26261, + "make_id": 25696, + "model_id": 26213, + "year_id": 26260, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26262, + "make_id": 25696, + "model_id": 26213, + "year_id": 26260, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26263, + "make_id": 25696, + "model_id": 26213, + "year_id": 26260, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26264, + "make_id": 25696, + "model_id": 26213, + "year_id": 26264, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26265, + "make_id": 25696, + "model_id": 26213, + "year_id": 26264, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26266, + "make_id": 25696, + "model_id": 26213, + "year_id": 26264, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26267, + "make_id": 25696, + "model_id": 26213, + "year_id": 26264, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26268, + "make_id": 25696, + "model_id": 26213, + "year_id": 26268, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26269, + "make_id": 25696, + "model_id": 26213, + "year_id": 26268, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26270, + "make_id": 25696, + "model_id": 26213, + "year_id": 26268, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26271, + "make_id": 25696, + "model_id": 26213, + "year_id": 26268, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26272, + "make_id": 25696, + "model_id": 26213, + "year_id": 26268, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26273, + "make_id": 25696, + "model_id": 26213, + "year_id": 26268, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26274, + "make_id": 25696, + "model_id": 26213, + "year_id": 26274, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26275, + "make_id": 25696, + "model_id": 26213, + "year_id": 26274, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26276, + "make_id": 25696, + "model_id": 26213, + "year_id": 26274, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26277, + "make_id": 25696, + "model_id": 26213, + "year_id": 26274, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26278, + "make_id": 25696, + "model_id": 26213, + "year_id": 26278, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26279, + "make_id": 25696, + "model_id": 26213, + "year_id": 26278, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26280, + "make_id": 25696, + "model_id": 26213, + "year_id": 26278, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26281, + "make_id": 25696, + "model_id": 26213, + "year_id": 26278, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26282, + "make_id": 25696, + "model_id": 26213, + "year_id": 26282, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26283, + "make_id": 25696, + "model_id": 26213, + "year_id": 26282, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26284, + "make_id": 25696, + "model_id": 26213, + "year_id": 26282, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26285, + "make_id": 25696, + "model_id": 26213, + "year_id": 26282, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26286, + "make_id": 25696, + "model_id": 26213, + "year_id": 26286, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26287, + "make_id": 25696, + "model_id": 26213, + "year_id": 26286, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26288, + "make_id": 25696, + "model_id": 26213, + "year_id": 26286, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26289, + "make_id": 25696, + "model_id": 26213, + "year_id": 26286, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26290, + "make_id": 25696, + "model_id": 26213, + "year_id": 26290, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26291, + "make_id": 25696, + "model_id": 26213, + "year_id": 26290, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26292, + "make_id": 25696, + "model_id": 26213, + "year_id": 26290, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26293, + "make_id": 25696, + "model_id": 26213, + "year_id": 26290, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26294, + "make_id": 25696, + "model_id": 26213, + "year_id": 26294, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26295, + "make_id": 25696, + "model_id": 26213, + "year_id": 26294, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26296, + "make_id": 25696, + "model_id": 26213, + "year_id": 26294, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26297, + "make_id": 25696, + "model_id": 26213, + "year_id": 26294, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26298, + "make_id": 25696, + "model_id": 26213, + "year_id": 26298, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26299, + "make_id": 25696, + "model_id": 26213, + "year_id": 26298, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26300, + "make_id": 25696, + "model_id": 26213, + "year_id": 26298, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26301, + "make_id": 25696, + "model_id": 26213, + "year_id": 26298, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26302, + "make_id": 25696, + "model_id": 26213, + "year_id": 26302, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26303, + "make_id": 25696, + "model_id": 26213, + "year_id": 26302, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26304, + "make_id": 25696, + "model_id": 26213, + "year_id": 26304, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26305, + "make_id": 25696, + "model_id": 26213, + "year_id": 26304, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26306, + "make_id": 25696, + "model_id": 26213, + "year_id": 26306, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26307, + "make_id": 25696, + "model_id": 26213, + "year_id": 26306, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26308, + "make_id": 25696, + "model_id": 26308, + "year_id": 26308, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26309, + "make_id": 25696, + "model_id": 26308, + "year_id": 26308, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26310, + "make_id": 25696, + "model_id": 26310, + "year_id": 26310, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26311, + "make_id": 25696, + "model_id": 26310, + "year_id": 26310, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26312, + "make_id": 25696, + "model_id": 26310, + "year_id": 26312, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26313, + "make_id": 25696, + "model_id": 26310, + "year_id": 26312, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26314, + "make_id": 25696, + "model_id": 26310, + "year_id": 26314, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26315, + "make_id": 25696, + "model_id": 26310, + "year_id": 26314, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26316, + "make_id": 25696, + "model_id": 26316, + "year_id": 26316, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26317, + "make_id": 25696, + "model_id": 26316, + "year_id": 26316, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26318, + "make_id": 25696, + "model_id": 26316, + "year_id": 26316, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26319, + "make_id": 25696, + "model_id": 26316, + "year_id": 26316, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26320, + "make_id": 25696, + "model_id": 26316, + "year_id": 26316, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26321, + "make_id": 25696, + "model_id": 26316, + "year_id": 26316, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26322, + "make_id": 25696, + "model_id": 26316, + "year_id": 26322, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26323, + "make_id": 25696, + "model_id": 26316, + "year_id": 26322, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26324, + "make_id": 25696, + "model_id": 26316, + "year_id": 26322, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26325, + "make_id": 25696, + "model_id": 26316, + "year_id": 26322, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26326, + "make_id": 25696, + "model_id": 26316, + "year_id": 26326, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26327, + "make_id": 25696, + "model_id": 26316, + "year_id": 26326, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26328, + "make_id": 25696, + "model_id": 26316, + "year_id": 26328, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26329, + "make_id": 25696, + "model_id": 26316, + "year_id": 26328, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26330, + "make_id": 25696, + "model_id": 26316, + "year_id": 26330, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26331, + "make_id": 25696, + "model_id": 26316, + "year_id": 26330, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26332, + "make_id": 25696, + "model_id": 26316, + "year_id": 26332, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26333, + "make_id": 25696, + "model_id": 26316, + "year_id": 26332, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26334, + "make_id": 25696, + "model_id": 26316, + "year_id": 26332, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26335, + "make_id": 25696, + "model_id": 26316, + "year_id": 26335, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26336, + "make_id": 25696, + "model_id": 26316, + "year_id": 26335, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26337, + "make_id": 25696, + "model_id": 26316, + "year_id": 26335, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26338, + "make_id": 25696, + "model_id": 26316, + "year_id": 26338, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26339, + "make_id": 25696, + "model_id": 26316, + "year_id": 26338, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26340, + "make_id": 25696, + "model_id": 26316, + "year_id": 26340, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26341, + "make_id": 25696, + "model_id": 26316, + "year_id": 26340, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26342, + "make_id": 25696, + "model_id": 26316, + "year_id": 26342, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26343, + "make_id": 25696, + "model_id": 26316, + "year_id": 26342, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26344, + "make_id": 25696, + "model_id": 26316, + "year_id": 26344, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26345, + "make_id": 25696, + "model_id": 26316, + "year_id": 26344, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26346, + "make_id": 25696, + "model_id": 26316, + "year_id": 26344, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26347, + "make_id": 25696, + "model_id": 26316, + "year_id": 26347, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26348, + "make_id": 25696, + "model_id": 26316, + "year_id": 26347, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26349, + "make_id": 25696, + "model_id": 26316, + "year_id": 26347, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26350, + "make_id": 25696, + "model_id": 26316, + "year_id": 26347, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26351, + "make_id": 25696, + "model_id": 26316, + "year_id": 26347, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26352, + "make_id": 25696, + "model_id": 26316, + "year_id": 26352, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26353, + "make_id": 25696, + "model_id": 26316, + "year_id": 26352, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26354, + "make_id": 25696, + "model_id": 26316, + "year_id": 26352, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26355, + "make_id": 25696, + "model_id": 26316, + "year_id": 26352, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26356, + "make_id": 25696, + "model_id": 26316, + "year_id": 26352, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26357, + "make_id": 25696, + "model_id": 26316, + "year_id": 26357, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26358, + "make_id": 25696, + "model_id": 26316, + "year_id": 26357, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26359, + "make_id": 25696, + "model_id": 26316, + "year_id": 26357, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26360, + "make_id": 25696, + "model_id": 26316, + "year_id": 26357, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26361, + "make_id": 25696, + "model_id": 26316, + "year_id": 26361, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26362, + "make_id": 25696, + "model_id": 26316, + "year_id": 26361, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26363, + "make_id": 25696, + "model_id": 26316, + "year_id": 26361, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26364, + "make_id": 25696, + "model_id": 26316, + "year_id": 26364, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26365, + "make_id": 25696, + "model_id": 26316, + "year_id": 26364, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26366, + "make_id": 25696, + "model_id": 26316, + "year_id": 26364, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26367, + "make_id": 25696, + "model_id": 26316, + "year_id": 26367, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26368, + "make_id": 25696, + "model_id": 26316, + "year_id": 26367, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26369, + "make_id": 25696, + "model_id": 26316, + "year_id": 26367, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26370, + "make_id": 25696, + "model_id": 26316, + "year_id": 26370, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26371, + "make_id": 25696, + "model_id": 26316, + "year_id": 26370, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26372, + "make_id": 25696, + "model_id": 26316, + "year_id": 26372, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26373, + "make_id": 25696, + "model_id": 26316, + "year_id": 26372, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26374, + "make_id": 25696, + "model_id": 26316, + "year_id": 26374, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26375, + "make_id": 25696, + "model_id": 26316, + "year_id": 26374, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26376, + "make_id": 25696, + "model_id": 26316, + "year_id": 26376, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26377, + "make_id": 25696, + "model_id": 26316, + "year_id": 26377, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26378, + "make_id": 25696, + "model_id": 26316, + "year_id": 26378, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26379, + "make_id": 25696, + "model_id": 26379, + "year_id": 26379, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26380, + "make_id": 25696, + "model_id": 26379, + "year_id": 26379, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26381, + "make_id": 25696, + "model_id": 26379, + "year_id": 26379, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26382, + "make_id": 25696, + "model_id": 26379, + "year_id": 26379, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26383, + "make_id": 25696, + "model_id": 26379, + "year_id": 26383, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26384, + "make_id": 25696, + "model_id": 26379, + "year_id": 26383, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26385, + "make_id": 25696, + "model_id": 26379, + "year_id": 26383, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26386, + "make_id": 25696, + "model_id": 26379, + "year_id": 26383, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26387, + "make_id": 25696, + "model_id": 26379, + "year_id": 26387, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26388, + "make_id": 25696, + "model_id": 26379, + "year_id": 26387, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26389, + "make_id": 25696, + "model_id": 26379, + "year_id": 26387, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26390, + "make_id": 25696, + "model_id": 26379, + "year_id": 26387, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26391, + "make_id": 25696, + "model_id": 26379, + "year_id": 26387, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26392, + "make_id": 25696, + "model_id": 26379, + "year_id": 26387, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26393, + "make_id": 25696, + "model_id": 26379, + "year_id": 26393, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26394, + "make_id": 25696, + "model_id": 26379, + "year_id": 26393, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26395, + "make_id": 25696, + "model_id": 26379, + "year_id": 26393, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26396, + "make_id": 25696, + "model_id": 26379, + "year_id": 26393, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26397, + "make_id": 25696, + "model_id": 26379, + "year_id": 26397, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26398, + "make_id": 25696, + "model_id": 26379, + "year_id": 26397, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26399, + "make_id": 25696, + "model_id": 26379, + "year_id": 26397, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26400, + "make_id": 25696, + "model_id": 26379, + "year_id": 26397, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26401, + "make_id": 25696, + "model_id": 26379, + "year_id": 26401, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26402, + "make_id": 25696, + "model_id": 26379, + "year_id": 26401, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26403, + "make_id": 25696, + "model_id": 26379, + "year_id": 26401, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26404, + "make_id": 25696, + "model_id": 26379, + "year_id": 26401, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26405, + "make_id": 25696, + "model_id": 26379, + "year_id": 26405, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26406, + "make_id": 25696, + "model_id": 26379, + "year_id": 26405, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26407, + "make_id": 25696, + "model_id": 26379, + "year_id": 26405, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26408, + "make_id": 25696, + "model_id": 26379, + "year_id": 26405, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26409, + "make_id": 25696, + "model_id": 26379, + "year_id": 26409, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26410, + "make_id": 25696, + "model_id": 26379, + "year_id": 26409, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26411, + "make_id": 25696, + "model_id": 26411, + "year_id": 26411, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26412, + "make_id": 25696, + "model_id": 26411, + "year_id": 26411, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26413, + "make_id": 25696, + "model_id": 26411, + "year_id": 26411, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26414, + "make_id": 25696, + "model_id": 26411, + "year_id": 26411, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26415, + "make_id": 25696, + "model_id": 26411, + "year_id": 26415, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26416, + "make_id": 25696, + "model_id": 26411, + "year_id": 26415, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26417, + "make_id": 25696, + "model_id": 26411, + "year_id": 26415, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26418, + "make_id": 25696, + "model_id": 26411, + "year_id": 26415, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26419, + "make_id": 25696, + "model_id": 26411, + "year_id": 26415, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26420, + "make_id": 25696, + "model_id": 26411, + "year_id": 26420, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26421, + "make_id": 25696, + "model_id": 26411, + "year_id": 26420, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26422, + "make_id": 25696, + "model_id": 26411, + "year_id": 26420, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26423, + "make_id": 25696, + "model_id": 26411, + "year_id": 26420, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26424, + "make_id": 25696, + "model_id": 26424, + "year_id": 26424, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26425, + "make_id": 25696, + "model_id": 26424, + "year_id": 26424, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26426, + "make_id": 25696, + "model_id": 26424, + "year_id": 26424, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26427, + "make_id": 25696, + "model_id": 26424, + "year_id": 26424, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26428, + "make_id": 25696, + "model_id": 26424, + "year_id": 26428, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26429, + "make_id": 25696, + "model_id": 26424, + "year_id": 26428, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26430, + "make_id": 25696, + "model_id": 26424, + "year_id": 26428, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26431, + "make_id": 25696, + "model_id": 26424, + "year_id": 26428, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26432, + "make_id": 25696, + "model_id": 26432, + "year_id": 26432, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26433, + "make_id": 25696, + "model_id": 26432, + "year_id": 26433, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26434, + "make_id": 25696, + "model_id": 26434, + "year_id": 26434, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26435, + "make_id": 25696, + "model_id": 26434, + "year_id": 26434, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26436, + "make_id": 25696, + "model_id": 26434, + "year_id": 26436, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26437, + "make_id": 25696, + "model_id": 26434, + "year_id": 26436, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26438, + "make_id": 25696, + "model_id": 26434, + "year_id": 26438, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26439, + "make_id": 25696, + "model_id": 26434, + "year_id": 26438, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26440, + "make_id": 25696, + "model_id": 26434, + "year_id": 26438, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26441, + "make_id": 25696, + "model_id": 26434, + "year_id": 26438, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26442, + "make_id": 25696, + "model_id": 26434, + "year_id": 26442, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26443, + "make_id": 25696, + "model_id": 26434, + "year_id": 26442, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26444, + "make_id": 25696, + "model_id": 26434, + "year_id": 26442, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26445, + "make_id": 25696, + "model_id": 26434, + "year_id": 26442, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26446, + "make_id": 25696, + "model_id": 26434, + "year_id": 26446, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26447, + "make_id": 25696, + "model_id": 26434, + "year_id": 26446, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26448, + "make_id": 25696, + "model_id": 26434, + "year_id": 26448, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26449, + "make_id": 25696, + "model_id": 26434, + "year_id": 26448, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26450, + "make_id": 25696, + "model_id": 26434, + "year_id": 26448, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26451, + "make_id": 25696, + "model_id": 26434, + "year_id": 26448, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26452, + "make_id": 25696, + "model_id": 26434, + "year_id": 26452, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26453, + "make_id": 25696, + "model_id": 26434, + "year_id": 26452, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26454, + "make_id": 25696, + "model_id": 26434, + "year_id": 26452, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26455, + "make_id": 25696, + "model_id": 26434, + "year_id": 26452, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26456, + "make_id": 25696, + "model_id": 26434, + "year_id": 26456, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26457, + "make_id": 25696, + "model_id": 26434, + "year_id": 26456, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26458, + "make_id": 25696, + "model_id": 26434, + "year_id": 26456, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26459, + "make_id": 25696, + "model_id": 26434, + "year_id": 26456, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26460, + "make_id": 25696, + "model_id": 26434, + "year_id": 26460, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26461, + "make_id": 25696, + "model_id": 26434, + "year_id": 26460, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26462, + "make_id": 25696, + "model_id": 26434, + "year_id": 26460, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26463, + "make_id": 25696, + "model_id": 26434, + "year_id": 26460, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26464, + "make_id": 25696, + "model_id": 26434, + "year_id": 26464, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26465, + "make_id": 25696, + "model_id": 26434, + "year_id": 26464, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26466, + "make_id": 25696, + "model_id": 26434, + "year_id": 26464, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26467, + "make_id": 25696, + "model_id": 26434, + "year_id": 26464, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26468, + "make_id": 25696, + "model_id": 26434, + "year_id": 26468, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26469, + "make_id": 25696, + "model_id": 26434, + "year_id": 26468, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26470, + "make_id": 25696, + "model_id": 26434, + "year_id": 26468, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26471, + "make_id": 25696, + "model_id": 26434, + "year_id": 26468, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26472, + "make_id": 25696, + "model_id": 26434, + "year_id": 26472, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26473, + "make_id": 25696, + "model_id": 26434, + "year_id": 26472, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26474, + "make_id": 25696, + "model_id": 26434, + "year_id": 26472, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26475, + "make_id": 25696, + "model_id": 26434, + "year_id": 26475, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26476, + "make_id": 25696, + "model_id": 26434, + "year_id": 26475, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26477, + "make_id": 25696, + "model_id": 26434, + "year_id": 26475, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26478, + "make_id": 25696, + "model_id": 26434, + "year_id": 26478, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26479, + "make_id": 25696, + "model_id": 26434, + "year_id": 26478, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26480, + "make_id": 25696, + "model_id": 26434, + "year_id": 26478, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 26481, + "make_id": 25696, + "model_id": 26481, + "year_id": 26481, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26482, + "make_id": 25696, + "model_id": 26481, + "year_id": 26481, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26483, + "make_id": 25696, + "model_id": 26481, + "year_id": 26481, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26484, + "make_id": 25696, + "model_id": 26481, + "year_id": 26484, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26485, + "make_id": 25696, + "model_id": 26481, + "year_id": 26484, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26486, + "make_id": 25696, + "model_id": 26481, + "year_id": 26484, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26487, + "make_id": 25696, + "model_id": 26481, + "year_id": 26487, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26488, + "make_id": 25696, + "model_id": 26481, + "year_id": 26487, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26489, + "make_id": 25696, + "model_id": 26481, + "year_id": 26487, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26490, + "make_id": 25696, + "model_id": 26481, + "year_id": 26490, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26491, + "make_id": 25696, + "model_id": 26481, + "year_id": 26490, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26492, + "make_id": 25696, + "model_id": 26481, + "year_id": 26490, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26493, + "make_id": 25696, + "model_id": 26481, + "year_id": 26493, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26494, + "make_id": 25696, + "model_id": 26481, + "year_id": 26493, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26495, + "make_id": 25696, + "model_id": 26481, + "year_id": 26493, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26496, + "make_id": 25696, + "model_id": 26481, + "year_id": 26493, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26497, + "make_id": 25696, + "model_id": 26481, + "year_id": 26493, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26498, + "make_id": 25696, + "model_id": 26481, + "year_id": 26498, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26499, + "make_id": 25696, + "model_id": 26481, + "year_id": 26498, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26500, + "make_id": 25696, + "model_id": 26481, + "year_id": 26498, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26501, + "make_id": 25696, + "model_id": 26481, + "year_id": 26498, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26502, + "make_id": 25696, + "model_id": 26481, + "year_id": 26498, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26503, + "make_id": 25696, + "model_id": 26503, + "year_id": 26503, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 26504, + "make_id": 25696, + "model_id": 26503, + "year_id": 26503, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 26505, + "make_id": 25696, + "model_id": 26503, + "year_id": 26503, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 26506, + "make_id": 25696, + "model_id": 26503, + "year_id": 26503, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 26507, + "make_id": 25696, + "model_id": 26503, + "year_id": 26507, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26508, + "make_id": 25696, + "model_id": 26503, + "year_id": 26507, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26509, + "make_id": 25696, + "model_id": 26503, + "year_id": 26507, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26510, + "make_id": 25696, + "model_id": 26503, + "year_id": 26510, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26511, + "make_id": 25696, + "model_id": 26503, + "year_id": 26510, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26512, + "make_id": 25696, + "model_id": 26503, + "year_id": 26510, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26513, + "make_id": 25696, + "model_id": 26503, + "year_id": 26513, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26514, + "make_id": 25696, + "model_id": 26503, + "year_id": 26513, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26515, + "make_id": 25696, + "model_id": 26503, + "year_id": 26513, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26516, + "make_id": 25696, + "model_id": 26503, + "year_id": 26516, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26517, + "make_id": 25696, + "model_id": 26503, + "year_id": 26516, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26518, + "make_id": 25696, + "model_id": 26503, + "year_id": 26516, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26519, + "make_id": 25696, + "model_id": 26503, + "year_id": 26519, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26520, + "make_id": 25696, + "model_id": 26503, + "year_id": 26519, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26521, + "make_id": 25696, + "model_id": 26503, + "year_id": 26519, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26522, + "make_id": 25696, + "model_id": 26503, + "year_id": 26522, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26523, + "make_id": 25696, + "model_id": 26503, + "year_id": 26522, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26524, + "make_id": 25696, + "model_id": 26503, + "year_id": 26522, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26525, + "make_id": 25696, + "model_id": 26503, + "year_id": 26525, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26526, + "make_id": 25696, + "model_id": 26503, + "year_id": 26525, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26527, + "make_id": 25696, + "model_id": 26527, + "year_id": 26527, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26528, + "make_id": 25696, + "model_id": 26527, + "year_id": 26527, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26529, + "make_id": 25696, + "model_id": 26527, + "year_id": 26527, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26530, + "make_id": 25696, + "model_id": 26527, + "year_id": 26527, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26531, + "make_id": 25696, + "model_id": 26527, + "year_id": 26527, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26532, + "make_id": 25696, + "model_id": 26527, + "year_id": 26527, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26533, + "make_id": 25696, + "model_id": 26527, + "year_id": 26527, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26534, + "make_id": 25696, + "model_id": 26527, + "year_id": 26527, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26535, + "make_id": 25696, + "model_id": 26527, + "year_id": 26535, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26536, + "make_id": 25696, + "model_id": 26527, + "year_id": 26535, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26537, + "make_id": 25696, + "model_id": 26527, + "year_id": 26535, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26538, + "make_id": 25696, + "model_id": 26527, + "year_id": 26535, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26539, + "make_id": 25696, + "model_id": 26527, + "year_id": 26535, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26540, + "make_id": 25696, + "model_id": 26527, + "year_id": 26535, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26541, + "make_id": 25696, + "model_id": 26527, + "year_id": 26535, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26542, + "make_id": 25696, + "model_id": 26527, + "year_id": 26535, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26543, + "make_id": 25696, + "model_id": 26527, + "year_id": 26543, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26544, + "make_id": 25696, + "model_id": 26527, + "year_id": 26543, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26545, + "make_id": 25696, + "model_id": 26527, + "year_id": 26543, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26546, + "make_id": 25696, + "model_id": 26527, + "year_id": 26543, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26547, + "make_id": 25696, + "model_id": 26527, + "year_id": 26543, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26548, + "make_id": 25696, + "model_id": 26527, + "year_id": 26543, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26549, + "make_id": 25696, + "model_id": 26527, + "year_id": 26543, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26550, + "make_id": 25696, + "model_id": 26527, + "year_id": 26550, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26551, + "make_id": 25696, + "model_id": 26527, + "year_id": 26550, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26552, + "make_id": 25696, + "model_id": 26527, + "year_id": 26550, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26553, + "make_id": 25696, + "model_id": 26527, + "year_id": 26550, + "cylinders": 6, + "displacement": 3.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26554, + "make_id": 25696, + "model_id": 26527, + "year_id": 26550, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26555, + "make_id": 25696, + "model_id": 26527, + "year_id": 26550, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26556, + "make_id": 25696, + "model_id": 26527, + "year_id": 26556, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26557, + "make_id": 25696, + "model_id": 26557, + "year_id": 26557, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26558, + "make_id": 25696, + "model_id": 26557, + "year_id": 26557, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26559, + "make_id": 25696, + "model_id": 26557, + "year_id": 26559, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26560, + "make_id": 25696, + "model_id": 26560, + "year_id": 26560, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 26561, + "make_id": 25696, + "model_id": 26560, + "year_id": 26560, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 26562, + "make_id": 25696, + "model_id": 26560, + "year_id": 26560, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26563, + "make_id": 25696, + "model_id": 26560, + "year_id": 26563, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26564, + "make_id": 25696, + "model_id": 26560, + "year_id": 26564, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26565, + "make_id": 25696, + "model_id": 26560, + "year_id": 26565, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26566, + "make_id": 25696, + "model_id": 26560, + "year_id": 26565, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26567, + "make_id": 25696, + "model_id": 26560, + "year_id": 26567, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26568, + "make_id": 25696, + "model_id": 26560, + "year_id": 26568, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26569, + "make_id": 25696, + "model_id": 26560, + "year_id": 26568, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26570, + "make_id": 25696, + "model_id": 26560, + "year_id": 26570, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26571, + "make_id": 25696, + "model_id": 26560, + "year_id": 26571, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26572, + "make_id": 25696, + "model_id": 26572, + "year_id": 26572, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26573, + "make_id": 25696, + "model_id": 26572, + "year_id": 26572, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26574, + "make_id": 25696, + "model_id": 26572, + "year_id": 26572, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26575, + "make_id": 25696, + "model_id": 26572, + "year_id": 26572, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26576, + "make_id": 25696, + "model_id": 26572, + "year_id": 26572, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26577, + "make_id": 25696, + "model_id": 26572, + "year_id": 26572, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26578, + "make_id": 25696, + "model_id": 26572, + "year_id": 26578, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26579, + "make_id": 25696, + "model_id": 26572, + "year_id": 26578, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26580, + "make_id": 25696, + "model_id": 26572, + "year_id": 26578, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26581, + "make_id": 25696, + "model_id": 26572, + "year_id": 26578, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26582, + "make_id": 25696, + "model_id": 26572, + "year_id": 26578, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26583, + "make_id": 25696, + "model_id": 26572, + "year_id": 26578, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26584, + "make_id": 25696, + "model_id": 26572, + "year_id": 26584, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26585, + "make_id": 25696, + "model_id": 26572, + "year_id": 26584, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26586, + "make_id": 25696, + "model_id": 26572, + "year_id": 26586, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26587, + "make_id": 25696, + "model_id": 26572, + "year_id": 26586, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26588, + "make_id": 25696, + "model_id": 26572, + "year_id": 26588, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26589, + "make_id": 25696, + "model_id": 26572, + "year_id": 26588, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26590, + "make_id": 25696, + "model_id": 26572, + "year_id": 26590, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26591, + "make_id": 25696, + "model_id": 26572, + "year_id": 26590, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26592, + "make_id": 25696, + "model_id": 26592, + "year_id": 26592, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26593, + "make_id": 25696, + "model_id": 26592, + "year_id": 26592, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 26594, + "make_id": 25696, + "model_id": 26592, + "year_id": 26592, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 26595, + "make_id": 25696, + "model_id": 26592, + "year_id": 26592, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26596, + "make_id": 25696, + "model_id": 26592, + "year_id": 26592, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26597, + "make_id": 25696, + "model_id": 26592, + "year_id": 26592, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 26598, + "make_id": 25696, + "model_id": 26592, + "year_id": 26592, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 26599, + "make_id": 25696, + "model_id": 26592, + "year_id": 26592, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26600, + "make_id": 25696, + "model_id": 26592, + "year_id": 26600, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26601, + "make_id": 25696, + "model_id": 26592, + "year_id": 26600, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26602, + "make_id": 25696, + "model_id": 26592, + "year_id": 26600, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26603, + "make_id": 25696, + "model_id": 26592, + "year_id": 26600, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26604, + "make_id": 25696, + "model_id": 26592, + "year_id": 26600, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26605, + "make_id": 25696, + "model_id": 26592, + "year_id": 26600, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26606, + "make_id": 25696, + "model_id": 26592, + "year_id": 26606, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26607, + "make_id": 25696, + "model_id": 26592, + "year_id": 26606, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26608, + "make_id": 25696, + "model_id": 26592, + "year_id": 26606, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26609, + "make_id": 25696, + "model_id": 26592, + "year_id": 26609, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26610, + "make_id": 25696, + "model_id": 26592, + "year_id": 26609, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26611, + "make_id": 25696, + "model_id": 26592, + "year_id": 26609, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26612, + "make_id": 25696, + "model_id": 26592, + "year_id": 26612, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26613, + "make_id": 25696, + "model_id": 26592, + "year_id": 26612, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26614, + "make_id": 25696, + "model_id": 26592, + "year_id": 26612, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26615, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26616, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26617, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26618, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26619, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26620, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26621, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26622, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26623, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26624, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26625, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26626, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26627, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26628, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26629, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26630, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26631, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26632, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26633, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26634, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26635, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26636, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.3, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26637, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26638, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26639, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26640, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26641, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26642, + "make_id": 25696, + "model_id": 26615, + "year_id": 26615, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26643, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26644, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26645, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26646, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26647, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26648, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26649, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26650, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26651, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26652, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26653, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26654, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26655, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26656, + "make_id": 25696, + "model_id": 26615, + "year_id": 26643, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26657, + "make_id": 25696, + "model_id": 26615, + "year_id": 26657, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 26658, + "make_id": 25696, + "model_id": 26615, + "year_id": 26657, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 26659, + "make_id": 25696, + "model_id": 26615, + "year_id": 26657, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26660, + "make_id": 25696, + "model_id": 26615, + "year_id": 26657, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26661, + "make_id": 25696, + "model_id": 26615, + "year_id": 26657, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26662, + "make_id": 25696, + "model_id": 26615, + "year_id": 26662, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26663, + "make_id": 25696, + "model_id": 26615, + "year_id": 26662, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26664, + "make_id": 25696, + "model_id": 26615, + "year_id": 26662, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26665, + "make_id": 25696, + "model_id": 26615, + "year_id": 26662, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26666, + "make_id": 25696, + "model_id": 26615, + "year_id": 26662, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26667, + "make_id": 25696, + "model_id": 26615, + "year_id": 26662, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26668, + "make_id": 25696, + "model_id": 26615, + "year_id": 26668, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26669, + "make_id": 25696, + "model_id": 26615, + "year_id": 26668, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26670, + "make_id": 25696, + "model_id": 26615, + "year_id": 26668, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26671, + "make_id": 25696, + "model_id": 26615, + "year_id": 26668, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26672, + "make_id": 25696, + "model_id": 26615, + "year_id": 26668, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26673, + "make_id": 25696, + "model_id": 26615, + "year_id": 26668, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26674, + "make_id": 25696, + "model_id": 26615, + "year_id": 26674, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26675, + "make_id": 25696, + "model_id": 26615, + "year_id": 26674, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26676, + "make_id": 25696, + "model_id": 26615, + "year_id": 26674, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26677, + "make_id": 25696, + "model_id": 26615, + "year_id": 26674, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26678, + "make_id": 25696, + "model_id": 26615, + "year_id": 26674, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26679, + "make_id": 25696, + "model_id": 26615, + "year_id": 26674, + "cylinders": 4, + "displacement": 2.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26680, + "make_id": 25696, + "model_id": 26615, + "year_id": 26680, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26681, + "make_id": 25696, + "model_id": 26615, + "year_id": 26680, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26682, + "make_id": 25696, + "model_id": 26615, + "year_id": 26680, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26683, + "make_id": 25696, + "model_id": 26615, + "year_id": 26680, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26684, + "make_id": 25696, + "model_id": 26615, + "year_id": 26680, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26685, + "make_id": 25696, + "model_id": 26615, + "year_id": 26685, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26686, + "make_id": 25696, + "model_id": 26615, + "year_id": 26685, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26687, + "make_id": 25696, + "model_id": 26615, + "year_id": 26685, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26688, + "make_id": 25696, + "model_id": 26615, + "year_id": 26685, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26689, + "make_id": 25696, + "model_id": 26615, + "year_id": 26685, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26690, + "make_id": 25696, + "model_id": 26615, + "year_id": 26690, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26691, + "make_id": 25696, + "model_id": 26615, + "year_id": 26690, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26692, + "make_id": 25696, + "model_id": 26615, + "year_id": 26690, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26693, + "make_id": 25696, + "model_id": 26615, + "year_id": 26690, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26694, + "make_id": 25696, + "model_id": 26615, + "year_id": 26690, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26695, + "make_id": 25696, + "model_id": 26615, + "year_id": 26695, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26696, + "make_id": 25696, + "model_id": 26615, + "year_id": 26695, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26697, + "make_id": 25696, + "model_id": 26615, + "year_id": 26695, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26698, + "make_id": 25696, + "model_id": 26615, + "year_id": 26695, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26699, + "make_id": 25696, + "model_id": 26615, + "year_id": 26695, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26700, + "make_id": 25696, + "model_id": 26615, + "year_id": 26700, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26701, + "make_id": 25696, + "model_id": 26615, + "year_id": 26700, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26702, + "make_id": 25696, + "model_id": 26615, + "year_id": 26700, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26703, + "make_id": 25696, + "model_id": 26615, + "year_id": 26703, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26704, + "make_id": 25696, + "model_id": 26615, + "year_id": 26703, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26705, + "make_id": 25696, + "model_id": 26615, + "year_id": 26703, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26706, + "make_id": 25696, + "model_id": 26615, + "year_id": 26706, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26707, + "make_id": 25696, + "model_id": 26615, + "year_id": 26706, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26708, + "make_id": 25696, + "model_id": 26708, + "year_id": 26708, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26709, + "make_id": 25696, + "model_id": 26708, + "year_id": 26709, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26710, + "make_id": 25696, + "model_id": 26708, + "year_id": 26710, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26711, + "make_id": 25696, + "model_id": 26708, + "year_id": 26711, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26712, + "make_id": 25696, + "model_id": 26712, + "year_id": 26712, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26713, + "make_id": 25696, + "model_id": 26712, + "year_id": 26713, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26714, + "make_id": 25696, + "model_id": 26712, + "year_id": 26714, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26715, + "make_id": 25696, + "model_id": 26712, + "year_id": 26715, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26716, + "make_id": 26716, + "model_id": 26716, + "year_id": 26716, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26717, + "make_id": 26716, + "model_id": 26717, + "year_id": 26717, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26718, + "make_id": 26718, + "model_id": 26718, + "year_id": 26718, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26719, + "make_id": 26718, + "model_id": 26718, + "year_id": 26718, + "cylinders": 8, + "displacement": 3.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26720, + "make_id": 26718, + "model_id": 26718, + "year_id": 26720, + "cylinders": 8, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26721, + "make_id": 26721, + "model_id": 26721, + "year_id": 26721, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26722, + "make_id": 26721, + "model_id": 26721, + "year_id": 26721, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26723, + "make_id": 26721, + "model_id": 26721, + "year_id": 26721, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26724, + "make_id": 26721, + "model_id": 26721, + "year_id": 26721, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26725, + "make_id": 26721, + "model_id": 26721, + "year_id": 26721, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26726, + "make_id": 26721, + "model_id": 26721, + "year_id": 26721, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26727, + "make_id": 26721, + "model_id": 26721, + "year_id": 26721, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26728, + "make_id": 26721, + "model_id": 26721, + "year_id": 26721, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26729, + "make_id": 26721, + "model_id": 26721, + "year_id": 26729, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26730, + "make_id": 26721, + "model_id": 26721, + "year_id": 26729, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26731, + "make_id": 26721, + "model_id": 26721, + "year_id": 26729, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26732, + "make_id": 26721, + "model_id": 26721, + "year_id": 26729, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26733, + "make_id": 26721, + "model_id": 26721, + "year_id": 26729, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26734, + "make_id": 26721, + "model_id": 26721, + "year_id": 26729, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26735, + "make_id": 26721, + "model_id": 26721, + "year_id": 26735, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26736, + "make_id": 26721, + "model_id": 26721, + "year_id": 26735, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26737, + "make_id": 26721, + "model_id": 26721, + "year_id": 26735, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26738, + "make_id": 26721, + "model_id": 26721, + "year_id": 26738, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26739, + "make_id": 26721, + "model_id": 26721, + "year_id": 26738, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26740, + "make_id": 26721, + "model_id": 26721, + "year_id": 26738, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26741, + "make_id": 26721, + "model_id": 26721, + "year_id": 26738, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26742, + "make_id": 26721, + "model_id": 26721, + "year_id": 26742, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26743, + "make_id": 26721, + "model_id": 26721, + "year_id": 26742, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26744, + "make_id": 26721, + "model_id": 26721, + "year_id": 26742, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26745, + "make_id": 26721, + "model_id": 26721, + "year_id": 26742, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26746, + "make_id": 26721, + "model_id": 26746, + "year_id": 26746, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26747, + "make_id": 26721, + "model_id": 26746, + "year_id": 26746, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26748, + "make_id": 26721, + "model_id": 26746, + "year_id": 26748, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26749, + "make_id": 26721, + "model_id": 26746, + "year_id": 26748, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26750, + "make_id": 26721, + "model_id": 26746, + "year_id": 26750, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26751, + "make_id": 26721, + "model_id": 26746, + "year_id": 26750, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26752, + "make_id": 26721, + "model_id": 26746, + "year_id": 26752, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26753, + "make_id": 26721, + "model_id": 26746, + "year_id": 26752, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26754, + "make_id": 26721, + "model_id": 26746, + "year_id": 26754, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26755, + "make_id": 26721, + "model_id": 26746, + "year_id": 26754, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26756, + "make_id": 26721, + "model_id": 26746, + "year_id": 26756, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26757, + "make_id": 26721, + "model_id": 26746, + "year_id": 26757, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26758, + "make_id": 26721, + "model_id": 26746, + "year_id": 26757, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26759, + "make_id": 26721, + "model_id": 26746, + "year_id": 26759, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26760, + "make_id": 26721, + "model_id": 26746, + "year_id": 26759, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26761, + "make_id": 26721, + "model_id": 26746, + "year_id": 26761, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26762, + "make_id": 26721, + "model_id": 26746, + "year_id": 26761, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26763, + "make_id": 26721, + "model_id": 26746, + "year_id": 26763, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26764, + "make_id": 26721, + "model_id": 26746, + "year_id": 26763, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26765, + "make_id": 26721, + "model_id": 26765, + "year_id": 26765, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26766, + "make_id": 26721, + "model_id": 26765, + "year_id": 26765, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26767, + "make_id": 26721, + "model_id": 26765, + "year_id": 26765, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26768, + "make_id": 26721, + "model_id": 26765, + "year_id": 26765, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26769, + "make_id": 26721, + "model_id": 26765, + "year_id": 26765, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26770, + "make_id": 26721, + "model_id": 26765, + "year_id": 26765, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26771, + "make_id": 26721, + "model_id": 26765, + "year_id": 26765, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26772, + "make_id": 26721, + "model_id": 26765, + "year_id": 26765, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26773, + "make_id": 26721, + "model_id": 26765, + "year_id": 26773, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26774, + "make_id": 26721, + "model_id": 26765, + "year_id": 26773, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26775, + "make_id": 26721, + "model_id": 26765, + "year_id": 26773, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26776, + "make_id": 26721, + "model_id": 26765, + "year_id": 26773, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26777, + "make_id": 26721, + "model_id": 26765, + "year_id": 26773, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26778, + "make_id": 26721, + "model_id": 26765, + "year_id": 26773, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26779, + "make_id": 26721, + "model_id": 26765, + "year_id": 26773, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26780, + "make_id": 26721, + "model_id": 26765, + "year_id": 26773, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26781, + "make_id": 26721, + "model_id": 26765, + "year_id": 26781, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26782, + "make_id": 26721, + "model_id": 26765, + "year_id": 26781, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26783, + "make_id": 26721, + "model_id": 26765, + "year_id": 26781, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26784, + "make_id": 26721, + "model_id": 26765, + "year_id": 26781, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26785, + "make_id": 26721, + "model_id": 26765, + "year_id": 26785, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26786, + "make_id": 26721, + "model_id": 26765, + "year_id": 26785, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26787, + "make_id": 26721, + "model_id": 26765, + "year_id": 26785, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26788, + "make_id": 26721, + "model_id": 26765, + "year_id": 26785, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26789, + "make_id": 26721, + "model_id": 26765, + "year_id": 26789, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26790, + "make_id": 26721, + "model_id": 26765, + "year_id": 26789, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26791, + "make_id": 26721, + "model_id": 26765, + "year_id": 26789, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26792, + "make_id": 26721, + "model_id": 26765, + "year_id": 26789, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26793, + "make_id": 26721, + "model_id": 26765, + "year_id": 26793, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26794, + "make_id": 26721, + "model_id": 26765, + "year_id": 26793, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26795, + "make_id": 26721, + "model_id": 26765, + "year_id": 26793, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26796, + "make_id": 26721, + "model_id": 26765, + "year_id": 26793, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26797, + "make_id": 26721, + "model_id": 26765, + "year_id": 26797, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26798, + "make_id": 26721, + "model_id": 26765, + "year_id": 26797, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26799, + "make_id": 26721, + "model_id": 26765, + "year_id": 26797, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26800, + "make_id": 26721, + "model_id": 26765, + "year_id": 26797, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26801, + "make_id": 26721, + "model_id": 26765, + "year_id": 26801, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26802, + "make_id": 26721, + "model_id": 26765, + "year_id": 26801, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26803, + "make_id": 26721, + "model_id": 26765, + "year_id": 26801, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26804, + "make_id": 26721, + "model_id": 26765, + "year_id": 26801, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26805, + "make_id": 26721, + "model_id": 26765, + "year_id": 26805, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26806, + "make_id": 26721, + "model_id": 26765, + "year_id": 26805, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26807, + "make_id": 26721, + "model_id": 26765, + "year_id": 26805, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26808, + "make_id": 26721, + "model_id": 26765, + "year_id": 26805, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26809, + "make_id": 26721, + "model_id": 26765, + "year_id": 26809, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26810, + "make_id": 26721, + "model_id": 26765, + "year_id": 26809, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26811, + "make_id": 26721, + "model_id": 26765, + "year_id": 26809, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26812, + "make_id": 26721, + "model_id": 26765, + "year_id": 26809, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26813, + "make_id": 26721, + "model_id": 26765, + "year_id": 26813, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26814, + "make_id": 26721, + "model_id": 26765, + "year_id": 26813, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26815, + "make_id": 26721, + "model_id": 26765, + "year_id": 26813, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26816, + "make_id": 26721, + "model_id": 26765, + "year_id": 26813, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26817, + "make_id": 26721, + "model_id": 26765, + "year_id": 26817, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26818, + "make_id": 26721, + "model_id": 26765, + "year_id": 26817, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26819, + "make_id": 26721, + "model_id": 26765, + "year_id": 26817, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26820, + "make_id": 26721, + "model_id": 26765, + "year_id": 26817, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26821, + "make_id": 26721, + "model_id": 26765, + "year_id": 26821, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26822, + "make_id": 26721, + "model_id": 26765, + "year_id": 26821, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26823, + "make_id": 26721, + "model_id": 26765, + "year_id": 26821, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26824, + "make_id": 26721, + "model_id": 26765, + "year_id": 26821, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26825, + "make_id": 26721, + "model_id": 26825, + "year_id": 26825, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26826, + "make_id": 26721, + "model_id": 26825, + "year_id": 26825, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26827, + "make_id": 26721, + "model_id": 26825, + "year_id": 26825, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26828, + "make_id": 26721, + "model_id": 26825, + "year_id": 26825, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26829, + "make_id": 26721, + "model_id": 26825, + "year_id": 26825, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26830, + "make_id": 26721, + "model_id": 26825, + "year_id": 26825, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 26831, + "make_id": 26721, + "model_id": 26825, + "year_id": 26825, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26832, + "make_id": 26721, + "model_id": 26825, + "year_id": 26825, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 26833, + "make_id": 26721, + "model_id": 26825, + "year_id": 26833, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26834, + "make_id": 26721, + "model_id": 26825, + "year_id": 26833, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26835, + "make_id": 26721, + "model_id": 26825, + "year_id": 26833, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26836, + "make_id": 26721, + "model_id": 26825, + "year_id": 26836, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26837, + "make_id": 26721, + "model_id": 26825, + "year_id": 26836, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26838, + "make_id": 26721, + "model_id": 26825, + "year_id": 26838, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26839, + "make_id": 26721, + "model_id": 26825, + "year_id": 26838, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26840, + "make_id": 26721, + "model_id": 26825, + "year_id": 26840, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26841, + "make_id": 26721, + "model_id": 26825, + "year_id": 26840, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26842, + "make_id": 26721, + "model_id": 26825, + "year_id": 26842, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26843, + "make_id": 26721, + "model_id": 26825, + "year_id": 26842, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26844, + "make_id": 26721, + "model_id": 26825, + "year_id": 26844, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26845, + "make_id": 26721, + "model_id": 26825, + "year_id": 26844, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26846, + "make_id": 26721, + "model_id": 26825, + "year_id": 26846, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26847, + "make_id": 26721, + "model_id": 26825, + "year_id": 26846, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26848, + "make_id": 26721, + "model_id": 26825, + "year_id": 26848, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26849, + "make_id": 26721, + "model_id": 26825, + "year_id": 26848, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26850, + "make_id": 26721, + "model_id": 26825, + "year_id": 26850, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26851, + "make_id": 26721, + "model_id": 26825, + "year_id": 26850, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26852, + "make_id": 26721, + "model_id": 26825, + "year_id": 26852, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26853, + "make_id": 26721, + "model_id": 26825, + "year_id": 26852, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26854, + "make_id": 26721, + "model_id": 26825, + "year_id": 26854, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26855, + "make_id": 26721, + "model_id": 26825, + "year_id": 26854, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26856, + "make_id": 26721, + "model_id": 26825, + "year_id": 26856, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26857, + "make_id": 26721, + "model_id": 26825, + "year_id": 26856, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26858, + "make_id": 26721, + "model_id": 26858, + "year_id": 26858, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26859, + "make_id": 26721, + "model_id": 26858, + "year_id": 26858, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26860, + "make_id": 26721, + "model_id": 26858, + "year_id": 26860, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26861, + "make_id": 26721, + "model_id": 26858, + "year_id": 26860, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26862, + "make_id": 26721, + "model_id": 26858, + "year_id": 26862, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26863, + "make_id": 26721, + "model_id": 26858, + "year_id": 26862, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26864, + "make_id": 26721, + "model_id": 26858, + "year_id": 26862, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26865, + "make_id": 26721, + "model_id": 26858, + "year_id": 26865, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26866, + "make_id": 26721, + "model_id": 26858, + "year_id": 26865, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26867, + "make_id": 26721, + "model_id": 26858, + "year_id": 26867, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26868, + "make_id": 26721, + "model_id": 26858, + "year_id": 26867, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26869, + "make_id": 26721, + "model_id": 26858, + "year_id": 26869, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26870, + "make_id": 26721, + "model_id": 26858, + "year_id": 26869, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26871, + "make_id": 26721, + "model_id": 26871, + "year_id": 26871, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26872, + "make_id": 26721, + "model_id": 26871, + "year_id": 26871, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26873, + "make_id": 26721, + "model_id": 26871, + "year_id": 26873, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26874, + "make_id": 26721, + "model_id": 26871, + "year_id": 26873, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26875, + "make_id": 26721, + "model_id": 26871, + "year_id": 26875, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26876, + "make_id": 26721, + "model_id": 26871, + "year_id": 26875, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26877, + "make_id": 26721, + "model_id": 26871, + "year_id": 26877, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26878, + "make_id": 26721, + "model_id": 26871, + "year_id": 26877, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26879, + "make_id": 26721, + "model_id": 26871, + "year_id": 26879, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26880, + "make_id": 26721, + "model_id": 26871, + "year_id": 26879, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26881, + "make_id": 26721, + "model_id": 26871, + "year_id": 26881, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26882, + "make_id": 26721, + "model_id": 26871, + "year_id": 26881, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26883, + "make_id": 26721, + "model_id": 26883, + "year_id": 26883, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26884, + "make_id": 26721, + "model_id": 26883, + "year_id": 26883, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26885, + "make_id": 26721, + "model_id": 26885, + "year_id": 26885, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26886, + "make_id": 26721, + "model_id": 26885, + "year_id": 26885, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26887, + "make_id": 26721, + "model_id": 26885, + "year_id": 26887, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26888, + "make_id": 26721, + "model_id": 26885, + "year_id": 26887, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26889, + "make_id": 26721, + "model_id": 26885, + "year_id": 26889, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26890, + "make_id": 26721, + "model_id": 26885, + "year_id": 26889, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26891, + "make_id": 26721, + "model_id": 26885, + "year_id": 26891, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26892, + "make_id": 26721, + "model_id": 26885, + "year_id": 26891, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26893, + "make_id": 26721, + "model_id": 26885, + "year_id": 26893, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26894, + "make_id": 26721, + "model_id": 26885, + "year_id": 26893, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26895, + "make_id": 26721, + "model_id": 26885, + "year_id": 26895, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26896, + "make_id": 26721, + "model_id": 26885, + "year_id": 26895, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26897, + "make_id": 26721, + "model_id": 26885, + "year_id": 26897, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26898, + "make_id": 26721, + "model_id": 26885, + "year_id": 26897, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26899, + "make_id": 26721, + "model_id": 26885, + "year_id": 26899, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26900, + "make_id": 26721, + "model_id": 26885, + "year_id": 26899, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26901, + "make_id": 26721, + "model_id": 26901, + "year_id": 26901, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26902, + "make_id": 26721, + "model_id": 26901, + "year_id": 26901, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26903, + "make_id": 26721, + "model_id": 26901, + "year_id": 26903, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26904, + "make_id": 26721, + "model_id": 26901, + "year_id": 26903, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26905, + "make_id": 26721, + "model_id": 26901, + "year_id": 26905, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26906, + "make_id": 26721, + "model_id": 26901, + "year_id": 26905, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26907, + "make_id": 26721, + "model_id": 26901, + "year_id": 26907, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26908, + "make_id": 26721, + "model_id": 26901, + "year_id": 26907, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26909, + "make_id": 26721, + "model_id": 26901, + "year_id": 26909, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26910, + "make_id": 26721, + "model_id": 26901, + "year_id": 26909, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26911, + "make_id": 26721, + "model_id": 26901, + "year_id": 26911, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26912, + "make_id": 26721, + "model_id": 26901, + "year_id": 26911, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26913, + "make_id": 26721, + "model_id": 26901, + "year_id": 26913, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26914, + "make_id": 26721, + "model_id": 26901, + "year_id": 26913, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26915, + "make_id": 26721, + "model_id": 26901, + "year_id": 26915, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 26916, + "make_id": 26721, + "model_id": 26901, + "year_id": 26915, + "cylinders": 6, + "displacement": 3.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26917, + "make_id": 26721, + "model_id": 26917, + "year_id": 26917, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26918, + "make_id": 26721, + "model_id": 26917, + "year_id": 26917, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26919, + "make_id": 26721, + "model_id": 26917, + "year_id": 26919, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26920, + "make_id": 26721, + "model_id": 26917, + "year_id": 26919, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26921, + "make_id": 26721, + "model_id": 26917, + "year_id": 26921, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26922, + "make_id": 26721, + "model_id": 26917, + "year_id": 26921, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26923, + "make_id": 26721, + "model_id": 26917, + "year_id": 26923, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26924, + "make_id": 26721, + "model_id": 26917, + "year_id": 26923, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26925, + "make_id": 26721, + "model_id": 26917, + "year_id": 26925, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26926, + "make_id": 26721, + "model_id": 26917, + "year_id": 26925, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26927, + "make_id": 26721, + "model_id": 26917, + "year_id": 26925, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26928, + "make_id": 26721, + "model_id": 26917, + "year_id": 26925, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26929, + "make_id": 26721, + "model_id": 26917, + "year_id": 26929, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26930, + "make_id": 26721, + "model_id": 26917, + "year_id": 26929, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26931, + "make_id": 26721, + "model_id": 26917, + "year_id": 26929, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26932, + "make_id": 26721, + "model_id": 26917, + "year_id": 26929, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26933, + "make_id": 26721, + "model_id": 26917, + "year_id": 26933, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26934, + "make_id": 26721, + "model_id": 26917, + "year_id": 26933, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26935, + "make_id": 26721, + "model_id": 26917, + "year_id": 26933, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26936, + "make_id": 26721, + "model_id": 26917, + "year_id": 26933, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26937, + "make_id": 26721, + "model_id": 26917, + "year_id": 26937, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26938, + "make_id": 26721, + "model_id": 26917, + "year_id": 26937, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26939, + "make_id": 26721, + "model_id": 26917, + "year_id": 26937, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26940, + "make_id": 26721, + "model_id": 26917, + "year_id": 26937, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26941, + "make_id": 26721, + "model_id": 26917, + "year_id": 26937, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26942, + "make_id": 26721, + "model_id": 26917, + "year_id": 26942, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26943, + "make_id": 26721, + "model_id": 26917, + "year_id": 26942, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26944, + "make_id": 26721, + "model_id": 26917, + "year_id": 26942, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26945, + "make_id": 26721, + "model_id": 26917, + "year_id": 26942, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26946, + "make_id": 26721, + "model_id": 26917, + "year_id": 26942, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 26947, + "make_id": 26721, + "model_id": 26917, + "year_id": 26947, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26948, + "make_id": 26721, + "model_id": 26917, + "year_id": 26947, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26949, + "make_id": 26721, + "model_id": 26917, + "year_id": 26947, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26950, + "make_id": 26721, + "model_id": 26917, + "year_id": 26947, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26951, + "make_id": 26721, + "model_id": 26917, + "year_id": 26951, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26952, + "make_id": 26721, + "model_id": 26917, + "year_id": 26951, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26953, + "make_id": 26721, + "model_id": 26917, + "year_id": 26951, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26954, + "make_id": 26721, + "model_id": 26917, + "year_id": 26951, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26955, + "make_id": 26721, + "model_id": 26917, + "year_id": 26955, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26956, + "make_id": 26721, + "model_id": 26917, + "year_id": 26955, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26957, + "make_id": 26721, + "model_id": 26917, + "year_id": 26955, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26958, + "make_id": 26721, + "model_id": 26917, + "year_id": 26955, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26959, + "make_id": 26721, + "model_id": 26917, + "year_id": 26959, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26960, + "make_id": 26721, + "model_id": 26917, + "year_id": 26959, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26961, + "make_id": 26721, + "model_id": 26917, + "year_id": 26959, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26962, + "make_id": 26721, + "model_id": 26917, + "year_id": 26962, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26963, + "make_id": 26721, + "model_id": 26917, + "year_id": 26962, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26964, + "make_id": 26721, + "model_id": 26917, + "year_id": 26964, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26965, + "make_id": 26721, + "model_id": 26917, + "year_id": 26964, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26966, + "make_id": 26721, + "model_id": 26917, + "year_id": 26966, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26967, + "make_id": 26721, + "model_id": 26917, + "year_id": 26966, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26968, + "make_id": 26721, + "model_id": 26917, + "year_id": 26968, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26969, + "make_id": 26721, + "model_id": 26917, + "year_id": 26968, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26970, + "make_id": 26721, + "model_id": 26917, + "year_id": 26970, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26971, + "make_id": 26721, + "model_id": 26917, + "year_id": 26970, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26972, + "make_id": 26721, + "model_id": 26917, + "year_id": 26972, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26973, + "make_id": 26721, + "model_id": 26917, + "year_id": 26972, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26974, + "make_id": 26721, + "model_id": 26974, + "year_id": 26974, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26975, + "make_id": 26721, + "model_id": 26974, + "year_id": 26974, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26976, + "make_id": 26721, + "model_id": 26974, + "year_id": 26976, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26977, + "make_id": 26721, + "model_id": 26974, + "year_id": 26976, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26978, + "make_id": 26721, + "model_id": 26974, + "year_id": 26978, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26979, + "make_id": 26721, + "model_id": 26974, + "year_id": 26978, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26980, + "make_id": 26721, + "model_id": 26974, + "year_id": 26980, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26981, + "make_id": 26721, + "model_id": 26974, + "year_id": 26980, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26982, + "make_id": 26721, + "model_id": 26974, + "year_id": 26982, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 26983, + "make_id": 26721, + "model_id": 26974, + "year_id": 26982, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 26984, + "make_id": 26721, + "model_id": 26984, + "year_id": 26984, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26985, + "make_id": 26721, + "model_id": 26984, + "year_id": 26984, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26986, + "make_id": 26721, + "model_id": 26984, + "year_id": 26984, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26987, + "make_id": 26721, + "model_id": 26984, + "year_id": 26984, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26988, + "make_id": 26721, + "model_id": 26984, + "year_id": 26988, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26989, + "make_id": 26721, + "model_id": 26984, + "year_id": 26988, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26990, + "make_id": 26721, + "model_id": 26984, + "year_id": 26988, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26991, + "make_id": 26721, + "model_id": 26984, + "year_id": 26988, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26992, + "make_id": 26721, + "model_id": 26984, + "year_id": 26992, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26993, + "make_id": 26721, + "model_id": 26984, + "year_id": 26992, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26994, + "make_id": 26721, + "model_id": 26984, + "year_id": 26992, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26995, + "make_id": 26721, + "model_id": 26984, + "year_id": 26992, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26996, + "make_id": 26721, + "model_id": 26984, + "year_id": 26996, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26997, + "make_id": 26721, + "model_id": 26984, + "year_id": 26996, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 26998, + "make_id": 26721, + "model_id": 26984, + "year_id": 26996, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 26999, + "make_id": 26721, + "model_id": 26984, + "year_id": 26996, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27000, + "make_id": 26721, + "model_id": 26984, + "year_id": 27000, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27001, + "make_id": 26721, + "model_id": 26984, + "year_id": 27000, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27002, + "make_id": 26721, + "model_id": 26984, + "year_id": 27000, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27003, + "make_id": 26721, + "model_id": 26984, + "year_id": 27000, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27004, + "make_id": 26721, + "model_id": 26984, + "year_id": 27004, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27005, + "make_id": 26721, + "model_id": 27005, + "year_id": 27005, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27006, + "make_id": 26721, + "model_id": 27005, + "year_id": 27006, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27007, + "make_id": 26721, + "model_id": 27005, + "year_id": 27007, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27008, + "make_id": 26721, + "model_id": 27005, + "year_id": 27008, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27009, + "make_id": 26721, + "model_id": 27005, + "year_id": 27009, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27010, + "make_id": 26721, + "model_id": 27010, + "year_id": 27010, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27011, + "make_id": 26721, + "model_id": 27011, + "year_id": 27011, + "cylinders": 0, + "displacement": 0, + "drive": "", + "transmission": "" + }, + { + "id": 27012, + "make_id": 26721, + "model_id": 27012, + "year_id": 27012, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27013, + "make_id": 26721, + "model_id": 27012, + "year_id": 27012, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27014, + "make_id": 26721, + "model_id": 27012, + "year_id": 27014, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27015, + "make_id": 26721, + "model_id": 27012, + "year_id": 27014, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27016, + "make_id": 26721, + "model_id": 27012, + "year_id": 27016, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27017, + "make_id": 26721, + "model_id": 27012, + "year_id": 27016, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27018, + "make_id": 26721, + "model_id": 27012, + "year_id": 27016, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27019, + "make_id": 26721, + "model_id": 27012, + "year_id": 27016, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27020, + "make_id": 26721, + "model_id": 27012, + "year_id": 27020, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27021, + "make_id": 26721, + "model_id": 27012, + "year_id": 27020, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27022, + "make_id": 26721, + "model_id": 27012, + "year_id": 27020, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27023, + "make_id": 26721, + "model_id": 27012, + "year_id": 27020, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27024, + "make_id": 26721, + "model_id": 27012, + "year_id": 27024, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27025, + "make_id": 26721, + "model_id": 27012, + "year_id": 27024, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27026, + "make_id": 26721, + "model_id": 27012, + "year_id": 27024, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27027, + "make_id": 26721, + "model_id": 27012, + "year_id": 27024, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27028, + "make_id": 26721, + "model_id": 27012, + "year_id": 27028, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27029, + "make_id": 26721, + "model_id": 27012, + "year_id": 27028, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27030, + "make_id": 26721, + "model_id": 27012, + "year_id": 27028, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27031, + "make_id": 26721, + "model_id": 27012, + "year_id": 27028, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27032, + "make_id": 26721, + "model_id": 27012, + "year_id": 27032, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27033, + "make_id": 26721, + "model_id": 27012, + "year_id": 27032, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27034, + "make_id": 26721, + "model_id": 27012, + "year_id": 27032, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27035, + "make_id": 26721, + "model_id": 27012, + "year_id": 27032, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27036, + "make_id": 26721, + "model_id": 27012, + "year_id": 27036, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27037, + "make_id": 26721, + "model_id": 27012, + "year_id": 27036, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27038, + "make_id": 26721, + "model_id": 27012, + "year_id": 27036, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27039, + "make_id": 26721, + "model_id": 27012, + "year_id": 27036, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27040, + "make_id": 26721, + "model_id": 27012, + "year_id": 27040, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27041, + "make_id": 26721, + "model_id": 27012, + "year_id": 27040, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27042, + "make_id": 26721, + "model_id": 27012, + "year_id": 27040, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27043, + "make_id": 26721, + "model_id": 27012, + "year_id": 27040, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27044, + "make_id": 26721, + "model_id": 27012, + "year_id": 27044, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27045, + "make_id": 26721, + "model_id": 27012, + "year_id": 27044, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27046, + "make_id": 26721, + "model_id": 27012, + "year_id": 27044, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27047, + "make_id": 26721, + "model_id": 27012, + "year_id": 27044, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27048, + "make_id": 26721, + "model_id": 27012, + "year_id": 27048, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27049, + "make_id": 26721, + "model_id": 27012, + "year_id": 27048, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27050, + "make_id": 26721, + "model_id": 27012, + "year_id": 27048, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27051, + "make_id": 26721, + "model_id": 27012, + "year_id": 27048, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27052, + "make_id": 26721, + "model_id": 27052, + "year_id": 27052, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27053, + "make_id": 26721, + "model_id": 27052, + "year_id": 27052, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27054, + "make_id": 26721, + "model_id": 27052, + "year_id": 27052, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27055, + "make_id": 26721, + "model_id": 27052, + "year_id": 27052, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27056, + "make_id": 26721, + "model_id": 27052, + "year_id": 27056, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27057, + "make_id": 26721, + "model_id": 27052, + "year_id": 27056, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27058, + "make_id": 26721, + "model_id": 27052, + "year_id": 27056, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27059, + "make_id": 26721, + "model_id": 27052, + "year_id": 27056, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27060, + "make_id": 26721, + "model_id": 27052, + "year_id": 27060, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27061, + "make_id": 26721, + "model_id": 27052, + "year_id": 27060, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27062, + "make_id": 26721, + "model_id": 27052, + "year_id": 27060, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27063, + "make_id": 26721, + "model_id": 27052, + "year_id": 27060, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27064, + "make_id": 26721, + "model_id": 27064, + "year_id": 27064, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27065, + "make_id": 26721, + "model_id": 27064, + "year_id": 27064, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27066, + "make_id": 26721, + "model_id": 27064, + "year_id": 27066, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27067, + "make_id": 26721, + "model_id": 27064, + "year_id": 27066, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27068, + "make_id": 26721, + "model_id": 27064, + "year_id": 27068, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27069, + "make_id": 26721, + "model_id": 27064, + "year_id": 27068, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27070, + "make_id": 26721, + "model_id": 27064, + "year_id": 27070, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27071, + "make_id": 26721, + "model_id": 27064, + "year_id": 27070, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27072, + "make_id": 26721, + "model_id": 27064, + "year_id": 27072, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27073, + "make_id": 26721, + "model_id": 27064, + "year_id": 27072, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27074, + "make_id": 26721, + "model_id": 27064, + "year_id": 27074, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27075, + "make_id": 26721, + "model_id": 27064, + "year_id": 27074, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27076, + "make_id": 26721, + "model_id": 27076, + "year_id": 27076, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27077, + "make_id": 26721, + "model_id": 27076, + "year_id": 27076, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27078, + "make_id": 26721, + "model_id": 27076, + "year_id": 27076, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27079, + "make_id": 26721, + "model_id": 27076, + "year_id": 27079, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27080, + "make_id": 26721, + "model_id": 27076, + "year_id": 27079, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27081, + "make_id": 26721, + "model_id": 27076, + "year_id": 27079, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27082, + "make_id": 26721, + "model_id": 27076, + "year_id": 27082, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27083, + "make_id": 26721, + "model_id": 27076, + "year_id": 27082, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27084, + "make_id": 26721, + "model_id": 27076, + "year_id": 27082, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27085, + "make_id": 26721, + "model_id": 27076, + "year_id": 27085, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27086, + "make_id": 26721, + "model_id": 27076, + "year_id": 27085, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27087, + "make_id": 26721, + "model_id": 27076, + "year_id": 27087, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27088, + "make_id": 26721, + "model_id": 27076, + "year_id": 27087, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27089, + "make_id": 26721, + "model_id": 27076, + "year_id": 27089, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27090, + "make_id": 26721, + "model_id": 27076, + "year_id": 27089, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27091, + "make_id": 26721, + "model_id": 27076, + "year_id": 27091, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27092, + "make_id": 26721, + "model_id": 27076, + "year_id": 27091, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27093, + "make_id": 26721, + "model_id": 27076, + "year_id": 27093, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27094, + "make_id": 26721, + "model_id": 27076, + "year_id": 27093, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27095, + "make_id": 26721, + "model_id": 27076, + "year_id": 27095, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27096, + "make_id": 26721, + "model_id": 27076, + "year_id": 27095, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27097, + "make_id": 26721, + "model_id": 27076, + "year_id": 27097, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27098, + "make_id": 26721, + "model_id": 27076, + "year_id": 27097, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27099, + "make_id": 26721, + "model_id": 27076, + "year_id": 27099, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27100, + "make_id": 26721, + "model_id": 27076, + "year_id": 27099, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27101, + "make_id": 26721, + "model_id": 27076, + "year_id": 27099, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27102, + "make_id": 26721, + "model_id": 27076, + "year_id": 27099, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27103, + "make_id": 26721, + "model_id": 27076, + "year_id": 27099, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27104, + "make_id": 26721, + "model_id": 27076, + "year_id": 27099, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27105, + "make_id": 26721, + "model_id": 27076, + "year_id": 27105, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27106, + "make_id": 26721, + "model_id": 27076, + "year_id": 27105, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27107, + "make_id": 26721, + "model_id": 27076, + "year_id": 27105, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27108, + "make_id": 26721, + "model_id": 27076, + "year_id": 27105, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27109, + "make_id": 26721, + "model_id": 27076, + "year_id": 27105, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27110, + "make_id": 26721, + "model_id": 27076, + "year_id": 27105, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27111, + "make_id": 26721, + "model_id": 27076, + "year_id": 27111, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27112, + "make_id": 26721, + "model_id": 27076, + "year_id": 27111, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27113, + "make_id": 26721, + "model_id": 27076, + "year_id": 27111, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27114, + "make_id": 26721, + "model_id": 27076, + "year_id": 27111, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27115, + "make_id": 26721, + "model_id": 27076, + "year_id": 27111, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27116, + "make_id": 26721, + "model_id": 27076, + "year_id": 27111, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27117, + "make_id": 26721, + "model_id": 27076, + "year_id": 27117, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27118, + "make_id": 26721, + "model_id": 27076, + "year_id": 27117, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27119, + "make_id": 26721, + "model_id": 27076, + "year_id": 27117, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27120, + "make_id": 26721, + "model_id": 27076, + "year_id": 27117, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27121, + "make_id": 26721, + "model_id": 27076, + "year_id": 27117, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27122, + "make_id": 26721, + "model_id": 27076, + "year_id": 27117, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27123, + "make_id": 26721, + "model_id": 27076, + "year_id": 27123, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27124, + "make_id": 26721, + "model_id": 27076, + "year_id": 27123, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27125, + "make_id": 26721, + "model_id": 27076, + "year_id": 27123, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27126, + "make_id": 26721, + "model_id": 27076, + "year_id": 27123, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27127, + "make_id": 26721, + "model_id": 27076, + "year_id": 27123, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27128, + "make_id": 26721, + "model_id": 27076, + "year_id": 27123, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27129, + "make_id": 26721, + "model_id": 27076, + "year_id": 27129, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27130, + "make_id": 26721, + "model_id": 27076, + "year_id": 27129, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27131, + "make_id": 26721, + "model_id": 27076, + "year_id": 27129, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27132, + "make_id": 26721, + "model_id": 27076, + "year_id": 27129, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27133, + "make_id": 26721, + "model_id": 27076, + "year_id": 27129, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27134, + "make_id": 26721, + "model_id": 27076, + "year_id": 27129, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27135, + "make_id": 26721, + "model_id": 27076, + "year_id": 27135, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27136, + "make_id": 26721, + "model_id": 27076, + "year_id": 27135, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27137, + "make_id": 26721, + "model_id": 27076, + "year_id": 27135, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27138, + "make_id": 26721, + "model_id": 27076, + "year_id": 27135, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27139, + "make_id": 26721, + "model_id": 27076, + "year_id": 27135, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27140, + "make_id": 26721, + "model_id": 27076, + "year_id": 27135, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27141, + "make_id": 26721, + "model_id": 27076, + "year_id": 27141, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27142, + "make_id": 26721, + "model_id": 27076, + "year_id": 27141, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27143, + "make_id": 26721, + "model_id": 27076, + "year_id": 27141, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27144, + "make_id": 26721, + "model_id": 27076, + "year_id": 27141, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27145, + "make_id": 26721, + "model_id": 27076, + "year_id": 27141, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27146, + "make_id": 26721, + "model_id": 27076, + "year_id": 27141, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27147, + "make_id": 26721, + "model_id": 27076, + "year_id": 27147, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27148, + "make_id": 26721, + "model_id": 27076, + "year_id": 27147, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27149, + "make_id": 26721, + "model_id": 27076, + "year_id": 27147, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27150, + "make_id": 26721, + "model_id": 27076, + "year_id": 27147, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27151, + "make_id": 26721, + "model_id": 27076, + "year_id": 27147, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27152, + "make_id": 26721, + "model_id": 27076, + "year_id": 27147, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27153, + "make_id": 26721, + "model_id": 27153, + "year_id": 27153, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27154, + "make_id": 26721, + "model_id": 27153, + "year_id": 27153, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27155, + "make_id": 26721, + "model_id": 27153, + "year_id": 27155, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27156, + "make_id": 26721, + "model_id": 27153, + "year_id": 27155, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27157, + "make_id": 26721, + "model_id": 27153, + "year_id": 27155, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27158, + "make_id": 26721, + "model_id": 27153, + "year_id": 27155, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27159, + "make_id": 26721, + "model_id": 27153, + "year_id": 27159, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27160, + "make_id": 26721, + "model_id": 27153, + "year_id": 27159, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27161, + "make_id": 26721, + "model_id": 27153, + "year_id": 27159, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27162, + "make_id": 26721, + "model_id": 27153, + "year_id": 27159, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27163, + "make_id": 26721, + "model_id": 27153, + "year_id": 27159, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27164, + "make_id": 26721, + "model_id": 27153, + "year_id": 27159, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27165, + "make_id": 26721, + "model_id": 27153, + "year_id": 27159, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27166, + "make_id": 26721, + "model_id": 27153, + "year_id": 27159, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27167, + "make_id": 26721, + "model_id": 27153, + "year_id": 27167, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27168, + "make_id": 26721, + "model_id": 27153, + "year_id": 27167, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27169, + "make_id": 26721, + "model_id": 27153, + "year_id": 27167, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27170, + "make_id": 26721, + "model_id": 27153, + "year_id": 27167, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27171, + "make_id": 26721, + "model_id": 27153, + "year_id": 27167, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27172, + "make_id": 26721, + "model_id": 27153, + "year_id": 27167, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27173, + "make_id": 26721, + "model_id": 27153, + "year_id": 27167, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27174, + "make_id": 26721, + "model_id": 27153, + "year_id": 27167, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27175, + "make_id": 26721, + "model_id": 27153, + "year_id": 27175, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27176, + "make_id": 26721, + "model_id": 27153, + "year_id": 27175, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27177, + "make_id": 26721, + "model_id": 27153, + "year_id": 27175, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27178, + "make_id": 26721, + "model_id": 27153, + "year_id": 27175, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27179, + "make_id": 26721, + "model_id": 27153, + "year_id": 27175, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27180, + "make_id": 26721, + "model_id": 27153, + "year_id": 27175, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27181, + "make_id": 26721, + "model_id": 27153, + "year_id": 27175, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27182, + "make_id": 26721, + "model_id": 27153, + "year_id": 27175, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27183, + "make_id": 26721, + "model_id": 27153, + "year_id": 27183, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27184, + "make_id": 26721, + "model_id": 27153, + "year_id": 27183, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27185, + "make_id": 26721, + "model_id": 27153, + "year_id": 27183, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27186, + "make_id": 26721, + "model_id": 27153, + "year_id": 27183, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27187, + "make_id": 26721, + "model_id": 27153, + "year_id": 27183, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27188, + "make_id": 26721, + "model_id": 27153, + "year_id": 27183, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27189, + "make_id": 26721, + "model_id": 27153, + "year_id": 27183, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27190, + "make_id": 26721, + "model_id": 27153, + "year_id": 27183, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27191, + "make_id": 26721, + "model_id": 27153, + "year_id": 27191, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27192, + "make_id": 26721, + "model_id": 27153, + "year_id": 27191, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27193, + "make_id": 26721, + "model_id": 27153, + "year_id": 27191, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27194, + "make_id": 26721, + "model_id": 27153, + "year_id": 27191, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27195, + "make_id": 26721, + "model_id": 27153, + "year_id": 27195, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27196, + "make_id": 26721, + "model_id": 27153, + "year_id": 27195, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27197, + "make_id": 26721, + "model_id": 27153, + "year_id": 27195, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27198, + "make_id": 26721, + "model_id": 27153, + "year_id": 27195, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27199, + "make_id": 26721, + "model_id": 27153, + "year_id": 27199, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27200, + "make_id": 26721, + "model_id": 27153, + "year_id": 27199, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27201, + "make_id": 26721, + "model_id": 27153, + "year_id": 27199, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27202, + "make_id": 26721, + "model_id": 27153, + "year_id": 27199, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27203, + "make_id": 26721, + "model_id": 27203, + "year_id": 27203, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 27204, + "make_id": 26721, + "model_id": 27203, + "year_id": 27204, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 27205, + "make_id": 26721, + "model_id": 27203, + "year_id": 27205, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 27206, + "make_id": 26721, + "model_id": 27203, + "year_id": 27206, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 27207, + "make_id": 26721, + "model_id": 27203, + "year_id": 27207, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 27208, + "make_id": 26721, + "model_id": 27203, + "year_id": 27208, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 27209, + "make_id": 26721, + "model_id": 27203, + "year_id": 27209, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 27210, + "make_id": 26721, + "model_id": 27203, + "year_id": 27210, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 27211, + "make_id": 26721, + "model_id": 27203, + "year_id": 27211, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 27212, + "make_id": 26721, + "model_id": 27212, + "year_id": 27212, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27213, + "make_id": 26721, + "model_id": 27212, + "year_id": 27212, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27214, + "make_id": 26721, + "model_id": 27212, + "year_id": 27212, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27215, + "make_id": 26721, + "model_id": 27212, + "year_id": 27212, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27216, + "make_id": 26721, + "model_id": 27212, + "year_id": 27212, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27217, + "make_id": 26721, + "model_id": 27212, + "year_id": 27212, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27218, + "make_id": 26721, + "model_id": 27212, + "year_id": 27212, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27219, + "make_id": 26721, + "model_id": 27219, + "year_id": 27219, + "cylinders": 0, + "displacement": 0, + "drive": "", + "transmission": "" + }, + { + "id": 27220, + "make_id": 26721, + "model_id": 27220, + "year_id": 27220, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27221, + "make_id": 26721, + "model_id": 27220, + "year_id": 27220, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27222, + "make_id": 26721, + "model_id": 27220, + "year_id": 27220, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27223, + "make_id": 26721, + "model_id": 27220, + "year_id": 27223, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27224, + "make_id": 26721, + "model_id": 27220, + "year_id": 27223, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27225, + "make_id": 26721, + "model_id": 27220, + "year_id": 27223, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27226, + "make_id": 26721, + "model_id": 27220, + "year_id": 27226, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27227, + "make_id": 26721, + "model_id": 27220, + "year_id": 27226, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27228, + "make_id": 26721, + "model_id": 27220, + "year_id": 27226, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27229, + "make_id": 26721, + "model_id": 27220, + "year_id": 27229, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27230, + "make_id": 26721, + "model_id": 27220, + "year_id": 27229, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27231, + "make_id": 26721, + "model_id": 27220, + "year_id": 27229, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27232, + "make_id": 26721, + "model_id": 27220, + "year_id": 27232, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27233, + "make_id": 26721, + "model_id": 27220, + "year_id": 27232, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27234, + "make_id": 26721, + "model_id": 27220, + "year_id": 27232, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27235, + "make_id": 26721, + "model_id": 27220, + "year_id": 27235, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27236, + "make_id": 26721, + "model_id": 27220, + "year_id": 27235, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27237, + "make_id": 26721, + "model_id": 27220, + "year_id": 27235, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27238, + "make_id": 26721, + "model_id": 27238, + "year_id": 27238, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27239, + "make_id": 26721, + "model_id": 27238, + "year_id": 27238, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27240, + "make_id": 26721, + "model_id": 27238, + "year_id": 27240, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27241, + "make_id": 26721, + "model_id": 27238, + "year_id": 27240, + "cylinders": 4, + "displacement": 1.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27242, + "make_id": 26721, + "model_id": 27242, + "year_id": 27242, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 27243, + "make_id": 26721, + "model_id": 27242, + "year_id": 27243, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 27244, + "make_id": 26721, + "model_id": 27242, + "year_id": 27244, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 27245, + "make_id": 26721, + "model_id": 27242, + "year_id": 27245, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 27246, + "make_id": 26721, + "model_id": 27242, + "year_id": 27246, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 27247, + "make_id": 26721, + "model_id": 27247, + "year_id": 27247, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 27248, + "make_id": 26721, + "model_id": 27248, + "year_id": 27248, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 27249, + "make_id": 26721, + "model_id": 27249, + "year_id": 27249, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 27250, + "make_id": 26721, + "model_id": 27249, + "year_id": 27249, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27251, + "make_id": 26721, + "model_id": 27249, + "year_id": 27249, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 27252, + "make_id": 26721, + "model_id": 27249, + "year_id": 27249, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27253, + "make_id": 26721, + "model_id": 27249, + "year_id": 27253, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27254, + "make_id": 26721, + "model_id": 27249, + "year_id": 27253, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27255, + "make_id": 26721, + "model_id": 27249, + "year_id": 27253, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27256, + "make_id": 26721, + "model_id": 27249, + "year_id": 27256, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27257, + "make_id": 26721, + "model_id": 27249, + "year_id": 27256, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27258, + "make_id": 26721, + "model_id": 27249, + "year_id": 27258, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27259, + "make_id": 26721, + "model_id": 27249, + "year_id": 27258, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27260, + "make_id": 26721, + "model_id": 27249, + "year_id": 27260, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27261, + "make_id": 26721, + "model_id": 27249, + "year_id": 27260, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27262, + "make_id": 26721, + "model_id": 27249, + "year_id": 27262, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27263, + "make_id": 26721, + "model_id": 27249, + "year_id": 27262, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27264, + "make_id": 26721, + "model_id": 27249, + "year_id": 27264, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27265, + "make_id": 26721, + "model_id": 27249, + "year_id": 27264, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27266, + "make_id": 26721, + "model_id": 27249, + "year_id": 27266, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27267, + "make_id": 26721, + "model_id": 27249, + "year_id": 27266, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27268, + "make_id": 26721, + "model_id": 27249, + "year_id": 27268, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27269, + "make_id": 26721, + "model_id": 27249, + "year_id": 27268, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27270, + "make_id": 26721, + "model_id": 27249, + "year_id": 27268, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27271, + "make_id": 26721, + "model_id": 27249, + "year_id": 27271, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27272, + "make_id": 26721, + "model_id": 27249, + "year_id": 27271, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27273, + "make_id": 26721, + "model_id": 27249, + "year_id": 27271, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27274, + "make_id": 26721, + "model_id": 27249, + "year_id": 27274, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27275, + "make_id": 26721, + "model_id": 27249, + "year_id": 27274, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27276, + "make_id": 26721, + "model_id": 27249, + "year_id": 27274, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27277, + "make_id": 26721, + "model_id": 27249, + "year_id": 27277, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27278, + "make_id": 26721, + "model_id": 27249, + "year_id": 27277, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27279, + "make_id": 26721, + "model_id": 27249, + "year_id": 27279, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27280, + "make_id": 26721, + "model_id": 27249, + "year_id": 27279, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27281, + "make_id": 26721, + "model_id": 27249, + "year_id": 27281, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27282, + "make_id": 26721, + "model_id": 27249, + "year_id": 27281, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27283, + "make_id": 26721, + "model_id": 27249, + "year_id": 27283, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27284, + "make_id": 26721, + "model_id": 27249, + "year_id": 27283, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27285, + "make_id": 26721, + "model_id": 27249, + "year_id": 27285, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27286, + "make_id": 26721, + "model_id": 27249, + "year_id": 27285, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27287, + "make_id": 26721, + "model_id": 27249, + "year_id": 27287, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27288, + "make_id": 26721, + "model_id": 27249, + "year_id": 27287, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27289, + "make_id": 26721, + "model_id": 27249, + "year_id": 27289, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27290, + "make_id": 26721, + "model_id": 27249, + "year_id": 27289, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27291, + "make_id": 26721, + "model_id": 27249, + "year_id": 27291, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27292, + "make_id": 26721, + "model_id": 27249, + "year_id": 27291, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27293, + "make_id": 26721, + "model_id": 27249, + "year_id": 27293, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27294, + "make_id": 26721, + "model_id": 27249, + "year_id": 27293, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27295, + "make_id": 26721, + "model_id": 27249, + "year_id": 27295, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27296, + "make_id": 26721, + "model_id": 27249, + "year_id": 27295, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27297, + "make_id": 26721, + "model_id": 27249, + "year_id": 27295, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27298, + "make_id": 26721, + "model_id": 27249, + "year_id": 27298, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27299, + "make_id": 26721, + "model_id": 27249, + "year_id": 27298, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27300, + "make_id": 26721, + "model_id": 27249, + "year_id": 27300, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27301, + "make_id": 26721, + "model_id": 27249, + "year_id": 27300, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27302, + "make_id": 26721, + "model_id": 27249, + "year_id": 27302, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27303, + "make_id": 26721, + "model_id": 27249, + "year_id": 27303, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27304, + "make_id": 26721, + "model_id": 27249, + "year_id": 27304, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27305, + "make_id": 26721, + "model_id": 27249, + "year_id": 27305, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27306, + "make_id": 26721, + "model_id": 27249, + "year_id": 27306, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27307, + "make_id": 26721, + "model_id": 27249, + "year_id": 27307, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27308, + "make_id": 26721, + "model_id": 27249, + "year_id": 27308, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27309, + "make_id": 26721, + "model_id": 27249, + "year_id": 27309, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27310, + "make_id": 26721, + "model_id": 27249, + "year_id": 27310, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27311, + "make_id": 26721, + "model_id": 27249, + "year_id": 27311, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27312, + "make_id": 26721, + "model_id": 27312, + "year_id": 27312, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 27313, + "make_id": 26721, + "model_id": 27312, + "year_id": 27312, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 27314, + "make_id": 26721, + "model_id": 27312, + "year_id": 27314, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27315, + "make_id": 26721, + "model_id": 27312, + "year_id": 27315, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27316, + "make_id": 26721, + "model_id": 27312, + "year_id": 27316, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27317, + "make_id": 26721, + "model_id": 27312, + "year_id": 27317, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27318, + "make_id": 26721, + "model_id": 27318, + "year_id": 27318, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27319, + "make_id": 26721, + "model_id": 27318, + "year_id": 27318, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27320, + "make_id": 26721, + "model_id": 27318, + "year_id": 27320, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27321, + "make_id": 26721, + "model_id": 27318, + "year_id": 27320, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27322, + "make_id": 26721, + "model_id": 27318, + "year_id": 27322, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27323, + "make_id": 26721, + "model_id": 27318, + "year_id": 27322, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27324, + "make_id": 26721, + "model_id": 27318, + "year_id": 27324, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27325, + "make_id": 26721, + "model_id": 27318, + "year_id": 27324, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27326, + "make_id": 26721, + "model_id": 27318, + "year_id": 27326, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27327, + "make_id": 26721, + "model_id": 27318, + "year_id": 27326, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27328, + "make_id": 26721, + "model_id": 27318, + "year_id": 27328, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27329, + "make_id": 26721, + "model_id": 27318, + "year_id": 27328, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27330, + "make_id": 26721, + "model_id": 27318, + "year_id": 27330, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27331, + "make_id": 26721, + "model_id": 27318, + "year_id": 27330, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27332, + "make_id": 26721, + "model_id": 27318, + "year_id": 27332, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27333, + "make_id": 26721, + "model_id": 27318, + "year_id": 27332, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27334, + "make_id": 26721, + "model_id": 27318, + "year_id": 27334, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27335, + "make_id": 26721, + "model_id": 27318, + "year_id": 27334, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27336, + "make_id": 26721, + "model_id": 27318, + "year_id": 27336, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27337, + "make_id": 26721, + "model_id": 27318, + "year_id": 27336, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27338, + "make_id": 26721, + "model_id": 27318, + "year_id": 27338, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27339, + "make_id": 26721, + "model_id": 27318, + "year_id": 27338, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27340, + "make_id": 26721, + "model_id": 27318, + "year_id": 27340, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27341, + "make_id": 26721, + "model_id": 27318, + "year_id": 27340, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27342, + "make_id": 26721, + "model_id": 27318, + "year_id": 27342, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27343, + "make_id": 26721, + "model_id": 27318, + "year_id": 27342, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27344, + "make_id": 26721, + "model_id": 27344, + "year_id": 27344, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27345, + "make_id": 26721, + "model_id": 27344, + "year_id": 27345, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27346, + "make_id": 26721, + "model_id": 27344, + "year_id": 27346, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27347, + "make_id": 26721, + "model_id": 27344, + "year_id": 27347, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27348, + "make_id": 26721, + "model_id": 27348, + "year_id": 27348, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27349, + "make_id": 26721, + "model_id": 27348, + "year_id": 27348, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27350, + "make_id": 26721, + "model_id": 27350, + "year_id": 27350, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27351, + "make_id": 26721, + "model_id": 27350, + "year_id": 27351, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27352, + "make_id": 26721, + "model_id": 27350, + "year_id": 27352, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27353, + "make_id": 26721, + "model_id": 27350, + "year_id": 27353, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27354, + "make_id": 26721, + "model_id": 27354, + "year_id": 27354, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27355, + "make_id": 26721, + "model_id": 27354, + "year_id": 27355, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27356, + "make_id": 26721, + "model_id": 27356, + "year_id": 27356, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27357, + "make_id": 26721, + "model_id": 27356, + "year_id": 27356, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27358, + "make_id": 26721, + "model_id": 27356, + "year_id": 27356, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27359, + "make_id": 26721, + "model_id": 27356, + "year_id": 27356, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27360, + "make_id": 26721, + "model_id": 27356, + "year_id": 27360, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27361, + "make_id": 26721, + "model_id": 27356, + "year_id": 27360, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27362, + "make_id": 26721, + "model_id": 27356, + "year_id": 27360, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27363, + "make_id": 26721, + "model_id": 27356, + "year_id": 27360, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27364, + "make_id": 26721, + "model_id": 27364, + "year_id": 27364, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27365, + "make_id": 26721, + "model_id": 27364, + "year_id": 27364, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27366, + "make_id": 26721, + "model_id": 27364, + "year_id": 27364, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27367, + "make_id": 26721, + "model_id": 27364, + "year_id": 27364, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27368, + "make_id": 26721, + "model_id": 27368, + "year_id": 27368, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27369, + "make_id": 26721, + "model_id": 27368, + "year_id": 27369, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27370, + "make_id": 26721, + "model_id": 27368, + "year_id": 27369, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27371, + "make_id": 26721, + "model_id": 27368, + "year_id": 27369, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27372, + "make_id": 26721, + "model_id": 27368, + "year_id": 27372, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27373, + "make_id": 26721, + "model_id": 27368, + "year_id": 27372, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27374, + "make_id": 26721, + "model_id": 27368, + "year_id": 27372, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27375, + "make_id": 26721, + "model_id": 27368, + "year_id": 27375, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27376, + "make_id": 26721, + "model_id": 27368, + "year_id": 27375, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27377, + "make_id": 26721, + "model_id": 27368, + "year_id": 27375, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27378, + "make_id": 26721, + "model_id": 27368, + "year_id": 27375, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27379, + "make_id": 26721, + "model_id": 27368, + "year_id": 27375, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27380, + "make_id": 26721, + "model_id": 27368, + "year_id": 27380, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27381, + "make_id": 26721, + "model_id": 27368, + "year_id": 27380, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27382, + "make_id": 26721, + "model_id": 27368, + "year_id": 27380, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27383, + "make_id": 26721, + "model_id": 27368, + "year_id": 27380, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27384, + "make_id": 26721, + "model_id": 27368, + "year_id": 27384, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27385, + "make_id": 26721, + "model_id": 27368, + "year_id": 27384, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27386, + "make_id": 26721, + "model_id": 27368, + "year_id": 27384, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27387, + "make_id": 26721, + "model_id": 27368, + "year_id": 27384, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27388, + "make_id": 26721, + "model_id": 27368, + "year_id": 27388, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27389, + "make_id": 26721, + "model_id": 27368, + "year_id": 27388, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27390, + "make_id": 26721, + "model_id": 27368, + "year_id": 27388, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27391, + "make_id": 26721, + "model_id": 27368, + "year_id": 27388, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27392, + "make_id": 26721, + "model_id": 27368, + "year_id": 27392, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27393, + "make_id": 26721, + "model_id": 27368, + "year_id": 27392, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27394, + "make_id": 26721, + "model_id": 27368, + "year_id": 27392, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27395, + "make_id": 26721, + "model_id": 27368, + "year_id": 27392, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27396, + "make_id": 26721, + "model_id": 27368, + "year_id": 27396, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27397, + "make_id": 26721, + "model_id": 27368, + "year_id": 27396, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27398, + "make_id": 26721, + "model_id": 27368, + "year_id": 27396, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27399, + "make_id": 26721, + "model_id": 27368, + "year_id": 27396, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27400, + "make_id": 26721, + "model_id": 27368, + "year_id": 27400, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27401, + "make_id": 26721, + "model_id": 27368, + "year_id": 27400, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27402, + "make_id": 26721, + "model_id": 27368, + "year_id": 27400, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27403, + "make_id": 26721, + "model_id": 27368, + "year_id": 27400, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27404, + "make_id": 26721, + "model_id": 27368, + "year_id": 27404, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27405, + "make_id": 26721, + "model_id": 27368, + "year_id": 27404, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27406, + "make_id": 26721, + "model_id": 27368, + "year_id": 27404, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27407, + "make_id": 26721, + "model_id": 27368, + "year_id": 27404, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27408, + "make_id": 26721, + "model_id": 27368, + "year_id": 27408, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27409, + "make_id": 26721, + "model_id": 27368, + "year_id": 27408, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27410, + "make_id": 26721, + "model_id": 27368, + "year_id": 27408, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27411, + "make_id": 26721, + "model_id": 27368, + "year_id": 27408, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27412, + "make_id": 26721, + "model_id": 27368, + "year_id": 27412, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27413, + "make_id": 26721, + "model_id": 27368, + "year_id": 27412, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27414, + "make_id": 26721, + "model_id": 27368, + "year_id": 27412, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27415, + "make_id": 26721, + "model_id": 27368, + "year_id": 27412, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27416, + "make_id": 26721, + "model_id": 27368, + "year_id": 27416, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27417, + "make_id": 26721, + "model_id": 27368, + "year_id": 27416, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27418, + "make_id": 26721, + "model_id": 27368, + "year_id": 27416, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27419, + "make_id": 26721, + "model_id": 27368, + "year_id": 27416, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27420, + "make_id": 26721, + "model_id": 27368, + "year_id": 27416, + "cylinders": 6, + "displacement": 3.3, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27421, + "make_id": 26721, + "model_id": 27368, + "year_id": 27416, + "cylinders": 6, + "displacement": 3.3, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27422, + "make_id": 26721, + "model_id": 27368, + "year_id": 27416, + "cylinders": 6, + "displacement": 3.3, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27423, + "make_id": 26721, + "model_id": 27368, + "year_id": 27416, + "cylinders": 6, + "displacement": 3.3, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27424, + "make_id": 26721, + "model_id": 27368, + "year_id": 27424, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27425, + "make_id": 26721, + "model_id": 27368, + "year_id": 27424, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27426, + "make_id": 26721, + "model_id": 27368, + "year_id": 27424, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27427, + "make_id": 26721, + "model_id": 27368, + "year_id": 27424, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27428, + "make_id": 26721, + "model_id": 27368, + "year_id": 27428, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27429, + "make_id": 26721, + "model_id": 27368, + "year_id": 27428, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27430, + "make_id": 26721, + "model_id": 27368, + "year_id": 27428, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27431, + "make_id": 26721, + "model_id": 27368, + "year_id": 27428, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27432, + "make_id": 26721, + "model_id": 27368, + "year_id": 27428, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27433, + "make_id": 26721, + "model_id": 27368, + "year_id": 27433, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27434, + "make_id": 26721, + "model_id": 27368, + "year_id": 27433, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27435, + "make_id": 26721, + "model_id": 27368, + "year_id": 27433, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27436, + "make_id": 26721, + "model_id": 27368, + "year_id": 27433, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27437, + "make_id": 26721, + "model_id": 27368, + "year_id": 27433, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27438, + "make_id": 26721, + "model_id": 27368, + "year_id": 27438, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27439, + "make_id": 26721, + "model_id": 27368, + "year_id": 27438, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27440, + "make_id": 26721, + "model_id": 27368, + "year_id": 27438, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27441, + "make_id": 26721, + "model_id": 27368, + "year_id": 27438, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27442, + "make_id": 26721, + "model_id": 27368, + "year_id": 27442, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27443, + "make_id": 26721, + "model_id": 27368, + "year_id": 27442, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27444, + "make_id": 26721, + "model_id": 27368, + "year_id": 27444, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27445, + "make_id": 26721, + "model_id": 27368, + "year_id": 27444, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27446, + "make_id": 26721, + "model_id": 27368, + "year_id": 27446, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27447, + "make_id": 26721, + "model_id": 27368, + "year_id": 27446, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27448, + "make_id": 26721, + "model_id": 27368, + "year_id": 27448, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27449, + "make_id": 26721, + "model_id": 27368, + "year_id": 27448, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27450, + "make_id": 26721, + "model_id": 27368, + "year_id": 27450, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27451, + "make_id": 26721, + "model_id": 27368, + "year_id": 27450, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27452, + "make_id": 26721, + "model_id": 27368, + "year_id": 27450, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27453, + "make_id": 26721, + "model_id": 27368, + "year_id": 27450, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27454, + "make_id": 26721, + "model_id": 27368, + "year_id": 27454, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27455, + "make_id": 26721, + "model_id": 27368, + "year_id": 27454, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27456, + "make_id": 26721, + "model_id": 27368, + "year_id": 27454, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27457, + "make_id": 26721, + "model_id": 27368, + "year_id": 27454, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27458, + "make_id": 26721, + "model_id": 27368, + "year_id": 27458, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27459, + "make_id": 26721, + "model_id": 27368, + "year_id": 27458, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27460, + "make_id": 26721, + "model_id": 27368, + "year_id": 27458, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27461, + "make_id": 26721, + "model_id": 27368, + "year_id": 27461, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27462, + "make_id": 26721, + "model_id": 27368, + "year_id": 27461, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27463, + "make_id": 26721, + "model_id": 27368, + "year_id": 27461, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27464, + "make_id": 26721, + "model_id": 27368, + "year_id": 27464, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27465, + "make_id": 26721, + "model_id": 27368, + "year_id": 27464, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27466, + "make_id": 26721, + "model_id": 27368, + "year_id": 27464, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27467, + "make_id": 26721, + "model_id": 27368, + "year_id": 27467, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27468, + "make_id": 26721, + "model_id": 27368, + "year_id": 27467, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27469, + "make_id": 26721, + "model_id": 27368, + "year_id": 27469, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27470, + "make_id": 26721, + "model_id": 27368, + "year_id": 27469, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27471, + "make_id": 26721, + "model_id": 27368, + "year_id": 27471, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27472, + "make_id": 26721, + "model_id": 27368, + "year_id": 27471, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27473, + "make_id": 26721, + "model_id": 27368, + "year_id": 27473, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27474, + "make_id": 26721, + "model_id": 27368, + "year_id": 27473, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27475, + "make_id": 26721, + "model_id": 27475, + "year_id": 27475, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27476, + "make_id": 26721, + "model_id": 27475, + "year_id": 27475, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27477, + "make_id": 26721, + "model_id": 27477, + "year_id": 27477, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27478, + "make_id": 26721, + "model_id": 27477, + "year_id": 27478, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27479, + "make_id": 26721, + "model_id": 27479, + "year_id": 27479, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27480, + "make_id": 26721, + "model_id": 27479, + "year_id": 27479, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27481, + "make_id": 26721, + "model_id": 27479, + "year_id": 27481, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27482, + "make_id": 26721, + "model_id": 27479, + "year_id": 27481, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27483, + "make_id": 26721, + "model_id": 27483, + "year_id": 27483, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27484, + "make_id": 26721, + "model_id": 27483, + "year_id": 27484, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27485, + "make_id": 26721, + "model_id": 27485, + "year_id": 27485, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27486, + "make_id": 26721, + "model_id": 27485, + "year_id": 27485, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27487, + "make_id": 26721, + "model_id": 27485, + "year_id": 27485, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27488, + "make_id": 26721, + "model_id": 27485, + "year_id": 27485, + "cylinders": 4, + "displacement": 2.5, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27489, + "make_id": 26721, + "model_id": 27485, + "year_id": 27485, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27490, + "make_id": 26721, + "model_id": 27485, + "year_id": 27485, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27491, + "make_id": 26721, + "model_id": 27485, + "year_id": 27485, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27492, + "make_id": 26721, + "model_id": 27485, + "year_id": 27485, + "cylinders": 4, + "displacement": 2.5, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27493, + "make_id": 26721, + "model_id": 27485, + "year_id": 27485, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27494, + "make_id": 26721, + "model_id": 27494, + "year_id": 27494, + "cylinders": 4, + "displacement": 2.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27495, + "make_id": 26721, + "model_id": 27494, + "year_id": 27494, + "cylinders": 4, + "displacement": 2.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27496, + "make_id": 26721, + "model_id": 27496, + "year_id": 27496, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27497, + "make_id": 26721, + "model_id": 27496, + "year_id": 27496, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27498, + "make_id": 26721, + "model_id": 27496, + "year_id": 27498, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27499, + "make_id": 26721, + "model_id": 27496, + "year_id": 27498, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27500, + "make_id": 26721, + "model_id": 27496, + "year_id": 27498, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27501, + "make_id": 26721, + "model_id": 27496, + "year_id": 27501, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27502, + "make_id": 26721, + "model_id": 27496, + "year_id": 27501, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27503, + "make_id": 26721, + "model_id": 27496, + "year_id": 27501, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27504, + "make_id": 26721, + "model_id": 27496, + "year_id": 27501, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27505, + "make_id": 26721, + "model_id": 27496, + "year_id": 27505, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27506, + "make_id": 26721, + "model_id": 27496, + "year_id": 27505, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27507, + "make_id": 26721, + "model_id": 27496, + "year_id": 27505, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27508, + "make_id": 26721, + "model_id": 27496, + "year_id": 27505, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27509, + "make_id": 26721, + "model_id": 27496, + "year_id": 27509, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27510, + "make_id": 26721, + "model_id": 27496, + "year_id": 27509, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27511, + "make_id": 26721, + "model_id": 27496, + "year_id": 27509, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27512, + "make_id": 26721, + "model_id": 27496, + "year_id": 27509, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27513, + "make_id": 26721, + "model_id": 27513, + "year_id": 27513, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 27514, + "make_id": 26721, + "model_id": 27513, + "year_id": 27513, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27515, + "make_id": 26721, + "model_id": 27513, + "year_id": 27513, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 27516, + "make_id": 26721, + "model_id": 27513, + "year_id": 27513, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27517, + "make_id": 26721, + "model_id": 27513, + "year_id": 27517, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27518, + "make_id": 26721, + "model_id": 27513, + "year_id": 27517, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27519, + "make_id": 26721, + "model_id": 27513, + "year_id": 27517, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27520, + "make_id": 26721, + "model_id": 27513, + "year_id": 27517, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27521, + "make_id": 26721, + "model_id": 27513, + "year_id": 27517, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27522, + "make_id": 26721, + "model_id": 27513, + "year_id": 27517, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27523, + "make_id": 26721, + "model_id": 27523, + "year_id": 27523, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27524, + "make_id": 26721, + "model_id": 27523, + "year_id": 27524, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27525, + "make_id": 26721, + "model_id": 27523, + "year_id": 27525, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27526, + "make_id": 26721, + "model_id": 27523, + "year_id": 27526, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27527, + "make_id": 26721, + "model_id": 27523, + "year_id": 27527, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27528, + "make_id": 26721, + "model_id": 27523, + "year_id": 27528, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27529, + "make_id": 26721, + "model_id": 27523, + "year_id": 27529, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27530, + "make_id": 26721, + "model_id": 27523, + "year_id": 27530, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27531, + "make_id": 26721, + "model_id": 27523, + "year_id": 27531, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27532, + "make_id": 26721, + "model_id": 27523, + "year_id": 27532, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27533, + "make_id": 26721, + "model_id": 27523, + "year_id": 27533, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27534, + "make_id": 26721, + "model_id": 27523, + "year_id": 27533, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27535, + "make_id": 26721, + "model_id": 27523, + "year_id": 27535, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27536, + "make_id": 26721, + "model_id": 27523, + "year_id": 27535, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27537, + "make_id": 26721, + "model_id": 27523, + "year_id": 27537, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27538, + "make_id": 26721, + "model_id": 27523, + "year_id": 27537, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27539, + "make_id": 26721, + "model_id": 27523, + "year_id": 27539, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27540, + "make_id": 26721, + "model_id": 27523, + "year_id": 27540, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27541, + "make_id": 26721, + "model_id": 27523, + "year_id": 27541, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27542, + "make_id": 26721, + "model_id": 27523, + "year_id": 27542, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27543, + "make_id": 26721, + "model_id": 27523, + "year_id": 27543, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27544, + "make_id": 26721, + "model_id": 27523, + "year_id": 27544, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27545, + "make_id": 26721, + "model_id": 27523, + "year_id": 27545, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27546, + "make_id": 26721, + "model_id": 27523, + "year_id": 27546, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27547, + "make_id": 26721, + "model_id": 27523, + "year_id": 27547, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27548, + "make_id": 26721, + "model_id": 27548, + "year_id": 27548, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27549, + "make_id": 26721, + "model_id": 27548, + "year_id": 27548, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27550, + "make_id": 26721, + "model_id": 27548, + "year_id": 27550, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27551, + "make_id": 26721, + "model_id": 27548, + "year_id": 27550, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27552, + "make_id": 26721, + "model_id": 27548, + "year_id": 27552, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27553, + "make_id": 26721, + "model_id": 27548, + "year_id": 27552, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27554, + "make_id": 26721, + "model_id": 27548, + "year_id": 27554, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27555, + "make_id": 26721, + "model_id": 27548, + "year_id": 27554, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27556, + "make_id": 26721, + "model_id": 27548, + "year_id": 27556, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27557, + "make_id": 26721, + "model_id": 27548, + "year_id": 27556, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27558, + "make_id": 26721, + "model_id": 27548, + "year_id": 27558, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27559, + "make_id": 26721, + "model_id": 27548, + "year_id": 27558, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27560, + "make_id": 26721, + "model_id": 27548, + "year_id": 27560, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27561, + "make_id": 26721, + "model_id": 27548, + "year_id": 27560, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27562, + "make_id": 26721, + "model_id": 27548, + "year_id": 27562, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27563, + "make_id": 26721, + "model_id": 27548, + "year_id": 27562, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27564, + "make_id": 26721, + "model_id": 27548, + "year_id": 27564, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27565, + "make_id": 26721, + "model_id": 27548, + "year_id": 27564, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27566, + "make_id": 26721, + "model_id": 27566, + "year_id": 27566, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27567, + "make_id": 26721, + "model_id": 27566, + "year_id": 27566, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27568, + "make_id": 26721, + "model_id": 27566, + "year_id": 27568, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27569, + "make_id": 26721, + "model_id": 27566, + "year_id": 27568, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27570, + "make_id": 26721, + "model_id": 27570, + "year_id": 27570, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 27571, + "make_id": 26721, + "model_id": 27570, + "year_id": 27570, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27572, + "make_id": 26721, + "model_id": 27570, + "year_id": 27570, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 27573, + "make_id": 26721, + "model_id": 27570, + "year_id": 27570, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 27574, + "make_id": 26721, + "model_id": 27570, + "year_id": 27570, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27575, + "make_id": 26721, + "model_id": 27570, + "year_id": 27570, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 27576, + "make_id": 26721, + "model_id": 27570, + "year_id": 27570, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27577, + "make_id": 26721, + "model_id": 27570, + "year_id": 27570, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 27578, + "make_id": 26721, + "model_id": 27570, + "year_id": 27570, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27579, + "make_id": 26721, + "model_id": 27570, + "year_id": 27579, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27580, + "make_id": 26721, + "model_id": 27570, + "year_id": 27579, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27581, + "make_id": 26721, + "model_id": 27570, + "year_id": 27579, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 27582, + "make_id": 26721, + "model_id": 27570, + "year_id": 27579, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27583, + "make_id": 26721, + "model_id": 27570, + "year_id": 27579, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27584, + "make_id": 26721, + "model_id": 27570, + "year_id": 27579, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27585, + "make_id": 26721, + "model_id": 27570, + "year_id": 27579, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27586, + "make_id": 26721, + "model_id": 27570, + "year_id": 27579, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 27587, + "make_id": 26721, + "model_id": 27570, + "year_id": 27587, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27588, + "make_id": 26721, + "model_id": 27570, + "year_id": 27587, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27589, + "make_id": 26721, + "model_id": 27570, + "year_id": 27587, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 27590, + "make_id": 26721, + "model_id": 27570, + "year_id": 27590, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27591, + "make_id": 26721, + "model_id": 27570, + "year_id": 27590, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27592, + "make_id": 26721, + "model_id": 27570, + "year_id": 27592, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27593, + "make_id": 26721, + "model_id": 27570, + "year_id": 27592, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 27594, + "make_id": 26721, + "model_id": 27570, + "year_id": 27592, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27595, + "make_id": 26721, + "model_id": 27570, + "year_id": 27595, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27596, + "make_id": 26721, + "model_id": 27570, + "year_id": 27595, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 27597, + "make_id": 26721, + "model_id": 27570, + "year_id": 27595, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27598, + "make_id": 26721, + "model_id": 27570, + "year_id": 27598, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27599, + "make_id": 26721, + "model_id": 27570, + "year_id": 27598, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 27600, + "make_id": 26721, + "model_id": 27570, + "year_id": 27598, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27601, + "make_id": 26721, + "model_id": 27570, + "year_id": 27601, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27602, + "make_id": 26721, + "model_id": 27570, + "year_id": 27601, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27603, + "make_id": 26721, + "model_id": 27570, + "year_id": 27601, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 27604, + "make_id": 26721, + "model_id": 27570, + "year_id": 27601, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27605, + "make_id": 26721, + "model_id": 27570, + "year_id": 27601, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27606, + "make_id": 26721, + "model_id": 27570, + "year_id": 27601, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27607, + "make_id": 26721, + "model_id": 27570, + "year_id": 27601, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27608, + "make_id": 26721, + "model_id": 27570, + "year_id": 27608, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27609, + "make_id": 26721, + "model_id": 27570, + "year_id": 27608, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27610, + "make_id": 26721, + "model_id": 27570, + "year_id": 27608, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 27611, + "make_id": 26721, + "model_id": 27570, + "year_id": 27608, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27612, + "make_id": 26721, + "model_id": 27570, + "year_id": 27608, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27613, + "make_id": 26721, + "model_id": 27570, + "year_id": 27608, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27614, + "make_id": 26721, + "model_id": 27570, + "year_id": 27614, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27615, + "make_id": 26721, + "model_id": 27570, + "year_id": 27614, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27616, + "make_id": 26721, + "model_id": 27570, + "year_id": 27614, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27617, + "make_id": 26721, + "model_id": 27570, + "year_id": 27614, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27618, + "make_id": 26721, + "model_id": 27570, + "year_id": 27618, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27619, + "make_id": 26721, + "model_id": 27570, + "year_id": 27618, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27620, + "make_id": 26721, + "model_id": 27570, + "year_id": 27618, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27621, + "make_id": 26721, + "model_id": 27570, + "year_id": 27618, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27622, + "make_id": 26721, + "model_id": 27570, + "year_id": 27622, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27623, + "make_id": 26721, + "model_id": 27570, + "year_id": 27622, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27624, + "make_id": 26721, + "model_id": 27570, + "year_id": 27622, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27625, + "make_id": 26721, + "model_id": 27570, + "year_id": 27622, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27626, + "make_id": 26721, + "model_id": 27570, + "year_id": 27626, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27627, + "make_id": 26721, + "model_id": 27570, + "year_id": 27626, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27628, + "make_id": 26721, + "model_id": 27570, + "year_id": 27626, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27629, + "make_id": 26721, + "model_id": 27570, + "year_id": 27626, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27630, + "make_id": 26721, + "model_id": 27570, + "year_id": 27630, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27631, + "make_id": 26721, + "model_id": 27570, + "year_id": 27630, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27632, + "make_id": 26721, + "model_id": 27570, + "year_id": 27630, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27633, + "make_id": 26721, + "model_id": 27570, + "year_id": 27630, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27634, + "make_id": 26721, + "model_id": 27570, + "year_id": 27630, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27635, + "make_id": 26721, + "model_id": 27570, + "year_id": 27635, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27636, + "make_id": 26721, + "model_id": 27570, + "year_id": 27635, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27637, + "make_id": 26721, + "model_id": 27570, + "year_id": 27635, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27638, + "make_id": 26721, + "model_id": 27570, + "year_id": 27635, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27639, + "make_id": 26721, + "model_id": 27570, + "year_id": 27635, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27640, + "make_id": 26721, + "model_id": 27570, + "year_id": 27640, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27641, + "make_id": 26721, + "model_id": 27570, + "year_id": 27640, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27642, + "make_id": 26721, + "model_id": 27570, + "year_id": 27640, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27643, + "make_id": 26721, + "model_id": 27570, + "year_id": 27640, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27644, + "make_id": 26721, + "model_id": 27570, + "year_id": 27644, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27645, + "make_id": 26721, + "model_id": 27570, + "year_id": 27644, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27646, + "make_id": 26721, + "model_id": 27570, + "year_id": 27644, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27647, + "make_id": 26721, + "model_id": 27570, + "year_id": 27644, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27648, + "make_id": 26721, + "model_id": 27570, + "year_id": 27648, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27649, + "make_id": 26721, + "model_id": 27570, + "year_id": 27648, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27650, + "make_id": 26721, + "model_id": 27570, + "year_id": 27648, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27651, + "make_id": 26721, + "model_id": 27570, + "year_id": 27648, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27652, + "make_id": 26721, + "model_id": 27570, + "year_id": 27652, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27653, + "make_id": 26721, + "model_id": 27570, + "year_id": 27652, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27654, + "make_id": 26721, + "model_id": 27570, + "year_id": 27652, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27655, + "make_id": 26721, + "model_id": 27570, + "year_id": 27652, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27656, + "make_id": 26721, + "model_id": 27570, + "year_id": 27656, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27657, + "make_id": 26721, + "model_id": 27570, + "year_id": 27656, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27658, + "make_id": 26721, + "model_id": 27570, + "year_id": 27656, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27659, + "make_id": 26721, + "model_id": 27570, + "year_id": 27656, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27660, + "make_id": 26721, + "model_id": 27570, + "year_id": 27660, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27661, + "make_id": 26721, + "model_id": 27570, + "year_id": 27660, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27662, + "make_id": 26721, + "model_id": 27570, + "year_id": 27660, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27663, + "make_id": 26721, + "model_id": 27570, + "year_id": 27660, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27664, + "make_id": 26721, + "model_id": 27570, + "year_id": 27664, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27665, + "make_id": 26721, + "model_id": 27570, + "year_id": 27664, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27666, + "make_id": 26721, + "model_id": 27570, + "year_id": 27664, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27667, + "make_id": 26721, + "model_id": 27570, + "year_id": 27664, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27668, + "make_id": 26721, + "model_id": 27570, + "year_id": 27668, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27669, + "make_id": 26721, + "model_id": 27570, + "year_id": 27668, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27670, + "make_id": 26721, + "model_id": 27570, + "year_id": 27668, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27671, + "make_id": 26721, + "model_id": 27570, + "year_id": 27668, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27672, + "make_id": 26721, + "model_id": 27570, + "year_id": 27672, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27673, + "make_id": 26721, + "model_id": 27570, + "year_id": 27672, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27674, + "make_id": 26721, + "model_id": 27570, + "year_id": 27672, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27675, + "make_id": 26721, + "model_id": 27570, + "year_id": 27672, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27676, + "make_id": 26721, + "model_id": 27570, + "year_id": 27676, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27677, + "make_id": 26721, + "model_id": 27570, + "year_id": 27676, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27678, + "make_id": 26721, + "model_id": 27570, + "year_id": 27676, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27679, + "make_id": 26721, + "model_id": 27570, + "year_id": 27679, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27680, + "make_id": 26721, + "model_id": 27570, + "year_id": 27679, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27681, + "make_id": 26721, + "model_id": 27570, + "year_id": 27679, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27682, + "make_id": 26721, + "model_id": 27570, + "year_id": 27682, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27683, + "make_id": 26721, + "model_id": 27570, + "year_id": 27682, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27684, + "make_id": 26721, + "model_id": 27570, + "year_id": 27684, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27685, + "make_id": 26721, + "model_id": 27570, + "year_id": 27684, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27686, + "make_id": 26721, + "model_id": 27686, + "year_id": 27686, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27687, + "make_id": 26721, + "model_id": 27686, + "year_id": 27686, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27688, + "make_id": 26721, + "model_id": 27688, + "year_id": 27688, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27689, + "make_id": 26721, + "model_id": 27688, + "year_id": 27688, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27690, + "make_id": 26721, + "model_id": 27688, + "year_id": 27690, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27691, + "make_id": 26721, + "model_id": 27688, + "year_id": 27690, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27692, + "make_id": 26721, + "model_id": 27688, + "year_id": 27692, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27693, + "make_id": 26721, + "model_id": 27688, + "year_id": 27692, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27694, + "make_id": 26721, + "model_id": 27688, + "year_id": 27694, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27695, + "make_id": 26721, + "model_id": 27688, + "year_id": 27694, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27696, + "make_id": 26721, + "model_id": 27696, + "year_id": 27696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27697, + "make_id": 26721, + "model_id": 27696, + "year_id": 27697, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27698, + "make_id": 26721, + "model_id": 27696, + "year_id": 27698, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27699, + "make_id": 26721, + "model_id": 27696, + "year_id": 27699, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27700, + "make_id": 26721, + "model_id": 27696, + "year_id": 27700, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27701, + "make_id": 26721, + "model_id": 27701, + "year_id": 27701, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27702, + "make_id": 26721, + "model_id": 27701, + "year_id": 27701, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27703, + "make_id": 26721, + "model_id": 27703, + "year_id": 27703, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 27704, + "make_id": 26721, + "model_id": 27703, + "year_id": 27703, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27705, + "make_id": 26721, + "model_id": 27703, + "year_id": 27703, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 27706, + "make_id": 26721, + "model_id": 27703, + "year_id": 27703, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27707, + "make_id": 26721, + "model_id": 27703, + "year_id": 27703, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 27708, + "make_id": 26721, + "model_id": 27703, + "year_id": 27703, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27709, + "make_id": 26721, + "model_id": 27703, + "year_id": 27703, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27710, + "make_id": 26721, + "model_id": 27703, + "year_id": 27710, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27711, + "make_id": 26721, + "model_id": 27703, + "year_id": 27710, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27712, + "make_id": 26721, + "model_id": 27703, + "year_id": 27710, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27713, + "make_id": 26721, + "model_id": 27703, + "year_id": 27710, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27714, + "make_id": 26721, + "model_id": 27703, + "year_id": 27710, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27715, + "make_id": 26721, + "model_id": 27703, + "year_id": 27710, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27716, + "make_id": 26721, + "model_id": 27703, + "year_id": 27716, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27717, + "make_id": 26721, + "model_id": 27703, + "year_id": 27716, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27718, + "make_id": 26721, + "model_id": 27703, + "year_id": 27718, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27719, + "make_id": 26721, + "model_id": 27703, + "year_id": 27718, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27720, + "make_id": 26721, + "model_id": 27703, + "year_id": 27718, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27721, + "make_id": 26721, + "model_id": 27703, + "year_id": 27721, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27722, + "make_id": 26721, + "model_id": 27703, + "year_id": 27721, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27723, + "make_id": 26721, + "model_id": 27703, + "year_id": 27721, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27724, + "make_id": 26721, + "model_id": 27703, + "year_id": 27724, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27725, + "make_id": 26721, + "model_id": 27703, + "year_id": 27724, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27726, + "make_id": 26721, + "model_id": 27703, + "year_id": 27724, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27727, + "make_id": 26721, + "model_id": 27703, + "year_id": 27724, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27728, + "make_id": 26721, + "model_id": 27703, + "year_id": 27728, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27729, + "make_id": 26721, + "model_id": 27703, + "year_id": 27728, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27730, + "make_id": 26721, + "model_id": 27730, + "year_id": 27730, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27731, + "make_id": 26721, + "model_id": 27730, + "year_id": 27730, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27732, + "make_id": 26721, + "model_id": 27730, + "year_id": 27730, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27733, + "make_id": 26721, + "model_id": 27730, + "year_id": 27730, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27734, + "make_id": 26721, + "model_id": 27730, + "year_id": 27734, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27735, + "make_id": 26721, + "model_id": 27730, + "year_id": 27734, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27736, + "make_id": 26721, + "model_id": 27730, + "year_id": 27734, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27737, + "make_id": 26721, + "model_id": 27730, + "year_id": 27734, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27738, + "make_id": 26721, + "model_id": 27730, + "year_id": 27738, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27739, + "make_id": 26721, + "model_id": 27730, + "year_id": 27738, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27740, + "make_id": 26721, + "model_id": 27730, + "year_id": 27738, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27741, + "make_id": 26721, + "model_id": 27730, + "year_id": 27738, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27742, + "make_id": 26721, + "model_id": 27730, + "year_id": 27742, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27743, + "make_id": 26721, + "model_id": 27730, + "year_id": 27742, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27744, + "make_id": 26721, + "model_id": 27730, + "year_id": 27742, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27745, + "make_id": 26721, + "model_id": 27730, + "year_id": 27742, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27746, + "make_id": 26721, + "model_id": 27730, + "year_id": 27746, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27747, + "make_id": 26721, + "model_id": 27730, + "year_id": 27746, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27748, + "make_id": 26721, + "model_id": 27730, + "year_id": 27746, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27749, + "make_id": 26721, + "model_id": 27730, + "year_id": 27746, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27750, + "make_id": 26721, + "model_id": 27750, + "year_id": 27750, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 27751, + "make_id": 26721, + "model_id": 27750, + "year_id": 27750, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27752, + "make_id": 26721, + "model_id": 27750, + "year_id": 27750, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 27753, + "make_id": 26721, + "model_id": 27750, + "year_id": 27750, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 27754, + "make_id": 26721, + "model_id": 27750, + "year_id": 27754, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27755, + "make_id": 26721, + "model_id": 27750, + "year_id": 27754, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27756, + "make_id": 26721, + "model_id": 27750, + "year_id": 27754, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27757, + "make_id": 26721, + "model_id": 27750, + "year_id": 27754, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27758, + "make_id": 26721, + "model_id": 27750, + "year_id": 27758, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27759, + "make_id": 26721, + "model_id": 27750, + "year_id": 27758, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27760, + "make_id": 26721, + "model_id": 27750, + "year_id": 27760, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27761, + "make_id": 26721, + "model_id": 27750, + "year_id": 27760, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27762, + "make_id": 26721, + "model_id": 27750, + "year_id": 27762, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27763, + "make_id": 26721, + "model_id": 27750, + "year_id": 27762, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27764, + "make_id": 26721, + "model_id": 27750, + "year_id": 27764, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27765, + "make_id": 26721, + "model_id": 27750, + "year_id": 27764, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27766, + "make_id": 26721, + "model_id": 27750, + "year_id": 27766, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27767, + "make_id": 26721, + "model_id": 27750, + "year_id": 27766, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27768, + "make_id": 26721, + "model_id": 27750, + "year_id": 27768, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27769, + "make_id": 26721, + "model_id": 27750, + "year_id": 27768, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27770, + "make_id": 26721, + "model_id": 27750, + "year_id": 27770, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27771, + "make_id": 26721, + "model_id": 27750, + "year_id": 27770, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27772, + "make_id": 26721, + "model_id": 27772, + "year_id": 27772, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27773, + "make_id": 26721, + "model_id": 27772, + "year_id": 27772, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27774, + "make_id": 26721, + "model_id": 27772, + "year_id": 27772, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27775, + "make_id": 26721, + "model_id": 27772, + "year_id": 27772, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27776, + "make_id": 26721, + "model_id": 27772, + "year_id": 27776, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27777, + "make_id": 26721, + "model_id": 27772, + "year_id": 27776, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27778, + "make_id": 26721, + "model_id": 27772, + "year_id": 27776, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27779, + "make_id": 26721, + "model_id": 27772, + "year_id": 27779, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27780, + "make_id": 26721, + "model_id": 27772, + "year_id": 27779, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27781, + "make_id": 26721, + "model_id": 27772, + "year_id": 27779, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27782, + "make_id": 26721, + "model_id": 27772, + "year_id": 27779, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27783, + "make_id": 26721, + "model_id": 27783, + "year_id": 27783, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27784, + "make_id": 26721, + "model_id": 27783, + "year_id": 27783, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27785, + "make_id": 26721, + "model_id": 27783, + "year_id": 27785, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27786, + "make_id": 26721, + "model_id": 27783, + "year_id": 27785, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27787, + "make_id": 26721, + "model_id": 27783, + "year_id": 27785, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27788, + "make_id": 26721, + "model_id": 27783, + "year_id": 27785, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27789, + "make_id": 26721, + "model_id": 27783, + "year_id": 27789, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27790, + "make_id": 26721, + "model_id": 27783, + "year_id": 27789, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27791, + "make_id": 26721, + "model_id": 27783, + "year_id": 27789, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27792, + "make_id": 26721, + "model_id": 27783, + "year_id": 27789, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27793, + "make_id": 26721, + "model_id": 27783, + "year_id": 27793, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27794, + "make_id": 26721, + "model_id": 27783, + "year_id": 27793, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27795, + "make_id": 26721, + "model_id": 27783, + "year_id": 27793, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27796, + "make_id": 26721, + "model_id": 27783, + "year_id": 27793, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27797, + "make_id": 26721, + "model_id": 27783, + "year_id": 27797, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27798, + "make_id": 26721, + "model_id": 27783, + "year_id": 27797, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27799, + "make_id": 26721, + "model_id": 27783, + "year_id": 27797, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27800, + "make_id": 26721, + "model_id": 27783, + "year_id": 27797, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27801, + "make_id": 26721, + "model_id": 27783, + "year_id": 27801, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27802, + "make_id": 26721, + "model_id": 27783, + "year_id": 27801, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27803, + "make_id": 26721, + "model_id": 27783, + "year_id": 27801, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27804, + "make_id": 26721, + "model_id": 27783, + "year_id": 27801, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27805, + "make_id": 26721, + "model_id": 27783, + "year_id": 27805, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27806, + "make_id": 26721, + "model_id": 27783, + "year_id": 27805, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27807, + "make_id": 26721, + "model_id": 27783, + "year_id": 27805, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27808, + "make_id": 26721, + "model_id": 27783, + "year_id": 27805, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27809, + "make_id": 26721, + "model_id": 27783, + "year_id": 27809, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27810, + "make_id": 26721, + "model_id": 27783, + "year_id": 27809, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27811, + "make_id": 26721, + "model_id": 27783, + "year_id": 27809, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27812, + "make_id": 26721, + "model_id": 27783, + "year_id": 27809, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27813, + "make_id": 26721, + "model_id": 27783, + "year_id": 27813, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27814, + "make_id": 26721, + "model_id": 27783, + "year_id": 27813, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27815, + "make_id": 26721, + "model_id": 27783, + "year_id": 27813, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27816, + "make_id": 26721, + "model_id": 27783, + "year_id": 27813, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27817, + "make_id": 26721, + "model_id": 27783, + "year_id": 27817, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27818, + "make_id": 26721, + "model_id": 27783, + "year_id": 27817, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27819, + "make_id": 26721, + "model_id": 27783, + "year_id": 27817, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27820, + "make_id": 26721, + "model_id": 27783, + "year_id": 27817, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27821, + "make_id": 26721, + "model_id": 27783, + "year_id": 27821, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27822, + "make_id": 26721, + "model_id": 27783, + "year_id": 27821, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27823, + "make_id": 26721, + "model_id": 27783, + "year_id": 27821, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27824, + "make_id": 26721, + "model_id": 27783, + "year_id": 27821, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27825, + "make_id": 26721, + "model_id": 27783, + "year_id": 27825, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27826, + "make_id": 26721, + "model_id": 27783, + "year_id": 27825, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27827, + "make_id": 26721, + "model_id": 27783, + "year_id": 27825, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27828, + "make_id": 26721, + "model_id": 27783, + "year_id": 27825, + "cylinders": 8, + "displacement": 5.6, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27829, + "make_id": 26721, + "model_id": 27829, + "year_id": 27829, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27830, + "make_id": 26721, + "model_id": 27830, + "year_id": 27830, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27831, + "make_id": 26721, + "model_id": 27830, + "year_id": 27830, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27832, + "make_id": 26721, + "model_id": 27830, + "year_id": 27830, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27833, + "make_id": 26721, + "model_id": 27830, + "year_id": 27830, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27834, + "make_id": 26721, + "model_id": 27830, + "year_id": 27830, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27835, + "make_id": 26721, + "model_id": 27830, + "year_id": 27830, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27836, + "make_id": 26721, + "model_id": 27830, + "year_id": 27830, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27837, + "make_id": 26721, + "model_id": 27830, + "year_id": 27830, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27838, + "make_id": 26721, + "model_id": 27830, + "year_id": 27830, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27839, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27840, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27841, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27842, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27843, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27844, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27845, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27846, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27847, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27848, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27849, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27850, + "make_id": 26721, + "model_id": 27830, + "year_id": 27839, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27851, + "make_id": 26721, + "model_id": 27830, + "year_id": 27851, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27852, + "make_id": 26721, + "model_id": 27830, + "year_id": 27851, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27853, + "make_id": 26721, + "model_id": 27830, + "year_id": 27851, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27854, + "make_id": 26721, + "model_id": 27830, + "year_id": 27851, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27855, + "make_id": 26721, + "model_id": 27830, + "year_id": 27851, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27856, + "make_id": 26721, + "model_id": 27830, + "year_id": 27851, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 27857, + "make_id": 26721, + "model_id": 27830, + "year_id": 27851, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27858, + "make_id": 26721, + "model_id": 27830, + "year_id": 27858, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27859, + "make_id": 26721, + "model_id": 27830, + "year_id": 27858, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 27860, + "make_id": 26721, + "model_id": 27830, + "year_id": 27858, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27861, + "make_id": 26721, + "model_id": 27830, + "year_id": 27858, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27862, + "make_id": 26721, + "model_id": 27830, + "year_id": 27858, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27863, + "make_id": 26721, + "model_id": 27830, + "year_id": 27858, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27864, + "make_id": 26721, + "model_id": 27830, + "year_id": 27858, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27865, + "make_id": 26721, + "model_id": 27830, + "year_id": 27858, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27866, + "make_id": 26721, + "model_id": 27830, + "year_id": 27866, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27867, + "make_id": 26721, + "model_id": 27830, + "year_id": 27866, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 27868, + "make_id": 26721, + "model_id": 27830, + "year_id": 27866, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27869, + "make_id": 26721, + "model_id": 27830, + "year_id": 27866, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27870, + "make_id": 26721, + "model_id": 27830, + "year_id": 27866, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27871, + "make_id": 26721, + "model_id": 27830, + "year_id": 27866, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27872, + "make_id": 26721, + "model_id": 27830, + "year_id": 27866, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27873, + "make_id": 26721, + "model_id": 27830, + "year_id": 27866, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27874, + "make_id": 26721, + "model_id": 27830, + "year_id": 27874, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27875, + "make_id": 26721, + "model_id": 27830, + "year_id": 27874, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27876, + "make_id": 26721, + "model_id": 27830, + "year_id": 27874, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27877, + "make_id": 26721, + "model_id": 27830, + "year_id": 27874, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27878, + "make_id": 26721, + "model_id": 27830, + "year_id": 27874, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27879, + "make_id": 26721, + "model_id": 27830, + "year_id": 27874, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27880, + "make_id": 26721, + "model_id": 27830, + "year_id": 27874, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27881, + "make_id": 26721, + "model_id": 27830, + "year_id": 27881, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27882, + "make_id": 26721, + "model_id": 27830, + "year_id": 27881, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27883, + "make_id": 26721, + "model_id": 27830, + "year_id": 27881, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27884, + "make_id": 26721, + "model_id": 27830, + "year_id": 27881, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27885, + "make_id": 26721, + "model_id": 27830, + "year_id": 27881, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27886, + "make_id": 26721, + "model_id": 27830, + "year_id": 27881, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27887, + "make_id": 26721, + "model_id": 27830, + "year_id": 27881, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27888, + "make_id": 26721, + "model_id": 27830, + "year_id": 27888, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27889, + "make_id": 26721, + "model_id": 27830, + "year_id": 27888, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27890, + "make_id": 26721, + "model_id": 27830, + "year_id": 27888, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27891, + "make_id": 26721, + "model_id": 27830, + "year_id": 27888, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27892, + "make_id": 26721, + "model_id": 27830, + "year_id": 27888, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27893, + "make_id": 26721, + "model_id": 27830, + "year_id": 27888, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27894, + "make_id": 26721, + "model_id": 27830, + "year_id": 27888, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27895, + "make_id": 26721, + "model_id": 27830, + "year_id": 27895, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27896, + "make_id": 26721, + "model_id": 27830, + "year_id": 27895, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27897, + "make_id": 26721, + "model_id": 27830, + "year_id": 27895, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27898, + "make_id": 26721, + "model_id": 27830, + "year_id": 27895, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27899, + "make_id": 26721, + "model_id": 27830, + "year_id": 27895, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27900, + "make_id": 26721, + "model_id": 27830, + "year_id": 27895, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27901, + "make_id": 26721, + "model_id": 27830, + "year_id": 27895, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27902, + "make_id": 26721, + "model_id": 27830, + "year_id": 27902, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27903, + "make_id": 26721, + "model_id": 27830, + "year_id": 27902, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27904, + "make_id": 26721, + "model_id": 27830, + "year_id": 27902, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27905, + "make_id": 26721, + "model_id": 27830, + "year_id": 27902, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27906, + "make_id": 26721, + "model_id": 27830, + "year_id": 27902, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27907, + "make_id": 26721, + "model_id": 27830, + "year_id": 27902, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27908, + "make_id": 26721, + "model_id": 27830, + "year_id": 27902, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27909, + "make_id": 26721, + "model_id": 27830, + "year_id": 27909, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27910, + "make_id": 26721, + "model_id": 27830, + "year_id": 27909, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27911, + "make_id": 26721, + "model_id": 27830, + "year_id": 27909, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27912, + "make_id": 26721, + "model_id": 27830, + "year_id": 27912, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27913, + "make_id": 26721, + "model_id": 27830, + "year_id": 27912, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27914, + "make_id": 26721, + "model_id": 27830, + "year_id": 27912, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27915, + "make_id": 26721, + "model_id": 27915, + "year_id": 27915, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27916, + "make_id": 26721, + "model_id": 27915, + "year_id": 27915, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27917, + "make_id": 26721, + "model_id": 27915, + "year_id": 27917, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27918, + "make_id": 26721, + "model_id": 27915, + "year_id": 27917, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27919, + "make_id": 26721, + "model_id": 27915, + "year_id": 27917, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27920, + "make_id": 26721, + "model_id": 27915, + "year_id": 27920, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27921, + "make_id": 26721, + "model_id": 27915, + "year_id": 27920, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27922, + "make_id": 26721, + "model_id": 27915, + "year_id": 27922, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27923, + "make_id": 26721, + "model_id": 27915, + "year_id": 27922, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27924, + "make_id": 26721, + "model_id": 27915, + "year_id": 27924, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27925, + "make_id": 26721, + "model_id": 27915, + "year_id": 27924, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27926, + "make_id": 26721, + "model_id": 27926, + "year_id": 27926, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27927, + "make_id": 26721, + "model_id": 27926, + "year_id": 27926, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27928, + "make_id": 26721, + "model_id": 27928, + "year_id": 27928, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27929, + "make_id": 26721, + "model_id": 27928, + "year_id": 27928, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27930, + "make_id": 26721, + "model_id": 27928, + "year_id": 27930, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27931, + "make_id": 26721, + "model_id": 27928, + "year_id": 27930, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27932, + "make_id": 26721, + "model_id": 27928, + "year_id": 27932, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27933, + "make_id": 26721, + "model_id": 27928, + "year_id": 27932, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27934, + "make_id": 26721, + "model_id": 27934, + "year_id": 27934, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27935, + "make_id": 26721, + "model_id": 27934, + "year_id": 27934, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27936, + "make_id": 26721, + "model_id": 27936, + "year_id": 27936, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27937, + "make_id": 26721, + "model_id": 27936, + "year_id": 27936, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27938, + "make_id": 26721, + "model_id": 27936, + "year_id": 27936, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27939, + "make_id": 26721, + "model_id": 27936, + "year_id": 27939, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27940, + "make_id": 26721, + "model_id": 27936, + "year_id": 27939, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27941, + "make_id": 26721, + "model_id": 27936, + "year_id": 27939, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27942, + "make_id": 26721, + "model_id": 27936, + "year_id": 27942, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27943, + "make_id": 26721, + "model_id": 27936, + "year_id": 27942, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27944, + "make_id": 26721, + "model_id": 27936, + "year_id": 27942, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27945, + "make_id": 26721, + "model_id": 27936, + "year_id": 27942, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27946, + "make_id": 26721, + "model_id": 27936, + "year_id": 27942, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27947, + "make_id": 26721, + "model_id": 27936, + "year_id": 27947, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27948, + "make_id": 26721, + "model_id": 27936, + "year_id": 27947, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27949, + "make_id": 26721, + "model_id": 27936, + "year_id": 27947, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27950, + "make_id": 26721, + "model_id": 27936, + "year_id": 27947, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27951, + "make_id": 26721, + "model_id": 27936, + "year_id": 27947, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27952, + "make_id": 26721, + "model_id": 27936, + "year_id": 27952, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27953, + "make_id": 26721, + "model_id": 27936, + "year_id": 27952, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27954, + "make_id": 26721, + "model_id": 27936, + "year_id": 27952, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27955, + "make_id": 26721, + "model_id": 27936, + "year_id": 27952, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27956, + "make_id": 26721, + "model_id": 27936, + "year_id": 27952, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27957, + "make_id": 26721, + "model_id": 27936, + "year_id": 27957, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27958, + "make_id": 26721, + "model_id": 27936, + "year_id": 27957, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27959, + "make_id": 26721, + "model_id": 27936, + "year_id": 27957, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27960, + "make_id": 26721, + "model_id": 27936, + "year_id": 27957, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27961, + "make_id": 26721, + "model_id": 27936, + "year_id": 27957, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27962, + "make_id": 26721, + "model_id": 27936, + "year_id": 27962, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27963, + "make_id": 26721, + "model_id": 27936, + "year_id": 27962, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27964, + "make_id": 26721, + "model_id": 27936, + "year_id": 27962, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27965, + "make_id": 26721, + "model_id": 27936, + "year_id": 27965, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27966, + "make_id": 26721, + "model_id": 27936, + "year_id": 27965, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27967, + "make_id": 26721, + "model_id": 27936, + "year_id": 27965, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27968, + "make_id": 26721, + "model_id": 27936, + "year_id": 27968, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27969, + "make_id": 26721, + "model_id": 27936, + "year_id": 27968, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27970, + "make_id": 26721, + "model_id": 27936, + "year_id": 27968, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27971, + "make_id": 26721, + "model_id": 27936, + "year_id": 27971, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27972, + "make_id": 26721, + "model_id": 27936, + "year_id": 27971, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27973, + "make_id": 26721, + "model_id": 27936, + "year_id": 27971, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 27974, + "make_id": 26721, + "model_id": 27974, + "year_id": 27974, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 27975, + "make_id": 26721, + "model_id": 27975, + "year_id": 27975, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27976, + "make_id": 26721, + "model_id": 27975, + "year_id": 27976, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27977, + "make_id": 26721, + "model_id": 27975, + "year_id": 27977, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27978, + "make_id": 26721, + "model_id": 27975, + "year_id": 27978, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27979, + "make_id": 26721, + "model_id": 27975, + "year_id": 27979, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 27980, + "make_id": 26721, + "model_id": 27975, + "year_id": 27980, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27981, + "make_id": 26721, + "model_id": 27975, + "year_id": 27980, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27982, + "make_id": 26721, + "model_id": 27975, + "year_id": 27980, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27983, + "make_id": 26721, + "model_id": 27975, + "year_id": 27980, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27984, + "make_id": 26721, + "model_id": 27975, + "year_id": 27984, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27985, + "make_id": 26721, + "model_id": 27975, + "year_id": 27984, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27986, + "make_id": 26721, + "model_id": 27975, + "year_id": 27984, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27987, + "make_id": 26721, + "model_id": 27975, + "year_id": 27984, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27988, + "make_id": 26721, + "model_id": 27975, + "year_id": 27988, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27989, + "make_id": 26721, + "model_id": 27975, + "year_id": 27988, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27990, + "make_id": 26721, + "model_id": 27975, + "year_id": 27988, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27991, + "make_id": 26721, + "model_id": 27975, + "year_id": 27988, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27992, + "make_id": 26721, + "model_id": 27975, + "year_id": 27992, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27993, + "make_id": 26721, + "model_id": 27975, + "year_id": 27992, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27994, + "make_id": 26721, + "model_id": 27975, + "year_id": 27992, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27995, + "make_id": 26721, + "model_id": 27975, + "year_id": 27992, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27996, + "make_id": 26721, + "model_id": 27975, + "year_id": 27996, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27997, + "make_id": 26721, + "model_id": 27975, + "year_id": 27996, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 27998, + "make_id": 26721, + "model_id": 27975, + "year_id": 27996, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 27999, + "make_id": 26721, + "model_id": 27975, + "year_id": 27996, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28000, + "make_id": 26721, + "model_id": 27975, + "year_id": 28000, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28001, + "make_id": 26721, + "model_id": 27975, + "year_id": 28000, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 28002, + "make_id": 26721, + "model_id": 27975, + "year_id": 28000, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28003, + "make_id": 26721, + "model_id": 27975, + "year_id": 28000, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 28004, + "make_id": 26721, + "model_id": 27975, + "year_id": 28004, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28005, + "make_id": 26721, + "model_id": 27975, + "year_id": 28004, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 28006, + "make_id": 26721, + "model_id": 27975, + "year_id": 28004, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28007, + "make_id": 26721, + "model_id": 27975, + "year_id": 28007, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28008, + "make_id": 26721, + "model_id": 27975, + "year_id": 28007, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28009, + "make_id": 26721, + "model_id": 27975, + "year_id": 28007, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 28010, + "make_id": 26721, + "model_id": 27975, + "year_id": 28010, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28011, + "make_id": 26721, + "model_id": 27975, + "year_id": 28010, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28012, + "make_id": 26721, + "model_id": 27975, + "year_id": 28010, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 28013, + "make_id": 26721, + "model_id": 27975, + "year_id": 28013, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28014, + "make_id": 26721, + "model_id": 27975, + "year_id": 28013, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28015, + "make_id": 26721, + "model_id": 27975, + "year_id": 28013, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 28016, + "make_id": 26721, + "model_id": 27975, + "year_id": 28016, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28017, + "make_id": 26721, + "model_id": 27975, + "year_id": 28016, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 28018, + "make_id": 26721, + "model_id": 27975, + "year_id": 28016, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 28019, + "make_id": 26721, + "model_id": 28019, + "year_id": 28019, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28020, + "make_id": 26721, + "model_id": 28019, + "year_id": 28019, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28021, + "make_id": 26721, + "model_id": 28019, + "year_id": 28019, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28022, + "make_id": 26721, + "model_id": 28019, + "year_id": 28019, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28023, + "make_id": 26721, + "model_id": 28019, + "year_id": 28023, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28024, + "make_id": 26721, + "model_id": 28019, + "year_id": 28023, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28025, + "make_id": 26721, + "model_id": 28019, + "year_id": 28023, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28026, + "make_id": 26721, + "model_id": 28019, + "year_id": 28023, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28027, + "make_id": 26721, + "model_id": 28019, + "year_id": 28027, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28028, + "make_id": 26721, + "model_id": 28019, + "year_id": 28027, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28029, + "make_id": 26721, + "model_id": 28019, + "year_id": 28027, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28030, + "make_id": 26721, + "model_id": 28019, + "year_id": 28027, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28031, + "make_id": 26721, + "model_id": 28019, + "year_id": 28027, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28032, + "make_id": 26721, + "model_id": 28019, + "year_id": 28027, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28033, + "make_id": 26721, + "model_id": 28019, + "year_id": 28027, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28034, + "make_id": 26721, + "model_id": 28019, + "year_id": 28027, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28035, + "make_id": 26721, + "model_id": 28019, + "year_id": 28035, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28036, + "make_id": 26721, + "model_id": 28019, + "year_id": 28035, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28037, + "make_id": 26721, + "model_id": 28019, + "year_id": 28035, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28038, + "make_id": 26721, + "model_id": 28019, + "year_id": 28035, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28039, + "make_id": 26721, + "model_id": 28019, + "year_id": 28035, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28040, + "make_id": 26721, + "model_id": 28019, + "year_id": 28035, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28041, + "make_id": 26721, + "model_id": 28019, + "year_id": 28035, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28042, + "make_id": 26721, + "model_id": 28019, + "year_id": 28035, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28043, + "make_id": 26721, + "model_id": 28019, + "year_id": 28043, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28044, + "make_id": 26721, + "model_id": 28019, + "year_id": 28043, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28045, + "make_id": 26721, + "model_id": 28019, + "year_id": 28043, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28046, + "make_id": 26721, + "model_id": 28019, + "year_id": 28043, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28047, + "make_id": 26721, + "model_id": 28019, + "year_id": 28043, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28048, + "make_id": 26721, + "model_id": 28019, + "year_id": 28043, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28049, + "make_id": 28049, + "model_id": 28049, + "year_id": 28049, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28050, + "make_id": 28049, + "model_id": 28049, + "year_id": 28049, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28051, + "make_id": 28049, + "model_id": 28049, + "year_id": 28049, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28052, + "make_id": 28049, + "model_id": 28049, + "year_id": 28049, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28053, + "make_id": 28049, + "model_id": 28049, + "year_id": 28049, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28054, + "make_id": 28049, + "model_id": 28049, + "year_id": 28049, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28055, + "make_id": 28049, + "model_id": 28049, + "year_id": 28055, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28056, + "make_id": 28049, + "model_id": 28049, + "year_id": 28055, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28057, + "make_id": 28049, + "model_id": 28049, + "year_id": 28055, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28058, + "make_id": 28049, + "model_id": 28049, + "year_id": 28055, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28059, + "make_id": 28049, + "model_id": 28049, + "year_id": 28055, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28060, + "make_id": 28049, + "model_id": 28049, + "year_id": 28055, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28061, + "make_id": 28049, + "model_id": 28049, + "year_id": 28061, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28062, + "make_id": 28049, + "model_id": 28049, + "year_id": 28061, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28063, + "make_id": 28049, + "model_id": 28049, + "year_id": 28061, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28064, + "make_id": 28049, + "model_id": 28049, + "year_id": 28061, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28065, + "make_id": 28049, + "model_id": 28049, + "year_id": 28061, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28066, + "make_id": 28049, + "model_id": 28049, + "year_id": 28061, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28067, + "make_id": 28049, + "model_id": 28049, + "year_id": 28067, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28068, + "make_id": 28049, + "model_id": 28049, + "year_id": 28067, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28069, + "make_id": 28049, + "model_id": 28049, + "year_id": 28067, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28070, + "make_id": 28049, + "model_id": 28049, + "year_id": 28067, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28071, + "make_id": 28049, + "model_id": 28049, + "year_id": 28067, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28072, + "make_id": 28049, + "model_id": 28049, + "year_id": 28072, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28073, + "make_id": 28049, + "model_id": 28049, + "year_id": 28072, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28074, + "make_id": 28049, + "model_id": 28049, + "year_id": 28072, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28075, + "make_id": 28049, + "model_id": 28049, + "year_id": 28075, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28076, + "make_id": 28049, + "model_id": 28049, + "year_id": 28075, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28077, + "make_id": 28049, + "model_id": 28049, + "year_id": 28075, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28078, + "make_id": 28049, + "model_id": 28049, + "year_id": 28078, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28079, + "make_id": 28049, + "model_id": 28049, + "year_id": 28078, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28080, + "make_id": 28049, + "model_id": 28049, + "year_id": 28078, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28081, + "make_id": 28049, + "model_id": 28081, + "year_id": 28081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28082, + "make_id": 28049, + "model_id": 28081, + "year_id": 28081, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28083, + "make_id": 28049, + "model_id": 28081, + "year_id": 28083, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28084, + "make_id": 28049, + "model_id": 28081, + "year_id": 28083, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28085, + "make_id": 28049, + "model_id": 28081, + "year_id": 28083, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28086, + "make_id": 28049, + "model_id": 28081, + "year_id": 28086, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28087, + "make_id": 28049, + "model_id": 28081, + "year_id": 28086, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28088, + "make_id": 28049, + "model_id": 28081, + "year_id": 28086, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28089, + "make_id": 28049, + "model_id": 28081, + "year_id": 28089, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28090, + "make_id": 28049, + "model_id": 28081, + "year_id": 28089, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28091, + "make_id": 28049, + "model_id": 28081, + "year_id": 28089, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28092, + "make_id": 28049, + "model_id": 28081, + "year_id": 28092, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28093, + "make_id": 28049, + "model_id": 28081, + "year_id": 28092, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28094, + "make_id": 28049, + "model_id": 28081, + "year_id": 28092, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28095, + "make_id": 28049, + "model_id": 28081, + "year_id": 28095, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28096, + "make_id": 28049, + "model_id": 28081, + "year_id": 28095, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28097, + "make_id": 28049, + "model_id": 28081, + "year_id": 28095, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28098, + "make_id": 28049, + "model_id": 28098, + "year_id": 28098, + "cylinders": 8, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28099, + "make_id": 28049, + "model_id": 28098, + "year_id": 28099, + "cylinders": 8, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28100, + "make_id": 28049, + "model_id": 28098, + "year_id": 28100, + "cylinders": 8, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28101, + "make_id": 28049, + "model_id": 28098, + "year_id": 28101, + "cylinders": 8, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28102, + "make_id": 28049, + "model_id": 28098, + "year_id": 28102, + "cylinders": 8, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28103, + "make_id": 28049, + "model_id": 28098, + "year_id": 28103, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28104, + "make_id": 28049, + "model_id": 28098, + "year_id": 28103, + "cylinders": 8, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28105, + "make_id": 28049, + "model_id": 28098, + "year_id": 28105, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28106, + "make_id": 28049, + "model_id": 28098, + "year_id": 28105, + "cylinders": 8, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28107, + "make_id": 28049, + "model_id": 28098, + "year_id": 28107, + "cylinders": 8, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28108, + "make_id": 28049, + "model_id": 28108, + "year_id": 28108, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28109, + "make_id": 28049, + "model_id": 28108, + "year_id": 28109, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28110, + "make_id": 28049, + "model_id": 28108, + "year_id": 28109, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28111, + "make_id": 28049, + "model_id": 28108, + "year_id": 28111, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28112, + "make_id": 28049, + "model_id": 28108, + "year_id": 28112, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28113, + "make_id": 28049, + "model_id": 28108, + "year_id": 28113, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28114, + "make_id": 28049, + "model_id": 28108, + "year_id": 28114, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28115, + "make_id": 28049, + "model_id": 28108, + "year_id": 28115, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28116, + "make_id": 28049, + "model_id": 28108, + "year_id": 28116, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28117, + "make_id": 28049, + "model_id": 28108, + "year_id": 28117, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28118, + "make_id": 28049, + "model_id": 28108, + "year_id": 28118, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28119, + "make_id": 28049, + "model_id": 28108, + "year_id": 28118, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28120, + "make_id": 28049, + "model_id": 28108, + "year_id": 28120, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28121, + "make_id": 28049, + "model_id": 28108, + "year_id": 28120, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28122, + "make_id": 28049, + "model_id": 28108, + "year_id": 28122, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28123, + "make_id": 28049, + "model_id": 28108, + "year_id": 28122, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28124, + "make_id": 28049, + "model_id": 28108, + "year_id": 28124, + "cylinders": 6, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28125, + "make_id": 28049, + "model_id": 28108, + "year_id": 28124, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28126, + "make_id": 28049, + "model_id": 28126, + "year_id": 28126, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28127, + "make_id": 28049, + "model_id": 28126, + "year_id": 28126, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28128, + "make_id": 28049, + "model_id": 28126, + "year_id": 28126, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28129, + "make_id": 28049, + "model_id": 28126, + "year_id": 28126, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28130, + "make_id": 28049, + "model_id": 28126, + "year_id": 28130, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28131, + "make_id": 28049, + "model_id": 28126, + "year_id": 28130, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28132, + "make_id": 28049, + "model_id": 28126, + "year_id": 28130, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28133, + "make_id": 28049, + "model_id": 28126, + "year_id": 28133, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28134, + "make_id": 28049, + "model_id": 28126, + "year_id": 28133, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28135, + "make_id": 28049, + "model_id": 28126, + "year_id": 28133, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28136, + "make_id": 28049, + "model_id": 28136, + "year_id": 28136, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28137, + "make_id": 28049, + "model_id": 28136, + "year_id": 28136, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28138, + "make_id": 28049, + "model_id": 28138, + "year_id": 28138, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28139, + "make_id": 28049, + "model_id": 28139, + "year_id": 28139, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28140, + "make_id": 28049, + "model_id": 28139, + "year_id": 28140, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28141, + "make_id": 28049, + "model_id": 28139, + "year_id": 28141, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28142, + "make_id": 28049, + "model_id": 28139, + "year_id": 28142, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28143, + "make_id": 28049, + "model_id": 28139, + "year_id": 28143, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28144, + "make_id": 28049, + "model_id": 28139, + "year_id": 28144, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28145, + "make_id": 28049, + "model_id": 28139, + "year_id": 28145, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28146, + "make_id": 28049, + "model_id": 28139, + "year_id": 28145, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28147, + "make_id": 28049, + "model_id": 28147, + "year_id": 28147, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28148, + "make_id": 28049, + "model_id": 28147, + "year_id": 28147, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28149, + "make_id": 28049, + "model_id": 28147, + "year_id": 28147, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28150, + "make_id": 28049, + "model_id": 28147, + "year_id": 28150, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28151, + "make_id": 28049, + "model_id": 28147, + "year_id": 28150, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28152, + "make_id": 28049, + "model_id": 28147, + "year_id": 28150, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28153, + "make_id": 28049, + "model_id": 28153, + "year_id": 28153, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28154, + "make_id": 28049, + "model_id": 28153, + "year_id": 28154, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28155, + "make_id": 28049, + "model_id": 28153, + "year_id": 28154, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28156, + "make_id": 28049, + "model_id": 28153, + "year_id": 28156, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28157, + "make_id": 28049, + "model_id": 28153, + "year_id": 28156, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28158, + "make_id": 28049, + "model_id": 28158, + "year_id": 28158, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28159, + "make_id": 28049, + "model_id": 28158, + "year_id": 28158, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28160, + "make_id": 28049, + "model_id": 28158, + "year_id": 28158, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28161, + "make_id": 28049, + "model_id": 28158, + "year_id": 28158, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28162, + "make_id": 28049, + "model_id": 28158, + "year_id": 28158, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28163, + "make_id": 28049, + "model_id": 28158, + "year_id": 28163, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28164, + "make_id": 28049, + "model_id": 28158, + "year_id": 28163, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28165, + "make_id": 28049, + "model_id": 28158, + "year_id": 28163, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28166, + "make_id": 28049, + "model_id": 28158, + "year_id": 28163, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28167, + "make_id": 28049, + "model_id": 28158, + "year_id": 28163, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28168, + "make_id": 28049, + "model_id": 28158, + "year_id": 28168, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28169, + "make_id": 28049, + "model_id": 28158, + "year_id": 28168, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28170, + "make_id": 28049, + "model_id": 28158, + "year_id": 28168, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28171, + "make_id": 28049, + "model_id": 28158, + "year_id": 28168, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28172, + "make_id": 28049, + "model_id": 28158, + "year_id": 28168, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28173, + "make_id": 28049, + "model_id": 28158, + "year_id": 28173, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28174, + "make_id": 28049, + "model_id": 28158, + "year_id": 28173, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28175, + "make_id": 28049, + "model_id": 28158, + "year_id": 28173, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28176, + "make_id": 28049, + "model_id": 28158, + "year_id": 28173, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28177, + "make_id": 28049, + "model_id": 28158, + "year_id": 28173, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28178, + "make_id": 28049, + "model_id": 28158, + "year_id": 28173, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28179, + "make_id": 28049, + "model_id": 28179, + "year_id": 28179, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28180, + "make_id": 28049, + "model_id": 28179, + "year_id": 28179, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28181, + "make_id": 28049, + "model_id": 28179, + "year_id": 28179, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28182, + "make_id": 28049, + "model_id": 28179, + "year_id": 28179, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28183, + "make_id": 28049, + "model_id": 28179, + "year_id": 28179, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28184, + "make_id": 28049, + "model_id": 28179, + "year_id": 28179, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28185, + "make_id": 28049, + "model_id": 28179, + "year_id": 28179, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28186, + "make_id": 28049, + "model_id": 28179, + "year_id": 28179, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28187, + "make_id": 28049, + "model_id": 28179, + "year_id": 28179, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28188, + "make_id": 28049, + "model_id": 28179, + "year_id": 28188, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28189, + "make_id": 28049, + "model_id": 28179, + "year_id": 28188, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28190, + "make_id": 28049, + "model_id": 28179, + "year_id": 28188, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28191, + "make_id": 28049, + "model_id": 28179, + "year_id": 28188, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28192, + "make_id": 28049, + "model_id": 28179, + "year_id": 28188, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28193, + "make_id": 28049, + "model_id": 28179, + "year_id": 28188, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28194, + "make_id": 28049, + "model_id": 28179, + "year_id": 28188, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28195, + "make_id": 28049, + "model_id": 28179, + "year_id": 28195, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28196, + "make_id": 28049, + "model_id": 28179, + "year_id": 28195, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28197, + "make_id": 28049, + "model_id": 28179, + "year_id": 28195, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28198, + "make_id": 28049, + "model_id": 28179, + "year_id": 28195, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28199, + "make_id": 28049, + "model_id": 28179, + "year_id": 28195, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28200, + "make_id": 28049, + "model_id": 28179, + "year_id": 28195, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28201, + "make_id": 28049, + "model_id": 28179, + "year_id": 28201, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28202, + "make_id": 28049, + "model_id": 28179, + "year_id": 28201, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28203, + "make_id": 28049, + "model_id": 28179, + "year_id": 28201, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28204, + "make_id": 28049, + "model_id": 28179, + "year_id": 28201, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28205, + "make_id": 28049, + "model_id": 28179, + "year_id": 28205, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28206, + "make_id": 28049, + "model_id": 28179, + "year_id": 28205, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28207, + "make_id": 28049, + "model_id": 28179, + "year_id": 28205, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28208, + "make_id": 28049, + "model_id": 28179, + "year_id": 28205, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28209, + "make_id": 28049, + "model_id": 28179, + "year_id": 28209, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28210, + "make_id": 28049, + "model_id": 28179, + "year_id": 28209, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28211, + "make_id": 28049, + "model_id": 28179, + "year_id": 28209, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28212, + "make_id": 28049, + "model_id": 28179, + "year_id": 28209, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28213, + "make_id": 28049, + "model_id": 28179, + "year_id": 28213, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28214, + "make_id": 28049, + "model_id": 28179, + "year_id": 28213, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28215, + "make_id": 28049, + "model_id": 28179, + "year_id": 28213, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28216, + "make_id": 28049, + "model_id": 28179, + "year_id": 28216, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28217, + "make_id": 28049, + "model_id": 28179, + "year_id": 28216, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28218, + "make_id": 28049, + "model_id": 28179, + "year_id": 28216, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28219, + "make_id": 28049, + "model_id": 28179, + "year_id": 28219, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28220, + "make_id": 28049, + "model_id": 28179, + "year_id": 28219, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28221, + "make_id": 28049, + "model_id": 28179, + "year_id": 28219, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28222, + "make_id": 28049, + "model_id": 28179, + "year_id": 28222, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28223, + "make_id": 28049, + "model_id": 28179, + "year_id": 28222, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28224, + "make_id": 28049, + "model_id": 28179, + "year_id": 28222, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28225, + "make_id": 28049, + "model_id": 28179, + "year_id": 28225, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28226, + "make_id": 28049, + "model_id": 28179, + "year_id": 28225, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28227, + "make_id": 28049, + "model_id": 28179, + "year_id": 28227, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28228, + "make_id": 28049, + "model_id": 28179, + "year_id": 28227, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28229, + "make_id": 28049, + "model_id": 28229, + "year_id": 28229, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28230, + "make_id": 28049, + "model_id": 28229, + "year_id": 28229, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28231, + "make_id": 28049, + "model_id": 28229, + "year_id": 28229, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28232, + "make_id": 28049, + "model_id": 28229, + "year_id": 28229, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28233, + "make_id": 28049, + "model_id": 28229, + "year_id": 28229, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28234, + "make_id": 28049, + "model_id": 28229, + "year_id": 28234, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28235, + "make_id": 28049, + "model_id": 28229, + "year_id": 28234, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28236, + "make_id": 28049, + "model_id": 28229, + "year_id": 28234, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28237, + "make_id": 28049, + "model_id": 28229, + "year_id": 28234, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28238, + "make_id": 28049, + "model_id": 28229, + "year_id": 28238, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28239, + "make_id": 28049, + "model_id": 28229, + "year_id": 28238, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28240, + "make_id": 28049, + "model_id": 28229, + "year_id": 28238, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28241, + "make_id": 28049, + "model_id": 28229, + "year_id": 28241, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28242, + "make_id": 28049, + "model_id": 28229, + "year_id": 28241, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28243, + "make_id": 28049, + "model_id": 28229, + "year_id": 28241, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28244, + "make_id": 28049, + "model_id": 28229, + "year_id": 28244, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28245, + "make_id": 28049, + "model_id": 28229, + "year_id": 28244, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28246, + "make_id": 28049, + "model_id": 28229, + "year_id": 28246, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28247, + "make_id": 28049, + "model_id": 28229, + "year_id": 28246, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28248, + "make_id": 28049, + "model_id": 28229, + "year_id": 28246, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28249, + "make_id": 28049, + "model_id": 28229, + "year_id": 28249, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28250, + "make_id": 28049, + "model_id": 28229, + "year_id": 28249, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28251, + "make_id": 28049, + "model_id": 28229, + "year_id": 28249, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28252, + "make_id": 28049, + "model_id": 28229, + "year_id": 28252, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28253, + "make_id": 28049, + "model_id": 28229, + "year_id": 28252, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28254, + "make_id": 28049, + "model_id": 28229, + "year_id": 28252, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28255, + "make_id": 28049, + "model_id": 28229, + "year_id": 28255, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28256, + "make_id": 28049, + "model_id": 28229, + "year_id": 28256, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28257, + "make_id": 28049, + "model_id": 28229, + "year_id": 28256, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28258, + "make_id": 28049, + "model_id": 28258, + "year_id": 28258, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28259, + "make_id": 28049, + "model_id": 28258, + "year_id": 28258, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28260, + "make_id": 28049, + "model_id": 28258, + "year_id": 28258, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28261, + "make_id": 28049, + "model_id": 28258, + "year_id": 28258, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28262, + "make_id": 28049, + "model_id": 28258, + "year_id": 28258, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28263, + "make_id": 28049, + "model_id": 28258, + "year_id": 28258, + "cylinders": 6, + "displacement": 3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28264, + "make_id": 28049, + "model_id": 28258, + "year_id": 28258, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28265, + "make_id": 28049, + "model_id": 28258, + "year_id": 28258, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28266, + "make_id": 28049, + "model_id": 28258, + "year_id": 28258, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28267, + "make_id": 28049, + "model_id": 28258, + "year_id": 28267, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28268, + "make_id": 28049, + "model_id": 28258, + "year_id": 28267, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28269, + "make_id": 28049, + "model_id": 28258, + "year_id": 28267, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28270, + "make_id": 28049, + "model_id": 28258, + "year_id": 28267, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28271, + "make_id": 28049, + "model_id": 28258, + "year_id": 28267, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28272, + "make_id": 28049, + "model_id": 28258, + "year_id": 28267, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28273, + "make_id": 28049, + "model_id": 28258, + "year_id": 28267, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28274, + "make_id": 28049, + "model_id": 28258, + "year_id": 28267, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28275, + "make_id": 28049, + "model_id": 28258, + "year_id": 28267, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28276, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28277, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28278, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28279, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28280, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28281, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28282, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28283, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28284, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28285, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28286, + "make_id": 28049, + "model_id": 28276, + "year_id": 28276, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28287, + "make_id": 28049, + "model_id": 28276, + "year_id": 28287, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28288, + "make_id": 28049, + "model_id": 28276, + "year_id": 28287, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28289, + "make_id": 28049, + "model_id": 28276, + "year_id": 28287, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28290, + "make_id": 28049, + "model_id": 28276, + "year_id": 28287, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28291, + "make_id": 28049, + "model_id": 28276, + "year_id": 28287, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28292, + "make_id": 28049, + "model_id": 28276, + "year_id": 28287, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28293, + "make_id": 28049, + "model_id": 28276, + "year_id": 28287, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28294, + "make_id": 28049, + "model_id": 28276, + "year_id": 28294, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28295, + "make_id": 28049, + "model_id": 28276, + "year_id": 28294, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28296, + "make_id": 28049, + "model_id": 28276, + "year_id": 28294, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28297, + "make_id": 28049, + "model_id": 28276, + "year_id": 28297, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28298, + "make_id": 28049, + "model_id": 28276, + "year_id": 28297, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28299, + "make_id": 28049, + "model_id": 28276, + "year_id": 28297, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28300, + "make_id": 28049, + "model_id": 28276, + "year_id": 28300, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28301, + "make_id": 28049, + "model_id": 28276, + "year_id": 28300, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28302, + "make_id": 28049, + "model_id": 28276, + "year_id": 28302, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28303, + "make_id": 28049, + "model_id": 28276, + "year_id": 28302, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28304, + "make_id": 28049, + "model_id": 28276, + "year_id": 28302, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28305, + "make_id": 28049, + "model_id": 28276, + "year_id": 28305, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28306, + "make_id": 28049, + "model_id": 28276, + "year_id": 28305, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28307, + "make_id": 28049, + "model_id": 28276, + "year_id": 28305, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28308, + "make_id": 28049, + "model_id": 28276, + "year_id": 28308, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28309, + "make_id": 28049, + "model_id": 28276, + "year_id": 28308, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28310, + "make_id": 28049, + "model_id": 28276, + "year_id": 28308, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28311, + "make_id": 28049, + "model_id": 28276, + "year_id": 28308, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28312, + "make_id": 28049, + "model_id": 28276, + "year_id": 28312, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28313, + "make_id": 28049, + "model_id": 28276, + "year_id": 28312, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28314, + "make_id": 28049, + "model_id": 28276, + "year_id": 28312, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28315, + "make_id": 28049, + "model_id": 28276, + "year_id": 28312, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28316, + "make_id": 28049, + "model_id": 28276, + "year_id": 28316, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28317, + "make_id": 28049, + "model_id": 28276, + "year_id": 28316, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28318, + "make_id": 28049, + "model_id": 28276, + "year_id": 28316, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28319, + "make_id": 28049, + "model_id": 28276, + "year_id": 28316, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28320, + "make_id": 28049, + "model_id": 28276, + "year_id": 28320, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28321, + "make_id": 28049, + "model_id": 28276, + "year_id": 28320, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28322, + "make_id": 28049, + "model_id": 28276, + "year_id": 28322, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28323, + "make_id": 28049, + "model_id": 28276, + "year_id": 28322, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28324, + "make_id": 28049, + "model_id": 28276, + "year_id": 28322, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28325, + "make_id": 28049, + "model_id": 28276, + "year_id": 28325, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28326, + "make_id": 28049, + "model_id": 28276, + "year_id": 28325, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28327, + "make_id": 28049, + "model_id": 28276, + "year_id": 28327, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28328, + "make_id": 28049, + "model_id": 28276, + "year_id": 28327, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28329, + "make_id": 28049, + "model_id": 28329, + "year_id": 28329, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28330, + "make_id": 28049, + "model_id": 28330, + "year_id": 28330, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28331, + "make_id": 28049, + "model_id": 28330, + "year_id": 28330, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28332, + "make_id": 28049, + "model_id": 28330, + "year_id": 28330, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28333, + "make_id": 28049, + "model_id": 28330, + "year_id": 28330, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28334, + "make_id": 28049, + "model_id": 28330, + "year_id": 28330, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28335, + "make_id": 28049, + "model_id": 28330, + "year_id": 28330, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28336, + "make_id": 28049, + "model_id": 28330, + "year_id": 28330, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28337, + "make_id": 28049, + "model_id": 28330, + "year_id": 28330, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28338, + "make_id": 28049, + "model_id": 28330, + "year_id": 28338, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28339, + "make_id": 28049, + "model_id": 28339, + "year_id": 28339, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28340, + "make_id": 28049, + "model_id": 28339, + "year_id": 28339, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28341, + "make_id": 28049, + "model_id": 28339, + "year_id": 28339, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28342, + "make_id": 28049, + "model_id": 28339, + "year_id": 28339, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28343, + "make_id": 28049, + "model_id": 28339, + "year_id": 28339, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28344, + "make_id": 28049, + "model_id": 28339, + "year_id": 28339, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28345, + "make_id": 28049, + "model_id": 28339, + "year_id": 28339, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28346, + "make_id": 28049, + "model_id": 28339, + "year_id": 28346, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28347, + "make_id": 28049, + "model_id": 28339, + "year_id": 28346, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28348, + "make_id": 28049, + "model_id": 28339, + "year_id": 28348, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28349, + "make_id": 28049, + "model_id": 28349, + "year_id": 28349, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28350, + "make_id": 28049, + "model_id": 28349, + "year_id": 28350, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28351, + "make_id": 28049, + "model_id": 28349, + "year_id": 28351, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28352, + "make_id": 28049, + "model_id": 28349, + "year_id": 28352, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28353, + "make_id": 28049, + "model_id": 28349, + "year_id": 28353, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28354, + "make_id": 28049, + "model_id": 28349, + "year_id": 28354, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28355, + "make_id": 28049, + "model_id": 28349, + "year_id": 28355, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28356, + "make_id": 28049, + "model_id": 28349, + "year_id": 28356, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28357, + "make_id": 28049, + "model_id": 28349, + "year_id": 28356, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28358, + "make_id": 28049, + "model_id": 28358, + "year_id": 28358, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28359, + "make_id": 28049, + "model_id": 28358, + "year_id": 28358, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28360, + "make_id": 28049, + "model_id": 28358, + "year_id": 28360, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28361, + "make_id": 28049, + "model_id": 28358, + "year_id": 28360, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28362, + "make_id": 28049, + "model_id": 28362, + "year_id": 28362, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28363, + "make_id": 28049, + "model_id": 28362, + "year_id": 28362, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28364, + "make_id": 28049, + "model_id": 28364, + "year_id": 28364, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28365, + "make_id": 28049, + "model_id": 28364, + "year_id": 28364, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28366, + "make_id": 28049, + "model_id": 28364, + "year_id": 28364, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28367, + "make_id": 28049, + "model_id": 28364, + "year_id": 28364, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28368, + "make_id": 28049, + "model_id": 28364, + "year_id": 28364, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28369, + "make_id": 28049, + "model_id": 28364, + "year_id": 28364, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28370, + "make_id": 28049, + "model_id": 28364, + "year_id": 28364, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28371, + "make_id": 28049, + "model_id": 28364, + "year_id": 28364, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28372, + "make_id": 28049, + "model_id": 28364, + "year_id": 28364, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28373, + "make_id": 28049, + "model_id": 28364, + "year_id": 28364, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28374, + "make_id": 28049, + "model_id": 28364, + "year_id": 28374, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28375, + "make_id": 28049, + "model_id": 28364, + "year_id": 28374, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28376, + "make_id": 28049, + "model_id": 28364, + "year_id": 28374, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28377, + "make_id": 28049, + "model_id": 28364, + "year_id": 28374, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28378, + "make_id": 28049, + "model_id": 28364, + "year_id": 28374, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28379, + "make_id": 28049, + "model_id": 28364, + "year_id": 28374, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28380, + "make_id": 28049, + "model_id": 28364, + "year_id": 28374, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28381, + "make_id": 28049, + "model_id": 28364, + "year_id": 28374, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28382, + "make_id": 28049, + "model_id": 28364, + "year_id": 28374, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28383, + "make_id": 28049, + "model_id": 28364, + "year_id": 28374, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28384, + "make_id": 28049, + "model_id": 28364, + "year_id": 28384, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28385, + "make_id": 28049, + "model_id": 28364, + "year_id": 28384, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28386, + "make_id": 28049, + "model_id": 28364, + "year_id": 28384, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28387, + "make_id": 28049, + "model_id": 28364, + "year_id": 28384, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28388, + "make_id": 28049, + "model_id": 28364, + "year_id": 28384, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28389, + "make_id": 28049, + "model_id": 28364, + "year_id": 28384, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28390, + "make_id": 28049, + "model_id": 28364, + "year_id": 28384, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28391, + "make_id": 28049, + "model_id": 28364, + "year_id": 28384, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28392, + "make_id": 28049, + "model_id": 28364, + "year_id": 28392, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28393, + "make_id": 28049, + "model_id": 28364, + "year_id": 28392, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28394, + "make_id": 28049, + "model_id": 28364, + "year_id": 28392, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28395, + "make_id": 28049, + "model_id": 28364, + "year_id": 28392, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28396, + "make_id": 28049, + "model_id": 28364, + "year_id": 28392, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28397, + "make_id": 28049, + "model_id": 28364, + "year_id": 28392, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28398, + "make_id": 28049, + "model_id": 28364, + "year_id": 28398, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28399, + "make_id": 28049, + "model_id": 28364, + "year_id": 28398, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28400, + "make_id": 28049, + "model_id": 28364, + "year_id": 28398, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28401, + "make_id": 28049, + "model_id": 28364, + "year_id": 28398, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28402, + "make_id": 28049, + "model_id": 28402, + "year_id": 28402, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28403, + "make_id": 28049, + "model_id": 28402, + "year_id": 28402, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28404, + "make_id": 28049, + "model_id": 28402, + "year_id": 28402, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28405, + "make_id": 28049, + "model_id": 28402, + "year_id": 28402, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28406, + "make_id": 28049, + "model_id": 28402, + "year_id": 28402, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28407, + "make_id": 28049, + "model_id": 28402, + "year_id": 28402, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28408, + "make_id": 28049, + "model_id": 28402, + "year_id": 28408, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28409, + "make_id": 28049, + "model_id": 28402, + "year_id": 28408, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28410, + "make_id": 28049, + "model_id": 28402, + "year_id": 28408, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28411, + "make_id": 28049, + "model_id": 28402, + "year_id": 28408, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28412, + "make_id": 28049, + "model_id": 28402, + "year_id": 28412, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28413, + "make_id": 28049, + "model_id": 28402, + "year_id": 28412, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28414, + "make_id": 28049, + "model_id": 28402, + "year_id": 28412, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28415, + "make_id": 28049, + "model_id": 28402, + "year_id": 28412, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28416, + "make_id": 28049, + "model_id": 28416, + "year_id": 28416, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28417, + "make_id": 28049, + "model_id": 28416, + "year_id": 28416, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28418, + "make_id": 28049, + "model_id": 28416, + "year_id": 28416, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28419, + "make_id": 28049, + "model_id": 28416, + "year_id": 28416, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28420, + "make_id": 28049, + "model_id": 28416, + "year_id": 28416, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28421, + "make_id": 28049, + "model_id": 28416, + "year_id": 28416, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28422, + "make_id": 28049, + "model_id": 28416, + "year_id": 28416, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28423, + "make_id": 28049, + "model_id": 28416, + "year_id": 28416, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28424, + "make_id": 28049, + "model_id": 28416, + "year_id": 28416, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28425, + "make_id": 28049, + "model_id": 28416, + "year_id": 28416, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28426, + "make_id": 28049, + "model_id": 28416, + "year_id": 28426, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28427, + "make_id": 28049, + "model_id": 28416, + "year_id": 28426, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28428, + "make_id": 28049, + "model_id": 28416, + "year_id": 28426, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28429, + "make_id": 28049, + "model_id": 28416, + "year_id": 28426, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28430, + "make_id": 28049, + "model_id": 28416, + "year_id": 28426, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28431, + "make_id": 28049, + "model_id": 28416, + "year_id": 28426, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28432, + "make_id": 28049, + "model_id": 28416, + "year_id": 28426, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28433, + "make_id": 28049, + "model_id": 28416, + "year_id": 28426, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28434, + "make_id": 28049, + "model_id": 28416, + "year_id": 28426, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28435, + "make_id": 28049, + "model_id": 28416, + "year_id": 28426, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28436, + "make_id": 28049, + "model_id": 28436, + "year_id": 28436, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28437, + "make_id": 28049, + "model_id": 28436, + "year_id": 28437, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28438, + "make_id": 28049, + "model_id": 28436, + "year_id": 28437, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28439, + "make_id": 28049, + "model_id": 28436, + "year_id": 28439, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28440, + "make_id": 28049, + "model_id": 28436, + "year_id": 28440, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28441, + "make_id": 28049, + "model_id": 28436, + "year_id": 28441, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28442, + "make_id": 28049, + "model_id": 28442, + "year_id": 28442, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28443, + "make_id": 28049, + "model_id": 28442, + "year_id": 28442, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28444, + "make_id": 28049, + "model_id": 28442, + "year_id": 28442, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28445, + "make_id": 28049, + "model_id": 28442, + "year_id": 28445, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28446, + "make_id": 28049, + "model_id": 28442, + "year_id": 28445, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28447, + "make_id": 28049, + "model_id": 28442, + "year_id": 28447, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28448, + "make_id": 28049, + "model_id": 28442, + "year_id": 28447, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28449, + "make_id": 28049, + "model_id": 28442, + "year_id": 28449, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28450, + "make_id": 28049, + "model_id": 28442, + "year_id": 28449, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28451, + "make_id": 28049, + "model_id": 28442, + "year_id": 28451, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28452, + "make_id": 28049, + "model_id": 28442, + "year_id": 28452, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28453, + "make_id": 28049, + "model_id": 28453, + "year_id": 28453, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28454, + "make_id": 28049, + "model_id": 28454, + "year_id": 28454, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28455, + "make_id": 28049, + "model_id": 28454, + "year_id": 28454, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28456, + "make_id": 28049, + "model_id": 28454, + "year_id": 28454, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28457, + "make_id": 28049, + "model_id": 28454, + "year_id": 28454, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28458, + "make_id": 28049, + "model_id": 28454, + "year_id": 28454, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28459, + "make_id": 28049, + "model_id": 28454, + "year_id": 28459, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28460, + "make_id": 28049, + "model_id": 28454, + "year_id": 28460, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28461, + "make_id": 28049, + "model_id": 28461, + "year_id": 28461, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28462, + "make_id": 28049, + "model_id": 28461, + "year_id": 28462, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28463, + "make_id": 28049, + "model_id": 28461, + "year_id": 28463, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28464, + "make_id": 28049, + "model_id": 28461, + "year_id": 28464, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28465, + "make_id": 28049, + "model_id": 28465, + "year_id": 28465, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28466, + "make_id": 28049, + "model_id": 28465, + "year_id": 28465, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28467, + "make_id": 28049, + "model_id": 28465, + "year_id": 28465, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28468, + "make_id": 28049, + "model_id": 28465, + "year_id": 28465, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28469, + "make_id": 28049, + "model_id": 28465, + "year_id": 28465, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28470, + "make_id": 28049, + "model_id": 28465, + "year_id": 28465, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28471, + "make_id": 28049, + "model_id": 28465, + "year_id": 28465, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28472, + "make_id": 28049, + "model_id": 28465, + "year_id": 28465, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28473, + "make_id": 28049, + "model_id": 28473, + "year_id": 28473, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28474, + "make_id": 28049, + "model_id": 28473, + "year_id": 28474, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28475, + "make_id": 28049, + "model_id": 28473, + "year_id": 28475, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28476, + "make_id": 28049, + "model_id": 28473, + "year_id": 28475, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28477, + "make_id": 28049, + "model_id": 28473, + "year_id": 28477, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28478, + "make_id": 28049, + "model_id": 28473, + "year_id": 28477, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28479, + "make_id": 28049, + "model_id": 28473, + "year_id": 28479, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28480, + "make_id": 28049, + "model_id": 28473, + "year_id": 28479, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28481, + "make_id": 28049, + "model_id": 28473, + "year_id": 28481, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28482, + "make_id": 28049, + "model_id": 28473, + "year_id": 28481, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28483, + "make_id": 28049, + "model_id": 28473, + "year_id": 28483, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28484, + "make_id": 28049, + "model_id": 28473, + "year_id": 28484, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28485, + "make_id": 28049, + "model_id": 28473, + "year_id": 28485, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28486, + "make_id": 28049, + "model_id": 28473, + "year_id": 28486, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28487, + "make_id": 28049, + "model_id": 28473, + "year_id": 28487, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28488, + "make_id": 28049, + "model_id": 28473, + "year_id": 28488, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28489, + "make_id": 28049, + "model_id": 28473, + "year_id": 28489, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28490, + "make_id": 28049, + "model_id": 28473, + "year_id": 28489, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28491, + "make_id": 28049, + "model_id": 28473, + "year_id": 28491, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28492, + "make_id": 28049, + "model_id": 28473, + "year_id": 28491, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28493, + "make_id": 28049, + "model_id": 28473, + "year_id": 28493, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28494, + "make_id": 28049, + "model_id": 28473, + "year_id": 28493, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28495, + "make_id": 28049, + "model_id": 28495, + "year_id": 28495, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28496, + "make_id": 28049, + "model_id": 28495, + "year_id": 28495, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28497, + "make_id": 28049, + "model_id": 28495, + "year_id": 28495, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28498, + "make_id": 28049, + "model_id": 28495, + "year_id": 28495, + "cylinders": 6, + "displacement": 4.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28499, + "make_id": 28049, + "model_id": 28495, + "year_id": 28495, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28500, + "make_id": 28049, + "model_id": 28495, + "year_id": 28500, + "cylinders": 8, + "displacement": 5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28501, + "make_id": 28049, + "model_id": 28495, + "year_id": 28500, + "cylinders": 8, + "displacement": 5.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28502, + "make_id": 28049, + "model_id": 28495, + "year_id": 28500, + "cylinders": 8, + "displacement": 5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28503, + "make_id": 28049, + "model_id": 28495, + "year_id": 28503, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28504, + "make_id": 28049, + "model_id": 28495, + "year_id": 28504, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28505, + "make_id": 28049, + "model_id": 28495, + "year_id": 28505, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28506, + "make_id": 28049, + "model_id": 28495, + "year_id": 28506, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28507, + "make_id": 28049, + "model_id": 28495, + "year_id": 28507, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28508, + "make_id": 28049, + "model_id": 28495, + "year_id": 28508, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28509, + "make_id": 28049, + "model_id": 28509, + "year_id": 28509, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28510, + "make_id": 28049, + "model_id": 28509, + "year_id": 28510, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28511, + "make_id": 28511, + "model_id": 28511, + "year_id": 28511, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 28512, + "make_id": 28511, + "model_id": 28511, + "year_id": 28512, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 28513, + "make_id": 28513, + "model_id": 28513, + "year_id": 28513, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28514, + "make_id": 28514, + "model_id": 28514, + "year_id": 28514, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28515, + "make_id": 28515, + "model_id": 28515, + "year_id": 28515, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28516, + "make_id": 28515, + "model_id": 28515, + "year_id": 28515, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28517, + "make_id": 28515, + "model_id": 28515, + "year_id": 28517, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28518, + "make_id": 28515, + "model_id": 28515, + "year_id": 28517, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28519, + "make_id": 28519, + "model_id": 28519, + "year_id": 28519, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28520, + "make_id": 28519, + "model_id": 28520, + "year_id": 28520, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28521, + "make_id": 28521, + "model_id": 28521, + "year_id": 28521, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28522, + "make_id": 28521, + "model_id": 28522, + "year_id": 28522, + "cylinders": 6, + "displacement": 4.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28523, + "make_id": 28523, + "model_id": 28523, + "year_id": 28523, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28524, + "make_id": 28523, + "model_id": 28523, + "year_id": 28523, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28525, + "make_id": 28523, + "model_id": 28523, + "year_id": 28523, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28526, + "make_id": 28523, + "model_id": 28523, + "year_id": 28523, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28527, + "make_id": 28523, + "model_id": 28523, + "year_id": 28523, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28528, + "make_id": 28523, + "model_id": 28528, + "year_id": 28528, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28529, + "make_id": 28523, + "model_id": 28528, + "year_id": 28528, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28530, + "make_id": 28523, + "model_id": 28528, + "year_id": 28528, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28531, + "make_id": 28523, + "model_id": 28528, + "year_id": 28528, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28532, + "make_id": 28523, + "model_id": 28528, + "year_id": 28528, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28533, + "make_id": 28523, + "model_id": 28528, + "year_id": 28528, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28534, + "make_id": 28523, + "model_id": 28528, + "year_id": 28534, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28535, + "make_id": 28523, + "model_id": 28528, + "year_id": 28534, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28536, + "make_id": 28523, + "model_id": 28528, + "year_id": 28534, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28537, + "make_id": 28523, + "model_id": 28528, + "year_id": 28537, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28538, + "make_id": 28523, + "model_id": 28528, + "year_id": 28537, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28539, + "make_id": 28523, + "model_id": 28528, + "year_id": 28537, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28540, + "make_id": 28523, + "model_id": 28528, + "year_id": 28540, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28541, + "make_id": 28523, + "model_id": 28528, + "year_id": 28540, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28542, + "make_id": 28523, + "model_id": 28528, + "year_id": 28540, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28543, + "make_id": 28523, + "model_id": 28543, + "year_id": 28543, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28544, + "make_id": 28523, + "model_id": 28543, + "year_id": 28543, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28545, + "make_id": 28523, + "model_id": 28543, + "year_id": 28545, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28546, + "make_id": 28523, + "model_id": 28543, + "year_id": 28545, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28547, + "make_id": 28523, + "model_id": 28547, + "year_id": 28547, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28548, + "make_id": 28523, + "model_id": 28547, + "year_id": 28547, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28549, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28550, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28551, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28552, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28553, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28554, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28555, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28556, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28557, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28558, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28559, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28560, + "make_id": 28523, + "model_id": 28549, + "year_id": 28549, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28561, + "make_id": 28523, + "model_id": 28549, + "year_id": 28561, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28562, + "make_id": 28523, + "model_id": 28549, + "year_id": 28561, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28563, + "make_id": 28523, + "model_id": 28549, + "year_id": 28561, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28564, + "make_id": 28523, + "model_id": 28549, + "year_id": 28561, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28565, + "make_id": 28523, + "model_id": 28549, + "year_id": 28561, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28566, + "make_id": 28523, + "model_id": 28549, + "year_id": 28561, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28567, + "make_id": 28523, + "model_id": 28549, + "year_id": 28567, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28568, + "make_id": 28523, + "model_id": 28549, + "year_id": 28567, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28569, + "make_id": 28523, + "model_id": 28549, + "year_id": 28567, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28570, + "make_id": 28523, + "model_id": 28549, + "year_id": 28567, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28571, + "make_id": 28523, + "model_id": 28549, + "year_id": 28567, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28572, + "make_id": 28523, + "model_id": 28549, + "year_id": 28567, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28573, + "make_id": 28523, + "model_id": 28549, + "year_id": 28567, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28574, + "make_id": 28523, + "model_id": 28549, + "year_id": 28567, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28575, + "make_id": 28523, + "model_id": 28549, + "year_id": 28575, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28576, + "make_id": 28523, + "model_id": 28549, + "year_id": 28575, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28577, + "make_id": 28523, + "model_id": 28549, + "year_id": 28575, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28578, + "make_id": 28523, + "model_id": 28549, + "year_id": 28575, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28579, + "make_id": 28523, + "model_id": 28549, + "year_id": 28575, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28580, + "make_id": 28523, + "model_id": 28549, + "year_id": 28575, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28581, + "make_id": 28523, + "model_id": 28549, + "year_id": 28581, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28582, + "make_id": 28523, + "model_id": 28549, + "year_id": 28581, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28583, + "make_id": 28523, + "model_id": 28549, + "year_id": 28581, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28584, + "make_id": 28523, + "model_id": 28549, + "year_id": 28581, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28585, + "make_id": 28523, + "model_id": 28549, + "year_id": 28581, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28586, + "make_id": 28523, + "model_id": 28549, + "year_id": 28581, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28587, + "make_id": 28523, + "model_id": 28587, + "year_id": 28587, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28588, + "make_id": 28523, + "model_id": 28587, + "year_id": 28587, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28589, + "make_id": 28523, + "model_id": 28587, + "year_id": 28587, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28590, + "make_id": 28523, + "model_id": 28587, + "year_id": 28587, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28591, + "make_id": 28523, + "model_id": 28587, + "year_id": 28587, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28592, + "make_id": 28523, + "model_id": 28587, + "year_id": 28587, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28593, + "make_id": 28523, + "model_id": 28587, + "year_id": 28587, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28594, + "make_id": 28523, + "model_id": 28587, + "year_id": 28587, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28595, + "make_id": 28523, + "model_id": 28587, + "year_id": 28595, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28596, + "make_id": 28523, + "model_id": 28587, + "year_id": 28595, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28597, + "make_id": 28523, + "model_id": 28587, + "year_id": 28595, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28598, + "make_id": 28523, + "model_id": 28587, + "year_id": 28595, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28599, + "make_id": 28523, + "model_id": 28587, + "year_id": 28599, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28600, + "make_id": 28523, + "model_id": 28587, + "year_id": 28599, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28601, + "make_id": 28523, + "model_id": 28587, + "year_id": 28599, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28602, + "make_id": 28523, + "model_id": 28587, + "year_id": 28602, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28603, + "make_id": 28523, + "model_id": 28587, + "year_id": 28602, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28604, + "make_id": 28523, + "model_id": 28587, + "year_id": 28602, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28605, + "make_id": 28523, + "model_id": 28587, + "year_id": 28605, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28606, + "make_id": 28523, + "model_id": 28587, + "year_id": 28605, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28607, + "make_id": 28523, + "model_id": 28587, + "year_id": 28605, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28608, + "make_id": 28523, + "model_id": 28587, + "year_id": 28608, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28609, + "make_id": 28523, + "model_id": 28587, + "year_id": 28608, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28610, + "make_id": 28523, + "model_id": 28587, + "year_id": 28608, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28611, + "make_id": 28523, + "model_id": 28587, + "year_id": 28611, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28612, + "make_id": 28523, + "model_id": 28587, + "year_id": 28611, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28613, + "make_id": 28523, + "model_id": 28587, + "year_id": 28611, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28614, + "make_id": 28523, + "model_id": 28587, + "year_id": 28614, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28615, + "make_id": 28523, + "model_id": 28587, + "year_id": 28614, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28616, + "make_id": 28523, + "model_id": 28616, + "year_id": 28616, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28617, + "make_id": 28523, + "model_id": 28616, + "year_id": 28616, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28618, + "make_id": 28523, + "model_id": 28616, + "year_id": 28616, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28619, + "make_id": 28523, + "model_id": 28619, + "year_id": 28619, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28620, + "make_id": 28523, + "model_id": 28619, + "year_id": 28619, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28621, + "make_id": 28621, + "model_id": 28621, + "year_id": 28621, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28622, + "make_id": 28621, + "model_id": 28621, + "year_id": 28621, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28623, + "make_id": 28621, + "model_id": 28621, + "year_id": 28621, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28624, + "make_id": 28621, + "model_id": 28621, + "year_id": 28621, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28625, + "make_id": 28621, + "model_id": 28621, + "year_id": 28625, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28626, + "make_id": 28621, + "model_id": 28621, + "year_id": 28625, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28627, + "make_id": 28627, + "model_id": 28627, + "year_id": 28627, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28628, + "make_id": 28627, + "model_id": 28627, + "year_id": 28627, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28629, + "make_id": 28627, + "model_id": 28627, + "year_id": 28627, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28630, + "make_id": 28627, + "model_id": 28627, + "year_id": 28627, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28631, + "make_id": 28627, + "model_id": 28627, + "year_id": 28627, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28632, + "make_id": 28627, + "model_id": 28627, + "year_id": 28627, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28633, + "make_id": 28627, + "model_id": 28627, + "year_id": 28633, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28634, + "make_id": 28627, + "model_id": 28627, + "year_id": 28633, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28635, + "make_id": 28627, + "model_id": 28627, + "year_id": 28633, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28636, + "make_id": 28627, + "model_id": 28627, + "year_id": 28633, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28637, + "make_id": 28627, + "model_id": 28627, + "year_id": 28637, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28638, + "make_id": 28627, + "model_id": 28627, + "year_id": 28637, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28639, + "make_id": 28627, + "model_id": 28627, + "year_id": 28637, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28640, + "make_id": 28627, + "model_id": 28627, + "year_id": 28640, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28641, + "make_id": 28627, + "model_id": 28627, + "year_id": 28640, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28642, + "make_id": 28627, + "model_id": 28627, + "year_id": 28640, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28643, + "make_id": 28627, + "model_id": 28627, + "year_id": 28640, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28644, + "make_id": 28627, + "model_id": 28627, + "year_id": 28644, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28645, + "make_id": 28627, + "model_id": 28627, + "year_id": 28644, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28646, + "make_id": 28627, + "model_id": 28627, + "year_id": 28644, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28647, + "make_id": 28627, + "model_id": 28627, + "year_id": 28644, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28648, + "make_id": 28627, + "model_id": 28627, + "year_id": 28644, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28649, + "make_id": 28627, + "model_id": 28627, + "year_id": 28649, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28650, + "make_id": 28627, + "model_id": 28627, + "year_id": 28649, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28651, + "make_id": 28627, + "model_id": 28627, + "year_id": 28649, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28652, + "make_id": 28627, + "model_id": 28627, + "year_id": 28649, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28653, + "make_id": 28627, + "model_id": 28627, + "year_id": 28649, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28654, + "make_id": 28627, + "model_id": 28627, + "year_id": 28654, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28655, + "make_id": 28627, + "model_id": 28627, + "year_id": 28654, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28656, + "make_id": 28627, + "model_id": 28656, + "year_id": 28656, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28657, + "make_id": 28627, + "model_id": 28656, + "year_id": 28656, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28658, + "make_id": 28627, + "model_id": 28656, + "year_id": 28656, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28659, + "make_id": 28627, + "model_id": 28656, + "year_id": 28659, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28660, + "make_id": 28627, + "model_id": 28656, + "year_id": 28659, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28661, + "make_id": 28627, + "model_id": 28656, + "year_id": 28661, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28662, + "make_id": 28627, + "model_id": 28656, + "year_id": 28661, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28663, + "make_id": 28627, + "model_id": 28656, + "year_id": 28661, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28664, + "make_id": 28627, + "model_id": 28656, + "year_id": 28664, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28665, + "make_id": 28627, + "model_id": 28656, + "year_id": 28664, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28666, + "make_id": 28627, + "model_id": 28656, + "year_id": 28664, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28667, + "make_id": 28627, + "model_id": 28656, + "year_id": 28667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28668, + "make_id": 28627, + "model_id": 28656, + "year_id": 28667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28669, + "make_id": 28627, + "model_id": 28656, + "year_id": 28667, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28670, + "make_id": 28627, + "model_id": 28670, + "year_id": 28670, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28671, + "make_id": 28627, + "model_id": 28670, + "year_id": 28670, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28672, + "make_id": 28627, + "model_id": 28670, + "year_id": 28670, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28673, + "make_id": 28627, + "model_id": 28670, + "year_id": 28670, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28674, + "make_id": 28627, + "model_id": 28670, + "year_id": 28670, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28675, + "make_id": 28627, + "model_id": 28670, + "year_id": 28670, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28676, + "make_id": 28627, + "model_id": 28670, + "year_id": 28676, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28677, + "make_id": 28627, + "model_id": 28670, + "year_id": 28676, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28678, + "make_id": 28627, + "model_id": 28670, + "year_id": 28676, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28679, + "make_id": 28627, + "model_id": 28670, + "year_id": 28679, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28680, + "make_id": 28627, + "model_id": 28670, + "year_id": 28679, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28681, + "make_id": 28627, + "model_id": 28670, + "year_id": 28679, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28682, + "make_id": 28627, + "model_id": 28670, + "year_id": 28682, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28683, + "make_id": 28627, + "model_id": 28670, + "year_id": 28682, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28684, + "make_id": 28627, + "model_id": 28670, + "year_id": 28682, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28685, + "make_id": 28627, + "model_id": 28670, + "year_id": 28685, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28686, + "make_id": 28627, + "model_id": 28670, + "year_id": 28685, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28687, + "make_id": 28627, + "model_id": 28670, + "year_id": 28685, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28688, + "make_id": 28627, + "model_id": 28688, + "year_id": 28688, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28689, + "make_id": 28627, + "model_id": 28688, + "year_id": 28688, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 28690, + "make_id": 28627, + "model_id": 28688, + "year_id": 28688, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28691, + "make_id": 28627, + "model_id": 28688, + "year_id": 28688, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 28692, + "make_id": 28627, + "model_id": 28688, + "year_id": 28688, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28693, + "make_id": 28627, + "model_id": 28688, + "year_id": 28688, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 28694, + "make_id": 28627, + "model_id": 28688, + "year_id": 28688, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28695, + "make_id": 28627, + "model_id": 28688, + "year_id": 28688, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 28696, + "make_id": 28627, + "model_id": 28688, + "year_id": 28696, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28697, + "make_id": 28627, + "model_id": 28688, + "year_id": 28696, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28698, + "make_id": 28627, + "model_id": 28688, + "year_id": 28696, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28699, + "make_id": 28627, + "model_id": 28688, + "year_id": 28696, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28700, + "make_id": 28627, + "model_id": 28688, + "year_id": 28696, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28701, + "make_id": 28627, + "model_id": 28688, + "year_id": 28696, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28702, + "make_id": 28627, + "model_id": 28688, + "year_id": 28702, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28703, + "make_id": 28627, + "model_id": 28688, + "year_id": 28702, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28704, + "make_id": 28627, + "model_id": 28688, + "year_id": 28702, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28705, + "make_id": 28627, + "model_id": 28688, + "year_id": 28702, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28706, + "make_id": 28627, + "model_id": 28688, + "year_id": 28702, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28707, + "make_id": 28627, + "model_id": 28688, + "year_id": 28707, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28708, + "make_id": 28627, + "model_id": 28688, + "year_id": 28707, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28709, + "make_id": 28627, + "model_id": 28688, + "year_id": 28707, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28710, + "make_id": 28627, + "model_id": 28688, + "year_id": 28707, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28711, + "make_id": 28627, + "model_id": 28688, + "year_id": 28707, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28712, + "make_id": 28627, + "model_id": 28688, + "year_id": 28712, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28713, + "make_id": 28627, + "model_id": 28688, + "year_id": 28712, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28714, + "make_id": 28627, + "model_id": 28688, + "year_id": 28712, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28715, + "make_id": 28627, + "model_id": 28688, + "year_id": 28712, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28716, + "make_id": 28627, + "model_id": 28688, + "year_id": 28712, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28717, + "make_id": 28627, + "model_id": 28688, + "year_id": 28717, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28718, + "make_id": 28627, + "model_id": 28688, + "year_id": 28717, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28719, + "make_id": 28627, + "model_id": 28688, + "year_id": 28717, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28720, + "make_id": 28627, + "model_id": 28688, + "year_id": 28717, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28721, + "make_id": 28627, + "model_id": 28688, + "year_id": 28721, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28722, + "make_id": 28627, + "model_id": 28688, + "year_id": 28721, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28723, + "make_id": 28627, + "model_id": 28688, + "year_id": 28721, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28724, + "make_id": 28627, + "model_id": 28688, + "year_id": 28721, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28725, + "make_id": 28627, + "model_id": 28688, + "year_id": 28721, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28726, + "make_id": 28627, + "model_id": 28688, + "year_id": 28726, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28727, + "make_id": 28627, + "model_id": 28688, + "year_id": 28726, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28728, + "make_id": 28627, + "model_id": 28688, + "year_id": 28726, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28729, + "make_id": 28627, + "model_id": 28688, + "year_id": 28729, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28730, + "make_id": 28627, + "model_id": 28688, + "year_id": 28729, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28731, + "make_id": 28627, + "model_id": 28688, + "year_id": 28729, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28732, + "make_id": 28627, + "model_id": 28688, + "year_id": 28732, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28733, + "make_id": 28627, + "model_id": 28688, + "year_id": 28732, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28734, + "make_id": 28627, + "model_id": 28688, + "year_id": 28732, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28735, + "make_id": 28627, + "model_id": 28688, + "year_id": 28732, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28736, + "make_id": 28627, + "model_id": 28688, + "year_id": 28736, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28737, + "make_id": 28627, + "model_id": 28688, + "year_id": 28736, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28738, + "make_id": 28627, + "model_id": 28688, + "year_id": 28736, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28739, + "make_id": 28627, + "model_id": 28688, + "year_id": 28736, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28740, + "make_id": 28627, + "model_id": 28740, + "year_id": 28740, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28741, + "make_id": 28627, + "model_id": 28740, + "year_id": 28740, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 28742, + "make_id": 28627, + "model_id": 28740, + "year_id": 28740, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28743, + "make_id": 28627, + "model_id": 28740, + "year_id": 28740, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28744, + "make_id": 28627, + "model_id": 28740, + "year_id": 28740, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual Doubled" + }, + { + "id": 28745, + "make_id": 28627, + "model_id": 28740, + "year_id": 28740, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28746, + "make_id": 28627, + "model_id": 28740, + "year_id": 28746, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28747, + "make_id": 28627, + "model_id": 28740, + "year_id": 28746, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28748, + "make_id": 28627, + "model_id": 28740, + "year_id": 28746, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28749, + "make_id": 28627, + "model_id": 28740, + "year_id": 28746, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28750, + "make_id": 28627, + "model_id": 28740, + "year_id": 28746, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28751, + "make_id": 28627, + "model_id": 28740, + "year_id": 28746, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28752, + "make_id": 28627, + "model_id": 28740, + "year_id": 28752, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28753, + "make_id": 28627, + "model_id": 28740, + "year_id": 28752, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28754, + "make_id": 28627, + "model_id": 28740, + "year_id": 28752, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28755, + "make_id": 28627, + "model_id": 28740, + "year_id": 28755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28756, + "make_id": 28627, + "model_id": 28740, + "year_id": 28755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28757, + "make_id": 28627, + "model_id": 28740, + "year_id": 28755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28758, + "make_id": 28627, + "model_id": 28740, + "year_id": 28755, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28759, + "make_id": 28627, + "model_id": 28740, + "year_id": 28755, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28760, + "make_id": 28627, + "model_id": 28740, + "year_id": 28755, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28761, + "make_id": 28627, + "model_id": 28740, + "year_id": 28761, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28762, + "make_id": 28627, + "model_id": 28740, + "year_id": 28761, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28763, + "make_id": 28627, + "model_id": 28740, + "year_id": 28761, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28764, + "make_id": 28627, + "model_id": 28740, + "year_id": 28764, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28765, + "make_id": 28627, + "model_id": 28740, + "year_id": 28764, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28766, + "make_id": 28627, + "model_id": 28740, + "year_id": 28764, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28767, + "make_id": 28627, + "model_id": 28740, + "year_id": 28767, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28768, + "make_id": 28627, + "model_id": 28740, + "year_id": 28767, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28769, + "make_id": 28627, + "model_id": 28740, + "year_id": 28767, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28770, + "make_id": 28627, + "model_id": 28740, + "year_id": 28770, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28771, + "make_id": 28627, + "model_id": 28740, + "year_id": 28770, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28772, + "make_id": 28627, + "model_id": 28740, + "year_id": 28770, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28773, + "make_id": 28627, + "model_id": 28740, + "year_id": 28773, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28774, + "make_id": 28627, + "model_id": 28740, + "year_id": 28773, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28775, + "make_id": 28627, + "model_id": 28740, + "year_id": 28773, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28776, + "make_id": 28627, + "model_id": 28740, + "year_id": 28773, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28777, + "make_id": 28627, + "model_id": 28740, + "year_id": 28773, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28778, + "make_id": 28627, + "model_id": 28740, + "year_id": 28773, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28779, + "make_id": 28627, + "model_id": 28740, + "year_id": 28773, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28780, + "make_id": 28627, + "model_id": 28740, + "year_id": 28773, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28781, + "make_id": 28627, + "model_id": 28740, + "year_id": 28781, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28782, + "make_id": 28627, + "model_id": 28740, + "year_id": 28781, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28783, + "make_id": 28627, + "model_id": 28740, + "year_id": 28781, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28784, + "make_id": 28627, + "model_id": 28740, + "year_id": 28781, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28785, + "make_id": 28627, + "model_id": 28740, + "year_id": 28781, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28786, + "make_id": 28627, + "model_id": 28740, + "year_id": 28781, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28787, + "make_id": 28627, + "model_id": 28740, + "year_id": 28781, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28788, + "make_id": 28627, + "model_id": 28740, + "year_id": 28781, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28789, + "make_id": 28627, + "model_id": 28740, + "year_id": 28789, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28790, + "make_id": 28627, + "model_id": 28740, + "year_id": 28789, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28791, + "make_id": 28627, + "model_id": 28740, + "year_id": 28789, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28792, + "make_id": 28627, + "model_id": 28740, + "year_id": 28789, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28793, + "make_id": 28627, + "model_id": 28740, + "year_id": 28789, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28794, + "make_id": 28627, + "model_id": 28740, + "year_id": 28789, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28795, + "make_id": 28627, + "model_id": 28795, + "year_id": 28795, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28796, + "make_id": 28627, + "model_id": 28795, + "year_id": 28795, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28797, + "make_id": 28627, + "model_id": 28795, + "year_id": 28797, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28798, + "make_id": 28627, + "model_id": 28795, + "year_id": 28797, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28799, + "make_id": 28627, + "model_id": 28795, + "year_id": 28797, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28800, + "make_id": 28627, + "model_id": 28795, + "year_id": 28800, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28801, + "make_id": 28627, + "model_id": 28795, + "year_id": 28800, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28802, + "make_id": 28627, + "model_id": 28795, + "year_id": 28800, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28803, + "make_id": 28627, + "model_id": 28803, + "year_id": 28803, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28804, + "make_id": 28627, + "model_id": 28803, + "year_id": 28803, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28805, + "make_id": 28627, + "model_id": 28803, + "year_id": 28803, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28806, + "make_id": 28627, + "model_id": 28803, + "year_id": 28803, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28807, + "make_id": 28627, + "model_id": 28803, + "year_id": 28803, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 28808, + "make_id": 28627, + "model_id": 28803, + "year_id": 28803, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28809, + "make_id": 28627, + "model_id": 28803, + "year_id": 28809, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28810, + "make_id": 28627, + "model_id": 28803, + "year_id": 28809, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28811, + "make_id": 28627, + "model_id": 28803, + "year_id": 28809, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28812, + "make_id": 28627, + "model_id": 28803, + "year_id": 28809, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28813, + "make_id": 28627, + "model_id": 28803, + "year_id": 28809, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28814, + "make_id": 28627, + "model_id": 28803, + "year_id": 28809, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28815, + "make_id": 28627, + "model_id": 28803, + "year_id": 28815, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28816, + "make_id": 28627, + "model_id": 28803, + "year_id": 28815, + "cylinders": 4, + "displacement": 2.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28817, + "make_id": 28627, + "model_id": 28817, + "year_id": 28817, + "cylinders": 8, + "displacement": 5.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28818, + "make_id": 28627, + "model_id": 28817, + "year_id": 28817, + "cylinders": 8, + "displacement": 5.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28819, + "make_id": 28627, + "model_id": 28817, + "year_id": 28817, + "cylinders": 8, + "displacement": 5.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28820, + "make_id": 28627, + "model_id": 28817, + "year_id": 28820, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28821, + "make_id": 28627, + "model_id": 28817, + "year_id": 28820, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28822, + "make_id": 28627, + "model_id": 28817, + "year_id": 28820, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28823, + "make_id": 28627, + "model_id": 28817, + "year_id": 28823, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28824, + "make_id": 28627, + "model_id": 28817, + "year_id": 28823, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28825, + "make_id": 28627, + "model_id": 28817, + "year_id": 28823, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28826, + "make_id": 28627, + "model_id": 28817, + "year_id": 28826, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28827, + "make_id": 28627, + "model_id": 28817, + "year_id": 28826, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28828, + "make_id": 28627, + "model_id": 28817, + "year_id": 28826, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28829, + "make_id": 28627, + "model_id": 28817, + "year_id": 28829, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28830, + "make_id": 28627, + "model_id": 28817, + "year_id": 28829, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28831, + "make_id": 28627, + "model_id": 28817, + "year_id": 28829, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28832, + "make_id": 28627, + "model_id": 28817, + "year_id": 28832, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28833, + "make_id": 28627, + "model_id": 28817, + "year_id": 28832, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28834, + "make_id": 28627, + "model_id": 28817, + "year_id": 28832, + "cylinders": 8, + "displacement": 5.2, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28835, + "make_id": 28627, + "model_id": 28835, + "year_id": 28835, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28836, + "make_id": 28627, + "model_id": 28835, + "year_id": 28835, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28837, + "make_id": 28627, + "model_id": 28835, + "year_id": 28835, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28838, + "make_id": 28627, + "model_id": 28835, + "year_id": 28835, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28839, + "make_id": 28627, + "model_id": 28835, + "year_id": 28835, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28840, + "make_id": 28627, + "model_id": 28835, + "year_id": 28835, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28841, + "make_id": 28627, + "model_id": 28835, + "year_id": 28841, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28842, + "make_id": 28627, + "model_id": 28835, + "year_id": 28841, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28843, + "make_id": 28627, + "model_id": 28835, + "year_id": 28841, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28844, + "make_id": 28627, + "model_id": 28835, + "year_id": 28841, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28845, + "make_id": 28627, + "model_id": 28835, + "year_id": 28841, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28846, + "make_id": 28627, + "model_id": 28835, + "year_id": 28841, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28847, + "make_id": 28627, + "model_id": 28835, + "year_id": 28841, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28848, + "make_id": 28627, + "model_id": 28835, + "year_id": 28841, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28849, + "make_id": 28627, + "model_id": 28835, + "year_id": 28841, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28850, + "make_id": 28627, + "model_id": 28835, + "year_id": 28850, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28851, + "make_id": 28627, + "model_id": 28835, + "year_id": 28850, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28852, + "make_id": 28627, + "model_id": 28835, + "year_id": 28850, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28853, + "make_id": 28627, + "model_id": 28835, + "year_id": 28850, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28854, + "make_id": 28627, + "model_id": 28835, + "year_id": 28854, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28855, + "make_id": 28627, + "model_id": 28835, + "year_id": 28854, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28856, + "make_id": 28627, + "model_id": 28835, + "year_id": 28856, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28857, + "make_id": 28627, + "model_id": 28835, + "year_id": 28856, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28858, + "make_id": 28627, + "model_id": 28835, + "year_id": 28858, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28859, + "make_id": 28627, + "model_id": 28835, + "year_id": 28858, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28860, + "make_id": 28627, + "model_id": 28835, + "year_id": 28860, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28861, + "make_id": 28627, + "model_id": 28835, + "year_id": 28860, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28862, + "make_id": 28627, + "model_id": 28862, + "year_id": 28862, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28863, + "make_id": 28627, + "model_id": 28862, + "year_id": 28862, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28864, + "make_id": 28627, + "model_id": 28862, + "year_id": 28862, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28865, + "make_id": 28627, + "model_id": 28862, + "year_id": 28862, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28866, + "make_id": 28627, + "model_id": 28862, + "year_id": 28862, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28867, + "make_id": 28627, + "model_id": 28862, + "year_id": 28867, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28868, + "make_id": 28627, + "model_id": 28862, + "year_id": 28867, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28869, + "make_id": 28627, + "model_id": 28862, + "year_id": 28867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28870, + "make_id": 28627, + "model_id": 28862, + "year_id": 28867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28871, + "make_id": 28627, + "model_id": 28862, + "year_id": 28867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28872, + "make_id": 28627, + "model_id": 28862, + "year_id": 28867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28873, + "make_id": 28627, + "model_id": 28862, + "year_id": 28873, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28874, + "make_id": 28627, + "model_id": 28862, + "year_id": 28873, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28875, + "make_id": 28627, + "model_id": 28862, + "year_id": 28873, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28876, + "make_id": 28627, + "model_id": 28862, + "year_id": 28873, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28877, + "make_id": 28627, + "model_id": 28862, + "year_id": 28873, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28878, + "make_id": 28627, + "model_id": 28862, + "year_id": 28873, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28879, + "make_id": 28627, + "model_id": 28862, + "year_id": 28873, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28880, + "make_id": 28627, + "model_id": 28862, + "year_id": 28880, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28881, + "make_id": 28627, + "model_id": 28862, + "year_id": 28880, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28882, + "make_id": 28627, + "model_id": 28862, + "year_id": 28880, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28883, + "make_id": 28627, + "model_id": 28862, + "year_id": 28880, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28884, + "make_id": 28627, + "model_id": 28862, + "year_id": 28880, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28885, + "make_id": 28627, + "model_id": 28862, + "year_id": 28880, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28886, + "make_id": 28627, + "model_id": 28862, + "year_id": 28880, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28887, + "make_id": 28627, + "model_id": 28862, + "year_id": 28880, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28888, + "make_id": 28627, + "model_id": 28862, + "year_id": 28888, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28889, + "make_id": 28627, + "model_id": 28862, + "year_id": 28888, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28890, + "make_id": 28627, + "model_id": 28862, + "year_id": 28888, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28891, + "make_id": 28627, + "model_id": 28862, + "year_id": 28888, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28892, + "make_id": 28627, + "model_id": 28862, + "year_id": 28888, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28893, + "make_id": 28627, + "model_id": 28862, + "year_id": 28888, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28894, + "make_id": 28627, + "model_id": 28862, + "year_id": 28888, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28895, + "make_id": 28627, + "model_id": 28862, + "year_id": 28888, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28896, + "make_id": 28627, + "model_id": 28896, + "year_id": 28896, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28897, + "make_id": 28627, + "model_id": 28896, + "year_id": 28896, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28898, + "make_id": 28627, + "model_id": 28896, + "year_id": 28898, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28899, + "make_id": 28627, + "model_id": 28896, + "year_id": 28898, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28900, + "make_id": 28627, + "model_id": 28896, + "year_id": 28900, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28901, + "make_id": 28627, + "model_id": 28896, + "year_id": 28900, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28902, + "make_id": 28627, + "model_id": 28896, + "year_id": 28902, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28903, + "make_id": 28627, + "model_id": 28896, + "year_id": 28902, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28904, + "make_id": 28627, + "model_id": 28896, + "year_id": 28904, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28905, + "make_id": 28627, + "model_id": 28896, + "year_id": 28904, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28906, + "make_id": 28627, + "model_id": 28896, + "year_id": 28906, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28907, + "make_id": 28627, + "model_id": 28896, + "year_id": 28906, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28908, + "make_id": 28627, + "model_id": 28896, + "year_id": 28908, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28909, + "make_id": 28627, + "model_id": 28896, + "year_id": 28908, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28910, + "make_id": 28627, + "model_id": 28910, + "year_id": 28910, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28911, + "make_id": 28627, + "model_id": 28910, + "year_id": 28911, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28912, + "make_id": 28627, + "model_id": 28910, + "year_id": 28912, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 28913, + "make_id": 28627, + "model_id": 28913, + "year_id": 28913, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28914, + "make_id": 28627, + "model_id": 28913, + "year_id": 28913, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28915, + "make_id": 28627, + "model_id": 28913, + "year_id": 28913, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28916, + "make_id": 28627, + "model_id": 28913, + "year_id": 28913, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28917, + "make_id": 28627, + "model_id": 28913, + "year_id": 28913, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28918, + "make_id": 28627, + "model_id": 28913, + "year_id": 28913, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28919, + "make_id": 28627, + "model_id": 28913, + "year_id": 28913, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28920, + "make_id": 28627, + "model_id": 28913, + "year_id": 28913, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28921, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28922, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28923, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28924, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28925, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28926, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28927, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28928, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28929, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28930, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28931, + "make_id": 28627, + "model_id": 28913, + "year_id": 28921, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28932, + "make_id": 28627, + "model_id": 28913, + "year_id": 28932, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28933, + "make_id": 28627, + "model_id": 28913, + "year_id": 28932, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28934, + "make_id": 28627, + "model_id": 28913, + "year_id": 28932, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28935, + "make_id": 28627, + "model_id": 28913, + "year_id": 28932, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28936, + "make_id": 28627, + "model_id": 28913, + "year_id": 28932, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28937, + "make_id": 28627, + "model_id": 28913, + "year_id": 28937, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28938, + "make_id": 28627, + "model_id": 28913, + "year_id": 28937, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28939, + "make_id": 28627, + "model_id": 28913, + "year_id": 28937, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28940, + "make_id": 28627, + "model_id": 28913, + "year_id": 28937, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28941, + "make_id": 28627, + "model_id": 28913, + "year_id": 28937, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28942, + "make_id": 28627, + "model_id": 28913, + "year_id": 28942, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28943, + "make_id": 28627, + "model_id": 28913, + "year_id": 28942, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28944, + "make_id": 28627, + "model_id": 28913, + "year_id": 28942, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28945, + "make_id": 28627, + "model_id": 28913, + "year_id": 28945, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28946, + "make_id": 28627, + "model_id": 28913, + "year_id": 28945, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28947, + "make_id": 28627, + "model_id": 28913, + "year_id": 28945, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28948, + "make_id": 28627, + "model_id": 28948, + "year_id": 28948, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28949, + "make_id": 28627, + "model_id": 28948, + "year_id": 28948, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28950, + "make_id": 28627, + "model_id": 28948, + "year_id": 28948, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28951, + "make_id": 28627, + "model_id": 28948, + "year_id": 28948, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28952, + "make_id": 28627, + "model_id": 28948, + "year_id": 28948, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28953, + "make_id": 28627, + "model_id": 28948, + "year_id": 28948, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 28954, + "make_id": 28627, + "model_id": 28948, + "year_id": 28948, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 28955, + "make_id": 28627, + "model_id": 28948, + "year_id": 28948, + "cylinders": 4, + "displacement": 2.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 28956, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28957, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28958, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28959, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28960, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28961, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28962, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 28963, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28964, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28965, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28966, + "make_id": 28627, + "model_id": 28948, + "year_id": 28956, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28967, + "make_id": 28627, + "model_id": 28948, + "year_id": 28967, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28968, + "make_id": 28627, + "model_id": 28948, + "year_id": 28967, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28969, + "make_id": 28627, + "model_id": 28948, + "year_id": 28967, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28970, + "make_id": 28627, + "model_id": 28948, + "year_id": 28970, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28971, + "make_id": 28627, + "model_id": 28948, + "year_id": 28970, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28972, + "make_id": 28627, + "model_id": 28948, + "year_id": 28970, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28973, + "make_id": 28627, + "model_id": 28948, + "year_id": 28973, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28974, + "make_id": 28627, + "model_id": 28948, + "year_id": 28973, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28975, + "make_id": 28627, + "model_id": 28948, + "year_id": 28973, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28976, + "make_id": 28627, + "model_id": 28976, + "year_id": 28976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28977, + "make_id": 28627, + "model_id": 28976, + "year_id": 28976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28978, + "make_id": 28627, + "model_id": 28976, + "year_id": 28976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28979, + "make_id": 28627, + "model_id": 28976, + "year_id": 28976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28980, + "make_id": 28627, + "model_id": 28976, + "year_id": 28976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28981, + "make_id": 28627, + "model_id": 28976, + "year_id": 28976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28982, + "make_id": 28627, + "model_id": 28976, + "year_id": 28976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28983, + "make_id": 28627, + "model_id": 28976, + "year_id": 28976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28984, + "make_id": 28627, + "model_id": 28976, + "year_id": 28984, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28985, + "make_id": 28627, + "model_id": 28976, + "year_id": 28984, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28986, + "make_id": 28627, + "model_id": 28976, + "year_id": 28984, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28987, + "make_id": 28627, + "model_id": 28976, + "year_id": 28984, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28988, + "make_id": 28627, + "model_id": 28976, + "year_id": 28984, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28989, + "make_id": 28627, + "model_id": 28976, + "year_id": 28984, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28990, + "make_id": 28627, + "model_id": 28976, + "year_id": 28990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28991, + "make_id": 28627, + "model_id": 28976, + "year_id": 28990, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28992, + "make_id": 28627, + "model_id": 28976, + "year_id": 28990, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28993, + "make_id": 28627, + "model_id": 28976, + "year_id": 28990, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28994, + "make_id": 28627, + "model_id": 28976, + "year_id": 28990, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28995, + "make_id": 28627, + "model_id": 28976, + "year_id": 28990, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28996, + "make_id": 28627, + "model_id": 28976, + "year_id": 28996, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28997, + "make_id": 28627, + "model_id": 28976, + "year_id": 28996, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 28998, + "make_id": 28627, + "model_id": 28976, + "year_id": 28996, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 28999, + "make_id": 28627, + "model_id": 28976, + "year_id": 28996, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29000, + "make_id": 28627, + "model_id": 28976, + "year_id": 28996, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29001, + "make_id": 28627, + "model_id": 28976, + "year_id": 28996, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29002, + "make_id": 28627, + "model_id": 28976, + "year_id": 29002, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29003, + "make_id": 28627, + "model_id": 28976, + "year_id": 29002, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29004, + "make_id": 28627, + "model_id": 28976, + "year_id": 29002, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29005, + "make_id": 28627, + "model_id": 28976, + "year_id": 29002, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29006, + "make_id": 28627, + "model_id": 28976, + "year_id": 29002, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29007, + "make_id": 28627, + "model_id": 28976, + "year_id": 29002, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29008, + "make_id": 28627, + "model_id": 29008, + "year_id": 29008, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29009, + "make_id": 28627, + "model_id": 29008, + "year_id": 29008, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29010, + "make_id": 28627, + "model_id": 29008, + "year_id": 29008, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29011, + "make_id": 28627, + "model_id": 29008, + "year_id": 29008, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29012, + "make_id": 28627, + "model_id": 29008, + "year_id": 29008, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29013, + "make_id": 28627, + "model_id": 29013, + "year_id": 29013, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29014, + "make_id": 28627, + "model_id": 29013, + "year_id": 29013, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29015, + "make_id": 28627, + "model_id": 29013, + "year_id": 29013, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29016, + "make_id": 28627, + "model_id": 29013, + "year_id": 29013, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29017, + "make_id": 28627, + "model_id": 29013, + "year_id": 29013, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29018, + "make_id": 28627, + "model_id": 29013, + "year_id": 29013, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29019, + "make_id": 28627, + "model_id": 29013, + "year_id": 29013, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29020, + "make_id": 28627, + "model_id": 29013, + "year_id": 29013, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29021, + "make_id": 28627, + "model_id": 29013, + "year_id": 29021, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29022, + "make_id": 28627, + "model_id": 29013, + "year_id": 29021, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29023, + "make_id": 28627, + "model_id": 29013, + "year_id": 29021, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29024, + "make_id": 28627, + "model_id": 29013, + "year_id": 29021, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29025, + "make_id": 28627, + "model_id": 29013, + "year_id": 29021, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29026, + "make_id": 28627, + "model_id": 29013, + "year_id": 29021, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29027, + "make_id": 28627, + "model_id": 29013, + "year_id": 29027, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29028, + "make_id": 28627, + "model_id": 29013, + "year_id": 29027, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29029, + "make_id": 28627, + "model_id": 29013, + "year_id": 29027, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29030, + "make_id": 28627, + "model_id": 29013, + "year_id": 29027, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29031, + "make_id": 28627, + "model_id": 29013, + "year_id": 29027, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29032, + "make_id": 28627, + "model_id": 29013, + "year_id": 29027, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29033, + "make_id": 28627, + "model_id": 29033, + "year_id": 29033, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29034, + "make_id": 28627, + "model_id": 29033, + "year_id": 29033, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29035, + "make_id": 28627, + "model_id": 29033, + "year_id": 29033, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29036, + "make_id": 28627, + "model_id": 29033, + "year_id": 29033, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29037, + "make_id": 28627, + "model_id": 29033, + "year_id": 29033, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29038, + "make_id": 28627, + "model_id": 29033, + "year_id": 29033, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29039, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29040, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29041, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29042, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29043, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29044, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29045, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29046, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29047, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29048, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29049, + "make_id": 28627, + "model_id": 29033, + "year_id": 29039, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29050, + "make_id": 28627, + "model_id": 29033, + "year_id": 29050, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29051, + "make_id": 28627, + "model_id": 29033, + "year_id": 29050, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29052, + "make_id": 28627, + "model_id": 29033, + "year_id": 29050, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29053, + "make_id": 28627, + "model_id": 29033, + "year_id": 29050, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29054, + "make_id": 28627, + "model_id": 29033, + "year_id": 29050, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29055, + "make_id": 28627, + "model_id": 29033, + "year_id": 29055, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29056, + "make_id": 28627, + "model_id": 29033, + "year_id": 29055, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29057, + "make_id": 28627, + "model_id": 29057, + "year_id": 29057, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29058, + "make_id": 28627, + "model_id": 29057, + "year_id": 29057, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29059, + "make_id": 28627, + "model_id": 29057, + "year_id": 29057, + "cylinders": 4, + "displacement": 2.6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29060, + "make_id": 28627, + "model_id": 29057, + "year_id": 29057, + "cylinders": 4, + "displacement": 2.2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29061, + "make_id": 28627, + "model_id": 29057, + "year_id": 29061, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29062, + "make_id": 28627, + "model_id": 29057, + "year_id": 29061, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29063, + "make_id": 28627, + "model_id": 29057, + "year_id": 29061, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29064, + "make_id": 28627, + "model_id": 29057, + "year_id": 29061, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29065, + "make_id": 28627, + "model_id": 29057, + "year_id": 29061, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29066, + "make_id": 28627, + "model_id": 29057, + "year_id": 29061, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29067, + "make_id": 28627, + "model_id": 29057, + "year_id": 29067, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29068, + "make_id": 28627, + "model_id": 29057, + "year_id": 29067, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29069, + "make_id": 28627, + "model_id": 29057, + "year_id": 29067, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29070, + "make_id": 28627, + "model_id": 29057, + "year_id": 29067, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29071, + "make_id": 28627, + "model_id": 29071, + "year_id": 29071, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29072, + "make_id": 28627, + "model_id": 29071, + "year_id": 29071, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29073, + "make_id": 28627, + "model_id": 29071, + "year_id": 29071, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29074, + "make_id": 28627, + "model_id": 29071, + "year_id": 29071, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29075, + "make_id": 28627, + "model_id": 29071, + "year_id": 29071, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29076, + "make_id": 28627, + "model_id": 29071, + "year_id": 29071, + "cylinders": 4, + "displacement": 2.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29077, + "make_id": 28627, + "model_id": 29071, + "year_id": 29071, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29078, + "make_id": 28627, + "model_id": 29071, + "year_id": 29078, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29079, + "make_id": 28627, + "model_id": 29071, + "year_id": 29078, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29080, + "make_id": 28627, + "model_id": 29071, + "year_id": 29078, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29081, + "make_id": 28627, + "model_id": 29071, + "year_id": 29081, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29082, + "make_id": 28627, + "model_id": 29071, + "year_id": 29081, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29083, + "make_id": 28627, + "model_id": 29071, + "year_id": 29081, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29084, + "make_id": 28627, + "model_id": 29071, + "year_id": 29081, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29085, + "make_id": 28627, + "model_id": 29071, + "year_id": 29081, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29086, + "make_id": 28627, + "model_id": 29071, + "year_id": 29081, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29087, + "make_id": 28627, + "model_id": 29071, + "year_id": 29087, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29088, + "make_id": 28627, + "model_id": 29071, + "year_id": 29087, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29089, + "make_id": 28627, + "model_id": 29071, + "year_id": 29087, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29090, + "make_id": 28627, + "model_id": 29071, + "year_id": 29087, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29091, + "make_id": 28627, + "model_id": 29071, + "year_id": 29087, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29092, + "make_id": 28627, + "model_id": 29071, + "year_id": 29087, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29093, + "make_id": 28627, + "model_id": 29071, + "year_id": 29087, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29094, + "make_id": 28627, + "model_id": 29071, + "year_id": 29094, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29095, + "make_id": 28627, + "model_id": 29071, + "year_id": 29094, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29096, + "make_id": 28627, + "model_id": 29071, + "year_id": 29094, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29097, + "make_id": 28627, + "model_id": 29071, + "year_id": 29094, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29098, + "make_id": 28627, + "model_id": 29071, + "year_id": 29094, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29099, + "make_id": 28627, + "model_id": 29071, + "year_id": 29099, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29100, + "make_id": 28627, + "model_id": 29071, + "year_id": 29099, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29101, + "make_id": 28627, + "model_id": 29071, + "year_id": 29099, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29102, + "make_id": 28627, + "model_id": 29071, + "year_id": 29099, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29103, + "make_id": 28627, + "model_id": 29071, + "year_id": 29099, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29104, + "make_id": 28627, + "model_id": 29071, + "year_id": 29099, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29105, + "make_id": 28627, + "model_id": 29071, + "year_id": 29105, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29106, + "make_id": 28627, + "model_id": 29071, + "year_id": 29105, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29107, + "make_id": 28627, + "model_id": 29071, + "year_id": 29105, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29108, + "make_id": 28627, + "model_id": 29071, + "year_id": 29105, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29109, + "make_id": 28627, + "model_id": 29071, + "year_id": 29105, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29110, + "make_id": 28627, + "model_id": 29071, + "year_id": 29110, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29111, + "make_id": 28627, + "model_id": 29071, + "year_id": 29110, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29112, + "make_id": 28627, + "model_id": 29071, + "year_id": 29110, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29113, + "make_id": 28627, + "model_id": 29071, + "year_id": 29110, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29114, + "make_id": 28627, + "model_id": 29071, + "year_id": 29110, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29115, + "make_id": 28627, + "model_id": 29071, + "year_id": 29110, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29116, + "make_id": 28627, + "model_id": 29071, + "year_id": 29110, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29117, + "make_id": 28627, + "model_id": 29071, + "year_id": 29110, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29118, + "make_id": 28627, + "model_id": 29071, + "year_id": 29118, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29119, + "make_id": 28627, + "model_id": 29071, + "year_id": 29118, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29120, + "make_id": 28627, + "model_id": 29071, + "year_id": 29118, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29121, + "make_id": 28627, + "model_id": 29071, + "year_id": 29118, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29122, + "make_id": 28627, + "model_id": 29071, + "year_id": 29118, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29123, + "make_id": 28627, + "model_id": 29071, + "year_id": 29118, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29124, + "make_id": 28627, + "model_id": 29071, + "year_id": 29118, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29125, + "make_id": 28627, + "model_id": 29071, + "year_id": 29118, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29126, + "make_id": 28627, + "model_id": 29071, + "year_id": 29118, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29127, + "make_id": 28627, + "model_id": 29071, + "year_id": 29127, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29128, + "make_id": 28627, + "model_id": 29071, + "year_id": 29127, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29129, + "make_id": 28627, + "model_id": 29071, + "year_id": 29127, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29130, + "make_id": 28627, + "model_id": 29071, + "year_id": 29127, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29131, + "make_id": 28627, + "model_id": 29071, + "year_id": 29127, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29132, + "make_id": 28627, + "model_id": 29071, + "year_id": 29132, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29133, + "make_id": 28627, + "model_id": 29071, + "year_id": 29132, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29134, + "make_id": 28627, + "model_id": 29071, + "year_id": 29132, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29135, + "make_id": 28627, + "model_id": 29071, + "year_id": 29132, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29136, + "make_id": 28627, + "model_id": 29071, + "year_id": 29136, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29137, + "make_id": 28627, + "model_id": 29071, + "year_id": 29136, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29138, + "make_id": 28627, + "model_id": 29071, + "year_id": 29136, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29139, + "make_id": 28627, + "model_id": 29071, + "year_id": 29136, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29140, + "make_id": 28627, + "model_id": 29071, + "year_id": 29136, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29141, + "make_id": 28627, + "model_id": 29071, + "year_id": 29136, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29142, + "make_id": 28627, + "model_id": 29071, + "year_id": 29142, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29143, + "make_id": 28627, + "model_id": 29071, + "year_id": 29142, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29144, + "make_id": 28627, + "model_id": 29071, + "year_id": 29142, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29145, + "make_id": 28627, + "model_id": 29071, + "year_id": 29142, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29146, + "make_id": 28627, + "model_id": 29071, + "year_id": 29142, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29147, + "make_id": 28627, + "model_id": 29071, + "year_id": 29142, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 29148, + "make_id": 28627, + "model_id": 29071, + "year_id": 29148, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29149, + "make_id": 28627, + "model_id": 29071, + "year_id": 29148, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29150, + "make_id": 28627, + "model_id": 29071, + "year_id": 29148, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29151, + "make_id": 28627, + "model_id": 29071, + "year_id": 29148, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29152, + "make_id": 28627, + "model_id": 29071, + "year_id": 29148, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29153, + "make_id": 29153, + "model_id": 29153, + "year_id": 29153, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29154, + "make_id": 29153, + "model_id": 29153, + "year_id": 29153, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29155, + "make_id": 29153, + "model_id": 29153, + "year_id": 29153, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29156, + "make_id": 29153, + "model_id": 29153, + "year_id": 29153, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29157, + "make_id": 29153, + "model_id": 29153, + "year_id": 29153, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29158, + "make_id": 29153, + "model_id": 29153, + "year_id": 29153, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29159, + "make_id": 29153, + "model_id": 29153, + "year_id": 29153, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29160, + "make_id": 29153, + "model_id": 29153, + "year_id": 29153, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29161, + "make_id": 29153, + "model_id": 29153, + "year_id": 29161, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29162, + "make_id": 29153, + "model_id": 29153, + "year_id": 29161, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29163, + "make_id": 29153, + "model_id": 29153, + "year_id": 29161, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29164, + "make_id": 29153, + "model_id": 29153, + "year_id": 29161, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29165, + "make_id": 29153, + "model_id": 29153, + "year_id": 29161, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29166, + "make_id": 29153, + "model_id": 29153, + "year_id": 29161, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29167, + "make_id": 29153, + "model_id": 29153, + "year_id": 29161, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29168, + "make_id": 29153, + "model_id": 29153, + "year_id": 29168, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29169, + "make_id": 29153, + "model_id": 29153, + "year_id": 29168, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29170, + "make_id": 29153, + "model_id": 29153, + "year_id": 29168, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29171, + "make_id": 29153, + "model_id": 29153, + "year_id": 29171, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29172, + "make_id": 29153, + "model_id": 29153, + "year_id": 29171, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29173, + "make_id": 29153, + "model_id": 29153, + "year_id": 29171, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29174, + "make_id": 29153, + "model_id": 29174, + "year_id": 29174, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29175, + "make_id": 29153, + "model_id": 29174, + "year_id": 29174, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29176, + "make_id": 29153, + "model_id": 29174, + "year_id": 29174, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29177, + "make_id": 29153, + "model_id": 29174, + "year_id": 29174, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29178, + "make_id": 29153, + "model_id": 29174, + "year_id": 29174, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29179, + "make_id": 29153, + "model_id": 29174, + "year_id": 29174, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29180, + "make_id": 29153, + "model_id": 29174, + "year_id": 29174, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29181, + "make_id": 29153, + "model_id": 29174, + "year_id": 29181, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29182, + "make_id": 29153, + "model_id": 29174, + "year_id": 29181, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29183, + "make_id": 29153, + "model_id": 29174, + "year_id": 29181, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29184, + "make_id": 29153, + "model_id": 29174, + "year_id": 29181, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29185, + "make_id": 29153, + "model_id": 29174, + "year_id": 29181, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29186, + "make_id": 29153, + "model_id": 29174, + "year_id": 29181, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29187, + "make_id": 29153, + "model_id": 29174, + "year_id": 29181, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29188, + "make_id": 29153, + "model_id": 29174, + "year_id": 29181, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29189, + "make_id": 29153, + "model_id": 29174, + "year_id": 29189, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29190, + "make_id": 29153, + "model_id": 29174, + "year_id": 29189, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29191, + "make_id": 29153, + "model_id": 29174, + "year_id": 29189, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29192, + "make_id": 29153, + "model_id": 29174, + "year_id": 29189, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29193, + "make_id": 29153, + "model_id": 29174, + "year_id": 29189, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29194, + "make_id": 29153, + "model_id": 29174, + "year_id": 29194, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29195, + "make_id": 29153, + "model_id": 29174, + "year_id": 29194, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29196, + "make_id": 29153, + "model_id": 29174, + "year_id": 29194, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29197, + "make_id": 29153, + "model_id": 29174, + "year_id": 29194, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29198, + "make_id": 29153, + "model_id": 29174, + "year_id": 29198, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29199, + "make_id": 29153, + "model_id": 29174, + "year_id": 29198, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29200, + "make_id": 29153, + "model_id": 29174, + "year_id": 29198, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29201, + "make_id": 29153, + "model_id": 29174, + "year_id": 29198, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29202, + "make_id": 29153, + "model_id": 29174, + "year_id": 29198, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29203, + "make_id": 29153, + "model_id": 29174, + "year_id": 29203, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29204, + "make_id": 29153, + "model_id": 29174, + "year_id": 29203, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29205, + "make_id": 29153, + "model_id": 29174, + "year_id": 29203, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29206, + "make_id": 29153, + "model_id": 29174, + "year_id": 29203, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29207, + "make_id": 29153, + "model_id": 29174, + "year_id": 29207, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29208, + "make_id": 29153, + "model_id": 29174, + "year_id": 29207, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29209, + "make_id": 29153, + "model_id": 29174, + "year_id": 29207, + "cylinders": 6, + "displacement": 3.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29210, + "make_id": 29153, + "model_id": 29174, + "year_id": 29207, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29211, + "make_id": 29153, + "model_id": 29174, + "year_id": 29211, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29212, + "make_id": 29153, + "model_id": 29174, + "year_id": 29211, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29213, + "make_id": 29153, + "model_id": 29174, + "year_id": 29211, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29214, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29215, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29216, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29217, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29218, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29219, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29220, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29221, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29222, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29223, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29224, + "make_id": 29153, + "model_id": 29214, + "year_id": 29214, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29225, + "make_id": 29153, + "model_id": 29225, + "year_id": 29225, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29226, + "make_id": 29153, + "model_id": 29225, + "year_id": 29225, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29227, + "make_id": 29153, + "model_id": 29225, + "year_id": 29225, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29228, + "make_id": 29153, + "model_id": 29225, + "year_id": 29225, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29229, + "make_id": 29153, + "model_id": 29225, + "year_id": 29225, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29230, + "make_id": 29153, + "model_id": 29225, + "year_id": 29225, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29231, + "make_id": 29153, + "model_id": 29225, + "year_id": 29225, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29232, + "make_id": 29153, + "model_id": 29225, + "year_id": 29225, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29233, + "make_id": 29153, + "model_id": 29233, + "year_id": 29233, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29234, + "make_id": 29153, + "model_id": 29233, + "year_id": 29233, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29235, + "make_id": 29153, + "model_id": 29233, + "year_id": 29233, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29236, + "make_id": 29153, + "model_id": 29233, + "year_id": 29233, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29237, + "make_id": 29153, + "model_id": 29233, + "year_id": 29233, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29238, + "make_id": 29153, + "model_id": 29233, + "year_id": 29233, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29239, + "make_id": 29153, + "model_id": 29239, + "year_id": 29239, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29240, + "make_id": 29153, + "model_id": 29240, + "year_id": 29240, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29241, + "make_id": 29153, + "model_id": 29240, + "year_id": 29240, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29242, + "make_id": 29153, + "model_id": 29240, + "year_id": 29240, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29243, + "make_id": 29153, + "model_id": 29240, + "year_id": 29240, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29244, + "make_id": 29153, + "model_id": 29240, + "year_id": 29240, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29245, + "make_id": 29153, + "model_id": 29240, + "year_id": 29240, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29246, + "make_id": 29153, + "model_id": 29240, + "year_id": 29240, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29247, + "make_id": 29153, + "model_id": 29240, + "year_id": 29240, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29248, + "make_id": 29153, + "model_id": 29240, + "year_id": 29240, + "cylinders": 6, + "displacement": 4.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29249, + "make_id": 29153, + "model_id": 29240, + "year_id": 29249, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29250, + "make_id": 29153, + "model_id": 29240, + "year_id": 29249, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29251, + "make_id": 29153, + "model_id": 29240, + "year_id": 29249, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29252, + "make_id": 29153, + "model_id": 29240, + "year_id": 29249, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29253, + "make_id": 29153, + "model_id": 29240, + "year_id": 29249, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29254, + "make_id": 29153, + "model_id": 29240, + "year_id": 29249, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29255, + "make_id": 29153, + "model_id": 29240, + "year_id": 29249, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29256, + "make_id": 29153, + "model_id": 29240, + "year_id": 29249, + "cylinders": 6, + "displacement": 4.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29257, + "make_id": 29153, + "model_id": 29240, + "year_id": 29257, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29258, + "make_id": 29153, + "model_id": 29240, + "year_id": 29257, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29259, + "make_id": 29153, + "model_id": 29240, + "year_id": 29257, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29260, + "make_id": 29153, + "model_id": 29240, + "year_id": 29257, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29261, + "make_id": 29153, + "model_id": 29240, + "year_id": 29257, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29262, + "make_id": 29153, + "model_id": 29240, + "year_id": 29262, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29263, + "make_id": 29153, + "model_id": 29240, + "year_id": 29262, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29264, + "make_id": 29153, + "model_id": 29240, + "year_id": 29262, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29265, + "make_id": 29153, + "model_id": 29240, + "year_id": 29262, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29266, + "make_id": 29153, + "model_id": 29240, + "year_id": 29266, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29267, + "make_id": 29153, + "model_id": 29240, + "year_id": 29266, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29268, + "make_id": 29153, + "model_id": 29240, + "year_id": 29266, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29269, + "make_id": 29153, + "model_id": 29240, + "year_id": 29269, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29270, + "make_id": 29153, + "model_id": 29240, + "year_id": 29269, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29271, + "make_id": 29153, + "model_id": 29240, + "year_id": 29271, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29272, + "make_id": 29153, + "model_id": 29240, + "year_id": 29271, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29273, + "make_id": 29153, + "model_id": 29240, + "year_id": 29273, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29274, + "make_id": 29153, + "model_id": 29240, + "year_id": 29273, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29275, + "make_id": 29153, + "model_id": 29275, + "year_id": 29275, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29276, + "make_id": 29153, + "model_id": 29275, + "year_id": 29275, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29277, + "make_id": 29153, + "model_id": 29275, + "year_id": 29277, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29278, + "make_id": 29153, + "model_id": 29275, + "year_id": 29277, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29279, + "make_id": 29153, + "model_id": 29275, + "year_id": 29279, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29280, + "make_id": 29153, + "model_id": 29275, + "year_id": 29279, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29281, + "make_id": 29153, + "model_id": 29275, + "year_id": 29281, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29282, + "make_id": 29153, + "model_id": 29275, + "year_id": 29281, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29283, + "make_id": 29153, + "model_id": 29275, + "year_id": 29283, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29284, + "make_id": 29153, + "model_id": 29275, + "year_id": 29283, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29285, + "make_id": 29153, + "model_id": 29285, + "year_id": 29285, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29286, + "make_id": 29153, + "model_id": 29285, + "year_id": 29285, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29287, + "make_id": 29153, + "model_id": 29285, + "year_id": 29285, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29288, + "make_id": 29153, + "model_id": 29285, + "year_id": 29285, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29289, + "make_id": 29153, + "model_id": 29285, + "year_id": 29285, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29290, + "make_id": 29153, + "model_id": 29285, + "year_id": 29285, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29291, + "make_id": 29153, + "model_id": 29285, + "year_id": 29285, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29292, + "make_id": 29153, + "model_id": 29285, + "year_id": 29285, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29293, + "make_id": 29153, + "model_id": 29285, + "year_id": 29293, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29294, + "make_id": 29153, + "model_id": 29285, + "year_id": 29293, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29295, + "make_id": 29153, + "model_id": 29285, + "year_id": 29293, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29296, + "make_id": 29153, + "model_id": 29285, + "year_id": 29293, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29297, + "make_id": 29153, + "model_id": 29285, + "year_id": 29293, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29298, + "make_id": 29153, + "model_id": 29285, + "year_id": 29298, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29299, + "make_id": 29153, + "model_id": 29285, + "year_id": 29298, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29300, + "make_id": 29153, + "model_id": 29285, + "year_id": 29298, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29301, + "make_id": 29153, + "model_id": 29285, + "year_id": 29298, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29302, + "make_id": 29153, + "model_id": 29285, + "year_id": 29302, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29303, + "make_id": 29153, + "model_id": 29285, + "year_id": 29303, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29304, + "make_id": 29153, + "model_id": 29285, + "year_id": 29304, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29305, + "make_id": 29153, + "model_id": 29285, + "year_id": 29305, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29306, + "make_id": 29153, + "model_id": 29285, + "year_id": 29306, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29307, + "make_id": 29153, + "model_id": 29285, + "year_id": 29307, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29308, + "make_id": 29153, + "model_id": 29285, + "year_id": 29307, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29309, + "make_id": 29153, + "model_id": 29285, + "year_id": 29309, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29310, + "make_id": 29153, + "model_id": 29285, + "year_id": 29309, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29311, + "make_id": 29153, + "model_id": 29285, + "year_id": 29311, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29312, + "make_id": 29153, + "model_id": 29285, + "year_id": 29311, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29313, + "make_id": 29153, + "model_id": 29285, + "year_id": 29313, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29314, + "make_id": 29153, + "model_id": 29285, + "year_id": 29313, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29315, + "make_id": 29153, + "model_id": 29285, + "year_id": 29315, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29316, + "make_id": 29153, + "model_id": 29285, + "year_id": 29315, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29317, + "make_id": 29153, + "model_id": 29285, + "year_id": 29317, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29318, + "make_id": 29153, + "model_id": 29285, + "year_id": 29317, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29319, + "make_id": 29153, + "model_id": 29285, + "year_id": 29319, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29320, + "make_id": 29153, + "model_id": 29285, + "year_id": 29319, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29321, + "make_id": 29153, + "model_id": 29285, + "year_id": 29321, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29322, + "make_id": 29153, + "model_id": 29285, + "year_id": 29321, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29323, + "make_id": 29153, + "model_id": 29285, + "year_id": 29323, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29324, + "make_id": 29153, + "model_id": 29285, + "year_id": 29323, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29325, + "make_id": 29153, + "model_id": 29285, + "year_id": 29325, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29326, + "make_id": 29153, + "model_id": 29285, + "year_id": 29325, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29327, + "make_id": 29153, + "model_id": 29285, + "year_id": 29327, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29328, + "make_id": 29153, + "model_id": 29285, + "year_id": 29327, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29329, + "make_id": 29153, + "model_id": 29285, + "year_id": 29329, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29330, + "make_id": 29153, + "model_id": 29285, + "year_id": 29329, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29331, + "make_id": 29153, + "model_id": 29285, + "year_id": 29331, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29332, + "make_id": 29153, + "model_id": 29285, + "year_id": 29331, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29333, + "make_id": 29153, + "model_id": 29285, + "year_id": 29331, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29334, + "make_id": 29153, + "model_id": 29285, + "year_id": 29334, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29335, + "make_id": 29153, + "model_id": 29285, + "year_id": 29334, + "cylinders": 8, + "displacement": 4.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29336, + "make_id": 29153, + "model_id": 29336, + "year_id": 29336, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29337, + "make_id": 29153, + "model_id": 29336, + "year_id": 29336, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29338, + "make_id": 29153, + "model_id": 29336, + "year_id": 29336, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29339, + "make_id": 29153, + "model_id": 29336, + "year_id": 29336, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29340, + "make_id": 29153, + "model_id": 29336, + "year_id": 29336, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29341, + "make_id": 29153, + "model_id": 29336, + "year_id": 29341, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29342, + "make_id": 29153, + "model_id": 29336, + "year_id": 29341, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29343, + "make_id": 29153, + "model_id": 29336, + "year_id": 29341, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29344, + "make_id": 29153, + "model_id": 29336, + "year_id": 29341, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29345, + "make_id": 29153, + "model_id": 29336, + "year_id": 29345, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29346, + "make_id": 29153, + "model_id": 29336, + "year_id": 29345, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29347, + "make_id": 29153, + "model_id": 29336, + "year_id": 29345, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29348, + "make_id": 29153, + "model_id": 29336, + "year_id": 29345, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29349, + "make_id": 29153, + "model_id": 29336, + "year_id": 29345, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29350, + "make_id": 29153, + "model_id": 29336, + "year_id": 29350, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29351, + "make_id": 29153, + "model_id": 29336, + "year_id": 29350, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29352, + "make_id": 29153, + "model_id": 29336, + "year_id": 29350, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29353, + "make_id": 29153, + "model_id": 29336, + "year_id": 29350, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29354, + "make_id": 29153, + "model_id": 29336, + "year_id": 29354, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29355, + "make_id": 29153, + "model_id": 29336, + "year_id": 29354, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29356, + "make_id": 29153, + "model_id": 29336, + "year_id": 29354, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29357, + "make_id": 29153, + "model_id": 29336, + "year_id": 29354, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29358, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29359, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29360, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29361, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29362, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29363, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29364, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29365, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29366, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29367, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29368, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29369, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29370, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29371, + "make_id": 29153, + "model_id": 29358, + "year_id": 29358, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 29372, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29373, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29374, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29375, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29376, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29377, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29378, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29379, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29380, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29381, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29382, + "make_id": 29153, + "model_id": 29358, + "year_id": 29372, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29383, + "make_id": 29153, + "model_id": 29358, + "year_id": 29383, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29384, + "make_id": 29153, + "model_id": 29358, + "year_id": 29383, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29385, + "make_id": 29153, + "model_id": 29358, + "year_id": 29383, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29386, + "make_id": 29153, + "model_id": 29358, + "year_id": 29383, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29387, + "make_id": 29153, + "model_id": 29358, + "year_id": 29383, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29388, + "make_id": 29153, + "model_id": 29358, + "year_id": 29383, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29389, + "make_id": 29153, + "model_id": 29358, + "year_id": 29389, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29390, + "make_id": 29153, + "model_id": 29358, + "year_id": 29389, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29391, + "make_id": 29153, + "model_id": 29358, + "year_id": 29389, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29392, + "make_id": 29153, + "model_id": 29358, + "year_id": 29389, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29393, + "make_id": 29153, + "model_id": 29393, + "year_id": 29393, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29394, + "make_id": 29153, + "model_id": 29393, + "year_id": 29393, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29395, + "make_id": 29153, + "model_id": 29393, + "year_id": 29393, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29396, + "make_id": 29153, + "model_id": 29393, + "year_id": 29393, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29397, + "make_id": 29153, + "model_id": 29393, + "year_id": 29397, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29398, + "make_id": 29153, + "model_id": 29393, + "year_id": 29397, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29399, + "make_id": 29153, + "model_id": 29393, + "year_id": 29397, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29400, + "make_id": 29153, + "model_id": 29393, + "year_id": 29397, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29401, + "make_id": 29153, + "model_id": 29393, + "year_id": 29401, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29402, + "make_id": 29153, + "model_id": 29393, + "year_id": 29401, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29403, + "make_id": 29153, + "model_id": 29393, + "year_id": 29401, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29404, + "make_id": 29153, + "model_id": 29393, + "year_id": 29401, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29405, + "make_id": 29153, + "model_id": 29393, + "year_id": 29401, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29406, + "make_id": 29153, + "model_id": 29393, + "year_id": 29401, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29407, + "make_id": 29153, + "model_id": 29393, + "year_id": 29401, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29408, + "make_id": 29153, + "model_id": 29393, + "year_id": 29408, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29409, + "make_id": 29153, + "model_id": 29393, + "year_id": 29408, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29410, + "make_id": 29153, + "model_id": 29393, + "year_id": 29408, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29411, + "make_id": 29153, + "model_id": 29393, + "year_id": 29408, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29412, + "make_id": 29153, + "model_id": 29393, + "year_id": 29412, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29413, + "make_id": 29153, + "model_id": 29393, + "year_id": 29412, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29414, + "make_id": 29153, + "model_id": 29393, + "year_id": 29412, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29415, + "make_id": 29153, + "model_id": 29393, + "year_id": 29412, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29416, + "make_id": 29153, + "model_id": 29393, + "year_id": 29416, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29417, + "make_id": 29153, + "model_id": 29393, + "year_id": 29416, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29418, + "make_id": 29153, + "model_id": 29393, + "year_id": 29416, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29419, + "make_id": 29153, + "model_id": 29393, + "year_id": 29416, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29420, + "make_id": 29153, + "model_id": 29420, + "year_id": 29420, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29421, + "make_id": 29153, + "model_id": 29420, + "year_id": 29420, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29422, + "make_id": 29153, + "model_id": 29420, + "year_id": 29420, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29423, + "make_id": 29153, + "model_id": 29420, + "year_id": 29420, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29424, + "make_id": 29153, + "model_id": 29420, + "year_id": 29420, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29425, + "make_id": 29153, + "model_id": 29420, + "year_id": 29420, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29426, + "make_id": 29153, + "model_id": 29420, + "year_id": 29420, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29427, + "make_id": 29153, + "model_id": 29420, + "year_id": 29427, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29428, + "make_id": 29153, + "model_id": 29420, + "year_id": 29427, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29429, + "make_id": 29153, + "model_id": 29420, + "year_id": 29427, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29430, + "make_id": 29153, + "model_id": 29420, + "year_id": 29427, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29431, + "make_id": 29153, + "model_id": 29420, + "year_id": 29427, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29432, + "make_id": 29153, + "model_id": 29420, + "year_id": 29427, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29433, + "make_id": 29153, + "model_id": 29420, + "year_id": 29427, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29434, + "make_id": 29153, + "model_id": 29420, + "year_id": 29434, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29435, + "make_id": 29153, + "model_id": 29420, + "year_id": 29434, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29436, + "make_id": 29153, + "model_id": 29420, + "year_id": 29434, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29437, + "make_id": 29153, + "model_id": 29420, + "year_id": 29434, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29438, + "make_id": 29153, + "model_id": 29420, + "year_id": 29434, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29439, + "make_id": 29153, + "model_id": 29420, + "year_id": 29434, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29440, + "make_id": 29153, + "model_id": 29420, + "year_id": 29434, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29441, + "make_id": 29153, + "model_id": 29420, + "year_id": 29441, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29442, + "make_id": 29153, + "model_id": 29420, + "year_id": 29441, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29443, + "make_id": 29153, + "model_id": 29420, + "year_id": 29441, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29444, + "make_id": 29153, + "model_id": 29420, + "year_id": 29441, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29445, + "make_id": 29153, + "model_id": 29420, + "year_id": 29441, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29446, + "make_id": 29153, + "model_id": 29420, + "year_id": 29441, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29447, + "make_id": 29153, + "model_id": 29420, + "year_id": 29441, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29448, + "make_id": 29153, + "model_id": 29420, + "year_id": 29448, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29449, + "make_id": 29153, + "model_id": 29420, + "year_id": 29448, + "cylinders": 6, + "displacement": 3.1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29450, + "make_id": 29153, + "model_id": 29420, + "year_id": 29448, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29451, + "make_id": 29153, + "model_id": 29420, + "year_id": 29448, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29452, + "make_id": 29153, + "model_id": 29420, + "year_id": 29448, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29453, + "make_id": 29153, + "model_id": 29420, + "year_id": 29448, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29454, + "make_id": 29153, + "model_id": 29420, + "year_id": 29448, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29455, + "make_id": 29153, + "model_id": 29420, + "year_id": 29455, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29456, + "make_id": 29153, + "model_id": 29420, + "year_id": 29455, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29457, + "make_id": 29153, + "model_id": 29420, + "year_id": 29455, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29458, + "make_id": 29153, + "model_id": 29420, + "year_id": 29455, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29459, + "make_id": 29153, + "model_id": 29420, + "year_id": 29459, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29460, + "make_id": 29153, + "model_id": 29420, + "year_id": 29459, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29461, + "make_id": 29153, + "model_id": 29420, + "year_id": 29459, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29462, + "make_id": 29153, + "model_id": 29420, + "year_id": 29459, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29463, + "make_id": 29153, + "model_id": 29420, + "year_id": 29463, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29464, + "make_id": 29153, + "model_id": 29420, + "year_id": 29463, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29465, + "make_id": 29153, + "model_id": 29420, + "year_id": 29463, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29466, + "make_id": 29153, + "model_id": 29420, + "year_id": 29463, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29467, + "make_id": 29153, + "model_id": 29467, + "year_id": 29467, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29468, + "make_id": 29153, + "model_id": 29467, + "year_id": 29467, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29469, + "make_id": 29153, + "model_id": 29467, + "year_id": 29467, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29470, + "make_id": 29153, + "model_id": 29467, + "year_id": 29467, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29471, + "make_id": 29153, + "model_id": 29467, + "year_id": 29467, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29472, + "make_id": 29153, + "model_id": 29467, + "year_id": 29467, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29473, + "make_id": 29153, + "model_id": 29467, + "year_id": 29467, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29474, + "make_id": 29153, + "model_id": 29467, + "year_id": 29467, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29475, + "make_id": 29153, + "model_id": 29475, + "year_id": 29475, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29476, + "make_id": 29153, + "model_id": 29475, + "year_id": 29475, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29477, + "make_id": 29153, + "model_id": 29475, + "year_id": 29477, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29478, + "make_id": 29153, + "model_id": 29475, + "year_id": 29477, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29479, + "make_id": 29153, + "model_id": 29475, + "year_id": 29479, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29480, + "make_id": 29153, + "model_id": 29475, + "year_id": 29479, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29481, + "make_id": 29153, + "model_id": 29475, + "year_id": 29481, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29482, + "make_id": 29153, + "model_id": 29475, + "year_id": 29481, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29483, + "make_id": 29153, + "model_id": 29475, + "year_id": 29483, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29484, + "make_id": 29153, + "model_id": 29475, + "year_id": 29483, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29485, + "make_id": 29153, + "model_id": 29475, + "year_id": 29483, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29486, + "make_id": 29153, + "model_id": 29475, + "year_id": 29483, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29487, + "make_id": 29153, + "model_id": 29475, + "year_id": 29487, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29488, + "make_id": 29153, + "model_id": 29475, + "year_id": 29487, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29489, + "make_id": 29153, + "model_id": 29475, + "year_id": 29489, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29490, + "make_id": 29153, + "model_id": 29475, + "year_id": 29489, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29491, + "make_id": 29153, + "model_id": 29475, + "year_id": 29491, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29492, + "make_id": 29153, + "model_id": 29475, + "year_id": 29491, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29493, + "make_id": 29153, + "model_id": 29475, + "year_id": 29493, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29494, + "make_id": 29153, + "model_id": 29475, + "year_id": 29493, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29495, + "make_id": 29153, + "model_id": 29475, + "year_id": 29495, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29496, + "make_id": 29153, + "model_id": 29475, + "year_id": 29495, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29497, + "make_id": 29153, + "model_id": 29497, + "year_id": 29497, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29498, + "make_id": 29153, + "model_id": 29497, + "year_id": 29497, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29499, + "make_id": 29153, + "model_id": 29499, + "year_id": 29499, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29500, + "make_id": 29153, + "model_id": 29499, + "year_id": 29499, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29501, + "make_id": 29153, + "model_id": 29501, + "year_id": 29501, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29502, + "make_id": 29153, + "model_id": 29501, + "year_id": 29501, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29503, + "make_id": 29153, + "model_id": 29503, + "year_id": 29503, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29504, + "make_id": 29153, + "model_id": 29503, + "year_id": 29503, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29505, + "make_id": 29153, + "model_id": 29505, + "year_id": 29505, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29506, + "make_id": 29153, + "model_id": 29505, + "year_id": 29505, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29507, + "make_id": 29153, + "model_id": 29507, + "year_id": 29507, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29508, + "make_id": 29153, + "model_id": 29507, + "year_id": 29507, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29509, + "make_id": 29153, + "model_id": 29507, + "year_id": 29509, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29510, + "make_id": 29153, + "model_id": 29507, + "year_id": 29509, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29511, + "make_id": 29153, + "model_id": 29511, + "year_id": 29511, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29512, + "make_id": 29153, + "model_id": 29511, + "year_id": 29511, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29513, + "make_id": 29153, + "model_id": 29511, + "year_id": 29513, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29514, + "make_id": 29153, + "model_id": 29511, + "year_id": 29513, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29515, + "make_id": 29153, + "model_id": 29515, + "year_id": 29515, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29516, + "make_id": 29153, + "model_id": 29515, + "year_id": 29516, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29517, + "make_id": 29153, + "model_id": 29515, + "year_id": 29517, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29518, + "make_id": 29153, + "model_id": 29518, + "year_id": 29518, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29519, + "make_id": 29153, + "model_id": 29518, + "year_id": 29518, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29520, + "make_id": 29153, + "model_id": 29518, + "year_id": 29518, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29521, + "make_id": 29153, + "model_id": 29518, + "year_id": 29518, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29522, + "make_id": 29153, + "model_id": 29518, + "year_id": 29522, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29523, + "make_id": 29153, + "model_id": 29518, + "year_id": 29522, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29524, + "make_id": 29153, + "model_id": 29518, + "year_id": 29522, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29525, + "make_id": 29153, + "model_id": 29518, + "year_id": 29522, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29526, + "make_id": 29153, + "model_id": 29526, + "year_id": 29526, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29527, + "make_id": 29153, + "model_id": 29526, + "year_id": 29526, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29528, + "make_id": 29153, + "model_id": 29526, + "year_id": 29528, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29529, + "make_id": 29153, + "model_id": 29526, + "year_id": 29528, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29530, + "make_id": 29153, + "model_id": 29526, + "year_id": 29528, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29531, + "make_id": 29153, + "model_id": 29526, + "year_id": 29528, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29532, + "make_id": 29153, + "model_id": 29526, + "year_id": 29528, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29533, + "make_id": 29153, + "model_id": 29526, + "year_id": 29533, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29534, + "make_id": 29153, + "model_id": 29526, + "year_id": 29533, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29535, + "make_id": 29153, + "model_id": 29526, + "year_id": 29533, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29536, + "make_id": 29153, + "model_id": 29526, + "year_id": 29533, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29537, + "make_id": 29153, + "model_id": 29526, + "year_id": 29533, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29538, + "make_id": 29153, + "model_id": 29526, + "year_id": 29538, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29539, + "make_id": 29153, + "model_id": 29526, + "year_id": 29538, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29540, + "make_id": 29153, + "model_id": 29526, + "year_id": 29538, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29541, + "make_id": 29153, + "model_id": 29526, + "year_id": 29538, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29542, + "make_id": 29153, + "model_id": 29526, + "year_id": 29538, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29543, + "make_id": 29153, + "model_id": 29526, + "year_id": 29543, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29544, + "make_id": 29153, + "model_id": 29526, + "year_id": 29543, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29545, + "make_id": 29153, + "model_id": 29526, + "year_id": 29543, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29546, + "make_id": 29153, + "model_id": 29526, + "year_id": 29543, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29547, + "make_id": 29153, + "model_id": 29526, + "year_id": 29543, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29548, + "make_id": 29153, + "model_id": 29526, + "year_id": 29543, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29549, + "make_id": 29153, + "model_id": 29526, + "year_id": 29543, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29550, + "make_id": 29153, + "model_id": 29526, + "year_id": 29550, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29551, + "make_id": 29153, + "model_id": 29526, + "year_id": 29550, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29552, + "make_id": 29153, + "model_id": 29526, + "year_id": 29550, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29553, + "make_id": 29153, + "model_id": 29526, + "year_id": 29550, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29554, + "make_id": 29153, + "model_id": 29526, + "year_id": 29550, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29555, + "make_id": 29153, + "model_id": 29526, + "year_id": 29550, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29556, + "make_id": 29153, + "model_id": 29526, + "year_id": 29550, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29557, + "make_id": 29153, + "model_id": 29526, + "year_id": 29550, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29558, + "make_id": 29153, + "model_id": 29558, + "year_id": 29558, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29559, + "make_id": 29153, + "model_id": 29558, + "year_id": 29558, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29560, + "make_id": 29153, + "model_id": 29558, + "year_id": 29560, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29561, + "make_id": 29153, + "model_id": 29561, + "year_id": 29561, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29562, + "make_id": 29153, + "model_id": 29561, + "year_id": 29561, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29563, + "make_id": 29153, + "model_id": 29561, + "year_id": 29563, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29564, + "make_id": 29153, + "model_id": 29561, + "year_id": 29563, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29565, + "make_id": 29153, + "model_id": 29561, + "year_id": 29563, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29566, + "make_id": 29153, + "model_id": 29561, + "year_id": 29563, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29567, + "make_id": 29153, + "model_id": 29567, + "year_id": 29567, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29568, + "make_id": 29153, + "model_id": 29567, + "year_id": 29567, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29569, + "make_id": 29153, + "model_id": 29567, + "year_id": 29567, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29570, + "make_id": 29153, + "model_id": 29567, + "year_id": 29567, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29571, + "make_id": 29153, + "model_id": 29567, + "year_id": 29571, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29572, + "make_id": 29153, + "model_id": 29567, + "year_id": 29571, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29573, + "make_id": 29153, + "model_id": 29567, + "year_id": 29571, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29574, + "make_id": 29153, + "model_id": 29567, + "year_id": 29574, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29575, + "make_id": 29153, + "model_id": 29567, + "year_id": 29574, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29576, + "make_id": 29153, + "model_id": 29567, + "year_id": 29574, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29577, + "make_id": 29153, + "model_id": 29567, + "year_id": 29574, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29578, + "make_id": 29153, + "model_id": 29567, + "year_id": 29574, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29579, + "make_id": 29153, + "model_id": 29567, + "year_id": 29579, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29580, + "make_id": 29153, + "model_id": 29567, + "year_id": 29579, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29581, + "make_id": 29153, + "model_id": 29567, + "year_id": 29579, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29582, + "make_id": 29153, + "model_id": 29567, + "year_id": 29579, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29583, + "make_id": 29153, + "model_id": 29567, + "year_id": 29579, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29584, + "make_id": 29153, + "model_id": 29567, + "year_id": 29579, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29585, + "make_id": 29153, + "model_id": 29567, + "year_id": 29585, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29586, + "make_id": 29153, + "model_id": 29567, + "year_id": 29585, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29587, + "make_id": 29153, + "model_id": 29567, + "year_id": 29585, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29588, + "make_id": 29153, + "model_id": 29567, + "year_id": 29585, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29589, + "make_id": 29153, + "model_id": 29567, + "year_id": 29585, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29590, + "make_id": 29153, + "model_id": 29567, + "year_id": 29585, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29591, + "make_id": 29153, + "model_id": 29567, + "year_id": 29591, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29592, + "make_id": 29153, + "model_id": 29567, + "year_id": 29591, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29593, + "make_id": 29153, + "model_id": 29567, + "year_id": 29591, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29594, + "make_id": 29153, + "model_id": 29567, + "year_id": 29591, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29595, + "make_id": 29153, + "model_id": 29567, + "year_id": 29595, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29596, + "make_id": 29153, + "model_id": 29567, + "year_id": 29595, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29597, + "make_id": 29153, + "model_id": 29567, + "year_id": 29595, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29598, + "make_id": 29153, + "model_id": 29567, + "year_id": 29595, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29599, + "make_id": 29153, + "model_id": 29567, + "year_id": 29599, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29600, + "make_id": 29153, + "model_id": 29567, + "year_id": 29599, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29601, + "make_id": 29153, + "model_id": 29567, + "year_id": 29599, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29602, + "make_id": 29153, + "model_id": 29567, + "year_id": 29599, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29603, + "make_id": 29153, + "model_id": 29567, + "year_id": 29599, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29604, + "make_id": 29153, + "model_id": 29567, + "year_id": 29604, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29605, + "make_id": 29153, + "model_id": 29567, + "year_id": 29604, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29606, + "make_id": 29153, + "model_id": 29567, + "year_id": 29604, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29607, + "make_id": 29153, + "model_id": 29567, + "year_id": 29604, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29608, + "make_id": 29153, + "model_id": 29567, + "year_id": 29604, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29609, + "make_id": 29153, + "model_id": 29567, + "year_id": 29609, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29610, + "make_id": 29153, + "model_id": 29567, + "year_id": 29609, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29611, + "make_id": 29153, + "model_id": 29567, + "year_id": 29609, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29612, + "make_id": 29153, + "model_id": 29567, + "year_id": 29609, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29613, + "make_id": 29153, + "model_id": 29567, + "year_id": 29609, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29614, + "make_id": 29153, + "model_id": 29567, + "year_id": 29609, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29615, + "make_id": 29153, + "model_id": 29567, + "year_id": 29615, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29616, + "make_id": 29153, + "model_id": 29567, + "year_id": 29615, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29617, + "make_id": 29153, + "model_id": 29567, + "year_id": 29615, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29618, + "make_id": 29153, + "model_id": 29567, + "year_id": 29615, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29619, + "make_id": 29153, + "model_id": 29567, + "year_id": 29615, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29620, + "make_id": 29153, + "model_id": 29567, + "year_id": 29620, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29621, + "make_id": 29153, + "model_id": 29567, + "year_id": 29620, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29622, + "make_id": 29153, + "model_id": 29567, + "year_id": 29620, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29623, + "make_id": 29153, + "model_id": 29567, + "year_id": 29623, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29624, + "make_id": 29153, + "model_id": 29567, + "year_id": 29623, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29625, + "make_id": 29153, + "model_id": 29567, + "year_id": 29623, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29626, + "make_id": 29153, + "model_id": 29567, + "year_id": 29626, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29627, + "make_id": 29153, + "model_id": 29567, + "year_id": 29626, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29628, + "make_id": 29153, + "model_id": 29567, + "year_id": 29626, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29629, + "make_id": 29153, + "model_id": 29567, + "year_id": 29629, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29630, + "make_id": 29153, + "model_id": 29567, + "year_id": 29629, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29631, + "make_id": 29153, + "model_id": 29567, + "year_id": 29631, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29632, + "make_id": 29153, + "model_id": 29567, + "year_id": 29631, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29633, + "make_id": 29153, + "model_id": 29567, + "year_id": 29631, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29634, + "make_id": 29153, + "model_id": 29567, + "year_id": 29634, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29635, + "make_id": 29153, + "model_id": 29567, + "year_id": 29634, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29636, + "make_id": 29153, + "model_id": 29567, + "year_id": 29634, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29637, + "make_id": 29153, + "model_id": 29567, + "year_id": 29637, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29638, + "make_id": 29153, + "model_id": 29567, + "year_id": 29637, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29639, + "make_id": 29153, + "model_id": 29567, + "year_id": 29637, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29640, + "make_id": 29153, + "model_id": 29567, + "year_id": 29640, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29641, + "make_id": 29153, + "model_id": 29567, + "year_id": 29640, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29642, + "make_id": 29153, + "model_id": 29567, + "year_id": 29640, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29643, + "make_id": 29153, + "model_id": 29567, + "year_id": 29643, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29644, + "make_id": 29153, + "model_id": 29567, + "year_id": 29643, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29645, + "make_id": 29153, + "model_id": 29567, + "year_id": 29643, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29646, + "make_id": 29153, + "model_id": 29567, + "year_id": 29646, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29647, + "make_id": 29153, + "model_id": 29567, + "year_id": 29646, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29648, + "make_id": 29153, + "model_id": 29648, + "year_id": 29648, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29649, + "make_id": 29153, + "model_id": 29648, + "year_id": 29648, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29650, + "make_id": 29153, + "model_id": 29648, + "year_id": 29648, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29651, + "make_id": 29153, + "model_id": 29648, + "year_id": 29648, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29652, + "make_id": 29153, + "model_id": 29648, + "year_id": 29648, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29653, + "make_id": 29153, + "model_id": 29648, + "year_id": 29648, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29654, + "make_id": 29153, + "model_id": 29648, + "year_id": 29648, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29655, + "make_id": 29153, + "model_id": 29648, + "year_id": 29648, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29656, + "make_id": 29153, + "model_id": 29648, + "year_id": 29656, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29657, + "make_id": 29153, + "model_id": 29648, + "year_id": 29656, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29658, + "make_id": 29153, + "model_id": 29648, + "year_id": 29656, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29659, + "make_id": 29153, + "model_id": 29648, + "year_id": 29656, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29660, + "make_id": 29153, + "model_id": 29648, + "year_id": 29656, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29661, + "make_id": 29153, + "model_id": 29648, + "year_id": 29656, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29662, + "make_id": 29153, + "model_id": 29648, + "year_id": 29662, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29663, + "make_id": 29153, + "model_id": 29648, + "year_id": 29662, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29664, + "make_id": 29153, + "model_id": 29648, + "year_id": 29662, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29665, + "make_id": 29153, + "model_id": 29648, + "year_id": 29662, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29666, + "make_id": 29153, + "model_id": 29648, + "year_id": 29666, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29667, + "make_id": 29153, + "model_id": 29648, + "year_id": 29666, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29668, + "make_id": 29153, + "model_id": 29648, + "year_id": 29666, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29669, + "make_id": 29153, + "model_id": 29648, + "year_id": 29666, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29670, + "make_id": 29153, + "model_id": 29648, + "year_id": 29670, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29671, + "make_id": 29153, + "model_id": 29648, + "year_id": 29670, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29672, + "make_id": 29153, + "model_id": 29648, + "year_id": 29672, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29673, + "make_id": 29153, + "model_id": 29648, + "year_id": 29672, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29674, + "make_id": 29153, + "model_id": 29648, + "year_id": 29672, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29675, + "make_id": 29153, + "model_id": 29648, + "year_id": 29675, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29676, + "make_id": 29153, + "model_id": 29648, + "year_id": 29675, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29677, + "make_id": 29153, + "model_id": 29648, + "year_id": 29675, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29678, + "make_id": 29153, + "model_id": 29648, + "year_id": 29678, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29679, + "make_id": 29153, + "model_id": 29648, + "year_id": 29678, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29680, + "make_id": 29153, + "model_id": 29648, + "year_id": 29678, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29681, + "make_id": 29153, + "model_id": 29648, + "year_id": 29678, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29682, + "make_id": 29153, + "model_id": 29648, + "year_id": 29682, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29683, + "make_id": 29153, + "model_id": 29648, + "year_id": 29682, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29684, + "make_id": 29153, + "model_id": 29648, + "year_id": 29682, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29685, + "make_id": 29153, + "model_id": 29648, + "year_id": 29682, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29686, + "make_id": 29153, + "model_id": 29648, + "year_id": 29686, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29687, + "make_id": 29153, + "model_id": 29648, + "year_id": 29686, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29688, + "make_id": 29153, + "model_id": 29648, + "year_id": 29686, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29689, + "make_id": 29153, + "model_id": 29648, + "year_id": 29686, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29690, + "make_id": 29153, + "model_id": 29648, + "year_id": 29690, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29691, + "make_id": 29153, + "model_id": 29648, + "year_id": 29690, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29692, + "make_id": 29153, + "model_id": 29648, + "year_id": 29692, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29693, + "make_id": 29153, + "model_id": 29648, + "year_id": 29692, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29694, + "make_id": 29153, + "model_id": 29648, + "year_id": 29692, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29695, + "make_id": 29153, + "model_id": 29648, + "year_id": 29695, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29696, + "make_id": 29153, + "model_id": 29648, + "year_id": 29695, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29697, + "make_id": 29153, + "model_id": 29648, + "year_id": 29697, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29698, + "make_id": 29153, + "model_id": 29648, + "year_id": 29697, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29699, + "make_id": 29153, + "model_id": 29648, + "year_id": 29697, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29700, + "make_id": 29153, + "model_id": 29648, + "year_id": 29700, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29701, + "make_id": 29153, + "model_id": 29648, + "year_id": 29700, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29702, + "make_id": 29153, + "model_id": 29648, + "year_id": 29700, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29703, + "make_id": 29153, + "model_id": 29648, + "year_id": 29703, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29704, + "make_id": 29153, + "model_id": 29648, + "year_id": 29703, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29705, + "make_id": 29153, + "model_id": 29648, + "year_id": 29703, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29706, + "make_id": 29153, + "model_id": 29648, + "year_id": 29706, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29707, + "make_id": 29153, + "model_id": 29648, + "year_id": 29706, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29708, + "make_id": 29153, + "model_id": 29648, + "year_id": 29706, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29709, + "make_id": 29153, + "model_id": 29648, + "year_id": 29709, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29710, + "make_id": 29153, + "model_id": 29648, + "year_id": 29709, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29711, + "make_id": 29153, + "model_id": 29648, + "year_id": 29709, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29712, + "make_id": 29153, + "model_id": 29648, + "year_id": 29712, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29713, + "make_id": 29153, + "model_id": 29648, + "year_id": 29712, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29714, + "make_id": 29153, + "model_id": 29648, + "year_id": 29712, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29715, + "make_id": 29153, + "model_id": 29648, + "year_id": 29715, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29716, + "make_id": 29153, + "model_id": 29648, + "year_id": 29715, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29717, + "make_id": 29153, + "model_id": 29648, + "year_id": 29715, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29718, + "make_id": 29153, + "model_id": 29648, + "year_id": 29718, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29719, + "make_id": 29153, + "model_id": 29648, + "year_id": 29718, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29720, + "make_id": 29153, + "model_id": 29648, + "year_id": 29718, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29721, + "make_id": 29153, + "model_id": 29648, + "year_id": 29721, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29722, + "make_id": 29153, + "model_id": 29648, + "year_id": 29721, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29723, + "make_id": 29153, + "model_id": 29648, + "year_id": 29721, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29724, + "make_id": 29153, + "model_id": 29648, + "year_id": 29721, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29725, + "make_id": 29153, + "model_id": 29648, + "year_id": 29725, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29726, + "make_id": 29153, + "model_id": 29648, + "year_id": 29725, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29727, + "make_id": 29153, + "model_id": 29648, + "year_id": 29725, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29728, + "make_id": 29153, + "model_id": 29648, + "year_id": 29725, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29729, + "make_id": 29153, + "model_id": 29648, + "year_id": 29729, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29730, + "make_id": 29153, + "model_id": 29648, + "year_id": 29729, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29731, + "make_id": 29153, + "model_id": 29648, + "year_id": 29729, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29732, + "make_id": 29153, + "model_id": 29648, + "year_id": 29729, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29733, + "make_id": 29153, + "model_id": 29648, + "year_id": 29733, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29734, + "make_id": 29153, + "model_id": 29648, + "year_id": 29733, + "cylinders": 8, + "displacement": 5.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29735, + "make_id": 29153, + "model_id": 29735, + "year_id": 29735, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29736, + "make_id": 29153, + "model_id": 29736, + "year_id": 29736, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29737, + "make_id": 29153, + "model_id": 29736, + "year_id": 29737, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29738, + "make_id": 29153, + "model_id": 29738, + "year_id": 29738, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29739, + "make_id": 29153, + "model_id": 29738, + "year_id": 29738, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29740, + "make_id": 29153, + "model_id": 29738, + "year_id": 29740, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29741, + "make_id": 29153, + "model_id": 29738, + "year_id": 29740, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29742, + "make_id": 29153, + "model_id": 29738, + "year_id": 29742, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29743, + "make_id": 29153, + "model_id": 29738, + "year_id": 29742, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 29744, + "make_id": 29153, + "model_id": 29744, + "year_id": 29744, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29745, + "make_id": 29153, + "model_id": 29744, + "year_id": 29744, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29746, + "make_id": 29153, + "model_id": 29744, + "year_id": 29744, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29747, + "make_id": 29153, + "model_id": 29744, + "year_id": 29744, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29748, + "make_id": 29153, + "model_id": 29744, + "year_id": 29748, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29749, + "make_id": 29153, + "model_id": 29744, + "year_id": 29748, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29750, + "make_id": 29153, + "model_id": 29744, + "year_id": 29748, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29751, + "make_id": 29153, + "model_id": 29744, + "year_id": 29748, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29752, + "make_id": 29153, + "model_id": 29744, + "year_id": 29748, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29753, + "make_id": 29153, + "model_id": 29744, + "year_id": 29753, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29754, + "make_id": 29153, + "model_id": 29744, + "year_id": 29753, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29755, + "make_id": 29153, + "model_id": 29744, + "year_id": 29753, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29756, + "make_id": 29153, + "model_id": 29744, + "year_id": 29753, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29757, + "make_id": 29153, + "model_id": 29744, + "year_id": 29753, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29758, + "make_id": 29153, + "model_id": 29744, + "year_id": 29758, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29759, + "make_id": 29153, + "model_id": 29744, + "year_id": 29758, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29760, + "make_id": 29153, + "model_id": 29744, + "year_id": 29758, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29761, + "make_id": 29153, + "model_id": 29744, + "year_id": 29758, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29762, + "make_id": 29153, + "model_id": 29744, + "year_id": 29758, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29763, + "make_id": 29153, + "model_id": 29744, + "year_id": 29763, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29764, + "make_id": 29153, + "model_id": 29744, + "year_id": 29763, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29765, + "make_id": 29153, + "model_id": 29744, + "year_id": 29763, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29766, + "make_id": 29153, + "model_id": 29744, + "year_id": 29766, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29767, + "make_id": 29153, + "model_id": 29744, + "year_id": 29766, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29768, + "make_id": 29153, + "model_id": 29744, + "year_id": 29766, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29769, + "make_id": 29153, + "model_id": 29769, + "year_id": 29769, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29770, + "make_id": 29153, + "model_id": 29769, + "year_id": 29770, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29771, + "make_id": 29153, + "model_id": 29769, + "year_id": 29771, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29772, + "make_id": 29153, + "model_id": 29769, + "year_id": 29771, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29773, + "make_id": 29153, + "model_id": 29769, + "year_id": 29773, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29774, + "make_id": 29153, + "model_id": 29769, + "year_id": 29773, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29775, + "make_id": 29153, + "model_id": 29769, + "year_id": 29775, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29776, + "make_id": 29153, + "model_id": 29769, + "year_id": 29775, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29777, + "make_id": 29153, + "model_id": 29777, + "year_id": 29777, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29778, + "make_id": 29153, + "model_id": 29777, + "year_id": 29777, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29779, + "make_id": 29153, + "model_id": 29777, + "year_id": 29777, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29780, + "make_id": 29153, + "model_id": 29780, + "year_id": 29780, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29781, + "make_id": 29153, + "model_id": 29780, + "year_id": 29780, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29782, + "make_id": 29153, + "model_id": 29782, + "year_id": 29782, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29783, + "make_id": 29153, + "model_id": 29783, + "year_id": 29783, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29784, + "make_id": 29153, + "model_id": 29783, + "year_id": 29783, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29785, + "make_id": 29153, + "model_id": 29783, + "year_id": 29783, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29786, + "make_id": 29153, + "model_id": 29783, + "year_id": 29783, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29787, + "make_id": 29153, + "model_id": 29783, + "year_id": 29783, + "cylinders": 6, + "displacement": 3.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29788, + "make_id": 29153, + "model_id": 29783, + "year_id": 29783, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29789, + "make_id": 29153, + "model_id": 29783, + "year_id": 29789, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29790, + "make_id": 29153, + "model_id": 29783, + "year_id": 29789, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29791, + "make_id": 29153, + "model_id": 29783, + "year_id": 29789, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29792, + "make_id": 29153, + "model_id": 29783, + "year_id": 29789, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29793, + "make_id": 29153, + "model_id": 29783, + "year_id": 29789, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29794, + "make_id": 29153, + "model_id": 29783, + "year_id": 29789, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29795, + "make_id": 29153, + "model_id": 29783, + "year_id": 29789, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29796, + "make_id": 29153, + "model_id": 29783, + "year_id": 29789, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29797, + "make_id": 29153, + "model_id": 29783, + "year_id": 29797, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29798, + "make_id": 29153, + "model_id": 29783, + "year_id": 29797, + "cylinders": 6, + "displacement": 4.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29799, + "make_id": 29153, + "model_id": 29783, + "year_id": 29797, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29800, + "make_id": 29153, + "model_id": 29783, + "year_id": 29797, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29801, + "make_id": 29153, + "model_id": 29801, + "year_id": 29801, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29802, + "make_id": 29153, + "model_id": 29801, + "year_id": 29801, + "cylinders": 8, + "displacement": 5.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29803, + "make_id": 29153, + "model_id": 29801, + "year_id": 29801, + "cylinders": 8, + "displacement": 5, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 29804, + "make_id": 29153, + "model_id": 29801, + "year_id": 29804, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29805, + "make_id": 29153, + "model_id": 29801, + "year_id": 29804, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29806, + "make_id": 29153, + "model_id": 29801, + "year_id": 29804, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29807, + "make_id": 29153, + "model_id": 29801, + "year_id": 29807, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29808, + "make_id": 29153, + "model_id": 29801, + "year_id": 29807, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29809, + "make_id": 29153, + "model_id": 29809, + "year_id": 29809, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29810, + "make_id": 29153, + "model_id": 29809, + "year_id": 29809, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29811, + "make_id": 29153, + "model_id": 29809, + "year_id": 29809, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29812, + "make_id": 29153, + "model_id": 29809, + "year_id": 29809, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29813, + "make_id": 29153, + "model_id": 29809, + "year_id": 29809, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 29814, + "make_id": 29153, + "model_id": 29809, + "year_id": 29809, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 29815, + "make_id": 29153, + "model_id": 29815, + "year_id": 29815, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29816, + "make_id": 29153, + "model_id": 29815, + "year_id": 29816, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29817, + "make_id": 29153, + "model_id": 29815, + "year_id": 29817, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29818, + "make_id": 29153, + "model_id": 29818, + "year_id": 29818, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29819, + "make_id": 29153, + "model_id": 29818, + "year_id": 29818, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29820, + "make_id": 29153, + "model_id": 29818, + "year_id": 29820, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29821, + "make_id": 29153, + "model_id": 29818, + "year_id": 29820, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29822, + "make_id": 29153, + "model_id": 29818, + "year_id": 29820, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29823, + "make_id": 29153, + "model_id": 29818, + "year_id": 29820, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29824, + "make_id": 29153, + "model_id": 29818, + "year_id": 29824, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29825, + "make_id": 29153, + "model_id": 29818, + "year_id": 29824, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29826, + "make_id": 29153, + "model_id": 29818, + "year_id": 29824, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29827, + "make_id": 29153, + "model_id": 29818, + "year_id": 29824, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29828, + "make_id": 29153, + "model_id": 29818, + "year_id": 29828, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29829, + "make_id": 29153, + "model_id": 29818, + "year_id": 29828, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29830, + "make_id": 29153, + "model_id": 29818, + "year_id": 29828, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29831, + "make_id": 29153, + "model_id": 29818, + "year_id": 29828, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29832, + "make_id": 29153, + "model_id": 29818, + "year_id": 29832, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29833, + "make_id": 29153, + "model_id": 29818, + "year_id": 29832, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29834, + "make_id": 29153, + "model_id": 29818, + "year_id": 29832, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29835, + "make_id": 29153, + "model_id": 29818, + "year_id": 29832, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29836, + "make_id": 29153, + "model_id": 29836, + "year_id": 29836, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29837, + "make_id": 29153, + "model_id": 29836, + "year_id": 29836, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29838, + "make_id": 29153, + "model_id": 29836, + "year_id": 29836, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29839, + "make_id": 29153, + "model_id": 29836, + "year_id": 29836, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29840, + "make_id": 29153, + "model_id": 29836, + "year_id": 29836, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29841, + "make_id": 29153, + "model_id": 29836, + "year_id": 29836, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29842, + "make_id": 29153, + "model_id": 29836, + "year_id": 29836, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29843, + "make_id": 29153, + "model_id": 29836, + "year_id": 29836, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29844, + "make_id": 29153, + "model_id": 29836, + "year_id": 29836, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29845, + "make_id": 29153, + "model_id": 29836, + "year_id": 29845, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29846, + "make_id": 29153, + "model_id": 29836, + "year_id": 29845, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29847, + "make_id": 29153, + "model_id": 29836, + "year_id": 29845, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29848, + "make_id": 29153, + "model_id": 29836, + "year_id": 29845, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29849, + "make_id": 29153, + "model_id": 29836, + "year_id": 29845, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29850, + "make_id": 29153, + "model_id": 29836, + "year_id": 29850, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29851, + "make_id": 29153, + "model_id": 29836, + "year_id": 29850, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29852, + "make_id": 29153, + "model_id": 29836, + "year_id": 29850, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29853, + "make_id": 29153, + "model_id": 29836, + "year_id": 29850, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29854, + "make_id": 29153, + "model_id": 29836, + "year_id": 29850, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29855, + "make_id": 29153, + "model_id": 29836, + "year_id": 29855, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29856, + "make_id": 29153, + "model_id": 29836, + "year_id": 29855, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29857, + "make_id": 29153, + "model_id": 29836, + "year_id": 29855, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29858, + "make_id": 29153, + "model_id": 29836, + "year_id": 29855, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29859, + "make_id": 29153, + "model_id": 29836, + "year_id": 29859, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29860, + "make_id": 29153, + "model_id": 29836, + "year_id": 29859, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29861, + "make_id": 29153, + "model_id": 29836, + "year_id": 29859, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29862, + "make_id": 29153, + "model_id": 29836, + "year_id": 29859, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29863, + "make_id": 29153, + "model_id": 29836, + "year_id": 29863, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29864, + "make_id": 29153, + "model_id": 29836, + "year_id": 29863, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29865, + "make_id": 29153, + "model_id": 29836, + "year_id": 29863, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29866, + "make_id": 29153, + "model_id": 29836, + "year_id": 29863, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29867, + "make_id": 29153, + "model_id": 29836, + "year_id": 29867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29868, + "make_id": 29153, + "model_id": 29836, + "year_id": 29867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29869, + "make_id": 29153, + "model_id": 29836, + "year_id": 29867, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29870, + "make_id": 29153, + "model_id": 29836, + "year_id": 29867, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29871, + "make_id": 29153, + "model_id": 29836, + "year_id": 29871, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29872, + "make_id": 29153, + "model_id": 29836, + "year_id": 29871, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29873, + "make_id": 29153, + "model_id": 29836, + "year_id": 29871, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29874, + "make_id": 29153, + "model_id": 29836, + "year_id": 29871, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29875, + "make_id": 29153, + "model_id": 29836, + "year_id": 29875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29876, + "make_id": 29153, + "model_id": 29836, + "year_id": 29875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29877, + "make_id": 29153, + "model_id": 29836, + "year_id": 29875, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29878, + "make_id": 29153, + "model_id": 29836, + "year_id": 29875, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29879, + "make_id": 29153, + "model_id": 29836, + "year_id": 29879, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29880, + "make_id": 29153, + "model_id": 29836, + "year_id": 29879, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29881, + "make_id": 29153, + "model_id": 29836, + "year_id": 29879, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29882, + "make_id": 29153, + "model_id": 29836, + "year_id": 29879, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29883, + "make_id": 29153, + "model_id": 29883, + "year_id": 29883, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29884, + "make_id": 29153, + "model_id": 29883, + "year_id": 29883, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29885, + "make_id": 29153, + "model_id": 29883, + "year_id": 29883, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29886, + "make_id": 29153, + "model_id": 29883, + "year_id": 29883, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29887, + "make_id": 29153, + "model_id": 29883, + "year_id": 29883, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29888, + "make_id": 29153, + "model_id": 29883, + "year_id": 29883, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29889, + "make_id": 29153, + "model_id": 29883, + "year_id": 29889, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29890, + "make_id": 29153, + "model_id": 29883, + "year_id": 29889, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29891, + "make_id": 29153, + "model_id": 29883, + "year_id": 29889, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29892, + "make_id": 29153, + "model_id": 29883, + "year_id": 29889, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29893, + "make_id": 29153, + "model_id": 29883, + "year_id": 29893, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29894, + "make_id": 29153, + "model_id": 29883, + "year_id": 29893, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29895, + "make_id": 29153, + "model_id": 29883, + "year_id": 29893, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29896, + "make_id": 29153, + "model_id": 29883, + "year_id": 29893, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29897, + "make_id": 29153, + "model_id": 29883, + "year_id": 29897, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29898, + "make_id": 29153, + "model_id": 29883, + "year_id": 29897, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29899, + "make_id": 29153, + "model_id": 29883, + "year_id": 29897, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29900, + "make_id": 29153, + "model_id": 29883, + "year_id": 29897, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29901, + "make_id": 29153, + "model_id": 29883, + "year_id": 29901, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29902, + "make_id": 29153, + "model_id": 29883, + "year_id": 29901, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29903, + "make_id": 29153, + "model_id": 29883, + "year_id": 29901, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29904, + "make_id": 29153, + "model_id": 29883, + "year_id": 29901, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29905, + "make_id": 29153, + "model_id": 29883, + "year_id": 29905, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29906, + "make_id": 29153, + "model_id": 29883, + "year_id": 29905, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29907, + "make_id": 29153, + "model_id": 29883, + "year_id": 29905, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29908, + "make_id": 29153, + "model_id": 29883, + "year_id": 29905, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29909, + "make_id": 29153, + "model_id": 29883, + "year_id": 29909, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29910, + "make_id": 29153, + "model_id": 29883, + "year_id": 29909, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29911, + "make_id": 29153, + "model_id": 29883, + "year_id": 29909, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29912, + "make_id": 29153, + "model_id": 29883, + "year_id": 29909, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29913, + "make_id": 29153, + "model_id": 29913, + "year_id": 29913, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29914, + "make_id": 29153, + "model_id": 29913, + "year_id": 29913, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29915, + "make_id": 29153, + "model_id": 29913, + "year_id": 29913, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29916, + "make_id": 29153, + "model_id": 29913, + "year_id": 29913, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29917, + "make_id": 29153, + "model_id": 29913, + "year_id": 29917, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29918, + "make_id": 29153, + "model_id": 29913, + "year_id": 29917, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29919, + "make_id": 29153, + "model_id": 29913, + "year_id": 29917, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29920, + "make_id": 29153, + "model_id": 29913, + "year_id": 29920, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 29921, + "make_id": 29153, + "model_id": 29913, + "year_id": 29920, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29922, + "make_id": 29153, + "model_id": 29913, + "year_id": 29920, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29923, + "make_id": 29153, + "model_id": 29913, + "year_id": 29923, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29924, + "make_id": 29153, + "model_id": 29913, + "year_id": 29923, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29925, + "make_id": 29153, + "model_id": 29925, + "year_id": 29925, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29926, + "make_id": 29153, + "model_id": 29925, + "year_id": 29925, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29927, + "make_id": 29153, + "model_id": 29925, + "year_id": 29927, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29928, + "make_id": 29153, + "model_id": 29925, + "year_id": 29927, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29929, + "make_id": 29153, + "model_id": 29925, + "year_id": 29929, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29930, + "make_id": 29153, + "model_id": 29925, + "year_id": 29929, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29931, + "make_id": 29153, + "model_id": 29925, + "year_id": 29931, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29932, + "make_id": 29153, + "model_id": 29925, + "year_id": 29931, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29933, + "make_id": 29153, + "model_id": 29933, + "year_id": 29933, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29934, + "make_id": 29153, + "model_id": 29933, + "year_id": 29933, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29935, + "make_id": 29153, + "model_id": 29933, + "year_id": 29933, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29936, + "make_id": 29153, + "model_id": 29933, + "year_id": 29936, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29937, + "make_id": 29153, + "model_id": 29933, + "year_id": 29936, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29938, + "make_id": 29153, + "model_id": 29933, + "year_id": 29936, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29939, + "make_id": 29153, + "model_id": 29933, + "year_id": 29936, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29940, + "make_id": 29153, + "model_id": 29933, + "year_id": 29936, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29941, + "make_id": 29153, + "model_id": 29933, + "year_id": 29941, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29942, + "make_id": 29153, + "model_id": 29933, + "year_id": 29941, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29943, + "make_id": 29153, + "model_id": 29933, + "year_id": 29941, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29944, + "make_id": 29153, + "model_id": 29933, + "year_id": 29941, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29945, + "make_id": 29153, + "model_id": 29933, + "year_id": 29941, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29946, + "make_id": 29153, + "model_id": 29933, + "year_id": 29941, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29947, + "make_id": 29153, + "model_id": 29933, + "year_id": 29947, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29948, + "make_id": 29153, + "model_id": 29933, + "year_id": 29947, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29949, + "make_id": 29153, + "model_id": 29933, + "year_id": 29947, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29950, + "make_id": 29153, + "model_id": 29933, + "year_id": 29947, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29951, + "make_id": 29153, + "model_id": 29933, + "year_id": 29947, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29952, + "make_id": 29153, + "model_id": 29933, + "year_id": 29952, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29953, + "make_id": 29153, + "model_id": 29933, + "year_id": 29952, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29954, + "make_id": 29153, + "model_id": 29933, + "year_id": 29952, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29955, + "make_id": 29153, + "model_id": 29933, + "year_id": 29952, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29956, + "make_id": 29153, + "model_id": 29933, + "year_id": 29952, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29957, + "make_id": 29153, + "model_id": 29933, + "year_id": 29957, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29958, + "make_id": 29153, + "model_id": 29933, + "year_id": 29957, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29959, + "make_id": 29153, + "model_id": 29933, + "year_id": 29957, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29960, + "make_id": 29153, + "model_id": 29933, + "year_id": 29957, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29961, + "make_id": 29153, + "model_id": 29933, + "year_id": 29957, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29962, + "make_id": 29153, + "model_id": 29933, + "year_id": 29962, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29963, + "make_id": 29153, + "model_id": 29933, + "year_id": 29962, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29964, + "make_id": 29153, + "model_id": 29933, + "year_id": 29962, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29965, + "make_id": 29153, + "model_id": 29933, + "year_id": 29962, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29966, + "make_id": 29153, + "model_id": 29933, + "year_id": 29962, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29967, + "make_id": 29153, + "model_id": 29933, + "year_id": 29967, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29968, + "make_id": 29153, + "model_id": 29933, + "year_id": 29967, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29969, + "make_id": 29153, + "model_id": 29933, + "year_id": 29967, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29970, + "make_id": 29153, + "model_id": 29933, + "year_id": 29967, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29971, + "make_id": 29153, + "model_id": 29933, + "year_id": 29967, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29972, + "make_id": 29153, + "model_id": 29933, + "year_id": 29967, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29973, + "make_id": 29153, + "model_id": 29933, + "year_id": 29973, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29974, + "make_id": 29153, + "model_id": 29933, + "year_id": 29973, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29975, + "make_id": 29153, + "model_id": 29933, + "year_id": 29975, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29976, + "make_id": 29153, + "model_id": 29933, + "year_id": 29975, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29977, + "make_id": 29153, + "model_id": 29933, + "year_id": 29977, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29978, + "make_id": 29153, + "model_id": 29933, + "year_id": 29977, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 29979, + "make_id": 29153, + "model_id": 29979, + "year_id": 29979, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29980, + "make_id": 29153, + "model_id": 29979, + "year_id": 29979, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29981, + "make_id": 29153, + "model_id": 29979, + "year_id": 29981, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29982, + "make_id": 29153, + "model_id": 29979, + "year_id": 29981, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29983, + "make_id": 29153, + "model_id": 29979, + "year_id": 29983, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29984, + "make_id": 29153, + "model_id": 29979, + "year_id": 29983, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29985, + "make_id": 29153, + "model_id": 29979, + "year_id": 29983, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29986, + "make_id": 29153, + "model_id": 29979, + "year_id": 29983, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29987, + "make_id": 29153, + "model_id": 29979, + "year_id": 29987, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29988, + "make_id": 29153, + "model_id": 29979, + "year_id": 29987, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 29989, + "make_id": 29153, + "model_id": 29979, + "year_id": 29987, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29990, + "make_id": 29153, + "model_id": 29979, + "year_id": 29987, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 29991, + "make_id": 29153, + "model_id": 29991, + "year_id": 29991, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29992, + "make_id": 29153, + "model_id": 29991, + "year_id": 29992, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29993, + "make_id": 29153, + "model_id": 29991, + "year_id": 29993, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29994, + "make_id": 29153, + "model_id": 29991, + "year_id": 29993, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29995, + "make_id": 29153, + "model_id": 29991, + "year_id": 29995, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29996, + "make_id": 29153, + "model_id": 29991, + "year_id": 29995, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29997, + "make_id": 29153, + "model_id": 29991, + "year_id": 29997, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 29998, + "make_id": 29153, + "model_id": 29991, + "year_id": 29997, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 29999, + "make_id": 29153, + "model_id": 29991, + "year_id": 29999, + "cylinders": 6, + "displacement": 3.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30000, + "make_id": 29153, + "model_id": 29991, + "year_id": 29999, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30001, + "make_id": 29153, + "model_id": 29991, + "year_id": 30001, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30002, + "make_id": 29153, + "model_id": 29991, + "year_id": 30002, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30003, + "make_id": 29153, + "model_id": 29991, + "year_id": 30003, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30004, + "make_id": 29153, + "model_id": 30004, + "year_id": 30004, + "cylinders": 6, + "displacement": 3.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30005, + "make_id": 29153, + "model_id": 30005, + "year_id": 30005, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30006, + "make_id": 29153, + "model_id": 30005, + "year_id": 30006, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30007, + "make_id": 29153, + "model_id": 30005, + "year_id": 30007, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30008, + "make_id": 29153, + "model_id": 30005, + "year_id": 30008, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30009, + "make_id": 29153, + "model_id": 30009, + "year_id": 30009, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30010, + "make_id": 29153, + "model_id": 30009, + "year_id": 30009, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30011, + "make_id": 29153, + "model_id": 30009, + "year_id": 30009, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30012, + "make_id": 29153, + "model_id": 30009, + "year_id": 30009, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30013, + "make_id": 29153, + "model_id": 30009, + "year_id": 30009, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30014, + "make_id": 29153, + "model_id": 30009, + "year_id": 30014, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30015, + "make_id": 29153, + "model_id": 30009, + "year_id": 30014, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30016, + "make_id": 29153, + "model_id": 30009, + "year_id": 30014, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30017, + "make_id": 29153, + "model_id": 30009, + "year_id": 30014, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30018, + "make_id": 29153, + "model_id": 30009, + "year_id": 30018, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30019, + "make_id": 29153, + "model_id": 30009, + "year_id": 30018, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30020, + "make_id": 29153, + "model_id": 30009, + "year_id": 30018, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30021, + "make_id": 29153, + "model_id": 30009, + "year_id": 30018, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30022, + "make_id": 29153, + "model_id": 30009, + "year_id": 30022, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30023, + "make_id": 29153, + "model_id": 30009, + "year_id": 30022, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30024, + "make_id": 29153, + "model_id": 30009, + "year_id": 30022, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30025, + "make_id": 29153, + "model_id": 30009, + "year_id": 30022, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30026, + "make_id": 29153, + "model_id": 30009, + "year_id": 30026, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30027, + "make_id": 29153, + "model_id": 30009, + "year_id": 30026, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30028, + "make_id": 29153, + "model_id": 30009, + "year_id": 30028, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30029, + "make_id": 29153, + "model_id": 30009, + "year_id": 30028, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30030, + "make_id": 29153, + "model_id": 30009, + "year_id": 30030, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30031, + "make_id": 29153, + "model_id": 30009, + "year_id": 30030, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30032, + "make_id": 29153, + "model_id": 30009, + "year_id": 30030, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30033, + "make_id": 29153, + "model_id": 30009, + "year_id": 30030, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30034, + "make_id": 29153, + "model_id": 30009, + "year_id": 30030, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30035, + "make_id": 29153, + "model_id": 30009, + "year_id": 30035, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30036, + "make_id": 29153, + "model_id": 30009, + "year_id": 30035, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30037, + "make_id": 29153, + "model_id": 30009, + "year_id": 30035, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30038, + "make_id": 29153, + "model_id": 30009, + "year_id": 30035, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30039, + "make_id": 29153, + "model_id": 30009, + "year_id": 30035, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30040, + "make_id": 29153, + "model_id": 30040, + "year_id": 30040, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30041, + "make_id": 29153, + "model_id": 30040, + "year_id": 30040, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30042, + "make_id": 29153, + "model_id": 30042, + "year_id": 30042, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30043, + "make_id": 29153, + "model_id": 30042, + "year_id": 30042, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30044, + "make_id": 29153, + "model_id": 30042, + "year_id": 30044, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30045, + "make_id": 29153, + "model_id": 30042, + "year_id": 30044, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30046, + "make_id": 30046, + "model_id": 30046, + "year_id": 30046, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30047, + "make_id": 30046, + "model_id": 30046, + "year_id": 30046, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 30048, + "make_id": 30046, + "model_id": 30046, + "year_id": 30048, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30049, + "make_id": 30046, + "model_id": 30046, + "year_id": 30048, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 30050, + "make_id": 30046, + "model_id": 30050, + "year_id": 30050, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 30051, + "make_id": 30046, + "model_id": 30050, + "year_id": 30050, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30052, + "make_id": 30046, + "model_id": 30050, + "year_id": 30050, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 30053, + "make_id": 30046, + "model_id": 30050, + "year_id": 30050, + "cylinders": 4, + "displacement": 2.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30054, + "make_id": 30046, + "model_id": 30050, + "year_id": 30054, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30055, + "make_id": 30046, + "model_id": 30050, + "year_id": 30055, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30056, + "make_id": 30046, + "model_id": 30050, + "year_id": 30055, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30057, + "make_id": 30046, + "model_id": 30050, + "year_id": 30055, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30058, + "make_id": 30046, + "model_id": 30050, + "year_id": 30058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30059, + "make_id": 30046, + "model_id": 30050, + "year_id": 30058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30060, + "make_id": 30046, + "model_id": 30050, + "year_id": 30058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30061, + "make_id": 30046, + "model_id": 30050, + "year_id": 30058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30062, + "make_id": 30046, + "model_id": 30050, + "year_id": 30058, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30063, + "make_id": 30046, + "model_id": 30050, + "year_id": 30063, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30064, + "make_id": 30046, + "model_id": 30050, + "year_id": 30063, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30065, + "make_id": 30046, + "model_id": 30050, + "year_id": 30065, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30066, + "make_id": 30046, + "model_id": 30050, + "year_id": 30065, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30067, + "make_id": 30046, + "model_id": 30067, + "year_id": 30067, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30068, + "make_id": 30046, + "model_id": 30067, + "year_id": 30067, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30069, + "make_id": 30046, + "model_id": 30067, + "year_id": 30067, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30070, + "make_id": 30046, + "model_id": 30067, + "year_id": 30067, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30071, + "make_id": 30046, + "model_id": 30067, + "year_id": 30071, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30072, + "make_id": 30046, + "model_id": 30067, + "year_id": 30071, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30073, + "make_id": 30046, + "model_id": 30067, + "year_id": 30071, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30074, + "make_id": 30046, + "model_id": 30067, + "year_id": 30071, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30075, + "make_id": 30046, + "model_id": 30067, + "year_id": 30075, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30076, + "make_id": 30046, + "model_id": 30067, + "year_id": 30075, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30077, + "make_id": 30046, + "model_id": 30067, + "year_id": 30075, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30078, + "make_id": 30046, + "model_id": 30067, + "year_id": 30075, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30079, + "make_id": 30046, + "model_id": 30067, + "year_id": 30079, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30080, + "make_id": 30046, + "model_id": 30067, + "year_id": 30079, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30081, + "make_id": 30046, + "model_id": 30067, + "year_id": 30079, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30082, + "make_id": 30046, + "model_id": 30067, + "year_id": 30079, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30083, + "make_id": 30046, + "model_id": 30083, + "year_id": 30083, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30084, + "make_id": 30046, + "model_id": 30083, + "year_id": 30083, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30085, + "make_id": 30046, + "model_id": 30085, + "year_id": 30085, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30086, + "make_id": 30046, + "model_id": 30085, + "year_id": 30085, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30087, + "make_id": 30046, + "model_id": 30087, + "year_id": 30087, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30088, + "make_id": 30046, + "model_id": 30087, + "year_id": 30087, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30089, + "make_id": 30046, + "model_id": 30087, + "year_id": 30089, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30090, + "make_id": 30046, + "model_id": 30087, + "year_id": 30089, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30091, + "make_id": 30046, + "model_id": 30087, + "year_id": 30089, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30092, + "make_id": 30046, + "model_id": 30087, + "year_id": 30092, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30093, + "make_id": 30046, + "model_id": 30087, + "year_id": 30092, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30094, + "make_id": 30046, + "model_id": 30087, + "year_id": 30092, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30095, + "make_id": 30046, + "model_id": 30087, + "year_id": 30092, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30096, + "make_id": 30046, + "model_id": 30087, + "year_id": 30096, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30097, + "make_id": 30046, + "model_id": 30087, + "year_id": 30096, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30098, + "make_id": 30046, + "model_id": 30087, + "year_id": 30096, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30099, + "make_id": 30046, + "model_id": 30087, + "year_id": 30096, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30100, + "make_id": 30046, + "model_id": 30087, + "year_id": 30100, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30101, + "make_id": 30046, + "model_id": 30087, + "year_id": 30100, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30102, + "make_id": 30046, + "model_id": 30087, + "year_id": 30102, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30103, + "make_id": 30046, + "model_id": 30087, + "year_id": 30102, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30104, + "make_id": 30046, + "model_id": 30087, + "year_id": 30104, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30105, + "make_id": 30046, + "model_id": 30087, + "year_id": 30104, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30106, + "make_id": 30046, + "model_id": 30087, + "year_id": 30106, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30107, + "make_id": 30046, + "model_id": 30087, + "year_id": 30106, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30108, + "make_id": 30046, + "model_id": 30087, + "year_id": 30108, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30109, + "make_id": 30046, + "model_id": 30087, + "year_id": 30108, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30110, + "make_id": 30046, + "model_id": 30087, + "year_id": 30110, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30111, + "make_id": 30046, + "model_id": 30087, + "year_id": 30110, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30112, + "make_id": 30046, + "model_id": 30087, + "year_id": 30112, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30113, + "make_id": 30046, + "model_id": 30087, + "year_id": 30112, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30114, + "make_id": 30046, + "model_id": 30087, + "year_id": 30114, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30115, + "make_id": 30046, + "model_id": 30087, + "year_id": 30114, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30116, + "make_id": 30046, + "model_id": 30087, + "year_id": 30116, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30117, + "make_id": 30046, + "model_id": 30087, + "year_id": 30116, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30118, + "make_id": 30046, + "model_id": 30118, + "year_id": 30118, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30119, + "make_id": 30046, + "model_id": 30118, + "year_id": 30118, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30120, + "make_id": 30046, + "model_id": 30118, + "year_id": 30118, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30121, + "make_id": 30046, + "model_id": 30118, + "year_id": 30118, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30122, + "make_id": 30046, + "model_id": 30122, + "year_id": 30122, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30123, + "make_id": 30046, + "model_id": 30122, + "year_id": 30123, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30124, + "make_id": 30046, + "model_id": 30122, + "year_id": 30123, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30125, + "make_id": 30046, + "model_id": 30122, + "year_id": 30125, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30126, + "make_id": 30046, + "model_id": 30122, + "year_id": 30125, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30127, + "make_id": 30046, + "model_id": 30122, + "year_id": 30127, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30128, + "make_id": 30046, + "model_id": 30122, + "year_id": 30127, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30129, + "make_id": 30046, + "model_id": 30122, + "year_id": 30129, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30130, + "make_id": 30046, + "model_id": 30122, + "year_id": 30129, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30131, + "make_id": 30046, + "model_id": 30122, + "year_id": 30131, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30132, + "make_id": 30046, + "model_id": 30122, + "year_id": 30131, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30133, + "make_id": 30046, + "model_id": 30122, + "year_id": 30133, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30134, + "make_id": 30046, + "model_id": 30122, + "year_id": 30133, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30135, + "make_id": 30046, + "model_id": 30122, + "year_id": 30135, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30136, + "make_id": 30046, + "model_id": 30122, + "year_id": 30135, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30137, + "make_id": 30046, + "model_id": 30122, + "year_id": 30137, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30138, + "make_id": 30046, + "model_id": 30122, + "year_id": 30137, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30139, + "make_id": 30046, + "model_id": 30139, + "year_id": 30139, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30140, + "make_id": 30046, + "model_id": 30139, + "year_id": 30139, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30141, + "make_id": 30046, + "model_id": 30139, + "year_id": 30141, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30142, + "make_id": 30046, + "model_id": 30139, + "year_id": 30141, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30143, + "make_id": 30046, + "model_id": 30139, + "year_id": 30143, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30144, + "make_id": 30046, + "model_id": 30139, + "year_id": 30143, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30145, + "make_id": 30046, + "model_id": 30139, + "year_id": 30145, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30146, + "make_id": 30046, + "model_id": 30139, + "year_id": 30145, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30147, + "make_id": 30046, + "model_id": 30139, + "year_id": 30147, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30148, + "make_id": 30046, + "model_id": 30139, + "year_id": 30147, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30149, + "make_id": 30046, + "model_id": 30139, + "year_id": 30149, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30150, + "make_id": 30046, + "model_id": 30139, + "year_id": 30149, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30151, + "make_id": 30046, + "model_id": 30139, + "year_id": 30151, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30152, + "make_id": 30046, + "model_id": 30139, + "year_id": 30151, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30153, + "make_id": 30046, + "model_id": 30139, + "year_id": 30153, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30154, + "make_id": 30046, + "model_id": 30139, + "year_id": 30153, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30155, + "make_id": 30046, + "model_id": 30139, + "year_id": 30155, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30156, + "make_id": 30046, + "model_id": 30139, + "year_id": 30155, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30157, + "make_id": 30046, + "model_id": 30157, + "year_id": 30157, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30158, + "make_id": 30046, + "model_id": 30157, + "year_id": 30157, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30159, + "make_id": 30046, + "model_id": 30157, + "year_id": 30159, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30160, + "make_id": 30046, + "model_id": 30157, + "year_id": 30159, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30161, + "make_id": 30046, + "model_id": 30161, + "year_id": 30161, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30162, + "make_id": 30046, + "model_id": 30161, + "year_id": 30161, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30163, + "make_id": 30046, + "model_id": 30161, + "year_id": 30163, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30164, + "make_id": 30046, + "model_id": 30161, + "year_id": 30163, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30165, + "make_id": 30046, + "model_id": 30165, + "year_id": 30165, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30166, + "make_id": 30046, + "model_id": 30165, + "year_id": 30165, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30167, + "make_id": 30046, + "model_id": 30165, + "year_id": 30167, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30168, + "make_id": 30046, + "model_id": 30165, + "year_id": 30167, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30169, + "make_id": 30046, + "model_id": 30165, + "year_id": 30169, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30170, + "make_id": 30046, + "model_id": 30165, + "year_id": 30169, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30171, + "make_id": 30046, + "model_id": 30171, + "year_id": 30171, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30172, + "make_id": 30046, + "model_id": 30171, + "year_id": 30171, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30173, + "make_id": 30046, + "model_id": 30171, + "year_id": 30171, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30174, + "make_id": 30046, + "model_id": 30171, + "year_id": 30174, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30175, + "make_id": 30046, + "model_id": 30171, + "year_id": 30174, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30176, + "make_id": 30046, + "model_id": 30171, + "year_id": 30174, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30177, + "make_id": 30046, + "model_id": 30171, + "year_id": 30177, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30178, + "make_id": 30046, + "model_id": 30171, + "year_id": 30177, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30179, + "make_id": 30046, + "model_id": 30171, + "year_id": 30177, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30180, + "make_id": 30046, + "model_id": 30171, + "year_id": 30177, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30181, + "make_id": 30046, + "model_id": 30171, + "year_id": 30177, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30182, + "make_id": 30046, + "model_id": 30171, + "year_id": 30177, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30183, + "make_id": 30046, + "model_id": 30171, + "year_id": 30183, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30184, + "make_id": 30046, + "model_id": 30171, + "year_id": 30183, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30185, + "make_id": 30046, + "model_id": 30171, + "year_id": 30183, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30186, + "make_id": 30046, + "model_id": 30171, + "year_id": 30183, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30187, + "make_id": 30046, + "model_id": 30171, + "year_id": 30183, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30188, + "make_id": 30046, + "model_id": 30171, + "year_id": 30183, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30189, + "make_id": 30046, + "model_id": 30171, + "year_id": 30189, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30190, + "make_id": 30046, + "model_id": 30171, + "year_id": 30189, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30191, + "make_id": 30046, + "model_id": 30171, + "year_id": 30189, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30192, + "make_id": 30046, + "model_id": 30171, + "year_id": 30189, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30193, + "make_id": 30046, + "model_id": 30171, + "year_id": 30189, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30194, + "make_id": 30046, + "model_id": 30171, + "year_id": 30189, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30195, + "make_id": 30046, + "model_id": 30171, + "year_id": 30195, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30196, + "make_id": 30046, + "model_id": 30171, + "year_id": 30195, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30197, + "make_id": 30046, + "model_id": 30171, + "year_id": 30195, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30198, + "make_id": 30046, + "model_id": 30171, + "year_id": 30198, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30199, + "make_id": 30046, + "model_id": 30171, + "year_id": 30198, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30200, + "make_id": 30046, + "model_id": 30171, + "year_id": 30198, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30201, + "make_id": 30046, + "model_id": 30171, + "year_id": 30201, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30202, + "make_id": 30046, + "model_id": 30171, + "year_id": 30201, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30203, + "make_id": 30046, + "model_id": 30171, + "year_id": 30201, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30204, + "make_id": 30046, + "model_id": 30171, + "year_id": 30204, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30205, + "make_id": 30046, + "model_id": 30171, + "year_id": 30204, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30206, + "make_id": 30046, + "model_id": 30171, + "year_id": 30204, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30207, + "make_id": 30046, + "model_id": 30207, + "year_id": 30207, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30208, + "make_id": 30046, + "model_id": 30207, + "year_id": 30207, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30209, + "make_id": 30046, + "model_id": 30207, + "year_id": 30209, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30210, + "make_id": 30046, + "model_id": 30207, + "year_id": 30209, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30211, + "make_id": 30046, + "model_id": 30207, + "year_id": 30211, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30212, + "make_id": 30046, + "model_id": 30207, + "year_id": 30211, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30213, + "make_id": 30046, + "model_id": 30207, + "year_id": 30213, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30214, + "make_id": 30046, + "model_id": 30207, + "year_id": 30213, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30215, + "make_id": 30046, + "model_id": 30207, + "year_id": 30215, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30216, + "make_id": 30046, + "model_id": 30207, + "year_id": 30215, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30217, + "make_id": 30046, + "model_id": 30207, + "year_id": 30217, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30218, + "make_id": 30046, + "model_id": 30207, + "year_id": 30217, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30219, + "make_id": 30046, + "model_id": 30207, + "year_id": 30219, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30220, + "make_id": 30046, + "model_id": 30207, + "year_id": 30219, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30221, + "make_id": 30046, + "model_id": 30207, + "year_id": 30221, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30222, + "make_id": 30046, + "model_id": 30207, + "year_id": 30221, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30223, + "make_id": 30046, + "model_id": 30207, + "year_id": 30223, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30224, + "make_id": 30046, + "model_id": 30207, + "year_id": 30223, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30225, + "make_id": 30046, + "model_id": 30225, + "year_id": 30225, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30226, + "make_id": 30046, + "model_id": 30225, + "year_id": 30225, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30227, + "make_id": 30046, + "model_id": 30225, + "year_id": 30227, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30228, + "make_id": 30046, + "model_id": 30225, + "year_id": 30227, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30229, + "make_id": 30046, + "model_id": 30225, + "year_id": 30229, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30230, + "make_id": 30046, + "model_id": 30225, + "year_id": 30229, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30231, + "make_id": 30046, + "model_id": 30225, + "year_id": 30231, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30232, + "make_id": 30046, + "model_id": 30225, + "year_id": 30231, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30233, + "make_id": 30046, + "model_id": 30225, + "year_id": 30233, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30234, + "make_id": 30046, + "model_id": 30225, + "year_id": 30233, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30235, + "make_id": 30046, + "model_id": 30225, + "year_id": 30235, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30236, + "make_id": 30046, + "model_id": 30225, + "year_id": 30235, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30237, + "make_id": 30046, + "model_id": 30225, + "year_id": 30237, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30238, + "make_id": 30046, + "model_id": 30225, + "year_id": 30237, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30239, + "make_id": 30046, + "model_id": 30225, + "year_id": 30239, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30240, + "make_id": 30046, + "model_id": 30225, + "year_id": 30239, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30241, + "make_id": 30046, + "model_id": 30241, + "year_id": 30241, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30242, + "make_id": 30046, + "model_id": 30241, + "year_id": 30241, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30243, + "make_id": 30046, + "model_id": 30241, + "year_id": 30243, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30244, + "make_id": 30046, + "model_id": 30241, + "year_id": 30243, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30245, + "make_id": 30046, + "model_id": 30241, + "year_id": 30245, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30246, + "make_id": 30046, + "model_id": 30241, + "year_id": 30245, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30247, + "make_id": 30046, + "model_id": 30247, + "year_id": 30247, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30248, + "make_id": 30046, + "model_id": 30247, + "year_id": 30247, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30249, + "make_id": 30046, + "model_id": 30247, + "year_id": 30249, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30250, + "make_id": 30046, + "model_id": 30247, + "year_id": 30249, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30251, + "make_id": 30046, + "model_id": 30247, + "year_id": 30251, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30252, + "make_id": 30046, + "model_id": 30247, + "year_id": 30251, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30253, + "make_id": 30046, + "model_id": 30247, + "year_id": 30253, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30254, + "make_id": 30046, + "model_id": 30247, + "year_id": 30253, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30255, + "make_id": 30046, + "model_id": 30247, + "year_id": 30255, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30256, + "make_id": 30046, + "model_id": 30247, + "year_id": 30255, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30257, + "make_id": 30046, + "model_id": 30247, + "year_id": 30257, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30258, + "make_id": 30046, + "model_id": 30247, + "year_id": 30257, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30259, + "make_id": 30046, + "model_id": 30247, + "year_id": 30259, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30260, + "make_id": 30046, + "model_id": 30247, + "year_id": 30259, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30261, + "make_id": 30046, + "model_id": 30247, + "year_id": 30261, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30262, + "make_id": 30046, + "model_id": 30247, + "year_id": 30261, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30263, + "make_id": 30046, + "model_id": 30247, + "year_id": 30263, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30264, + "make_id": 30046, + "model_id": 30247, + "year_id": 30263, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30265, + "make_id": 30046, + "model_id": 30265, + "year_id": 30265, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30266, + "make_id": 30046, + "model_id": 30265, + "year_id": 30265, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30267, + "make_id": 30046, + "model_id": 30265, + "year_id": 30267, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30268, + "make_id": 30046, + "model_id": 30265, + "year_id": 30267, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30269, + "make_id": 30046, + "model_id": 30269, + "year_id": 30269, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30270, + "make_id": 30046, + "model_id": 30269, + "year_id": 30269, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30271, + "make_id": 30046, + "model_id": 30269, + "year_id": 30271, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30272, + "make_id": 30046, + "model_id": 30269, + "year_id": 30271, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30273, + "make_id": 30046, + "model_id": 30273, + "year_id": 30273, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30274, + "make_id": 30046, + "model_id": 30273, + "year_id": 30273, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30275, + "make_id": 30046, + "model_id": 30273, + "year_id": 30275, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30276, + "make_id": 30046, + "model_id": 30273, + "year_id": 30275, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30277, + "make_id": 30046, + "model_id": 30273, + "year_id": 30277, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30278, + "make_id": 30046, + "model_id": 30273, + "year_id": 30277, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30279, + "make_id": 30046, + "model_id": 30273, + "year_id": 30279, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30280, + "make_id": 30046, + "model_id": 30273, + "year_id": 30279, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30281, + "make_id": 30046, + "model_id": 30273, + "year_id": 30281, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30282, + "make_id": 30046, + "model_id": 30273, + "year_id": 30281, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30283, + "make_id": 30046, + "model_id": 30273, + "year_id": 30283, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30284, + "make_id": 30046, + "model_id": 30273, + "year_id": 30283, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30285, + "make_id": 30046, + "model_id": 30273, + "year_id": 30285, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30286, + "make_id": 30046, + "model_id": 30273, + "year_id": 30285, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30287, + "make_id": 30046, + "model_id": 30273, + "year_id": 30287, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30288, + "make_id": 30046, + "model_id": 30273, + "year_id": 30287, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30289, + "make_id": 30046, + "model_id": 30289, + "year_id": 30289, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30290, + "make_id": 30046, + "model_id": 30289, + "year_id": 30289, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30291, + "make_id": 30046, + "model_id": 30289, + "year_id": 30291, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30292, + "make_id": 30046, + "model_id": 30289, + "year_id": 30291, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30293, + "make_id": 30046, + "model_id": 30289, + "year_id": 30293, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30294, + "make_id": 30046, + "model_id": 30289, + "year_id": 30293, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30295, + "make_id": 30046, + "model_id": 30289, + "year_id": 30295, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30296, + "make_id": 30046, + "model_id": 30289, + "year_id": 30295, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30297, + "make_id": 30046, + "model_id": 30289, + "year_id": 30297, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30298, + "make_id": 30046, + "model_id": 30289, + "year_id": 30297, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30299, + "make_id": 30046, + "model_id": 30289, + "year_id": 30299, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30300, + "make_id": 30046, + "model_id": 30289, + "year_id": 30299, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30301, + "make_id": 30046, + "model_id": 30289, + "year_id": 30301, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30302, + "make_id": 30046, + "model_id": 30289, + "year_id": 30301, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30303, + "make_id": 30046, + "model_id": 30289, + "year_id": 30303, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30304, + "make_id": 30046, + "model_id": 30289, + "year_id": 30303, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30305, + "make_id": 30046, + "model_id": 30305, + "year_id": 30305, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30306, + "make_id": 30046, + "model_id": 30305, + "year_id": 30306, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30307, + "make_id": 30046, + "model_id": 30305, + "year_id": 30307, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30308, + "make_id": 30046, + "model_id": 30308, + "year_id": 30308, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30309, + "make_id": 30046, + "model_id": 30309, + "year_id": 30309, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30310, + "make_id": 30046, + "model_id": 30309, + "year_id": 30310, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30311, + "make_id": 30046, + "model_id": 30309, + "year_id": 30311, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30312, + "make_id": 30046, + "model_id": 30309, + "year_id": 30312, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30313, + "make_id": 30046, + "model_id": 30309, + "year_id": 30313, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30314, + "make_id": 30046, + "model_id": 30309, + "year_id": 30314, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30315, + "make_id": 30046, + "model_id": 30309, + "year_id": 30315, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30316, + "make_id": 30046, + "model_id": 30316, + "year_id": 30316, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30317, + "make_id": 30046, + "model_id": 30316, + "year_id": 30317, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30318, + "make_id": 30046, + "model_id": 30316, + "year_id": 30318, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30319, + "make_id": 30046, + "model_id": 30316, + "year_id": 30319, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30320, + "make_id": 30046, + "model_id": 30316, + "year_id": 30319, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30321, + "make_id": 30046, + "model_id": 30316, + "year_id": 30321, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30322, + "make_id": 30046, + "model_id": 30322, + "year_id": 30322, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30323, + "make_id": 30046, + "model_id": 30322, + "year_id": 30322, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30324, + "make_id": 30046, + "model_id": 30322, + "year_id": 30324, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30325, + "make_id": 30046, + "model_id": 30322, + "year_id": 30324, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30326, + "make_id": 30046, + "model_id": 30326, + "year_id": 30326, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30327, + "make_id": 30046, + "model_id": 30326, + "year_id": 30326, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30328, + "make_id": 30046, + "model_id": 30326, + "year_id": 30328, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30329, + "make_id": 30046, + "model_id": 30326, + "year_id": 30328, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30330, + "make_id": 30046, + "model_id": 30330, + "year_id": 30330, + "cylinders": 6, + "displacement": 3.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30331, + "make_id": 30046, + "model_id": 30330, + "year_id": 30330, + "cylinders": 6, + "displacement": 3.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30332, + "make_id": 30046, + "model_id": 30332, + "year_id": 30332, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30333, + "make_id": 30046, + "model_id": 30332, + "year_id": 30333, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30334, + "make_id": 30046, + "model_id": 30334, + "year_id": 30334, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30335, + "make_id": 30046, + "model_id": 30334, + "year_id": 30334, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30336, + "make_id": 30046, + "model_id": 30336, + "year_id": 30336, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30337, + "make_id": 30046, + "model_id": 30336, + "year_id": 30336, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30338, + "make_id": 30046, + "model_id": 30336, + "year_id": 30338, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30339, + "make_id": 30046, + "model_id": 30336, + "year_id": 30338, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30340, + "make_id": 30046, + "model_id": 30336, + "year_id": 30340, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30341, + "make_id": 30046, + "model_id": 30336, + "year_id": 30340, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30342, + "make_id": 30046, + "model_id": 30336, + "year_id": 30342, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30343, + "make_id": 30046, + "model_id": 30336, + "year_id": 30342, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30344, + "make_id": 30046, + "model_id": 30344, + "year_id": 30344, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30345, + "make_id": 30046, + "model_id": 30344, + "year_id": 30344, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30346, + "make_id": 30046, + "model_id": 30346, + "year_id": 30346, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30347, + "make_id": 30046, + "model_id": 30346, + "year_id": 30346, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30348, + "make_id": 30046, + "model_id": 30346, + "year_id": 30348, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30349, + "make_id": 30046, + "model_id": 30346, + "year_id": 30348, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30350, + "make_id": 30046, + "model_id": 30346, + "year_id": 30350, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30351, + "make_id": 30046, + "model_id": 30346, + "year_id": 30350, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30352, + "make_id": 30046, + "model_id": 30346, + "year_id": 30352, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30353, + "make_id": 30046, + "model_id": 30346, + "year_id": 30352, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30354, + "make_id": 30046, + "model_id": 30354, + "year_id": 30354, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 30355, + "make_id": 30046, + "model_id": 30354, + "year_id": 30355, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30356, + "make_id": 30046, + "model_id": 30354, + "year_id": 30356, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30357, + "make_id": 30046, + "model_id": 30354, + "year_id": 30357, + "cylinders": 6, + "displacement": 3.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30358, + "make_id": 30046, + "model_id": 30354, + "year_id": 30358, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30359, + "make_id": 30046, + "model_id": 30354, + "year_id": 30359, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30360, + "make_id": 30046, + "model_id": 30354, + "year_id": 30360, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30361, + "make_id": 30046, + "model_id": 30354, + "year_id": 30361, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30362, + "make_id": 30046, + "model_id": 30354, + "year_id": 30361, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30363, + "make_id": 30046, + "model_id": 30354, + "year_id": 30363, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30364, + "make_id": 30046, + "model_id": 30354, + "year_id": 30363, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30365, + "make_id": 30046, + "model_id": 30354, + "year_id": 30365, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30366, + "make_id": 30046, + "model_id": 30354, + "year_id": 30365, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30367, + "make_id": 30046, + "model_id": 30354, + "year_id": 30367, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30368, + "make_id": 30046, + "model_id": 30354, + "year_id": 30367, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30369, + "make_id": 30046, + "model_id": 30354, + "year_id": 30369, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30370, + "make_id": 30046, + "model_id": 30354, + "year_id": 30369, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30371, + "make_id": 30046, + "model_id": 30354, + "year_id": 30371, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30372, + "make_id": 30046, + "model_id": 30354, + "year_id": 30372, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30373, + "make_id": 30046, + "model_id": 30354, + "year_id": 30373, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30374, + "make_id": 30046, + "model_id": 30354, + "year_id": 30374, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30375, + "make_id": 30046, + "model_id": 30375, + "year_id": 30375, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30376, + "make_id": 30046, + "model_id": 30375, + "year_id": 30375, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30377, + "make_id": 30046, + "model_id": 30375, + "year_id": 30377, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30378, + "make_id": 30046, + "model_id": 30375, + "year_id": 30377, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30379, + "make_id": 30046, + "model_id": 30375, + "year_id": 30379, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30380, + "make_id": 30046, + "model_id": 30375, + "year_id": 30379, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30381, + "make_id": 30046, + "model_id": 30375, + "year_id": 30381, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30382, + "make_id": 30046, + "model_id": 30375, + "year_id": 30381, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30383, + "make_id": 30046, + "model_id": 30375, + "year_id": 30383, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30384, + "make_id": 30046, + "model_id": 30375, + "year_id": 30383, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30385, + "make_id": 30046, + "model_id": 30375, + "year_id": 30385, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30386, + "make_id": 30046, + "model_id": 30375, + "year_id": 30385, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30387, + "make_id": 30046, + "model_id": 30375, + "year_id": 30387, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30388, + "make_id": 30046, + "model_id": 30375, + "year_id": 30388, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30389, + "make_id": 30046, + "model_id": 30375, + "year_id": 30389, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30390, + "make_id": 30046, + "model_id": 30390, + "year_id": 30390, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30391, + "make_id": 30046, + "model_id": 30390, + "year_id": 30390, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30392, + "make_id": 30046, + "model_id": 30390, + "year_id": 30392, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30393, + "make_id": 30046, + "model_id": 30390, + "year_id": 30392, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30394, + "make_id": 30046, + "model_id": 30390, + "year_id": 30394, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30395, + "make_id": 30046, + "model_id": 30390, + "year_id": 30394, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30396, + "make_id": 30046, + "model_id": 30396, + "year_id": 30396, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30397, + "make_id": 30046, + "model_id": 30396, + "year_id": 30397, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30398, + "make_id": 30046, + "model_id": 30396, + "year_id": 30398, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30399, + "make_id": 30046, + "model_id": 30396, + "year_id": 30399, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30400, + "make_id": 30046, + "model_id": 30396, + "year_id": 30400, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30401, + "make_id": 30046, + "model_id": 30401, + "year_id": 30401, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30402, + "make_id": 30046, + "model_id": 30401, + "year_id": 30402, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30403, + "make_id": 30046, + "model_id": 30401, + "year_id": 30403, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30404, + "make_id": 30046, + "model_id": 30401, + "year_id": 30404, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30405, + "make_id": 30046, + "model_id": 30401, + "year_id": 30405, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30406, + "make_id": 30046, + "model_id": 30401, + "year_id": 30406, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30407, + "make_id": 30046, + "model_id": 30401, + "year_id": 30407, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30408, + "make_id": 30046, + "model_id": 30408, + "year_id": 30408, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30409, + "make_id": 30046, + "model_id": 30408, + "year_id": 30409, + "cylinders": 6, + "displacement": 3.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30410, + "make_id": 30046, + "model_id": 30408, + "year_id": 30410, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30411, + "make_id": 30046, + "model_id": 30411, + "year_id": 30411, + "cylinders": 8, + "displacement": 4.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30412, + "make_id": 30046, + "model_id": 30412, + "year_id": 30412, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30413, + "make_id": 30046, + "model_id": 30412, + "year_id": 30412, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30414, + "make_id": 30046, + "model_id": 30412, + "year_id": 30414, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30415, + "make_id": 30046, + "model_id": 30412, + "year_id": 30414, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30416, + "make_id": 30046, + "model_id": 30416, + "year_id": 30416, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30417, + "make_id": 30046, + "model_id": 30416, + "year_id": 30416, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30418, + "make_id": 30046, + "model_id": 30416, + "year_id": 30418, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30419, + "make_id": 30046, + "model_id": 30416, + "year_id": 30418, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30420, + "make_id": 30046, + "model_id": 30416, + "year_id": 30420, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30421, + "make_id": 30046, + "model_id": 30416, + "year_id": 30420, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30422, + "make_id": 30046, + "model_id": 30422, + "year_id": 30422, + "cylinders": 8, + "displacement": 4.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 30423, + "make_id": 30046, + "model_id": 30422, + "year_id": 30422, + "cylinders": 8, + "displacement": 4.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30424, + "make_id": 30046, + "model_id": 30422, + "year_id": 30422, + "cylinders": 8, + "displacement": 4.7, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 30425, + "make_id": 30046, + "model_id": 30422, + "year_id": 30422, + "cylinders": 8, + "displacement": 4.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30426, + "make_id": 30046, + "model_id": 30422, + "year_id": 30426, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30427, + "make_id": 30046, + "model_id": 30422, + "year_id": 30426, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30428, + "make_id": 30046, + "model_id": 30422, + "year_id": 30428, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30429, + "make_id": 30046, + "model_id": 30422, + "year_id": 30428, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30430, + "make_id": 30046, + "model_id": 30430, + "year_id": 30430, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30431, + "make_id": 30046, + "model_id": 30430, + "year_id": 30430, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30432, + "make_id": 30046, + "model_id": 30430, + "year_id": 30432, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30433, + "make_id": 30046, + "model_id": 30430, + "year_id": 30432, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30434, + "make_id": 30046, + "model_id": 30430, + "year_id": 30432, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30435, + "make_id": 30046, + "model_id": 30430, + "year_id": 30435, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30436, + "make_id": 30046, + "model_id": 30430, + "year_id": 30435, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30437, + "make_id": 30046, + "model_id": 30430, + "year_id": 30437, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30438, + "make_id": 30046, + "model_id": 30430, + "year_id": 30437, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30439, + "make_id": 30046, + "model_id": 30430, + "year_id": 30437, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 30440, + "make_id": 30046, + "model_id": 30440, + "year_id": 30440, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30441, + "make_id": 30046, + "model_id": 30441, + "year_id": 30441, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30442, + "make_id": 30046, + "model_id": 30441, + "year_id": 30442, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30443, + "make_id": 30046, + "model_id": 30441, + "year_id": 30443, + "cylinders": 4, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30444, + "make_id": 30046, + "model_id": 30444, + "year_id": 30444, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30445, + "make_id": 30046, + "model_id": 30444, + "year_id": 30445, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30446, + "make_id": 30046, + "model_id": 30446, + "year_id": 30446, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30447, + "make_id": 30046, + "model_id": 30446, + "year_id": 30446, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30448, + "make_id": 30046, + "model_id": 30446, + "year_id": 30448, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30449, + "make_id": 30046, + "model_id": 30446, + "year_id": 30448, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30450, + "make_id": 30046, + "model_id": 30446, + "year_id": 30450, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30451, + "make_id": 30046, + "model_id": 30446, + "year_id": 30450, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30452, + "make_id": 30046, + "model_id": 30446, + "year_id": 30452, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30453, + "make_id": 30046, + "model_id": 30446, + "year_id": 30452, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30454, + "make_id": 30046, + "model_id": 30446, + "year_id": 30454, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30455, + "make_id": 30046, + "model_id": 30446, + "year_id": 30454, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30456, + "make_id": 30046, + "model_id": 30446, + "year_id": 30456, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30457, + "make_id": 30046, + "model_id": 30446, + "year_id": 30456, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30458, + "make_id": 30046, + "model_id": 30446, + "year_id": 30458, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30459, + "make_id": 30046, + "model_id": 30446, + "year_id": 30458, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30460, + "make_id": 30046, + "model_id": 30446, + "year_id": 30460, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30461, + "make_id": 30046, + "model_id": 30446, + "year_id": 30460, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30462, + "make_id": 30046, + "model_id": 30446, + "year_id": 30462, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30463, + "make_id": 30046, + "model_id": 30446, + "year_id": 30462, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30464, + "make_id": 30046, + "model_id": 30446, + "year_id": 30462, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30465, + "make_id": 30046, + "model_id": 30446, + "year_id": 30465, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30466, + "make_id": 30046, + "model_id": 30446, + "year_id": 30465, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30467, + "make_id": 30046, + "model_id": 30446, + "year_id": 30465, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30468, + "make_id": 30046, + "model_id": 30446, + "year_id": 30468, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30469, + "make_id": 30046, + "model_id": 30446, + "year_id": 30468, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30470, + "make_id": 30046, + "model_id": 30446, + "year_id": 30468, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30471, + "make_id": 30046, + "model_id": 30446, + "year_id": 30471, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30472, + "make_id": 30046, + "model_id": 30446, + "year_id": 30471, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30473, + "make_id": 30046, + "model_id": 30446, + "year_id": 30471, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30474, + "make_id": 30046, + "model_id": 30446, + "year_id": 30474, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30475, + "make_id": 30046, + "model_id": 30446, + "year_id": 30474, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30476, + "make_id": 30046, + "model_id": 30446, + "year_id": 30476, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30477, + "make_id": 30046, + "model_id": 30446, + "year_id": 30476, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30478, + "make_id": 30046, + "model_id": 30446, + "year_id": 30478, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30479, + "make_id": 30046, + "model_id": 30446, + "year_id": 30478, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30480, + "make_id": 30046, + "model_id": 30446, + "year_id": 30480, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30481, + "make_id": 30046, + "model_id": 30446, + "year_id": 30480, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30482, + "make_id": 30046, + "model_id": 30446, + "year_id": 30482, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30483, + "make_id": 30046, + "model_id": 30446, + "year_id": 30482, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30484, + "make_id": 30046, + "model_id": 30446, + "year_id": 30484, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30485, + "make_id": 30046, + "model_id": 30446, + "year_id": 30484, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30486, + "make_id": 30046, + "model_id": 30446, + "year_id": 30486, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30487, + "make_id": 30046, + "model_id": 30446, + "year_id": 30486, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30488, + "make_id": 30046, + "model_id": 30446, + "year_id": 30488, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30489, + "make_id": 30046, + "model_id": 30446, + "year_id": 30488, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30490, + "make_id": 30046, + "model_id": 30446, + "year_id": 30490, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30491, + "make_id": 30046, + "model_id": 30446, + "year_id": 30490, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30492, + "make_id": 30046, + "model_id": 30492, + "year_id": 30492, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30493, + "make_id": 30046, + "model_id": 30492, + "year_id": 30492, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30494, + "make_id": 30046, + "model_id": 30492, + "year_id": 30494, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30495, + "make_id": 30046, + "model_id": 30492, + "year_id": 30494, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30496, + "make_id": 30046, + "model_id": 30496, + "year_id": 30496, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30497, + "make_id": 30046, + "model_id": 30496, + "year_id": 30496, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30498, + "make_id": 30046, + "model_id": 30496, + "year_id": 30498, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30499, + "make_id": 30046, + "model_id": 30496, + "year_id": 30498, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30500, + "make_id": 30046, + "model_id": 30496, + "year_id": 30500, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30501, + "make_id": 30046, + "model_id": 30496, + "year_id": 30500, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30502, + "make_id": 30046, + "model_id": 30496, + "year_id": 30502, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30503, + "make_id": 30046, + "model_id": 30496, + "year_id": 30502, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30504, + "make_id": 30046, + "model_id": 30496, + "year_id": 30504, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30505, + "make_id": 30046, + "model_id": 30496, + "year_id": 30504, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30506, + "make_id": 30046, + "model_id": 30496, + "year_id": 30506, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30507, + "make_id": 30046, + "model_id": 30496, + "year_id": 30506, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30508, + "make_id": 30046, + "model_id": 30496, + "year_id": 30508, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30509, + "make_id": 30046, + "model_id": 30496, + "year_id": 30508, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30510, + "make_id": 30046, + "model_id": 30496, + "year_id": 30510, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30511, + "make_id": 30046, + "model_id": 30496, + "year_id": 30510, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30512, + "make_id": 30046, + "model_id": 30496, + "year_id": 30512, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30513, + "make_id": 30046, + "model_id": 30496, + "year_id": 30512, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30514, + "make_id": 30046, + "model_id": 30496, + "year_id": 30514, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30515, + "make_id": 30046, + "model_id": 30496, + "year_id": 30514, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30516, + "make_id": 30046, + "model_id": 30496, + "year_id": 30516, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30517, + "make_id": 30046, + "model_id": 30496, + "year_id": 30516, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30518, + "make_id": 30046, + "model_id": 30496, + "year_id": 30518, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30519, + "make_id": 30046, + "model_id": 30496, + "year_id": 30518, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30520, + "make_id": 30046, + "model_id": 30496, + "year_id": 30520, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30521, + "make_id": 30046, + "model_id": 30496, + "year_id": 30520, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30522, + "make_id": 30046, + "model_id": 30496, + "year_id": 30522, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30523, + "make_id": 30046, + "model_id": 30496, + "year_id": 30522, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30524, + "make_id": 30046, + "model_id": 30496, + "year_id": 30524, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30525, + "make_id": 30046, + "model_id": 30496, + "year_id": 30524, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30526, + "make_id": 30046, + "model_id": 30496, + "year_id": 30526, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30527, + "make_id": 30046, + "model_id": 30496, + "year_id": 30526, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30528, + "make_id": 30046, + "model_id": 30496, + "year_id": 30528, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30529, + "make_id": 30046, + "model_id": 30496, + "year_id": 30528, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30530, + "make_id": 30046, + "model_id": 30496, + "year_id": 30530, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30531, + "make_id": 30046, + "model_id": 30496, + "year_id": 30530, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30532, + "make_id": 30046, + "model_id": 30532, + "year_id": 30532, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30533, + "make_id": 30046, + "model_id": 30532, + "year_id": 30532, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30534, + "make_id": 30046, + "model_id": 30532, + "year_id": 30534, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30535, + "make_id": 30046, + "model_id": 30532, + "year_id": 30534, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30536, + "make_id": 30046, + "model_id": 30532, + "year_id": 30536, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30537, + "make_id": 30046, + "model_id": 30537, + "year_id": 30537, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30538, + "make_id": 30046, + "model_id": 30538, + "year_id": 30538, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30539, + "make_id": 30046, + "model_id": 30538, + "year_id": 30539, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30540, + "make_id": 30046, + "model_id": 30540, + "year_id": 30540, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30541, + "make_id": 30046, + "model_id": 30540, + "year_id": 30540, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30542, + "make_id": 30046, + "model_id": 30540, + "year_id": 30542, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30543, + "make_id": 30046, + "model_id": 30540, + "year_id": 30542, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30544, + "make_id": 30046, + "model_id": 30540, + "year_id": 30544, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30545, + "make_id": 30046, + "model_id": 30540, + "year_id": 30544, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30546, + "make_id": 30046, + "model_id": 30540, + "year_id": 30544, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30547, + "make_id": 30046, + "model_id": 30540, + "year_id": 30544, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30548, + "make_id": 30046, + "model_id": 30540, + "year_id": 30548, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30549, + "make_id": 30046, + "model_id": 30540, + "year_id": 30548, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30550, + "make_id": 30046, + "model_id": 30540, + "year_id": 30550, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30551, + "make_id": 30046, + "model_id": 30540, + "year_id": 30550, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30552, + "make_id": 30046, + "model_id": 30540, + "year_id": 30552, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30553, + "make_id": 30046, + "model_id": 30540, + "year_id": 30552, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30554, + "make_id": 30046, + "model_id": 30540, + "year_id": 30554, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30555, + "make_id": 30046, + "model_id": 30540, + "year_id": 30554, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30556, + "make_id": 30046, + "model_id": 30556, + "year_id": 30556, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30557, + "make_id": 30046, + "model_id": 30556, + "year_id": 30556, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30558, + "make_id": 30046, + "model_id": 30556, + "year_id": 30558, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30559, + "make_id": 30046, + "model_id": 30556, + "year_id": 30559, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30560, + "make_id": 30046, + "model_id": 30556, + "year_id": 30559, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30561, + "make_id": 30046, + "model_id": 30561, + "year_id": 30561, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30562, + "make_id": 30046, + "model_id": 30561, + "year_id": 30561, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30563, + "make_id": 30046, + "model_id": 30561, + "year_id": 30563, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30564, + "make_id": 30046, + "model_id": 30561, + "year_id": 30563, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30565, + "make_id": 30046, + "model_id": 30561, + "year_id": 30565, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30566, + "make_id": 30046, + "model_id": 30561, + "year_id": 30565, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30567, + "make_id": 30046, + "model_id": 30561, + "year_id": 30565, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30568, + "make_id": 30046, + "model_id": 30561, + "year_id": 30565, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30569, + "make_id": 30046, + "model_id": 30561, + "year_id": 30569, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30570, + "make_id": 30046, + "model_id": 30561, + "year_id": 30569, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30571, + "make_id": 30046, + "model_id": 30561, + "year_id": 30571, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30572, + "make_id": 30046, + "model_id": 30561, + "year_id": 30571, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30573, + "make_id": 30046, + "model_id": 30561, + "year_id": 30573, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30574, + "make_id": 30046, + "model_id": 30561, + "year_id": 30573, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30575, + "make_id": 30046, + "model_id": 30561, + "year_id": 30575, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30576, + "make_id": 30046, + "model_id": 30561, + "year_id": 30575, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30577, + "make_id": 30046, + "model_id": 30577, + "year_id": 30577, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30578, + "make_id": 30046, + "model_id": 30577, + "year_id": 30577, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30579, + "make_id": 30046, + "model_id": 30577, + "year_id": 30579, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30580, + "make_id": 30046, + "model_id": 30577, + "year_id": 30580, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30581, + "make_id": 30046, + "model_id": 30577, + "year_id": 30580, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30582, + "make_id": 30046, + "model_id": 30582, + "year_id": 30582, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30583, + "make_id": 30046, + "model_id": 30582, + "year_id": 30582, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30584, + "make_id": 30046, + "model_id": 30582, + "year_id": 30584, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30585, + "make_id": 30046, + "model_id": 30582, + "year_id": 30584, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30586, + "make_id": 30046, + "model_id": 30582, + "year_id": 30586, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30587, + "make_id": 30046, + "model_id": 30582, + "year_id": 30586, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30588, + "make_id": 30046, + "model_id": 30582, + "year_id": 30588, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30589, + "make_id": 30046, + "model_id": 30582, + "year_id": 30588, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30590, + "make_id": 30046, + "model_id": 30582, + "year_id": 30590, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30591, + "make_id": 30046, + "model_id": 30582, + "year_id": 30590, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30592, + "make_id": 30046, + "model_id": 30592, + "year_id": 30592, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30593, + "make_id": 30046, + "model_id": 30592, + "year_id": 30592, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30594, + "make_id": 30046, + "model_id": 30592, + "year_id": 30594, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30595, + "make_id": 30046, + "model_id": 30592, + "year_id": 30594, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30596, + "make_id": 30046, + "model_id": 30592, + "year_id": 30596, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30597, + "make_id": 30046, + "model_id": 30592, + "year_id": 30596, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30598, + "make_id": 30046, + "model_id": 30592, + "year_id": 30598, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30599, + "make_id": 30046, + "model_id": 30592, + "year_id": 30598, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30600, + "make_id": 30046, + "model_id": 30592, + "year_id": 30600, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30601, + "make_id": 30046, + "model_id": 30592, + "year_id": 30600, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30602, + "make_id": 30046, + "model_id": 30602, + "year_id": 30602, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30603, + "make_id": 30046, + "model_id": 30603, + "year_id": 30603, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30604, + "make_id": 30046, + "model_id": 30603, + "year_id": 30603, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30605, + "make_id": 30046, + "model_id": 30603, + "year_id": 30605, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30606, + "make_id": 30046, + "model_id": 30603, + "year_id": 30605, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30607, + "make_id": 30046, + "model_id": 30603, + "year_id": 30607, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30608, + "make_id": 30046, + "model_id": 30603, + "year_id": 30607, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30609, + "make_id": 30046, + "model_id": 30603, + "year_id": 30609, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30610, + "make_id": 30046, + "model_id": 30603, + "year_id": 30609, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30611, + "make_id": 30046, + "model_id": 30603, + "year_id": 30611, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30612, + "make_id": 30046, + "model_id": 30603, + "year_id": 30611, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30613, + "make_id": 30046, + "model_id": 30603, + "year_id": 30613, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30614, + "make_id": 30046, + "model_id": 30603, + "year_id": 30613, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30615, + "make_id": 30046, + "model_id": 30603, + "year_id": 30615, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30616, + "make_id": 30046, + "model_id": 30603, + "year_id": 30615, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30617, + "make_id": 30046, + "model_id": 30617, + "year_id": 30617, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30618, + "make_id": 30046, + "model_id": 30617, + "year_id": 30617, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30619, + "make_id": 30046, + "model_id": 30617, + "year_id": 30619, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30620, + "make_id": 30046, + "model_id": 30617, + "year_id": 30620, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30621, + "make_id": 30046, + "model_id": 30617, + "year_id": 30620, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30622, + "make_id": 30046, + "model_id": 30622, + "year_id": 30622, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30623, + "make_id": 30046, + "model_id": 30622, + "year_id": 30622, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30624, + "make_id": 30046, + "model_id": 30622, + "year_id": 30624, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30625, + "make_id": 30046, + "model_id": 30622, + "year_id": 30624, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30626, + "make_id": 30046, + "model_id": 30622, + "year_id": 30626, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30627, + "make_id": 30046, + "model_id": 30622, + "year_id": 30626, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30628, + "make_id": 30046, + "model_id": 30622, + "year_id": 30628, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30629, + "make_id": 30046, + "model_id": 30622, + "year_id": 30628, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30630, + "make_id": 30046, + "model_id": 30630, + "year_id": 30630, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30631, + "make_id": 30046, + "model_id": 30630, + "year_id": 30630, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30632, + "make_id": 30046, + "model_id": 30632, + "year_id": 30632, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30633, + "make_id": 30046, + "model_id": 30632, + "year_id": 30632, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30634, + "make_id": 30046, + "model_id": 30632, + "year_id": 30634, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30635, + "make_id": 30046, + "model_id": 30632, + "year_id": 30634, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30636, + "make_id": 30046, + "model_id": 30632, + "year_id": 30636, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30637, + "make_id": 30046, + "model_id": 30632, + "year_id": 30636, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30638, + "make_id": 30046, + "model_id": 30632, + "year_id": 30638, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30639, + "make_id": 30046, + "model_id": 30632, + "year_id": 30638, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30640, + "make_id": 30046, + "model_id": 30632, + "year_id": 30640, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30641, + "make_id": 30046, + "model_id": 30632, + "year_id": 30640, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30642, + "make_id": 30046, + "model_id": 30632, + "year_id": 30642, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30643, + "make_id": 30046, + "model_id": 30632, + "year_id": 30642, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30644, + "make_id": 30046, + "model_id": 30644, + "year_id": 30644, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30645, + "make_id": 30046, + "model_id": 30644, + "year_id": 30645, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30646, + "make_id": 30046, + "model_id": 30644, + "year_id": 30645, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30647, + "make_id": 30046, + "model_id": 30647, + "year_id": 30647, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30648, + "make_id": 30046, + "model_id": 30647, + "year_id": 30647, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30649, + "make_id": 30046, + "model_id": 30647, + "year_id": 30649, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30650, + "make_id": 30046, + "model_id": 30647, + "year_id": 30649, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30651, + "make_id": 30046, + "model_id": 30647, + "year_id": 30651, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30652, + "make_id": 30046, + "model_id": 30647, + "year_id": 30651, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30653, + "make_id": 30046, + "model_id": 30647, + "year_id": 30653, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30654, + "make_id": 30046, + "model_id": 30647, + "year_id": 30653, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30655, + "make_id": 30046, + "model_id": 30647, + "year_id": 30655, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30656, + "make_id": 30046, + "model_id": 30647, + "year_id": 30655, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30657, + "make_id": 30046, + "model_id": 30647, + "year_id": 30657, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30658, + "make_id": 30046, + "model_id": 30647, + "year_id": 30657, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30659, + "make_id": 30046, + "model_id": 30659, + "year_id": 30659, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30660, + "make_id": 30046, + "model_id": 30659, + "year_id": 30659, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30661, + "make_id": 30046, + "model_id": 30659, + "year_id": 30661, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30662, + "make_id": 30046, + "model_id": 30659, + "year_id": 30662, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30663, + "make_id": 30046, + "model_id": 30659, + "year_id": 30662, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30664, + "make_id": 30046, + "model_id": 30664, + "year_id": 30664, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30665, + "make_id": 30046, + "model_id": 30664, + "year_id": 30664, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30666, + "make_id": 30046, + "model_id": 30664, + "year_id": 30666, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30667, + "make_id": 30046, + "model_id": 30664, + "year_id": 30666, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30668, + "make_id": 30046, + "model_id": 30664, + "year_id": 30668, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30669, + "make_id": 30046, + "model_id": 30664, + "year_id": 30668, + "cylinders": 6, + "displacement": 3.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30670, + "make_id": 30046, + "model_id": 30670, + "year_id": 30670, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30671, + "make_id": 30046, + "model_id": 30670, + "year_id": 30670, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30672, + "make_id": 30046, + "model_id": 30670, + "year_id": 30672, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30673, + "make_id": 30046, + "model_id": 30670, + "year_id": 30672, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30674, + "make_id": 30046, + "model_id": 30670, + "year_id": 30674, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30675, + "make_id": 30046, + "model_id": 30670, + "year_id": 30674, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30676, + "make_id": 30046, + "model_id": 30676, + "year_id": 30676, + "cylinders": 10, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30677, + "make_id": 30046, + "model_id": 30676, + "year_id": 30677, + "cylinders": 10, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30678, + "make_id": 30046, + "model_id": 30678, + "year_id": 30678, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30679, + "make_id": 30046, + "model_id": 30678, + "year_id": 30679, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30680, + "make_id": 30046, + "model_id": 30678, + "year_id": 30679, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30681, + "make_id": 30046, + "model_id": 30678, + "year_id": 30681, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30682, + "make_id": 30046, + "model_id": 30678, + "year_id": 30681, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30683, + "make_id": 30046, + "model_id": 30678, + "year_id": 30683, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30684, + "make_id": 30046, + "model_id": 30678, + "year_id": 30683, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30685, + "make_id": 30046, + "model_id": 30678, + "year_id": 30685, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30686, + "make_id": 30046, + "model_id": 30678, + "year_id": 30685, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30687, + "make_id": 30046, + "model_id": 30678, + "year_id": 30687, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30688, + "make_id": 30046, + "model_id": 30678, + "year_id": 30687, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30689, + "make_id": 30046, + "model_id": 30678, + "year_id": 30689, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30690, + "make_id": 30046, + "model_id": 30678, + "year_id": 30689, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30691, + "make_id": 30046, + "model_id": 30678, + "year_id": 30691, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30692, + "make_id": 30046, + "model_id": 30678, + "year_id": 30691, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30693, + "make_id": 30046, + "model_id": 30678, + "year_id": 30693, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30694, + "make_id": 30046, + "model_id": 30678, + "year_id": 30693, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30695, + "make_id": 30046, + "model_id": 30678, + "year_id": 30695, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30696, + "make_id": 30046, + "model_id": 30678, + "year_id": 30695, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30697, + "make_id": 30046, + "model_id": 30678, + "year_id": 30697, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30698, + "make_id": 30046, + "model_id": 30678, + "year_id": 30697, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30699, + "make_id": 30046, + "model_id": 30678, + "year_id": 30699, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30700, + "make_id": 30046, + "model_id": 30700, + "year_id": 30700, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30701, + "make_id": 30046, + "model_id": 30700, + "year_id": 30701, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30702, + "make_id": 30046, + "model_id": 30700, + "year_id": 30702, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30703, + "make_id": 30046, + "model_id": 30700, + "year_id": 30703, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30704, + "make_id": 30046, + "model_id": 30704, + "year_id": 30704, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30705, + "make_id": 30046, + "model_id": 30704, + "year_id": 30704, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30706, + "make_id": 30046, + "model_id": 30704, + "year_id": 30706, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30707, + "make_id": 30046, + "model_id": 30704, + "year_id": 30706, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30708, + "make_id": 30046, + "model_id": 30704, + "year_id": 30708, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30709, + "make_id": 30046, + "model_id": 30704, + "year_id": 30708, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30710, + "make_id": 30046, + "model_id": 30704, + "year_id": 30710, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30711, + "make_id": 30046, + "model_id": 30704, + "year_id": 30711, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30712, + "make_id": 30046, + "model_id": 30704, + "year_id": 30712, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30713, + "make_id": 30046, + "model_id": 30704, + "year_id": 30713, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30714, + "make_id": 30046, + "model_id": 30714, + "year_id": 30714, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30715, + "make_id": 30046, + "model_id": 30714, + "year_id": 30715, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30716, + "make_id": 30046, + "model_id": 30714, + "year_id": 30716, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30717, + "make_id": 30046, + "model_id": 30714, + "year_id": 30717, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30718, + "make_id": 30046, + "model_id": 30714, + "year_id": 30718, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30719, + "make_id": 30046, + "model_id": 30714, + "year_id": 30719, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30720, + "make_id": 30046, + "model_id": 30714, + "year_id": 30720, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30721, + "make_id": 30046, + "model_id": 30714, + "year_id": 30721, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30722, + "make_id": 30046, + "model_id": 30714, + "year_id": 30722, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30723, + "make_id": 30046, + "model_id": 30714, + "year_id": 30723, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30724, + "make_id": 30046, + "model_id": 30714, + "year_id": 30724, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30725, + "make_id": 30046, + "model_id": 30714, + "year_id": 30725, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30726, + "make_id": 30046, + "model_id": 30714, + "year_id": 30726, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30727, + "make_id": 30046, + "model_id": 30714, + "year_id": 30727, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30728, + "make_id": 30046, + "model_id": 30714, + "year_id": 30728, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30729, + "make_id": 30046, + "model_id": 30729, + "year_id": 30729, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automated Manual" + }, + { + "id": 30730, + "make_id": 30046, + "model_id": 30729, + "year_id": 30730, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automated Manual" + }, + { + "id": 30731, + "make_id": 30046, + "model_id": 30731, + "year_id": 30731, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "Auto(A8)" + }, + { + "id": 30732, + "make_id": 30046, + "model_id": 30731, + "year_id": 30732, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30733, + "make_id": 30046, + "model_id": 30731, + "year_id": 30733, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30734, + "make_id": 30046, + "model_id": 30731, + "year_id": 30734, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30735, + "make_id": 30046, + "model_id": 30735, + "year_id": 30735, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30736, + "make_id": 30046, + "model_id": 30736, + "year_id": 30736, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30737, + "make_id": 30046, + "model_id": 30736, + "year_id": 30737, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30738, + "make_id": 30046, + "model_id": 30736, + "year_id": 30738, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30739, + "make_id": 30046, + "model_id": 30736, + "year_id": 30739, + "cylinders": 8, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30740, + "make_id": 30046, + "model_id": 30736, + "year_id": 30740, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30741, + "make_id": 30046, + "model_id": 30736, + "year_id": 30741, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30742, + "make_id": 30046, + "model_id": 30736, + "year_id": 30742, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30743, + "make_id": 30046, + "model_id": 30736, + "year_id": 30743, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30744, + "make_id": 30046, + "model_id": 30736, + "year_id": 30744, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30745, + "make_id": 30046, + "model_id": 30736, + "year_id": 30745, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30746, + "make_id": 30046, + "model_id": 30736, + "year_id": 30746, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30747, + "make_id": 30046, + "model_id": 30736, + "year_id": 30747, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30748, + "make_id": 30046, + "model_id": 30736, + "year_id": 30748, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30749, + "make_id": 30046, + "model_id": 30736, + "year_id": 30749, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30750, + "make_id": 30046, + "model_id": 30736, + "year_id": 30750, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30751, + "make_id": 30046, + "model_id": 30751, + "year_id": 30751, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30752, + "make_id": 30046, + "model_id": 30752, + "year_id": 30752, + "cylinders": 8, + "displacement": 4.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30753, + "make_id": 30046, + "model_id": 30752, + "year_id": 30753, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30754, + "make_id": 30046, + "model_id": 30752, + "year_id": 30754, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30755, + "make_id": 30046, + "model_id": 30752, + "year_id": 30755, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30756, + "make_id": 30046, + "model_id": 30752, + "year_id": 30756, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30757, + "make_id": 30046, + "model_id": 30757, + "year_id": 30757, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30758, + "make_id": 30046, + "model_id": 30757, + "year_id": 30757, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30759, + "make_id": 30046, + "model_id": 30757, + "year_id": 30757, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30760, + "make_id": 30046, + "model_id": 30757, + "year_id": 30760, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30761, + "make_id": 30046, + "model_id": 30757, + "year_id": 30760, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30762, + "make_id": 30046, + "model_id": 30757, + "year_id": 30760, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30763, + "make_id": 30046, + "model_id": 30757, + "year_id": 30763, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30764, + "make_id": 30046, + "model_id": 30757, + "year_id": 30763, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30765, + "make_id": 30046, + "model_id": 30757, + "year_id": 30765, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30766, + "make_id": 30046, + "model_id": 30757, + "year_id": 30765, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30767, + "make_id": 30046, + "model_id": 30757, + "year_id": 30767, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30768, + "make_id": 30046, + "model_id": 30757, + "year_id": 30767, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30769, + "make_id": 30046, + "model_id": 30757, + "year_id": 30769, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30770, + "make_id": 30046, + "model_id": 30757, + "year_id": 30769, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30771, + "make_id": 30046, + "model_id": 30757, + "year_id": 30771, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30772, + "make_id": 30046, + "model_id": 30757, + "year_id": 30771, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30773, + "make_id": 30046, + "model_id": 30757, + "year_id": 30773, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30774, + "make_id": 30046, + "model_id": 30757, + "year_id": 30773, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30775, + "make_id": 30046, + "model_id": 30757, + "year_id": 30775, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30776, + "make_id": 30046, + "model_id": 30757, + "year_id": 30775, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30777, + "make_id": 30046, + "model_id": 30777, + "year_id": 30777, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30778, + "make_id": 30046, + "model_id": 30778, + "year_id": 30778, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30779, + "make_id": 30046, + "model_id": 30778, + "year_id": 30778, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30780, + "make_id": 30046, + "model_id": 30778, + "year_id": 30780, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30781, + "make_id": 30046, + "model_id": 30778, + "year_id": 30780, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30782, + "make_id": 30046, + "model_id": 30782, + "year_id": 30782, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30783, + "make_id": 30046, + "model_id": 30782, + "year_id": 30782, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30784, + "make_id": 30046, + "model_id": 30784, + "year_id": 30784, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30785, + "make_id": 30046, + "model_id": 30784, + "year_id": 30784, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30786, + "make_id": 30046, + "model_id": 30784, + "year_id": 30786, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30787, + "make_id": 30046, + "model_id": 30784, + "year_id": 30786, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30788, + "make_id": 30046, + "model_id": 30784, + "year_id": 30788, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30789, + "make_id": 30046, + "model_id": 30784, + "year_id": 30788, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30790, + "make_id": 30046, + "model_id": 30784, + "year_id": 30790, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30791, + "make_id": 30046, + "model_id": 30784, + "year_id": 30790, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30792, + "make_id": 30046, + "model_id": 30784, + "year_id": 30792, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30793, + "make_id": 30046, + "model_id": 30784, + "year_id": 30792, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30794, + "make_id": 30046, + "model_id": 30784, + "year_id": 30794, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30795, + "make_id": 30046, + "model_id": 30784, + "year_id": 30794, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30796, + "make_id": 30046, + "model_id": 30784, + "year_id": 30796, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30797, + "make_id": 30046, + "model_id": 30784, + "year_id": 30796, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30798, + "make_id": 30046, + "model_id": 30784, + "year_id": 30798, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30799, + "make_id": 30046, + "model_id": 30784, + "year_id": 30798, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30800, + "make_id": 30046, + "model_id": 30784, + "year_id": 30800, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30801, + "make_id": 30046, + "model_id": 30784, + "year_id": 30800, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30802, + "make_id": 30046, + "model_id": 30784, + "year_id": 30802, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30803, + "make_id": 30046, + "model_id": 30784, + "year_id": 30802, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30804, + "make_id": 30046, + "model_id": 30804, + "year_id": 30804, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30805, + "make_id": 30046, + "model_id": 30805, + "year_id": 30805, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30806, + "make_id": 30046, + "model_id": 30805, + "year_id": 30806, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30807, + "make_id": 30046, + "model_id": 30805, + "year_id": 30807, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30808, + "make_id": 30046, + "model_id": 30808, + "year_id": 30808, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30809, + "make_id": 30046, + "model_id": 30808, + "year_id": 30809, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30810, + "make_id": 30046, + "model_id": 30808, + "year_id": 30810, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30811, + "make_id": 30046, + "model_id": 30811, + "year_id": 30811, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30812, + "make_id": 30046, + "model_id": 30811, + "year_id": 30811, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30813, + "make_id": 30046, + "model_id": 30813, + "year_id": 30813, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30814, + "make_id": 30046, + "model_id": 30813, + "year_id": 30813, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30815, + "make_id": 30046, + "model_id": 30815, + "year_id": 30815, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30816, + "make_id": 30046, + "model_id": 30815, + "year_id": 30815, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30817, + "make_id": 30046, + "model_id": 30817, + "year_id": 30817, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Manual" + }, + { + "id": 30818, + "make_id": 30046, + "model_id": 30817, + "year_id": 30817, + "cylinders": 6, + "displacement": 3.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30819, + "make_id": 30046, + "model_id": 30819, + "year_id": 30819, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30820, + "make_id": 30046, + "model_id": 30819, + "year_id": 30820, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30821, + "make_id": 30046, + "model_id": 30819, + "year_id": 30821, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30822, + "make_id": 30046, + "model_id": 30819, + "year_id": 30822, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30823, + "make_id": 30046, + "model_id": 30819, + "year_id": 30823, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30824, + "make_id": 30046, + "model_id": 30819, + "year_id": 30824, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30825, + "make_id": 30046, + "model_id": 30825, + "year_id": 30825, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30826, + "make_id": 30046, + "model_id": 30825, + "year_id": 30826, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30827, + "make_id": 30046, + "model_id": 30825, + "year_id": 30827, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30828, + "make_id": 30046, + "model_id": 30825, + "year_id": 30828, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30829, + "make_id": 30046, + "model_id": 30825, + "year_id": 30829, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30830, + "make_id": 30046, + "model_id": 30825, + "year_id": 30830, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30831, + "make_id": 30046, + "model_id": 30831, + "year_id": 30831, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30832, + "make_id": 30046, + "model_id": 30831, + "year_id": 30832, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30833, + "make_id": 30046, + "model_id": 30831, + "year_id": 30833, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30834, + "make_id": 30046, + "model_id": 30831, + "year_id": 30834, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30835, + "make_id": 30046, + "model_id": 30831, + "year_id": 30835, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30836, + "make_id": 30046, + "model_id": 30831, + "year_id": 30836, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30837, + "make_id": 30046, + "model_id": 30831, + "year_id": 30837, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30838, + "make_id": 30046, + "model_id": 30838, + "year_id": 30838, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30839, + "make_id": 30046, + "model_id": 30838, + "year_id": 30839, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30840, + "make_id": 30046, + "model_id": 30838, + "year_id": 30840, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30841, + "make_id": 30046, + "model_id": 30841, + "year_id": 30841, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30842, + "make_id": 30046, + "model_id": 30841, + "year_id": 30842, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30843, + "make_id": 30046, + "model_id": 30841, + "year_id": 30843, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30844, + "make_id": 30046, + "model_id": 30841, + "year_id": 30844, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30845, + "make_id": 30046, + "model_id": 30845, + "year_id": 30845, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30846, + "make_id": 30046, + "model_id": 30845, + "year_id": 30846, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30847, + "make_id": 30046, + "model_id": 30845, + "year_id": 30847, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30848, + "make_id": 30046, + "model_id": 30845, + "year_id": 30848, + "cylinders": 8, + "displacement": 4.8, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30849, + "make_id": 30046, + "model_id": 30845, + "year_id": 30849, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30850, + "make_id": 30046, + "model_id": 30845, + "year_id": 30850, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30851, + "make_id": 30046, + "model_id": 30845, + "year_id": 30851, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30852, + "make_id": 30046, + "model_id": 30852, + "year_id": 30852, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automated Manual" + }, + { + "id": 30853, + "make_id": 30046, + "model_id": 30852, + "year_id": 30853, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automated Manual" + }, + { + "id": 30854, + "make_id": 30046, + "model_id": 30852, + "year_id": 30854, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automated Manual" + }, + { + "id": 30855, + "make_id": 30046, + "model_id": 30855, + "year_id": 30855, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30856, + "make_id": 30046, + "model_id": 30855, + "year_id": 30856, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30857, + "make_id": 30046, + "model_id": 30857, + "year_id": 30857, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30858, + "make_id": 30046, + "model_id": 30857, + "year_id": 30858, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30859, + "make_id": 30046, + "model_id": 30857, + "year_id": 30859, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30860, + "make_id": 30046, + "model_id": 30857, + "year_id": 30860, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30861, + "make_id": 30046, + "model_id": 30857, + "year_id": 30861, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30862, + "make_id": 30046, + "model_id": 30857, + "year_id": 30862, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30863, + "make_id": 30046, + "model_id": 30857, + "year_id": 30863, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30864, + "make_id": 30046, + "model_id": 30864, + "year_id": 30864, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30865, + "make_id": 30046, + "model_id": 30864, + "year_id": 30865, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30866, + "make_id": 30046, + "model_id": 30864, + "year_id": 30866, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30867, + "make_id": 30046, + "model_id": 30867, + "year_id": 30867, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30868, + "make_id": 30046, + "model_id": 30867, + "year_id": 30868, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automatic" + }, + { + "id": 30869, + "make_id": 30046, + "model_id": 30867, + "year_id": 30869, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30870, + "make_id": 30046, + "model_id": 30867, + "year_id": 30870, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30871, + "make_id": 30046, + "model_id": 30867, + "year_id": 30871, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30872, + "make_id": 30046, + "model_id": 30872, + "year_id": 30872, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30873, + "make_id": 30046, + "model_id": 30872, + "year_id": 30873, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30874, + "make_id": 30046, + "model_id": 30872, + "year_id": 30874, + "cylinders": 8, + "displacement": 4.8, + "drive": "All-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 30875, + "make_id": 30046, + "model_id": 30875, + "year_id": 30875, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30876, + "make_id": 30046, + "model_id": 30875, + "year_id": 30875, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30877, + "make_id": 30046, + "model_id": 30875, + "year_id": 30877, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30878, + "make_id": 30046, + "model_id": 30875, + "year_id": 30877, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30879, + "make_id": 30046, + "model_id": 30875, + "year_id": 30879, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30880, + "make_id": 30046, + "model_id": 30875, + "year_id": 30879, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30881, + "make_id": 30046, + "model_id": 30881, + "year_id": 30881, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30882, + "make_id": 30046, + "model_id": 30881, + "year_id": 30881, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30883, + "make_id": 30046, + "model_id": 30881, + "year_id": 30883, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30884, + "make_id": 30046, + "model_id": 30881, + "year_id": 30884, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30885, + "make_id": 30046, + "model_id": 30881, + "year_id": 30884, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30886, + "make_id": 30046, + "model_id": 30886, + "year_id": 30886, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30887, + "make_id": 30046, + "model_id": 30886, + "year_id": 30886, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30888, + "make_id": 30046, + "model_id": 30888, + "year_id": 30888, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30889, + "make_id": 30046, + "model_id": 30889, + "year_id": 30889, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30890, + "make_id": 30046, + "model_id": 30890, + "year_id": 30890, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30891, + "make_id": 30046, + "model_id": 30890, + "year_id": 30890, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30892, + "make_id": 30046, + "model_id": 30892, + "year_id": 30892, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30893, + "make_id": 30046, + "model_id": 30892, + "year_id": 30892, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30894, + "make_id": 30046, + "model_id": 30892, + "year_id": 30894, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30895, + "make_id": 30046, + "model_id": 30892, + "year_id": 30894, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30896, + "make_id": 30046, + "model_id": 30896, + "year_id": 30896, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30897, + "make_id": 30046, + "model_id": 30896, + "year_id": 30896, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30898, + "make_id": 30046, + "model_id": 30896, + "year_id": 30898, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30899, + "make_id": 30046, + "model_id": 30896, + "year_id": 30898, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30900, + "make_id": 30046, + "model_id": 30900, + "year_id": 30900, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30901, + "make_id": 30046, + "model_id": 30900, + "year_id": 30900, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30902, + "make_id": 30046, + "model_id": 30900, + "year_id": 30902, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30903, + "make_id": 30046, + "model_id": 30900, + "year_id": 30902, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30904, + "make_id": 30046, + "model_id": 30904, + "year_id": 30904, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30905, + "make_id": 30046, + "model_id": 30904, + "year_id": 30904, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30906, + "make_id": 30046, + "model_id": 30906, + "year_id": 30906, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30907, + "make_id": 30046, + "model_id": 30906, + "year_id": 30906, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30908, + "make_id": 30046, + "model_id": 30906, + "year_id": 30908, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30909, + "make_id": 30046, + "model_id": 30906, + "year_id": 30908, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30910, + "make_id": 30046, + "model_id": 30910, + "year_id": 30910, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30911, + "make_id": 30046, + "model_id": 30910, + "year_id": 30910, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30912, + "make_id": 30046, + "model_id": 30912, + "year_id": 30912, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30913, + "make_id": 30046, + "model_id": 30913, + "year_id": 30913, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 30914, + "make_id": 30046, + "model_id": 30913, + "year_id": 30913, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 30915, + "make_id": 30915, + "model_id": 30915, + "year_id": 30915, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30916, + "make_id": 30915, + "model_id": 30915, + "year_id": 30916, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30917, + "make_id": 30917, + "model_id": 30917, + "year_id": 30917, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30918, + "make_id": 30918, + "model_id": 30918, + "year_id": 30918, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30919, + "make_id": 30918, + "model_id": 30918, + "year_id": 30918, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30920, + "make_id": 30918, + "model_id": 30918, + "year_id": 30918, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30921, + "make_id": 30918, + "model_id": 30918, + "year_id": 30918, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30922, + "make_id": 30918, + "model_id": 30918, + "year_id": 30918, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30923, + "make_id": 30918, + "model_id": 30918, + "year_id": 30918, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30924, + "make_id": 30918, + "model_id": 30918, + "year_id": 30918, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30925, + "make_id": 30918, + "model_id": 30918, + "year_id": 30918, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30926, + "make_id": 30918, + "model_id": 30918, + "year_id": 30918, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30927, + "make_id": 30918, + "model_id": 30918, + "year_id": 30927, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30928, + "make_id": 30918, + "model_id": 30918, + "year_id": 30927, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30929, + "make_id": 30918, + "model_id": 30918, + "year_id": 30927, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30930, + "make_id": 30918, + "model_id": 30918, + "year_id": 30927, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30931, + "make_id": 30918, + "model_id": 30918, + "year_id": 30927, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30932, + "make_id": 30918, + "model_id": 30918, + "year_id": 30927, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30933, + "make_id": 30918, + "model_id": 30918, + "year_id": 30927, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30934, + "make_id": 30918, + "model_id": 30918, + "year_id": 30927, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30935, + "make_id": 30918, + "model_id": 30918, + "year_id": 30927, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30936, + "make_id": 30918, + "model_id": 30918, + "year_id": 30927, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30937, + "make_id": 30918, + "model_id": 30918, + "year_id": 30937, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30938, + "make_id": 30918, + "model_id": 30918, + "year_id": 30937, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30939, + "make_id": 30918, + "model_id": 30918, + "year_id": 30937, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30940, + "make_id": 30918, + "model_id": 30918, + "year_id": 30937, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30941, + "make_id": 30918, + "model_id": 30918, + "year_id": 30937, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30942, + "make_id": 30918, + "model_id": 30918, + "year_id": 30937, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30943, + "make_id": 30918, + "model_id": 30918, + "year_id": 30937, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30944, + "make_id": 30918, + "model_id": 30918, + "year_id": 30937, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30945, + "make_id": 30918, + "model_id": 30918, + "year_id": 30937, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30946, + "make_id": 30918, + "model_id": 30918, + "year_id": 30937, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30947, + "make_id": 30918, + "model_id": 30918, + "year_id": 30947, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30948, + "make_id": 30918, + "model_id": 30918, + "year_id": 30947, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30949, + "make_id": 30918, + "model_id": 30918, + "year_id": 30947, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30950, + "make_id": 30918, + "model_id": 30918, + "year_id": 30947, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30951, + "make_id": 30918, + "model_id": 30918, + "year_id": 30947, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30952, + "make_id": 30918, + "model_id": 30918, + "year_id": 30947, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30953, + "make_id": 30918, + "model_id": 30918, + "year_id": 30947, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30954, + "make_id": 30918, + "model_id": 30918, + "year_id": 30947, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30955, + "make_id": 30918, + "model_id": 30955, + "year_id": 30955, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30956, + "make_id": 30918, + "model_id": 30955, + "year_id": 30956, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30957, + "make_id": 30918, + "model_id": 30955, + "year_id": 30957, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30958, + "make_id": 30918, + "model_id": 30955, + "year_id": 30957, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30959, + "make_id": 30918, + "model_id": 30955, + "year_id": 30959, + "cylinders": 6, + "displacement": 3.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30960, + "make_id": 30918, + "model_id": 30955, + "year_id": 30959, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 30961, + "make_id": 30918, + "model_id": 30961, + "year_id": 30961, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30962, + "make_id": 30918, + "model_id": 30961, + "year_id": 30962, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30963, + "make_id": 30918, + "model_id": 30961, + "year_id": 30962, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30964, + "make_id": 30918, + "model_id": 30964, + "year_id": 30964, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30965, + "make_id": 30918, + "model_id": 30965, + "year_id": 30965, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30966, + "make_id": 30918, + "model_id": 30965, + "year_id": 30965, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 30967, + "make_id": 30918, + "model_id": 30967, + "year_id": 30967, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 30968, + "make_id": 30918, + "model_id": 30967, + "year_id": 30968, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 30969, + "make_id": 30918, + "model_id": 30967, + "year_id": 30969, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "9-Speed Automatic" + }, + { + "id": 30970, + "make_id": 30970, + "model_id": 30970, + "year_id": 30970, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30971, + "make_id": 30970, + "model_id": 30970, + "year_id": 30971, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30972, + "make_id": 30972, + "model_id": 30972, + "year_id": 30972, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 30973, + "make_id": 30972, + "model_id": 30972, + "year_id": 30972, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30974, + "make_id": 30972, + "model_id": 30972, + "year_id": 30972, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 30975, + "make_id": 30972, + "model_id": 30972, + "year_id": 30972, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30976, + "make_id": 30972, + "model_id": 30976, + "year_id": 30976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30977, + "make_id": 30972, + "model_id": 30976, + "year_id": 30976, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30978, + "make_id": 30972, + "model_id": 30978, + "year_id": 30978, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30979, + "make_id": 30972, + "model_id": 30978, + "year_id": 30978, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30980, + "make_id": 30972, + "model_id": 30980, + "year_id": 30980, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30981, + "make_id": 30972, + "model_id": 30980, + "year_id": 30980, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 30982, + "make_id": 30972, + "model_id": 30980, + "year_id": 30980, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 30983, + "make_id": 30972, + "model_id": 30980, + "year_id": 30980, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30984, + "make_id": 30972, + "model_id": 30980, + "year_id": 30980, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30985, + "make_id": 30972, + "model_id": 30980, + "year_id": 30980, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30986, + "make_id": 30972, + "model_id": 30986, + "year_id": 30986, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30987, + "make_id": 30972, + "model_id": 30986, + "year_id": 30986, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30988, + "make_id": 30972, + "model_id": 30986, + "year_id": 30988, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 30989, + "make_id": 30972, + "model_id": 30986, + "year_id": 30988, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 30990, + "make_id": 30972, + "model_id": 30990, + "year_id": 30990, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 30991, + "make_id": 30972, + "model_id": 30990, + "year_id": 30990, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 30992, + "make_id": 30972, + "model_id": 30990, + "year_id": 30990, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30993, + "make_id": 30972, + "model_id": 30990, + "year_id": 30990, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 30994, + "make_id": 30972, + "model_id": 30990, + "year_id": 30990, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 30995, + "make_id": 30972, + "model_id": 30990, + "year_id": 30990, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 30996, + "make_id": 30972, + "model_id": 30990, + "year_id": 30990, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 30997, + "make_id": 30972, + "model_id": 30990, + "year_id": 30990, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30998, + "make_id": 30972, + "model_id": 30990, + "year_id": 30990, + "cylinders": 4, + "displacement": 1.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 30999, + "make_id": 30972, + "model_id": 30990, + "year_id": 30999, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31000, + "make_id": 30972, + "model_id": 30990, + "year_id": 30999, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 31001, + "make_id": 30972, + "model_id": 30990, + "year_id": 30999, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 31002, + "make_id": 30972, + "model_id": 30990, + "year_id": 30999, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31003, + "make_id": 30972, + "model_id": 30990, + "year_id": 30999, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31004, + "make_id": 30972, + "model_id": 30990, + "year_id": 30999, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31005, + "make_id": 30972, + "model_id": 30990, + "year_id": 31005, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31006, + "make_id": 30972, + "model_id": 30990, + "year_id": 31005, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 31007, + "make_id": 30972, + "model_id": 30990, + "year_id": 31005, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 31008, + "make_id": 30972, + "model_id": 30990, + "year_id": 31005, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31009, + "make_id": 30972, + "model_id": 30990, + "year_id": 31005, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31010, + "make_id": 30972, + "model_id": 30990, + "year_id": 31005, + "cylinders": 4, + "displacement": 1.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31011, + "make_id": 30972, + "model_id": 31011, + "year_id": 31011, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 31012, + "make_id": 30972, + "model_id": 31011, + "year_id": 31011, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31013, + "make_id": 30972, + "model_id": 31011, + "year_id": 31011, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 31014, + "make_id": 30972, + "model_id": 31011, + "year_id": 31011, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 31015, + "make_id": 30972, + "model_id": 31011, + "year_id": 31011, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31016, + "make_id": 30972, + "model_id": 31011, + "year_id": 31011, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 31017, + "make_id": 30972, + "model_id": 31011, + "year_id": 31017, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31018, + "make_id": 30972, + "model_id": 31011, + "year_id": 31017, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31019, + "make_id": 30972, + "model_id": 31011, + "year_id": 31017, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31020, + "make_id": 30972, + "model_id": 31011, + "year_id": 31020, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31021, + "make_id": 30972, + "model_id": 31011, + "year_id": 31020, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31022, + "make_id": 30972, + "model_id": 31022, + "year_id": 31022, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31023, + "make_id": 30972, + "model_id": 31023, + "year_id": 31023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31024, + "make_id": 30972, + "model_id": 31024, + "year_id": 31024, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31025, + "make_id": 30972, + "model_id": 31024, + "year_id": 31024, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 31026, + "make_id": 30972, + "model_id": 31024, + "year_id": 31024, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31027, + "make_id": 30972, + "model_id": 31024, + "year_id": 31024, + "cylinders": 4, + "displacement": 2.2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 31028, + "make_id": 31028, + "model_id": 31028, + "year_id": 31028, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31029, + "make_id": 31028, + "model_id": 31028, + "year_id": 31029, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31030, + "make_id": 31028, + "model_id": 31030, + "year_id": 31030, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31031, + "make_id": 31028, + "model_id": 31030, + "year_id": 31030, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31032, + "make_id": 31028, + "model_id": 31032, + "year_id": 31032, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31033, + "make_id": 31028, + "model_id": 31032, + "year_id": 31033, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31034, + "make_id": 31028, + "model_id": 31032, + "year_id": 31034, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31035, + "make_id": 31028, + "model_id": 31035, + "year_id": 31035, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31036, + "make_id": 31028, + "model_id": 31036, + "year_id": 31036, + "cylinders": 8, + "displacement": 6.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31037, + "make_id": 31028, + "model_id": 31036, + "year_id": 31036, + "cylinders": 8, + "displacement": 6.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31038, + "make_id": 31028, + "model_id": 31036, + "year_id": 31038, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31039, + "make_id": 31028, + "model_id": 31036, + "year_id": 31039, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31040, + "make_id": 31028, + "model_id": 31036, + "year_id": 31040, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31041, + "make_id": 31028, + "model_id": 31041, + "year_id": 31041, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31042, + "make_id": 31028, + "model_id": 31041, + "year_id": 31041, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31043, + "make_id": 31028, + "model_id": 31041, + "year_id": 31041, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31044, + "make_id": 31028, + "model_id": 31041, + "year_id": 31044, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31045, + "make_id": 31028, + "model_id": 31041, + "year_id": 31045, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31046, + "make_id": 31028, + "model_id": 31041, + "year_id": 31046, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31047, + "make_id": 31028, + "model_id": 31041, + "year_id": 31047, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31048, + "make_id": 31028, + "model_id": 31041, + "year_id": 31048, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31049, + "make_id": 31028, + "model_id": 31041, + "year_id": 31049, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31050, + "make_id": 31028, + "model_id": 31041, + "year_id": 31050, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31051, + "make_id": 31028, + "model_id": 31041, + "year_id": 31051, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31052, + "make_id": 31028, + "model_id": 31052, + "year_id": 31052, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31053, + "make_id": 31028, + "model_id": 31053, + "year_id": 31053, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31054, + "make_id": 31028, + "model_id": 31053, + "year_id": 31054, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31055, + "make_id": 31028, + "model_id": 31053, + "year_id": 31055, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31056, + "make_id": 31028, + "model_id": 31053, + "year_id": 31056, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31057, + "make_id": 31028, + "model_id": 31053, + "year_id": 31057, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31058, + "make_id": 31028, + "model_id": 31058, + "year_id": 31058, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31059, + "make_id": 31028, + "model_id": 31059, + "year_id": 31059, + "cylinders": 8, + "displacement": 6.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31060, + "make_id": 31028, + "model_id": 31059, + "year_id": 31059, + "cylinders": 8, + "displacement": 6.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31061, + "make_id": 31028, + "model_id": 31059, + "year_id": 31061, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31062, + "make_id": 31028, + "model_id": 31059, + "year_id": 31062, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31063, + "make_id": 31028, + "model_id": 31063, + "year_id": 31063, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31064, + "make_id": 31028, + "model_id": 31063, + "year_id": 31063, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31065, + "make_id": 31028, + "model_id": 31063, + "year_id": 31063, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31066, + "make_id": 31028, + "model_id": 31063, + "year_id": 31066, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31067, + "make_id": 31028, + "model_id": 31063, + "year_id": 31067, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31068, + "make_id": 31028, + "model_id": 31068, + "year_id": 31068, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31069, + "make_id": 31028, + "model_id": 31069, + "year_id": 31069, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31070, + "make_id": 31028, + "model_id": 31069, + "year_id": 31070, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31071, + "make_id": 31028, + "model_id": 31071, + "year_id": 31071, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31072, + "make_id": 31028, + "model_id": 31071, + "year_id": 31072, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31073, + "make_id": 31028, + "model_id": 31071, + "year_id": 31073, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31074, + "make_id": 31028, + "model_id": 31071, + "year_id": 31074, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31075, + "make_id": 31028, + "model_id": 31075, + "year_id": 31075, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31076, + "make_id": 31028, + "model_id": 31076, + "year_id": 31076, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31077, + "make_id": 31028, + "model_id": 31077, + "year_id": 31077, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31078, + "make_id": 31028, + "model_id": 31078, + "year_id": 31078, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31079, + "make_id": 31028, + "model_id": 31078, + "year_id": 31078, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31080, + "make_id": 31028, + "model_id": 31078, + "year_id": 31078, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31081, + "make_id": 31028, + "model_id": 31078, + "year_id": 31081, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31082, + "make_id": 31028, + "model_id": 31078, + "year_id": 31082, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31083, + "make_id": 31028, + "model_id": 31078, + "year_id": 31083, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31084, + "make_id": 31028, + "model_id": 31084, + "year_id": 31084, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31085, + "make_id": 31028, + "model_id": 31085, + "year_id": 31085, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31086, + "make_id": 31028, + "model_id": 31086, + "year_id": 31086, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31087, + "make_id": 31028, + "model_id": 31087, + "year_id": 31087, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31088, + "make_id": 31028, + "model_id": 31087, + "year_id": 31088, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31089, + "make_id": 31028, + "model_id": 31087, + "year_id": 31089, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31090, + "make_id": 31028, + "model_id": 31087, + "year_id": 31090, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31091, + "make_id": 31028, + "model_id": 31087, + "year_id": 31091, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31092, + "make_id": 31028, + "model_id": 31087, + "year_id": 31092, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31093, + "make_id": 31028, + "model_id": 31087, + "year_id": 31093, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31094, + "make_id": 31028, + "model_id": 31094, + "year_id": 31094, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31095, + "make_id": 31028, + "model_id": 31094, + "year_id": 31095, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31096, + "make_id": 31028, + "model_id": 31094, + "year_id": 31096, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31097, + "make_id": 31028, + "model_id": 31094, + "year_id": 31097, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31098, + "make_id": 31028, + "model_id": 31094, + "year_id": 31098, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31099, + "make_id": 31028, + "model_id": 31099, + "year_id": 31099, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31100, + "make_id": 31028, + "model_id": 31099, + "year_id": 31100, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31101, + "make_id": 31028, + "model_id": 31101, + "year_id": 31101, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31102, + "make_id": 31028, + "model_id": 31101, + "year_id": 31102, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31103, + "make_id": 31028, + "model_id": 31101, + "year_id": 31103, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31104, + "make_id": 31028, + "model_id": 31104, + "year_id": 31104, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31105, + "make_id": 31028, + "model_id": 31104, + "year_id": 31105, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31106, + "make_id": 31028, + "model_id": 31104, + "year_id": 31106, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31107, + "make_id": 31028, + "model_id": 31104, + "year_id": 31107, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31108, + "make_id": 31028, + "model_id": 31104, + "year_id": 31108, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31109, + "make_id": 31028, + "model_id": 31104, + "year_id": 31109, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31110, + "make_id": 31028, + "model_id": 31104, + "year_id": 31110, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31111, + "make_id": 31028, + "model_id": 31104, + "year_id": 31111, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31112, + "make_id": 31028, + "model_id": 31104, + "year_id": 31112, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31113, + "make_id": 31028, + "model_id": 31104, + "year_id": 31113, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31114, + "make_id": 31028, + "model_id": 31104, + "year_id": 31114, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31115, + "make_id": 31028, + "model_id": 31104, + "year_id": 31115, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31116, + "make_id": 31028, + "model_id": 31104, + "year_id": 31116, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31117, + "make_id": 31028, + "model_id": 31104, + "year_id": 31117, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31118, + "make_id": 31028, + "model_id": 31118, + "year_id": 31118, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31119, + "make_id": 31028, + "model_id": 31118, + "year_id": 31119, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31120, + "make_id": 31028, + "model_id": 31118, + "year_id": 31120, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31121, + "make_id": 31028, + "model_id": 31118, + "year_id": 31121, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31122, + "make_id": 31028, + "model_id": 31118, + "year_id": 31122, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31123, + "make_id": 31028, + "model_id": 31118, + "year_id": 31123, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31124, + "make_id": 31028, + "model_id": 31118, + "year_id": 31124, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31125, + "make_id": 31028, + "model_id": 31118, + "year_id": 31125, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31126, + "make_id": 31028, + "model_id": 31118, + "year_id": 31126, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31127, + "make_id": 31028, + "model_id": 31127, + "year_id": 31127, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31128, + "make_id": 31028, + "model_id": 31127, + "year_id": 31128, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31129, + "make_id": 31028, + "model_id": 31127, + "year_id": 31129, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31130, + "make_id": 31028, + "model_id": 31127, + "year_id": 31130, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31131, + "make_id": 31028, + "model_id": 31127, + "year_id": 31131, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31132, + "make_id": 31028, + "model_id": 31127, + "year_id": 31132, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31133, + "make_id": 31028, + "model_id": 31127, + "year_id": 31133, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31134, + "make_id": 31028, + "model_id": 31127, + "year_id": 31134, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31135, + "make_id": 31028, + "model_id": 31127, + "year_id": 31135, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31136, + "make_id": 31028, + "model_id": 31127, + "year_id": 31136, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31137, + "make_id": 31028, + "model_id": 31137, + "year_id": 31137, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31138, + "make_id": 31028, + "model_id": 31137, + "year_id": 31138, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31139, + "make_id": 31028, + "model_id": 31137, + "year_id": 31139, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31140, + "make_id": 31028, + "model_id": 31137, + "year_id": 31140, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31141, + "make_id": 31028, + "model_id": 31137, + "year_id": 31141, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31142, + "make_id": 31028, + "model_id": 31137, + "year_id": 31142, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31143, + "make_id": 31028, + "model_id": 31137, + "year_id": 31143, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31144, + "make_id": 31028, + "model_id": 31137, + "year_id": 31144, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31145, + "make_id": 31028, + "model_id": 31137, + "year_id": 31145, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31146, + "make_id": 31028, + "model_id": 31137, + "year_id": 31146, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31147, + "make_id": 31028, + "model_id": 31137, + "year_id": 31147, + "cylinders": 12, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31148, + "make_id": 31028, + "model_id": 31148, + "year_id": 31148, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31149, + "make_id": 31028, + "model_id": 31149, + "year_id": 31149, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31150, + "make_id": 31028, + "model_id": 31149, + "year_id": 31150, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31151, + "make_id": 31028, + "model_id": 31149, + "year_id": 31151, + "cylinders": 12, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31152, + "make_id": 31028, + "model_id": 31152, + "year_id": 31152, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31153, + "make_id": 31028, + "model_id": 31152, + "year_id": 31153, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31154, + "make_id": 31028, + "model_id": 31152, + "year_id": 31154, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31155, + "make_id": 31028, + "model_id": 31152, + "year_id": 31155, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31156, + "make_id": 31028, + "model_id": 31156, + "year_id": 31156, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31157, + "make_id": 31028, + "model_id": 31157, + "year_id": 31157, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31158, + "make_id": 31028, + "model_id": 31157, + "year_id": 31157, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31159, + "make_id": 31028, + "model_id": 31157, + "year_id": 31157, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31160, + "make_id": 31028, + "model_id": 31157, + "year_id": 31160, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31161, + "make_id": 31028, + "model_id": 31157, + "year_id": 31161, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31162, + "make_id": 31028, + "model_id": 31162, + "year_id": 31162, + "cylinders": 8, + "displacement": 6.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31163, + "make_id": 31028, + "model_id": 31162, + "year_id": 31162, + "cylinders": 8, + "displacement": 6.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31164, + "make_id": 31028, + "model_id": 31162, + "year_id": 31164, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31165, + "make_id": 31028, + "model_id": 31162, + "year_id": 31165, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31166, + "make_id": 31028, + "model_id": 31166, + "year_id": 31166, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31167, + "make_id": 31028, + "model_id": 31166, + "year_id": 31167, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31168, + "make_id": 31028, + "model_id": 31166, + "year_id": 31168, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31169, + "make_id": 31028, + "model_id": 31169, + "year_id": 31169, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31170, + "make_id": 31028, + "model_id": 31170, + "year_id": 31170, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31171, + "make_id": 31028, + "model_id": 31170, + "year_id": 31171, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31172, + "make_id": 31028, + "model_id": 31172, + "year_id": 31172, + "cylinders": 8, + "displacement": 6.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31173, + "make_id": 31028, + "model_id": 31172, + "year_id": 31172, + "cylinders": 8, + "displacement": 6.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31174, + "make_id": 31028, + "model_id": 31172, + "year_id": 31174, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31175, + "make_id": 31028, + "model_id": 31172, + "year_id": 31175, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31176, + "make_id": 31028, + "model_id": 31172, + "year_id": 31176, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31177, + "make_id": 31028, + "model_id": 31172, + "year_id": 31176, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31178, + "make_id": 31028, + "model_id": 31172, + "year_id": 31176, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31179, + "make_id": 31028, + "model_id": 31172, + "year_id": 31179, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31180, + "make_id": 31028, + "model_id": 31172, + "year_id": 31180, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31181, + "make_id": 31028, + "model_id": 31172, + "year_id": 31181, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31182, + "make_id": 31028, + "model_id": 31182, + "year_id": 31182, + "cylinders": 8, + "displacement": 6.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31183, + "make_id": 31028, + "model_id": 31182, + "year_id": 31183, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31184, + "make_id": 31028, + "model_id": 31184, + "year_id": 31184, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31185, + "make_id": 31028, + "model_id": 31185, + "year_id": 31185, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31186, + "make_id": 31028, + "model_id": 31186, + "year_id": 31186, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31187, + "make_id": 31028, + "model_id": 31186, + "year_id": 31187, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31188, + "make_id": 31028, + "model_id": 31186, + "year_id": 31188, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31189, + "make_id": 31028, + "model_id": 31189, + "year_id": 31189, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31190, + "make_id": 31028, + "model_id": 31190, + "year_id": 31190, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31191, + "make_id": 31028, + "model_id": 31190, + "year_id": 31191, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31192, + "make_id": 31028, + "model_id": 31192, + "year_id": 31192, + "cylinders": 8, + "displacement": 6.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31193, + "make_id": 31028, + "model_id": 31192, + "year_id": 31193, + "cylinders": 8, + "displacement": 6.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31194, + "make_id": 31028, + "model_id": 31194, + "year_id": 31194, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31195, + "make_id": 31028, + "model_id": 31194, + "year_id": 31195, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31196, + "make_id": 31028, + "model_id": 31194, + "year_id": 31196, + "cylinders": 12, + "displacement": 6.6, + "drive": "Rear-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 31197, + "make_id": 31197, + "model_id": 31197, + "year_id": 31197, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31198, + "make_id": 31197, + "model_id": 31198, + "year_id": 31198, + "cylinders": 8, + "displacement": 6.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31199, + "make_id": 31197, + "model_id": 31198, + "year_id": 31198, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31200, + "make_id": 31197, + "model_id": 31198, + "year_id": 31198, + "cylinders": 8, + "displacement": 6.2, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31201, + "make_id": 31197, + "model_id": 31198, + "year_id": 31198, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31202, + "make_id": 31197, + "model_id": 31198, + "year_id": 31202, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31203, + "make_id": 31197, + "model_id": 31198, + "year_id": 31202, + "cylinders": 8, + "displacement": 5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31204, + "make_id": 31197, + "model_id": 31204, + "year_id": 31204, + "cylinders": 8, + "displacement": 6.2, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31205, + "make_id": 31197, + "model_id": 31205, + "year_id": 31205, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31206, + "make_id": 31197, + "model_id": 31205, + "year_id": 31205, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31207, + "make_id": 31197, + "model_id": 31207, + "year_id": 31207, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31208, + "make_id": 31197, + "model_id": 31207, + "year_id": 31207, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31209, + "make_id": 31197, + "model_id": 31209, + "year_id": 31209, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31210, + "make_id": 31197, + "model_id": 31209, + "year_id": 31209, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31211, + "make_id": 31197, + "model_id": 31211, + "year_id": 31211, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31212, + "make_id": 31197, + "model_id": 31211, + "year_id": 31211, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31213, + "make_id": 31197, + "model_id": 31211, + "year_id": 31213, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31214, + "make_id": 31197, + "model_id": 31211, + "year_id": 31213, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31215, + "make_id": 31197, + "model_id": 31215, + "year_id": 31215, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31216, + "make_id": 31197, + "model_id": 31215, + "year_id": 31215, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31217, + "make_id": 31197, + "model_id": 31215, + "year_id": 31217, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31218, + "make_id": 31197, + "model_id": 31215, + "year_id": 31217, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31219, + "make_id": 31197, + "model_id": 31219, + "year_id": 31219, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31220, + "make_id": 31197, + "model_id": 31219, + "year_id": 31219, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31221, + "make_id": 31197, + "model_id": 31219, + "year_id": 31221, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31222, + "make_id": 31197, + "model_id": 31219, + "year_id": 31221, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31223, + "make_id": 31197, + "model_id": 31223, + "year_id": 31223, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31224, + "make_id": 31197, + "model_id": 31223, + "year_id": 31223, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31225, + "make_id": 31197, + "model_id": 31223, + "year_id": 31225, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31226, + "make_id": 31197, + "model_id": 31223, + "year_id": 31225, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31227, + "make_id": 31197, + "model_id": 31223, + "year_id": 31227, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31228, + "make_id": 31197, + "model_id": 31223, + "year_id": 31227, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31229, + "make_id": 31197, + "model_id": 31223, + "year_id": 31229, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31230, + "make_id": 31197, + "model_id": 31223, + "year_id": 31230, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31231, + "make_id": 31197, + "model_id": 31223, + "year_id": 31231, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31232, + "make_id": 31197, + "model_id": 31223, + "year_id": 31232, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31233, + "make_id": 31197, + "model_id": 31223, + "year_id": 31232, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31234, + "make_id": 31197, + "model_id": 31223, + "year_id": 31234, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31235, + "make_id": 31197, + "model_id": 31223, + "year_id": 31234, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31236, + "make_id": 31197, + "model_id": 31223, + "year_id": 31236, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31237, + "make_id": 31197, + "model_id": 31223, + "year_id": 31236, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31238, + "make_id": 31197, + "model_id": 31223, + "year_id": 31238, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31239, + "make_id": 31197, + "model_id": 31223, + "year_id": 31239, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31240, + "make_id": 31197, + "model_id": 31223, + "year_id": 31239, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31241, + "make_id": 31197, + "model_id": 31223, + "year_id": 31241, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31242, + "make_id": 31197, + "model_id": 31223, + "year_id": 31241, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31243, + "make_id": 31197, + "model_id": 31223, + "year_id": 31243, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31244, + "make_id": 31197, + "model_id": 31223, + "year_id": 31243, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31245, + "make_id": 31197, + "model_id": 31223, + "year_id": 31245, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31246, + "make_id": 31197, + "model_id": 31223, + "year_id": 31245, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31247, + "make_id": 31197, + "model_id": 31223, + "year_id": 31247, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31248, + "make_id": 31197, + "model_id": 31223, + "year_id": 31247, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31249, + "make_id": 31197, + "model_id": 31249, + "year_id": 31249, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31250, + "make_id": 31250, + "model_id": 31250, + "year_id": 31250, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31251, + "make_id": 31250, + "model_id": 31250, + "year_id": 31250, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31252, + "make_id": 31250, + "model_id": 31250, + "year_id": 31252, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31253, + "make_id": 31253, + "model_id": 31253, + "year_id": 31253, + "cylinders": 8, + "displacement": 6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31254, + "make_id": 31254, + "model_id": 31254, + "year_id": 31254, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31255, + "make_id": 31254, + "model_id": 31254, + "year_id": 31254, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31256, + "make_id": 31254, + "model_id": 31254, + "year_id": 31254, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 31257, + "make_id": 31254, + "model_id": 31254, + "year_id": 31254, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 31258, + "make_id": 31254, + "model_id": 31254, + "year_id": 31254, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31259, + "make_id": 31254, + "model_id": 31254, + "year_id": 31254, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 31260, + "make_id": 31254, + "model_id": 31254, + "year_id": 31254, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 31261, + "make_id": 31254, + "model_id": 31254, + "year_id": 31254, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 31262, + "make_id": 31254, + "model_id": 31254, + "year_id": 31262, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31263, + "make_id": 31254, + "model_id": 31254, + "year_id": 31262, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31264, + "make_id": 31254, + "model_id": 31254, + "year_id": 31262, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31265, + "make_id": 31254, + "model_id": 31254, + "year_id": 31262, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31266, + "make_id": 31254, + "model_id": 31254, + "year_id": 31266, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31267, + "make_id": 31254, + "model_id": 31254, + "year_id": 31266, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31268, + "make_id": 31254, + "model_id": 31254, + "year_id": 31266, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31269, + "make_id": 31254, + "model_id": 31254, + "year_id": 31266, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31270, + "make_id": 31254, + "model_id": 31254, + "year_id": 31266, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31271, + "make_id": 31254, + "model_id": 31254, + "year_id": 31271, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31272, + "make_id": 31254, + "model_id": 31254, + "year_id": 31271, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31273, + "make_id": 31254, + "model_id": 31254, + "year_id": 31271, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31274, + "make_id": 31254, + "model_id": 31254, + "year_id": 31271, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31275, + "make_id": 31254, + "model_id": 31254, + "year_id": 31271, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31276, + "make_id": 31254, + "model_id": 31254, + "year_id": 31271, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31277, + "make_id": 31254, + "model_id": 31254, + "year_id": 31271, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31278, + "make_id": 31254, + "model_id": 31254, + "year_id": 31278, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31279, + "make_id": 31254, + "model_id": 31254, + "year_id": 31278, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31280, + "make_id": 31254, + "model_id": 31254, + "year_id": 31278, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31281, + "make_id": 31254, + "model_id": 31254, + "year_id": 31278, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31282, + "make_id": 31254, + "model_id": 31254, + "year_id": 31278, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31283, + "make_id": 31254, + "model_id": 31254, + "year_id": 31278, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31284, + "make_id": 31254, + "model_id": 31254, + "year_id": 31278, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31285, + "make_id": 31254, + "model_id": 31254, + "year_id": 31285, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31286, + "make_id": 31254, + "model_id": 31254, + "year_id": 31285, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31287, + "make_id": 31254, + "model_id": 31254, + "year_id": 31285, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31288, + "make_id": 31254, + "model_id": 31254, + "year_id": 31285, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31289, + "make_id": 31254, + "model_id": 31254, + "year_id": 31285, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31290, + "make_id": 31254, + "model_id": 31254, + "year_id": 31290, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31291, + "make_id": 31254, + "model_id": 31254, + "year_id": 31290, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31292, + "make_id": 31254, + "model_id": 31254, + "year_id": 31290, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31293, + "make_id": 31254, + "model_id": 31254, + "year_id": 31290, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31294, + "make_id": 31254, + "model_id": 31254, + "year_id": 31290, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31295, + "make_id": 31254, + "model_id": 31254, + "year_id": 31290, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31296, + "make_id": 31254, + "model_id": 31254, + "year_id": 31296, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31297, + "make_id": 31254, + "model_id": 31254, + "year_id": 31296, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31298, + "make_id": 31254, + "model_id": 31254, + "year_id": 31296, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31299, + "make_id": 31254, + "model_id": 31254, + "year_id": 31296, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31300, + "make_id": 31254, + "model_id": 31254, + "year_id": 31296, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31301, + "make_id": 31254, + "model_id": 31254, + "year_id": 31301, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31302, + "make_id": 31254, + "model_id": 31254, + "year_id": 31301, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31303, + "make_id": 31254, + "model_id": 31254, + "year_id": 31301, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31304, + "make_id": 31254, + "model_id": 31254, + "year_id": 31301, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31305, + "make_id": 31254, + "model_id": 31254, + "year_id": 31305, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31306, + "make_id": 31254, + "model_id": 31254, + "year_id": 31305, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31307, + "make_id": 31254, + "model_id": 31254, + "year_id": 31305, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31308, + "make_id": 31254, + "model_id": 31254, + "year_id": 31305, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31309, + "make_id": 31254, + "model_id": 31254, + "year_id": 31305, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31310, + "make_id": 31254, + "model_id": 31254, + "year_id": 31310, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31311, + "make_id": 31254, + "model_id": 31254, + "year_id": 31310, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31312, + "make_id": 31254, + "model_id": 31254, + "year_id": 31310, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31313, + "make_id": 31254, + "model_id": 31254, + "year_id": 31310, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31314, + "make_id": 31254, + "model_id": 31254, + "year_id": 31314, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31315, + "make_id": 31254, + "model_id": 31254, + "year_id": 31314, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31316, + "make_id": 31254, + "model_id": 31254, + "year_id": 31314, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31317, + "make_id": 31254, + "model_id": 31254, + "year_id": 31314, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31318, + "make_id": 31254, + "model_id": 31254, + "year_id": 31314, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31319, + "make_id": 31254, + "model_id": 31254, + "year_id": 31319, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31320, + "make_id": 31254, + "model_id": 31254, + "year_id": 31319, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31321, + "make_id": 31254, + "model_id": 31254, + "year_id": 31319, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31322, + "make_id": 31254, + "model_id": 31254, + "year_id": 31319, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31323, + "make_id": 31254, + "model_id": 31254, + "year_id": 31319, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31324, + "make_id": 31254, + "model_id": 31254, + "year_id": 31324, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31325, + "make_id": 31254, + "model_id": 31254, + "year_id": 31324, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31326, + "make_id": 31254, + "model_id": 31254, + "year_id": 31324, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31327, + "make_id": 31254, + "model_id": 31254, + "year_id": 31324, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31328, + "make_id": 31254, + "model_id": 31254, + "year_id": 31324, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31329, + "make_id": 31254, + "model_id": 31329, + "year_id": 31329, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31330, + "make_id": 31254, + "model_id": 31329, + "year_id": 31330, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31331, + "make_id": 31254, + "model_id": 31329, + "year_id": 31330, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31332, + "make_id": 31254, + "model_id": 31329, + "year_id": 31330, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31333, + "make_id": 31254, + "model_id": 31329, + "year_id": 31330, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31334, + "make_id": 31254, + "model_id": 31329, + "year_id": 31330, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31335, + "make_id": 31254, + "model_id": 31329, + "year_id": 31335, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31336, + "make_id": 31254, + "model_id": 31329, + "year_id": 31335, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31337, + "make_id": 31254, + "model_id": 31329, + "year_id": 31335, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31338, + "make_id": 31254, + "model_id": 31329, + "year_id": 31335, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31339, + "make_id": 31254, + "model_id": 31329, + "year_id": 31339, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31340, + "make_id": 31254, + "model_id": 31329, + "year_id": 31339, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31341, + "make_id": 31254, + "model_id": 31329, + "year_id": 31339, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31342, + "make_id": 31254, + "model_id": 31329, + "year_id": 31339, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31343, + "make_id": 31254, + "model_id": 31329, + "year_id": 31343, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31344, + "make_id": 31254, + "model_id": 31329, + "year_id": 31343, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31345, + "make_id": 31254, + "model_id": 31329, + "year_id": 31343, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31346, + "make_id": 31254, + "model_id": 31329, + "year_id": 31343, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31347, + "make_id": 31254, + "model_id": 31329, + "year_id": 31343, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31348, + "make_id": 31254, + "model_id": 31329, + "year_id": 31343, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31349, + "make_id": 31254, + "model_id": 31329, + "year_id": 31349, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31350, + "make_id": 31254, + "model_id": 31329, + "year_id": 31349, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31351, + "make_id": 31254, + "model_id": 31329, + "year_id": 31349, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31352, + "make_id": 31254, + "model_id": 31329, + "year_id": 31349, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31353, + "make_id": 31254, + "model_id": 31329, + "year_id": 31353, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31354, + "make_id": 31254, + "model_id": 31329, + "year_id": 31353, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31355, + "make_id": 31254, + "model_id": 31329, + "year_id": 31353, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31356, + "make_id": 31254, + "model_id": 31329, + "year_id": 31353, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31357, + "make_id": 31254, + "model_id": 31329, + "year_id": 31357, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31358, + "make_id": 31254, + "model_id": 31329, + "year_id": 31357, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31359, + "make_id": 31254, + "model_id": 31329, + "year_id": 31357, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31360, + "make_id": 31254, + "model_id": 31329, + "year_id": 31357, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31361, + "make_id": 31254, + "model_id": 31329, + "year_id": 31357, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31362, + "make_id": 31254, + "model_id": 31329, + "year_id": 31362, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31363, + "make_id": 31254, + "model_id": 31329, + "year_id": 31362, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31364, + "make_id": 31254, + "model_id": 31329, + "year_id": 31362, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31365, + "make_id": 31254, + "model_id": 31329, + "year_id": 31362, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31366, + "make_id": 31254, + "model_id": 31329, + "year_id": 31362, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31367, + "make_id": 31254, + "model_id": 31329, + "year_id": 31367, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31368, + "make_id": 31254, + "model_id": 31329, + "year_id": 31367, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31369, + "make_id": 31254, + "model_id": 31329, + "year_id": 31367, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31370, + "make_id": 31254, + "model_id": 31329, + "year_id": 31367, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31371, + "make_id": 31254, + "model_id": 31329, + "year_id": 31367, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31372, + "make_id": 31254, + "model_id": 31329, + "year_id": 31367, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31373, + "make_id": 31254, + "model_id": 31329, + "year_id": 31373, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31374, + "make_id": 31254, + "model_id": 31329, + "year_id": 31373, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31375, + "make_id": 31254, + "model_id": 31329, + "year_id": 31373, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31376, + "make_id": 31254, + "model_id": 31329, + "year_id": 31373, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31377, + "make_id": 31254, + "model_id": 31329, + "year_id": 31377, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31378, + "make_id": 31254, + "model_id": 31329, + "year_id": 31377, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31379, + "make_id": 31254, + "model_id": 31329, + "year_id": 31377, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31380, + "make_id": 31254, + "model_id": 31329, + "year_id": 31377, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31381, + "make_id": 31254, + "model_id": 31329, + "year_id": 31377, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31382, + "make_id": 31254, + "model_id": 31329, + "year_id": 31382, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31383, + "make_id": 31254, + "model_id": 31329, + "year_id": 31382, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31384, + "make_id": 31254, + "model_id": 31384, + "year_id": 31384, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31385, + "make_id": 31254, + "model_id": 31384, + "year_id": 31384, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31386, + "make_id": 31254, + "model_id": 31384, + "year_id": 31384, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31387, + "make_id": 31254, + "model_id": 31384, + "year_id": 31384, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31388, + "make_id": 31254, + "model_id": 31388, + "year_id": 31388, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31389, + "make_id": 31254, + "model_id": 31388, + "year_id": 31388, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31390, + "make_id": 31254, + "model_id": 31388, + "year_id": 31388, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31391, + "make_id": 31254, + "model_id": 31388, + "year_id": 31388, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31392, + "make_id": 31254, + "model_id": 31392, + "year_id": 31392, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31393, + "make_id": 31254, + "model_id": 31392, + "year_id": 31392, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31394, + "make_id": 31254, + "model_id": 31392, + "year_id": 31392, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31395, + "make_id": 31254, + "model_id": 31392, + "year_id": 31395, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31396, + "make_id": 31254, + "model_id": 31392, + "year_id": 31395, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31397, + "make_id": 31254, + "model_id": 31392, + "year_id": 31395, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31398, + "make_id": 31254, + "model_id": 31392, + "year_id": 31395, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31399, + "make_id": 31254, + "model_id": 31392, + "year_id": 31399, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31400, + "make_id": 31254, + "model_id": 31392, + "year_id": 31399, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31401, + "make_id": 31254, + "model_id": 31392, + "year_id": 31399, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31402, + "make_id": 31254, + "model_id": 31392, + "year_id": 31399, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31403, + "make_id": 31254, + "model_id": 31392, + "year_id": 31403, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31404, + "make_id": 31254, + "model_id": 31392, + "year_id": 31403, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31405, + "make_id": 31254, + "model_id": 31405, + "year_id": 31405, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31406, + "make_id": 31254, + "model_id": 31405, + "year_id": 31405, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31407, + "make_id": 31254, + "model_id": 31405, + "year_id": 31407, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31408, + "make_id": 31254, + "model_id": 31405, + "year_id": 31407, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31409, + "make_id": 31254, + "model_id": 31405, + "year_id": 31407, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31410, + "make_id": 31254, + "model_id": 31405, + "year_id": 31407, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31411, + "make_id": 31254, + "model_id": 31411, + "year_id": 31411, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31412, + "make_id": 31254, + "model_id": 31411, + "year_id": 31411, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31413, + "make_id": 31254, + "model_id": 31411, + "year_id": 31413, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31414, + "make_id": 31254, + "model_id": 31411, + "year_id": 31413, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31415, + "make_id": 31254, + "model_id": 31411, + "year_id": 31413, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31416, + "make_id": 31254, + "model_id": 31411, + "year_id": 31413, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31417, + "make_id": 31254, + "model_id": 31417, + "year_id": 31417, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31418, + "make_id": 31254, + "model_id": 31417, + "year_id": 31417, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31419, + "make_id": 31254, + "model_id": 31417, + "year_id": 31417, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31420, + "make_id": 31254, + "model_id": 31417, + "year_id": 31420, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31421, + "make_id": 31254, + "model_id": 31417, + "year_id": 31420, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31422, + "make_id": 31254, + "model_id": 31417, + "year_id": 31420, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31423, + "make_id": 31254, + "model_id": 31417, + "year_id": 31420, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31424, + "make_id": 31254, + "model_id": 31417, + "year_id": 31424, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31425, + "make_id": 31254, + "model_id": 31417, + "year_id": 31424, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31426, + "make_id": 31254, + "model_id": 31417, + "year_id": 31424, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31427, + "make_id": 31254, + "model_id": 31417, + "year_id": 31424, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31428, + "make_id": 31254, + "model_id": 31417, + "year_id": 31428, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31429, + "make_id": 31254, + "model_id": 31417, + "year_id": 31428, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31430, + "make_id": 31254, + "model_id": 31417, + "year_id": 31430, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31431, + "make_id": 31254, + "model_id": 31417, + "year_id": 31430, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31432, + "make_id": 31254, + "model_id": 31417, + "year_id": 31432, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31433, + "make_id": 31254, + "model_id": 31417, + "year_id": 31432, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31434, + "make_id": 31254, + "model_id": 31417, + "year_id": 31432, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31435, + "make_id": 31254, + "model_id": 31417, + "year_id": 31435, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31436, + "make_id": 31254, + "model_id": 31417, + "year_id": 31435, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31437, + "make_id": 31254, + "model_id": 31417, + "year_id": 31437, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31438, + "make_id": 31254, + "model_id": 31417, + "year_id": 31437, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31439, + "make_id": 31254, + "model_id": 31417, + "year_id": 31437, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31440, + "make_id": 31254, + "model_id": 31417, + "year_id": 31437, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31441, + "make_id": 31254, + "model_id": 31417, + "year_id": 31441, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31442, + "make_id": 31254, + "model_id": 31417, + "year_id": 31441, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31443, + "make_id": 31254, + "model_id": 31417, + "year_id": 31441, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31444, + "make_id": 31254, + "model_id": 31417, + "year_id": 31441, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31445, + "make_id": 31254, + "model_id": 31417, + "year_id": 31445, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31446, + "make_id": 31254, + "model_id": 31417, + "year_id": 31445, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31447, + "make_id": 31254, + "model_id": 31417, + "year_id": 31445, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31448, + "make_id": 31254, + "model_id": 31417, + "year_id": 31445, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31449, + "make_id": 31254, + "model_id": 31417, + "year_id": 31449, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31450, + "make_id": 31254, + "model_id": 31417, + "year_id": 31449, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31451, + "make_id": 31254, + "model_id": 31417, + "year_id": 31449, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31452, + "make_id": 31254, + "model_id": 31417, + "year_id": 31449, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31453, + "make_id": 31254, + "model_id": 31417, + "year_id": 31453, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31454, + "make_id": 31254, + "model_id": 31417, + "year_id": 31453, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31455, + "make_id": 31254, + "model_id": 31417, + "year_id": 31455, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31456, + "make_id": 31254, + "model_id": 31417, + "year_id": 31455, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31457, + "make_id": 31254, + "model_id": 31417, + "year_id": 31457, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31458, + "make_id": 31254, + "model_id": 31417, + "year_id": 31457, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31459, + "make_id": 31254, + "model_id": 31459, + "year_id": 31459, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31460, + "make_id": 31254, + "model_id": 31459, + "year_id": 31459, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31461, + "make_id": 31254, + "model_id": 31459, + "year_id": 31459, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31462, + "make_id": 31254, + "model_id": 31459, + "year_id": 31462, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31463, + "make_id": 31254, + "model_id": 31459, + "year_id": 31462, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31464, + "make_id": 31254, + "model_id": 31459, + "year_id": 31464, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31465, + "make_id": 31254, + "model_id": 31459, + "year_id": 31464, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31466, + "make_id": 31254, + "model_id": 31466, + "year_id": 31466, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31467, + "make_id": 31254, + "model_id": 31466, + "year_id": 31466, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31468, + "make_id": 31254, + "model_id": 31466, + "year_id": 31466, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31469, + "make_id": 31254, + "model_id": 31466, + "year_id": 31466, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31470, + "make_id": 31254, + "model_id": 31466, + "year_id": 31470, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31471, + "make_id": 31254, + "model_id": 31466, + "year_id": 31470, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31472, + "make_id": 31254, + "model_id": 31466, + "year_id": 31470, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31473, + "make_id": 31254, + "model_id": 31466, + "year_id": 31470, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31474, + "make_id": 31254, + "model_id": 31466, + "year_id": 31470, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31475, + "make_id": 31254, + "model_id": 31466, + "year_id": 31475, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31476, + "make_id": 31254, + "model_id": 31466, + "year_id": 31475, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31477, + "make_id": 31254, + "model_id": 31466, + "year_id": 31475, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31478, + "make_id": 31254, + "model_id": 31466, + "year_id": 31475, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31479, + "make_id": 31254, + "model_id": 31466, + "year_id": 31479, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31480, + "make_id": 31254, + "model_id": 31466, + "year_id": 31479, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31481, + "make_id": 31254, + "model_id": 31466, + "year_id": 31479, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31482, + "make_id": 31254, + "model_id": 31466, + "year_id": 31479, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31483, + "make_id": 31254, + "model_id": 31466, + "year_id": 31483, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31484, + "make_id": 31254, + "model_id": 31466, + "year_id": 31483, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31485, + "make_id": 31254, + "model_id": 31466, + "year_id": 31483, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31486, + "make_id": 31254, + "model_id": 31466, + "year_id": 31483, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31487, + "make_id": 31254, + "model_id": 31466, + "year_id": 31487, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31488, + "make_id": 31254, + "model_id": 31466, + "year_id": 31487, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31489, + "make_id": 31254, + "model_id": 31466, + "year_id": 31487, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31490, + "make_id": 31254, + "model_id": 31466, + "year_id": 31487, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31491, + "make_id": 31254, + "model_id": 31466, + "year_id": 31491, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31492, + "make_id": 31254, + "model_id": 31466, + "year_id": 31491, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31493, + "make_id": 31254, + "model_id": 31466, + "year_id": 31491, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31494, + "make_id": 31254, + "model_id": 31466, + "year_id": 31491, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31495, + "make_id": 31254, + "model_id": 31466, + "year_id": 31495, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31496, + "make_id": 31254, + "model_id": 31466, + "year_id": 31495, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31497, + "make_id": 31254, + "model_id": 31466, + "year_id": 31497, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31498, + "make_id": 31254, + "model_id": 31466, + "year_id": 31497, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31499, + "make_id": 31254, + "model_id": 31466, + "year_id": 31499, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31500, + "make_id": 31254, + "model_id": 31466, + "year_id": 31499, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31501, + "make_id": 31254, + "model_id": 31501, + "year_id": 31501, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31502, + "make_id": 31254, + "model_id": 31501, + "year_id": 31501, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31503, + "make_id": 31254, + "model_id": 31501, + "year_id": 31501, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31504, + "make_id": 31254, + "model_id": 31501, + "year_id": 31501, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31505, + "make_id": 31254, + "model_id": 31501, + "year_id": 31505, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31506, + "make_id": 31254, + "model_id": 31501, + "year_id": 31505, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31507, + "make_id": 31254, + "model_id": 31501, + "year_id": 31505, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31508, + "make_id": 31254, + "model_id": 31501, + "year_id": 31505, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31509, + "make_id": 31254, + "model_id": 31501, + "year_id": 31509, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31510, + "make_id": 31254, + "model_id": 31501, + "year_id": 31509, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31511, + "make_id": 31254, + "model_id": 31501, + "year_id": 31509, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31512, + "make_id": 31254, + "model_id": 31501, + "year_id": 31509, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31513, + "make_id": 31254, + "model_id": 31501, + "year_id": 31513, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31514, + "make_id": 31254, + "model_id": 31501, + "year_id": 31513, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31515, + "make_id": 31254, + "model_id": 31501, + "year_id": 31513, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31516, + "make_id": 31254, + "model_id": 31501, + "year_id": 31513, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31517, + "make_id": 31254, + "model_id": 31501, + "year_id": 31517, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31518, + "make_id": 31254, + "model_id": 31501, + "year_id": 31517, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31519, + "make_id": 31254, + "model_id": 31501, + "year_id": 31519, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31520, + "make_id": 31254, + "model_id": 31501, + "year_id": 31519, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31521, + "make_id": 31254, + "model_id": 31501, + "year_id": 31521, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31522, + "make_id": 31254, + "model_id": 31501, + "year_id": 31521, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31523, + "make_id": 31254, + "model_id": 31523, + "year_id": 31523, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31524, + "make_id": 31254, + "model_id": 31523, + "year_id": 31524, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31525, + "make_id": 31254, + "model_id": 31523, + "year_id": 31525, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31526, + "make_id": 31254, + "model_id": 31523, + "year_id": 31526, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31527, + "make_id": 31254, + "model_id": 31527, + "year_id": 31527, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31528, + "make_id": 31254, + "model_id": 31527, + "year_id": 31528, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31529, + "make_id": 31254, + "model_id": 31527, + "year_id": 31529, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31530, + "make_id": 31254, + "model_id": 31530, + "year_id": 31530, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31531, + "make_id": 31254, + "model_id": 31530, + "year_id": 31530, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31532, + "make_id": 31254, + "model_id": 31530, + "year_id": 31530, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31533, + "make_id": 31254, + "model_id": 31530, + "year_id": 31533, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31534, + "make_id": 31254, + "model_id": 31530, + "year_id": 31533, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31535, + "make_id": 31254, + "model_id": 31530, + "year_id": 31535, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31536, + "make_id": 31254, + "model_id": 31530, + "year_id": 31535, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31537, + "make_id": 31254, + "model_id": 31537, + "year_id": 31537, + "cylinders": 6, + "displacement": 2.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31538, + "make_id": 31254, + "model_id": 31537, + "year_id": 31537, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31539, + "make_id": 31254, + "model_id": 31537, + "year_id": 31537, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31540, + "make_id": 31254, + "model_id": 31537, + "year_id": 31540, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31541, + "make_id": 31254, + "model_id": 31537, + "year_id": 31540, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31542, + "make_id": 31254, + "model_id": 31537, + "year_id": 31540, + "cylinders": 6, + "displacement": 2.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31543, + "make_id": 31254, + "model_id": 31543, + "year_id": 31543, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31544, + "make_id": 31254, + "model_id": 31543, + "year_id": 31543, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31545, + "make_id": 31254, + "model_id": 31543, + "year_id": 31543, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31546, + "make_id": 31254, + "model_id": 31543, + "year_id": 31546, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31547, + "make_id": 31254, + "model_id": 31543, + "year_id": 31546, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31548, + "make_id": 31254, + "model_id": 31543, + "year_id": 31546, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31549, + "make_id": 31254, + "model_id": 31543, + "year_id": 31546, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31550, + "make_id": 31254, + "model_id": 31543, + "year_id": 31546, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31551, + "make_id": 31254, + "model_id": 31543, + "year_id": 31551, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31552, + "make_id": 31254, + "model_id": 31543, + "year_id": 31551, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31553, + "make_id": 31254, + "model_id": 31543, + "year_id": 31551, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31554, + "make_id": 31254, + "model_id": 31543, + "year_id": 31551, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31555, + "make_id": 31254, + "model_id": 31543, + "year_id": 31551, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31556, + "make_id": 31254, + "model_id": 31543, + "year_id": 31556, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31557, + "make_id": 31254, + "model_id": 31543, + "year_id": 31556, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31558, + "make_id": 31254, + "model_id": 31543, + "year_id": 31556, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31559, + "make_id": 31254, + "model_id": 31543, + "year_id": 31556, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31560, + "make_id": 31254, + "model_id": 31543, + "year_id": 31556, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31561, + "make_id": 31254, + "model_id": 31543, + "year_id": 31561, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31562, + "make_id": 31254, + "model_id": 31543, + "year_id": 31561, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31563, + "make_id": 31254, + "model_id": 31543, + "year_id": 31561, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31564, + "make_id": 31254, + "model_id": 31543, + "year_id": 31561, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31565, + "make_id": 31254, + "model_id": 31543, + "year_id": 31561, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31566, + "make_id": 31254, + "model_id": 31543, + "year_id": 31566, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31567, + "make_id": 31254, + "model_id": 31543, + "year_id": 31566, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31568, + "make_id": 31254, + "model_id": 31543, + "year_id": 31566, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31569, + "make_id": 31254, + "model_id": 31543, + "year_id": 31566, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31570, + "make_id": 31254, + "model_id": 31543, + "year_id": 31570, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31571, + "make_id": 31254, + "model_id": 31543, + "year_id": 31570, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31572, + "make_id": 31254, + "model_id": 31543, + "year_id": 31572, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31573, + "make_id": 31254, + "model_id": 31543, + "year_id": 31572, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31574, + "make_id": 31254, + "model_id": 31574, + "year_id": 31574, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31575, + "make_id": 31254, + "model_id": 31574, + "year_id": 31574, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31576, + "make_id": 31254, + "model_id": 31574, + "year_id": 31576, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31577, + "make_id": 31254, + "model_id": 31574, + "year_id": 31576, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31578, + "make_id": 31254, + "model_id": 31574, + "year_id": 31578, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31579, + "make_id": 31254, + "model_id": 31574, + "year_id": 31578, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31580, + "make_id": 31254, + "model_id": 31574, + "year_id": 31580, + "cylinders": 6, + "displacement": 2.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31581, + "make_id": 31254, + "model_id": 31574, + "year_id": 31581, + "cylinders": 6, + "displacement": 2.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31582, + "make_id": 31254, + "model_id": 31574, + "year_id": 31581, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31583, + "make_id": 31254, + "model_id": 31574, + "year_id": 31581, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31584, + "make_id": 31254, + "model_id": 31574, + "year_id": 31584, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31585, + "make_id": 31254, + "model_id": 31574, + "year_id": 31584, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31586, + "make_id": 31254, + "model_id": 31574, + "year_id": 31584, + "cylinders": 6, + "displacement": 2.8, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31587, + "make_id": 31254, + "model_id": 31587, + "year_id": 31587, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31588, + "make_id": 31254, + "model_id": 31587, + "year_id": 31587, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31589, + "make_id": 31254, + "model_id": 31587, + "year_id": 31589, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31590, + "make_id": 31254, + "model_id": 31587, + "year_id": 31589, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31591, + "make_id": 31254, + "model_id": 31587, + "year_id": 31591, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31592, + "make_id": 31254, + "model_id": 31587, + "year_id": 31591, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31593, + "make_id": 31254, + "model_id": 31587, + "year_id": 31593, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31594, + "make_id": 31254, + "model_id": 31587, + "year_id": 31593, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31595, + "make_id": 31254, + "model_id": 31595, + "year_id": 31595, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31596, + "make_id": 31254, + "model_id": 31595, + "year_id": 31595, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31597, + "make_id": 31254, + "model_id": 31595, + "year_id": 31595, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31598, + "make_id": 31254, + "model_id": 31595, + "year_id": 31598, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31599, + "make_id": 31254, + "model_id": 31595, + "year_id": 31598, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31600, + "make_id": 31254, + "model_id": 31595, + "year_id": 31598, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31601, + "make_id": 31254, + "model_id": 31595, + "year_id": 31598, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31602, + "make_id": 31254, + "model_id": 31595, + "year_id": 31598, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31603, + "make_id": 31254, + "model_id": 31595, + "year_id": 31603, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31604, + "make_id": 31254, + "model_id": 31595, + "year_id": 31603, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31605, + "make_id": 31254, + "model_id": 31595, + "year_id": 31603, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31606, + "make_id": 31254, + "model_id": 31595, + "year_id": 31603, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31607, + "make_id": 31254, + "model_id": 31595, + "year_id": 31603, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31608, + "make_id": 31254, + "model_id": 31595, + "year_id": 31608, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31609, + "make_id": 31254, + "model_id": 31595, + "year_id": 31608, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31610, + "make_id": 31254, + "model_id": 31595, + "year_id": 31608, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31611, + "make_id": 31254, + "model_id": 31595, + "year_id": 31608, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31612, + "make_id": 31254, + "model_id": 31595, + "year_id": 31608, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31613, + "make_id": 31254, + "model_id": 31595, + "year_id": 31613, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31614, + "make_id": 31254, + "model_id": 31595, + "year_id": 31613, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31615, + "make_id": 31254, + "model_id": 31595, + "year_id": 31613, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31616, + "make_id": 31254, + "model_id": 31595, + "year_id": 31613, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31617, + "make_id": 31254, + "model_id": 31595, + "year_id": 31613, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31618, + "make_id": 31254, + "model_id": 31595, + "year_id": 31618, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31619, + "make_id": 31254, + "model_id": 31595, + "year_id": 31618, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31620, + "make_id": 31254, + "model_id": 31595, + "year_id": 31618, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31621, + "make_id": 31254, + "model_id": 31595, + "year_id": 31618, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31622, + "make_id": 31254, + "model_id": 31595, + "year_id": 31618, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31623, + "make_id": 31254, + "model_id": 31595, + "year_id": 31618, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31624, + "make_id": 31254, + "model_id": 31595, + "year_id": 31624, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31625, + "make_id": 31254, + "model_id": 31595, + "year_id": 31624, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31626, + "make_id": 31254, + "model_id": 31626, + "year_id": 31626, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31627, + "make_id": 31254, + "model_id": 31626, + "year_id": 31626, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31628, + "make_id": 31254, + "model_id": 31626, + "year_id": 31628, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31629, + "make_id": 31254, + "model_id": 31626, + "year_id": 31628, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31630, + "make_id": 31254, + "model_id": 31626, + "year_id": 31630, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31631, + "make_id": 31254, + "model_id": 31626, + "year_id": 31630, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31632, + "make_id": 31254, + "model_id": 31626, + "year_id": 31632, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31633, + "make_id": 31254, + "model_id": 31626, + "year_id": 31632, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31634, + "make_id": 31254, + "model_id": 31626, + "year_id": 31632, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31635, + "make_id": 31254, + "model_id": 31626, + "year_id": 31635, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31636, + "make_id": 31254, + "model_id": 31626, + "year_id": 31635, + "cylinders": 8, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31637, + "make_id": 31254, + "model_id": 31626, + "year_id": 31635, + "cylinders": 8, + "displacement": 5.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31638, + "make_id": 31254, + "model_id": 31638, + "year_id": 31638, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31639, + "make_id": 31254, + "model_id": 31638, + "year_id": 31638, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31640, + "make_id": 31254, + "model_id": 31638, + "year_id": 31640, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31641, + "make_id": 31254, + "model_id": 31638, + "year_id": 31640, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31642, + "make_id": 31254, + "model_id": 31638, + "year_id": 31642, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31643, + "make_id": 31254, + "model_id": 31638, + "year_id": 31642, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31644, + "make_id": 31254, + "model_id": 31638, + "year_id": 31644, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31645, + "make_id": 31254, + "model_id": 31638, + "year_id": 31644, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31646, + "make_id": 31254, + "model_id": 31638, + "year_id": 31646, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31647, + "make_id": 31254, + "model_id": 31638, + "year_id": 31646, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31648, + "make_id": 31254, + "model_id": 31638, + "year_id": 31648, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31649, + "make_id": 31254, + "model_id": 31638, + "year_id": 31648, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31650, + "make_id": 31254, + "model_id": 31638, + "year_id": 31648, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31651, + "make_id": 31254, + "model_id": 31638, + "year_id": 31648, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31652, + "make_id": 31254, + "model_id": 31638, + "year_id": 31652, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31653, + "make_id": 31254, + "model_id": 31638, + "year_id": 31652, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31654, + "make_id": 31254, + "model_id": 31638, + "year_id": 31652, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31655, + "make_id": 31254, + "model_id": 31638, + "year_id": 31652, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31656, + "make_id": 31254, + "model_id": 31638, + "year_id": 31652, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31657, + "make_id": 31254, + "model_id": 31638, + "year_id": 31657, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31658, + "make_id": 31254, + "model_id": 31638, + "year_id": 31657, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31659, + "make_id": 31254, + "model_id": 31638, + "year_id": 31657, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31660, + "make_id": 31254, + "model_id": 31638, + "year_id": 31657, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31661, + "make_id": 31254, + "model_id": 31638, + "year_id": 31657, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31662, + "make_id": 31254, + "model_id": 31638, + "year_id": 31662, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31663, + "make_id": 31254, + "model_id": 31638, + "year_id": 31662, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31664, + "make_id": 31254, + "model_id": 31638, + "year_id": 31662, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31665, + "make_id": 31254, + "model_id": 31638, + "year_id": 31662, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31666, + "make_id": 31254, + "model_id": 31638, + "year_id": 31662, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31667, + "make_id": 31254, + "model_id": 31667, + "year_id": 31667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31668, + "make_id": 31254, + "model_id": 31667, + "year_id": 31667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31669, + "make_id": 31254, + "model_id": 31667, + "year_id": 31667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31670, + "make_id": 31254, + "model_id": 31667, + "year_id": 31667, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31671, + "make_id": 31254, + "model_id": 31671, + "year_id": 31671, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31672, + "make_id": 31254, + "model_id": 31671, + "year_id": 31671, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31673, + "make_id": 31254, + "model_id": 31673, + "year_id": 31673, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31674, + "make_id": 31254, + "model_id": 31673, + "year_id": 31673, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31675, + "make_id": 31254, + "model_id": 31675, + "year_id": 31675, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31676, + "make_id": 31254, + "model_id": 31675, + "year_id": 31675, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31677, + "make_id": 31254, + "model_id": 31677, + "year_id": 31677, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31678, + "make_id": 31254, + "model_id": 31677, + "year_id": 31677, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31679, + "make_id": 31254, + "model_id": 31677, + "year_id": 31677, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31680, + "make_id": 31254, + "model_id": 31677, + "year_id": 31677, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31681, + "make_id": 31254, + "model_id": 31677, + "year_id": 31681, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31682, + "make_id": 31254, + "model_id": 31677, + "year_id": 31681, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31683, + "make_id": 31254, + "model_id": 31677, + "year_id": 31681, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31684, + "make_id": 31254, + "model_id": 31677, + "year_id": 31681, + "cylinders": 4, + "displacement": 2.1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 31685, + "make_id": 31254, + "model_id": 31677, + "year_id": 31681, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31686, + "make_id": 31686, + "model_id": 31686, + "year_id": 31686, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31687, + "make_id": 31686, + "model_id": 31687, + "year_id": 31687, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31688, + "make_id": 31686, + "model_id": 31687, + "year_id": 31688, + "cylinders": 8, + "displacement": 5.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31689, + "make_id": 31686, + "model_id": 31689, + "year_id": 31689, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31690, + "make_id": 31686, + "model_id": 31689, + "year_id": 31690, + "cylinders": 8, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31691, + "make_id": 31691, + "model_id": 31691, + "year_id": 31691, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31692, + "make_id": 31691, + "model_id": 31692, + "year_id": 31692, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31693, + "make_id": 31691, + "model_id": 31692, + "year_id": 31692, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31694, + "make_id": 31691, + "model_id": 31692, + "year_id": 31694, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31695, + "make_id": 31691, + "model_id": 31695, + "year_id": 31695, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31696, + "make_id": 31696, + "model_id": 31696, + "year_id": 31696, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31697, + "make_id": 31696, + "model_id": 31696, + "year_id": 31696, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31698, + "make_id": 31696, + "model_id": 31696, + "year_id": 31698, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31699, + "make_id": 31696, + "model_id": 31696, + "year_id": 31698, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31700, + "make_id": 31696, + "model_id": 31700, + "year_id": 31700, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31701, + "make_id": 31696, + "model_id": 31700, + "year_id": 31700, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31702, + "make_id": 31696, + "model_id": 31700, + "year_id": 31702, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31703, + "make_id": 31696, + "model_id": 31700, + "year_id": 31702, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31704, + "make_id": 31696, + "model_id": 31704, + "year_id": 31704, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31705, + "make_id": 31696, + "model_id": 31704, + "year_id": 31704, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31706, + "make_id": 31696, + "model_id": 31704, + "year_id": 31706, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31707, + "make_id": 31696, + "model_id": 31704, + "year_id": 31706, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31708, + "make_id": 31696, + "model_id": 31704, + "year_id": 31706, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31709, + "make_id": 31696, + "model_id": 31704, + "year_id": 31709, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31710, + "make_id": 31696, + "model_id": 31704, + "year_id": 31709, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31711, + "make_id": 31696, + "model_id": 31704, + "year_id": 31711, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31712, + "make_id": 31696, + "model_id": 31704, + "year_id": 31711, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31713, + "make_id": 31696, + "model_id": 31704, + "year_id": 31711, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31714, + "make_id": 31696, + "model_id": 31714, + "year_id": 31714, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31715, + "make_id": 31696, + "model_id": 31714, + "year_id": 31715, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31716, + "make_id": 31696, + "model_id": 31714, + "year_id": 31716, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31717, + "make_id": 31696, + "model_id": 31717, + "year_id": 31717, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31718, + "make_id": 31696, + "model_id": 31717, + "year_id": 31717, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31719, + "make_id": 31696, + "model_id": 31717, + "year_id": 31717, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31720, + "make_id": 31696, + "model_id": 31717, + "year_id": 31720, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31721, + "make_id": 31696, + "model_id": 31717, + "year_id": 31720, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31722, + "make_id": 31696, + "model_id": 31717, + "year_id": 31720, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31723, + "make_id": 31696, + "model_id": 31717, + "year_id": 31720, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31724, + "make_id": 31696, + "model_id": 31717, + "year_id": 31724, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31725, + "make_id": 31696, + "model_id": 31717, + "year_id": 31724, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31726, + "make_id": 31696, + "model_id": 31717, + "year_id": 31724, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31727, + "make_id": 31696, + "model_id": 31717, + "year_id": 31727, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31728, + "make_id": 31696, + "model_id": 31717, + "year_id": 31727, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31729, + "make_id": 31696, + "model_id": 31717, + "year_id": 31727, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31730, + "make_id": 31696, + "model_id": 31717, + "year_id": 31727, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31731, + "make_id": 31696, + "model_id": 31717, + "year_id": 31727, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31732, + "make_id": 31696, + "model_id": 31717, + "year_id": 31732, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31733, + "make_id": 31696, + "model_id": 31717, + "year_id": 31732, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31734, + "make_id": 31696, + "model_id": 31717, + "year_id": 31732, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31735, + "make_id": 31696, + "model_id": 31717, + "year_id": 31732, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31736, + "make_id": 31696, + "model_id": 31717, + "year_id": 31732, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31737, + "make_id": 31696, + "model_id": 31737, + "year_id": 31737, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31738, + "make_id": 31696, + "model_id": 31737, + "year_id": 31737, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31739, + "make_id": 31696, + "model_id": 31737, + "year_id": 31739, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31740, + "make_id": 31696, + "model_id": 31737, + "year_id": 31739, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31741, + "make_id": 31696, + "model_id": 31741, + "year_id": 31741, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31742, + "make_id": 31696, + "model_id": 31741, + "year_id": 31741, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31743, + "make_id": 31696, + "model_id": 31743, + "year_id": 31743, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31744, + "make_id": 31696, + "model_id": 31743, + "year_id": 31744, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31745, + "make_id": 31696, + "model_id": 31743, + "year_id": 31745, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31746, + "make_id": 31696, + "model_id": 31743, + "year_id": 31746, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31747, + "make_id": 31696, + "model_id": 31743, + "year_id": 31746, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31748, + "make_id": 31696, + "model_id": 31743, + "year_id": 31748, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31749, + "make_id": 31696, + "model_id": 31749, + "year_id": 31749, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31750, + "make_id": 31696, + "model_id": 31749, + "year_id": 31749, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31751, + "make_id": 31696, + "model_id": 31749, + "year_id": 31749, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31752, + "make_id": 31696, + "model_id": 31752, + "year_id": 31752, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31753, + "make_id": 31696, + "model_id": 31752, + "year_id": 31752, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31754, + "make_id": 31696, + "model_id": 31754, + "year_id": 31754, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31755, + "make_id": 31696, + "model_id": 31754, + "year_id": 31754, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31756, + "make_id": 31696, + "model_id": 31754, + "year_id": 31756, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31757, + "make_id": 31696, + "model_id": 31754, + "year_id": 31756, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31758, + "make_id": 31696, + "model_id": 31754, + "year_id": 31758, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31759, + "make_id": 31696, + "model_id": 31754, + "year_id": 31758, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31760, + "make_id": 31696, + "model_id": 31760, + "year_id": 31760, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31761, + "make_id": 31696, + "model_id": 31760, + "year_id": 31761, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31762, + "make_id": 31696, + "model_id": 31760, + "year_id": 31762, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31763, + "make_id": 31696, + "model_id": 31760, + "year_id": 31763, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31764, + "make_id": 31696, + "model_id": 31760, + "year_id": 31763, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31765, + "make_id": 31696, + "model_id": 31760, + "year_id": 31765, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31766, + "make_id": 31696, + "model_id": 31766, + "year_id": 31766, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31767, + "make_id": 31696, + "model_id": 31766, + "year_id": 31766, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31768, + "make_id": 31696, + "model_id": 31766, + "year_id": 31768, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31769, + "make_id": 31696, + "model_id": 31766, + "year_id": 31768, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31770, + "make_id": 31696, + "model_id": 31766, + "year_id": 31770, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31771, + "make_id": 31696, + "model_id": 31766, + "year_id": 31770, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31772, + "make_id": 31696, + "model_id": 31766, + "year_id": 31772, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31773, + "make_id": 31696, + "model_id": 31766, + "year_id": 31772, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31774, + "make_id": 31696, + "model_id": 31774, + "year_id": 31774, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31775, + "make_id": 31696, + "model_id": 31774, + "year_id": 31774, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31776, + "make_id": 31696, + "model_id": 31774, + "year_id": 31776, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31777, + "make_id": 31696, + "model_id": 31774, + "year_id": 31776, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31778, + "make_id": 31696, + "model_id": 31774, + "year_id": 31776, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31779, + "make_id": 31696, + "model_id": 31774, + "year_id": 31779, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31780, + "make_id": 31696, + "model_id": 31774, + "year_id": 31779, + "cylinders": 6, + "displacement": 3.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31781, + "make_id": 31696, + "model_id": 31781, + "year_id": 31781, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31782, + "make_id": 31696, + "model_id": 31781, + "year_id": 31781, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31783, + "make_id": 31696, + "model_id": 31781, + "year_id": 31783, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31784, + "make_id": 31696, + "model_id": 31781, + "year_id": 31783, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31785, + "make_id": 31696, + "model_id": 31781, + "year_id": 31785, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31786, + "make_id": 31696, + "model_id": 31781, + "year_id": 31785, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31787, + "make_id": 31696, + "model_id": 31781, + "year_id": 31785, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31788, + "make_id": 31696, + "model_id": 31781, + "year_id": 31785, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31789, + "make_id": 31696, + "model_id": 31781, + "year_id": 31789, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31790, + "make_id": 31696, + "model_id": 31781, + "year_id": 31789, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31791, + "make_id": 31696, + "model_id": 31781, + "year_id": 31789, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31792, + "make_id": 31696, + "model_id": 31781, + "year_id": 31789, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31793, + "make_id": 31696, + "model_id": 31781, + "year_id": 31793, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31794, + "make_id": 31696, + "model_id": 31781, + "year_id": 31793, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31795, + "make_id": 31696, + "model_id": 31781, + "year_id": 31793, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31796, + "make_id": 31696, + "model_id": 31781, + "year_id": 31793, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31797, + "make_id": 31696, + "model_id": 31781, + "year_id": 31797, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31798, + "make_id": 31696, + "model_id": 31781, + "year_id": 31797, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31799, + "make_id": 31696, + "model_id": 31781, + "year_id": 31797, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31800, + "make_id": 31696, + "model_id": 31781, + "year_id": 31797, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31801, + "make_id": 31696, + "model_id": 31781, + "year_id": 31801, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31802, + "make_id": 31696, + "model_id": 31781, + "year_id": 31801, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31803, + "make_id": 31696, + "model_id": 31781, + "year_id": 31801, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31804, + "make_id": 31696, + "model_id": 31781, + "year_id": 31801, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31805, + "make_id": 31696, + "model_id": 31781, + "year_id": 31805, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31806, + "make_id": 31696, + "model_id": 31781, + "year_id": 31805, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31807, + "make_id": 31696, + "model_id": 31781, + "year_id": 31805, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31808, + "make_id": 31696, + "model_id": 31781, + "year_id": 31805, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31809, + "make_id": 31696, + "model_id": 31781, + "year_id": 31809, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31810, + "make_id": 31696, + "model_id": 31781, + "year_id": 31809, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31811, + "make_id": 31696, + "model_id": 31781, + "year_id": 31809, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31812, + "make_id": 31696, + "model_id": 31781, + "year_id": 31809, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31813, + "make_id": 31696, + "model_id": 31781, + "year_id": 31813, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31814, + "make_id": 31696, + "model_id": 31781, + "year_id": 31813, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31815, + "make_id": 31696, + "model_id": 31781, + "year_id": 31813, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31816, + "make_id": 31696, + "model_id": 31781, + "year_id": 31813, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31817, + "make_id": 31696, + "model_id": 31781, + "year_id": 31817, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31818, + "make_id": 31696, + "model_id": 31781, + "year_id": 31817, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31819, + "make_id": 31696, + "model_id": 31781, + "year_id": 31817, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31820, + "make_id": 31696, + "model_id": 31781, + "year_id": 31817, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31821, + "make_id": 31696, + "model_id": 31781, + "year_id": 31821, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31822, + "make_id": 31696, + "model_id": 31781, + "year_id": 31821, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31823, + "make_id": 31696, + "model_id": 31781, + "year_id": 31821, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31824, + "make_id": 31696, + "model_id": 31781, + "year_id": 31821, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31825, + "make_id": 31696, + "model_id": 31825, + "year_id": 31825, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31826, + "make_id": 31696, + "model_id": 31825, + "year_id": 31825, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31827, + "make_id": 31696, + "model_id": 31825, + "year_id": 31825, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31828, + "make_id": 31696, + "model_id": 31825, + "year_id": 31825, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31829, + "make_id": 31696, + "model_id": 31825, + "year_id": 31829, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31830, + "make_id": 31696, + "model_id": 31825, + "year_id": 31829, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31831, + "make_id": 31696, + "model_id": 31825, + "year_id": 31829, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31832, + "make_id": 31696, + "model_id": 31825, + "year_id": 31829, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31833, + "make_id": 31696, + "model_id": 31825, + "year_id": 31833, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31834, + "make_id": 31696, + "model_id": 31825, + "year_id": 31833, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31835, + "make_id": 31696, + "model_id": 31825, + "year_id": 31833, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31836, + "make_id": 31696, + "model_id": 31825, + "year_id": 31833, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31837, + "make_id": 31696, + "model_id": 31825, + "year_id": 31837, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31838, + "make_id": 31696, + "model_id": 31825, + "year_id": 31837, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31839, + "make_id": 31696, + "model_id": 31825, + "year_id": 31837, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31840, + "make_id": 31696, + "model_id": 31825, + "year_id": 31837, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31841, + "make_id": 31696, + "model_id": 31841, + "year_id": 31841, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31842, + "make_id": 31696, + "model_id": 31841, + "year_id": 31841, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31843, + "make_id": 31696, + "model_id": 31841, + "year_id": 31841, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31844, + "make_id": 31696, + "model_id": 31841, + "year_id": 31841, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31845, + "make_id": 31696, + "model_id": 31841, + "year_id": 31845, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31846, + "make_id": 31696, + "model_id": 31841, + "year_id": 31845, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31847, + "make_id": 31696, + "model_id": 31841, + "year_id": 31845, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31848, + "make_id": 31696, + "model_id": 31841, + "year_id": 31845, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31849, + "make_id": 31696, + "model_id": 31841, + "year_id": 31849, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31850, + "make_id": 31696, + "model_id": 31841, + "year_id": 31849, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31851, + "make_id": 31696, + "model_id": 31841, + "year_id": 31849, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31852, + "make_id": 31696, + "model_id": 31841, + "year_id": 31849, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31853, + "make_id": 31696, + "model_id": 31841, + "year_id": 31853, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31854, + "make_id": 31696, + "model_id": 31841, + "year_id": 31853, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31855, + "make_id": 31696, + "model_id": 31841, + "year_id": 31853, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31856, + "make_id": 31696, + "model_id": 31841, + "year_id": 31853, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31857, + "make_id": 31696, + "model_id": 31841, + "year_id": 31857, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31858, + "make_id": 31696, + "model_id": 31841, + "year_id": 31857, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31859, + "make_id": 31696, + "model_id": 31841, + "year_id": 31857, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31860, + "make_id": 31696, + "model_id": 31841, + "year_id": 31857, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31861, + "make_id": 31696, + "model_id": 31841, + "year_id": 31861, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31862, + "make_id": 31696, + "model_id": 31841, + "year_id": 31861, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31863, + "make_id": 31696, + "model_id": 31841, + "year_id": 31861, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31864, + "make_id": 31696, + "model_id": 31841, + "year_id": 31861, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31865, + "make_id": 31696, + "model_id": 31841, + "year_id": 31865, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31866, + "make_id": 31696, + "model_id": 31841, + "year_id": 31865, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31867, + "make_id": 31696, + "model_id": 31841, + "year_id": 31865, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31868, + "make_id": 31696, + "model_id": 31841, + "year_id": 31865, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31869, + "make_id": 31696, + "model_id": 31841, + "year_id": 31869, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31870, + "make_id": 31696, + "model_id": 31841, + "year_id": 31869, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31871, + "make_id": 31696, + "model_id": 31841, + "year_id": 31869, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31872, + "make_id": 31696, + "model_id": 31841, + "year_id": 31869, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31873, + "make_id": 31696, + "model_id": 31841, + "year_id": 31873, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31874, + "make_id": 31696, + "model_id": 31841, + "year_id": 31873, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31875, + "make_id": 31696, + "model_id": 31841, + "year_id": 31873, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31876, + "make_id": 31696, + "model_id": 31841, + "year_id": 31873, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31877, + "make_id": 31696, + "model_id": 31841, + "year_id": 31877, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31878, + "make_id": 31696, + "model_id": 31841, + "year_id": 31877, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31879, + "make_id": 31696, + "model_id": 31841, + "year_id": 31877, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31880, + "make_id": 31696, + "model_id": 31841, + "year_id": 31877, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31881, + "make_id": 31696, + "model_id": 31841, + "year_id": 31881, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31882, + "make_id": 31696, + "model_id": 31841, + "year_id": 31881, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31883, + "make_id": 31696, + "model_id": 31841, + "year_id": 31881, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31884, + "make_id": 31696, + "model_id": 31841, + "year_id": 31881, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31885, + "make_id": 31696, + "model_id": 31841, + "year_id": 31885, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31886, + "make_id": 31696, + "model_id": 31841, + "year_id": 31885, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31887, + "make_id": 31696, + "model_id": 31841, + "year_id": 31885, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31888, + "make_id": 31696, + "model_id": 31841, + "year_id": 31885, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31889, + "make_id": 31696, + "model_id": 31889, + "year_id": 31889, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31890, + "make_id": 31696, + "model_id": 31889, + "year_id": 31889, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31891, + "make_id": 31696, + "model_id": 31889, + "year_id": 31889, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31892, + "make_id": 31696, + "model_id": 31889, + "year_id": 31889, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31893, + "make_id": 31696, + "model_id": 31889, + "year_id": 31893, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31894, + "make_id": 31696, + "model_id": 31889, + "year_id": 31893, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31895, + "make_id": 31696, + "model_id": 31889, + "year_id": 31893, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31896, + "make_id": 31696, + "model_id": 31889, + "year_id": 31893, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31897, + "make_id": 31696, + "model_id": 31889, + "year_id": 31897, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31898, + "make_id": 31696, + "model_id": 31889, + "year_id": 31897, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31899, + "make_id": 31696, + "model_id": 31889, + "year_id": 31897, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31900, + "make_id": 31696, + "model_id": 31889, + "year_id": 31897, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31901, + "make_id": 31696, + "model_id": 31889, + "year_id": 31901, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31902, + "make_id": 31696, + "model_id": 31889, + "year_id": 31901, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31903, + "make_id": 31696, + "model_id": 31889, + "year_id": 31901, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31904, + "make_id": 31696, + "model_id": 31889, + "year_id": 31901, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31905, + "make_id": 31696, + "model_id": 31889, + "year_id": 31905, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31906, + "make_id": 31696, + "model_id": 31889, + "year_id": 31905, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31907, + "make_id": 31696, + "model_id": 31889, + "year_id": 31905, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31908, + "make_id": 31696, + "model_id": 31889, + "year_id": 31905, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31909, + "make_id": 31696, + "model_id": 31889, + "year_id": 31909, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31910, + "make_id": 31696, + "model_id": 31889, + "year_id": 31909, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31911, + "make_id": 31696, + "model_id": 31889, + "year_id": 31909, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31912, + "make_id": 31696, + "model_id": 31889, + "year_id": 31909, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31913, + "make_id": 31696, + "model_id": 31889, + "year_id": 31913, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31914, + "make_id": 31696, + "model_id": 31889, + "year_id": 31913, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31915, + "make_id": 31696, + "model_id": 31889, + "year_id": 31913, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31916, + "make_id": 31696, + "model_id": 31889, + "year_id": 31913, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31917, + "make_id": 31696, + "model_id": 31889, + "year_id": 31917, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31918, + "make_id": 31696, + "model_id": 31889, + "year_id": 31917, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31919, + "make_id": 31696, + "model_id": 31889, + "year_id": 31917, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31920, + "make_id": 31696, + "model_id": 31889, + "year_id": 31920, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31921, + "make_id": 31696, + "model_id": 31889, + "year_id": 31920, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31922, + "make_id": 31696, + "model_id": 31889, + "year_id": 31920, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31923, + "make_id": 31696, + "model_id": 31923, + "year_id": 31923, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31924, + "make_id": 31696, + "model_id": 31923, + "year_id": 31923, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31925, + "make_id": 31696, + "model_id": 31923, + "year_id": 31923, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31926, + "make_id": 31696, + "model_id": 31923, + "year_id": 31923, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31927, + "make_id": 31696, + "model_id": 31923, + "year_id": 31927, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31928, + "make_id": 31696, + "model_id": 31923, + "year_id": 31927, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31929, + "make_id": 31696, + "model_id": 31923, + "year_id": 31927, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31930, + "make_id": 31696, + "model_id": 31923, + "year_id": 31927, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31931, + "make_id": 31696, + "model_id": 31923, + "year_id": 31927, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31932, + "make_id": 31696, + "model_id": 31923, + "year_id": 31932, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31933, + "make_id": 31696, + "model_id": 31923, + "year_id": 31932, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31934, + "make_id": 31696, + "model_id": 31923, + "year_id": 31932, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31935, + "make_id": 31696, + "model_id": 31923, + "year_id": 31932, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31936, + "make_id": 31696, + "model_id": 31923, + "year_id": 31932, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31937, + "make_id": 31696, + "model_id": 31923, + "year_id": 31937, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31938, + "make_id": 31696, + "model_id": 31923, + "year_id": 31937, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31939, + "make_id": 31696, + "model_id": 31923, + "year_id": 31937, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31940, + "make_id": 31696, + "model_id": 31923, + "year_id": 31937, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31941, + "make_id": 31696, + "model_id": 31923, + "year_id": 31937, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31942, + "make_id": 31696, + "model_id": 31923, + "year_id": 31937, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31943, + "make_id": 31696, + "model_id": 31923, + "year_id": 31943, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31944, + "make_id": 31696, + "model_id": 31923, + "year_id": 31943, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31945, + "make_id": 31696, + "model_id": 31923, + "year_id": 31943, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31946, + "make_id": 31696, + "model_id": 31923, + "year_id": 31943, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31947, + "make_id": 31696, + "model_id": 31923, + "year_id": 31947, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31948, + "make_id": 31696, + "model_id": 31923, + "year_id": 31947, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31949, + "make_id": 31696, + "model_id": 31923, + "year_id": 31947, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31950, + "make_id": 31696, + "model_id": 31923, + "year_id": 31947, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 31951, + "make_id": 31696, + "model_id": 31923, + "year_id": 31951, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31952, + "make_id": 31696, + "model_id": 31923, + "year_id": 31951, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31953, + "make_id": 31696, + "model_id": 31923, + "year_id": 31951, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31954, + "make_id": 31696, + "model_id": 31923, + "year_id": 31951, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31955, + "make_id": 31696, + "model_id": 31923, + "year_id": 31951, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31956, + "make_id": 31696, + "model_id": 31923, + "year_id": 31951, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31957, + "make_id": 31696, + "model_id": 31923, + "year_id": 31957, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31958, + "make_id": 31696, + "model_id": 31923, + "year_id": 31957, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31959, + "make_id": 31696, + "model_id": 31923, + "year_id": 31957, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31960, + "make_id": 31696, + "model_id": 31923, + "year_id": 31957, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31961, + "make_id": 31696, + "model_id": 31923, + "year_id": 31957, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31962, + "make_id": 31696, + "model_id": 31923, + "year_id": 31957, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31963, + "make_id": 31696, + "model_id": 31923, + "year_id": 31963, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31964, + "make_id": 31696, + "model_id": 31923, + "year_id": 31963, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31965, + "make_id": 31696, + "model_id": 31923, + "year_id": 31963, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31966, + "make_id": 31696, + "model_id": 31923, + "year_id": 31963, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31967, + "make_id": 31696, + "model_id": 31923, + "year_id": 31963, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31968, + "make_id": 31696, + "model_id": 31923, + "year_id": 31963, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31969, + "make_id": 31696, + "model_id": 31969, + "year_id": 31969, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31970, + "make_id": 31696, + "model_id": 31969, + "year_id": 31970, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31971, + "make_id": 31696, + "model_id": 31969, + "year_id": 31971, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31972, + "make_id": 31696, + "model_id": 31969, + "year_id": 31971, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31973, + "make_id": 31696, + "model_id": 31969, + "year_id": 31973, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31974, + "make_id": 31974, + "model_id": 31974, + "year_id": 31974, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31975, + "make_id": 31974, + "model_id": 31974, + "year_id": 31974, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31976, + "make_id": 31974, + "model_id": 31974, + "year_id": 31976, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31977, + "make_id": 31974, + "model_id": 31974, + "year_id": 31976, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31978, + "make_id": 31974, + "model_id": 31974, + "year_id": 31978, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31979, + "make_id": 31974, + "model_id": 31974, + "year_id": 31978, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31980, + "make_id": 31974, + "model_id": 31974, + "year_id": 31980, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31981, + "make_id": 31974, + "model_id": 31974, + "year_id": 31980, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31982, + "make_id": 31974, + "model_id": 31982, + "year_id": 31982, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31983, + "make_id": 31974, + "model_id": 31982, + "year_id": 31982, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 31984, + "make_id": 31974, + "model_id": 31984, + "year_id": 31984, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31985, + "make_id": 31974, + "model_id": 31984, + "year_id": 31984, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 31986, + "make_id": 31974, + "model_id": 31986, + "year_id": 31986, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31987, + "make_id": 31974, + "model_id": 31986, + "year_id": 31987, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31988, + "make_id": 31974, + "model_id": 31986, + "year_id": 31988, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31989, + "make_id": 31974, + "model_id": 31986, + "year_id": 31989, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31990, + "make_id": 31974, + "model_id": 31986, + "year_id": 31990, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31991, + "make_id": 31974, + "model_id": 31991, + "year_id": 31991, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 31992, + "make_id": 31974, + "model_id": 31992, + "year_id": 31992, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31993, + "make_id": 31974, + "model_id": 31992, + "year_id": 31992, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31994, + "make_id": 31974, + "model_id": 31992, + "year_id": 31994, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31995, + "make_id": 31974, + "model_id": 31992, + "year_id": 31994, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31996, + "make_id": 31974, + "model_id": 31992, + "year_id": 31996, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31997, + "make_id": 31974, + "model_id": 31992, + "year_id": 31996, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 31998, + "make_id": 31974, + "model_id": 31992, + "year_id": 31998, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 31999, + "make_id": 31974, + "model_id": 31992, + "year_id": 31998, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32000, + "make_id": 31974, + "model_id": 31992, + "year_id": 32000, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32001, + "make_id": 31974, + "model_id": 31992, + "year_id": 32000, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32002, + "make_id": 31974, + "model_id": 31992, + "year_id": 32002, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32003, + "make_id": 31974, + "model_id": 31992, + "year_id": 32002, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32004, + "make_id": 31974, + "model_id": 31992, + "year_id": 32004, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32005, + "make_id": 31974, + "model_id": 31992, + "year_id": 32004, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32006, + "make_id": 31974, + "model_id": 31992, + "year_id": 32006, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32007, + "make_id": 31974, + "model_id": 31992, + "year_id": 32006, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32008, + "make_id": 31974, + "model_id": 31992, + "year_id": 32008, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32009, + "make_id": 31974, + "model_id": 31992, + "year_id": 32008, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32010, + "make_id": 31974, + "model_id": 31992, + "year_id": 32010, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32011, + "make_id": 31974, + "model_id": 31992, + "year_id": 32010, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32012, + "make_id": 31974, + "model_id": 31992, + "year_id": 32012, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32013, + "make_id": 31974, + "model_id": 31992, + "year_id": 32012, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32014, + "make_id": 31974, + "model_id": 31992, + "year_id": 32014, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32015, + "make_id": 31974, + "model_id": 31992, + "year_id": 32014, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32016, + "make_id": 31974, + "model_id": 32016, + "year_id": 32016, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32017, + "make_id": 31974, + "model_id": 32016, + "year_id": 32016, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32018, + "make_id": 31974, + "model_id": 32016, + "year_id": 32018, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32019, + "make_id": 31974, + "model_id": 32016, + "year_id": 32018, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32020, + "make_id": 31974, + "model_id": 32016, + "year_id": 32020, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32021, + "make_id": 31974, + "model_id": 32016, + "year_id": 32020, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32022, + "make_id": 31974, + "model_id": 32022, + "year_id": 32022, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32023, + "make_id": 31974, + "model_id": 32022, + "year_id": 32022, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32024, + "make_id": 31974, + "model_id": 32022, + "year_id": 32024, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32025, + "make_id": 31974, + "model_id": 32022, + "year_id": 32024, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32026, + "make_id": 31974, + "model_id": 32022, + "year_id": 32026, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32027, + "make_id": 31974, + "model_id": 32022, + "year_id": 32026, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32028, + "make_id": 31974, + "model_id": 32022, + "year_id": 32028, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32029, + "make_id": 31974, + "model_id": 32022, + "year_id": 32028, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32030, + "make_id": 31974, + "model_id": 32022, + "year_id": 32030, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32031, + "make_id": 31974, + "model_id": 32022, + "year_id": 32030, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32032, + "make_id": 31974, + "model_id": 32022, + "year_id": 32032, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32033, + "make_id": 31974, + "model_id": 32022, + "year_id": 32032, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32034, + "make_id": 31974, + "model_id": 32022, + "year_id": 32034, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32035, + "make_id": 31974, + "model_id": 32022, + "year_id": 32034, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32036, + "make_id": 31974, + "model_id": 32022, + "year_id": 32036, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32037, + "make_id": 31974, + "model_id": 32022, + "year_id": 32036, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32038, + "make_id": 31974, + "model_id": 32022, + "year_id": 32038, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32039, + "make_id": 31974, + "model_id": 32022, + "year_id": 32038, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32040, + "make_id": 31974, + "model_id": 32022, + "year_id": 32040, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32041, + "make_id": 31974, + "model_id": 32022, + "year_id": 32040, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32042, + "make_id": 31974, + "model_id": 32022, + "year_id": 32042, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32043, + "make_id": 31974, + "model_id": 32022, + "year_id": 32042, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32044, + "make_id": 31974, + "model_id": 32044, + "year_id": 32044, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32045, + "make_id": 31974, + "model_id": 32044, + "year_id": 32044, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32046, + "make_id": 31974, + "model_id": 32044, + "year_id": 32046, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32047, + "make_id": 31974, + "model_id": 32044, + "year_id": 32046, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32048, + "make_id": 31974, + "model_id": 32044, + "year_id": 32048, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32049, + "make_id": 31974, + "model_id": 32044, + "year_id": 32048, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32050, + "make_id": 31974, + "model_id": 32044, + "year_id": 32050, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32051, + "make_id": 31974, + "model_id": 32044, + "year_id": 32050, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32052, + "make_id": 31974, + "model_id": 32044, + "year_id": 32052, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32053, + "make_id": 31974, + "model_id": 32044, + "year_id": 32052, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32054, + "make_id": 31974, + "model_id": 32044, + "year_id": 32054, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32055, + "make_id": 31974, + "model_id": 32044, + "year_id": 32054, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32056, + "make_id": 31974, + "model_id": 32044, + "year_id": 32056, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32057, + "make_id": 31974, + "model_id": 32044, + "year_id": 32056, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32058, + "make_id": 32058, + "model_id": 32058, + "year_id": 32058, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32059, + "make_id": 32059, + "model_id": 32059, + "year_id": 32059, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32060, + "make_id": 32059, + "model_id": 32059, + "year_id": 32060, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32061, + "make_id": 32059, + "model_id": 32059, + "year_id": 32061, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32062, + "make_id": 32059, + "model_id": 32059, + "year_id": 32062, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32063, + "make_id": 32059, + "model_id": 32059, + "year_id": 32063, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32064, + "make_id": 32059, + "model_id": 32059, + "year_id": 32064, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32065, + "make_id": 32059, + "model_id": 32065, + "year_id": 32065, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32066, + "make_id": 32059, + "model_id": 32065, + "year_id": 32066, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32067, + "make_id": 32059, + "model_id": 32067, + "year_id": 32067, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32068, + "make_id": 32059, + "model_id": 32067, + "year_id": 32068, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32069, + "make_id": 32059, + "model_id": 32067, + "year_id": 32069, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32070, + "make_id": 32059, + "model_id": 32067, + "year_id": 32070, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32071, + "make_id": 32059, + "model_id": 32067, + "year_id": 32071, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32072, + "make_id": 32059, + "model_id": 32067, + "year_id": 32072, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32073, + "make_id": 32059, + "model_id": 32067, + "year_id": 32073, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32074, + "make_id": 32059, + "model_id": 32067, + "year_id": 32074, + "cylinders": 3, + "displacement": 1, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automated Manual" + }, + { + "id": 32075, + "make_id": 32059, + "model_id": 32067, + "year_id": 32075, + "cylinders": 3, + "displacement": 0.9, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 32076, + "make_id": 32059, + "model_id": 32067, + "year_id": 32075, + "cylinders": 3, + "displacement": 0.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32077, + "make_id": 32059, + "model_id": 32077, + "year_id": 32077, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 32078, + "make_id": 32059, + "model_id": 32078, + "year_id": 32078, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 32079, + "make_id": 32059, + "model_id": 32078, + "year_id": 32079, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 32080, + "make_id": 32059, + "model_id": 32078, + "year_id": 32080, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 32081, + "make_id": 32059, + "model_id": 32078, + "year_id": 32081, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 32082, + "make_id": 32059, + "model_id": 32082, + "year_id": 32082, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 32083, + "make_id": 32059, + "model_id": 32082, + "year_id": 32083, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 32084, + "make_id": 32059, + "model_id": 32082, + "year_id": 32084, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 32085, + "make_id": 32059, + "model_id": 32082, + "year_id": 32085, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 32086, + "make_id": 32059, + "model_id": 32082, + "year_id": 32086, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 32087, + "make_id": 32087, + "model_id": 32087, + "year_id": 32087, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32088, + "make_id": 32087, + "model_id": 32088, + "year_id": 32088, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32089, + "make_id": 32087, + "model_id": 32088, + "year_id": 32089, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32090, + "make_id": 32087, + "model_id": 32090, + "year_id": 32090, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32091, + "make_id": 32087, + "model_id": 32091, + "year_id": 32091, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32092, + "make_id": 32087, + "model_id": 32092, + "year_id": 32092, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32093, + "make_id": 32087, + "model_id": 32092, + "year_id": 32093, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32094, + "make_id": 32087, + "model_id": 32092, + "year_id": 32094, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32095, + "make_id": 32087, + "model_id": 32095, + "year_id": 32095, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32096, + "make_id": 32087, + "model_id": 32095, + "year_id": 32096, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32097, + "make_id": 32087, + "model_id": 32095, + "year_id": 32097, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32098, + "make_id": 32087, + "model_id": 32098, + "year_id": 32098, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32099, + "make_id": 32087, + "model_id": 32098, + "year_id": 32099, + "cylinders": 8, + "displacement": 4.2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32100, + "make_id": 32100, + "model_id": 32100, + "year_id": 32100, + "cylinders": 10, + "displacement": 8.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32101, + "make_id": 32100, + "model_id": 32100, + "year_id": 32101, + "cylinders": 10, + "displacement": 8.4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32102, + "make_id": 32102, + "model_id": 32102, + "year_id": 32102, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32103, + "make_id": 32102, + "model_id": 32102, + "year_id": 32102, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32104, + "make_id": 32102, + "model_id": 32102, + "year_id": 32104, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32105, + "make_id": 32102, + "model_id": 32102, + "year_id": 32104, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32106, + "make_id": 32102, + "model_id": 32106, + "year_id": 32106, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32107, + "make_id": 32102, + "model_id": 32106, + "year_id": 32106, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32108, + "make_id": 32102, + "model_id": 32106, + "year_id": 32108, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32109, + "make_id": 32102, + "model_id": 32106, + "year_id": 32108, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32110, + "make_id": 32102, + "model_id": 32106, + "year_id": 32110, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32111, + "make_id": 32102, + "model_id": 32106, + "year_id": 32110, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32112, + "make_id": 32102, + "model_id": 32106, + "year_id": 32112, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32113, + "make_id": 32102, + "model_id": 32106, + "year_id": 32112, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32114, + "make_id": 32114, + "model_id": 32114, + "year_id": 32114, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32115, + "make_id": 32114, + "model_id": 32115, + "year_id": 32115, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32116, + "make_id": 32114, + "model_id": 32115, + "year_id": 32116, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32117, + "make_id": 32114, + "model_id": 32117, + "year_id": 32117, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32118, + "make_id": 32114, + "model_id": 32117, + "year_id": 32117, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32119, + "make_id": 32114, + "model_id": 32117, + "year_id": 32119, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32120, + "make_id": 32114, + "model_id": 32117, + "year_id": 32119, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32121, + "make_id": 32114, + "model_id": 32117, + "year_id": 32119, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32122, + "make_id": 32114, + "model_id": 32117, + "year_id": 32119, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32123, + "make_id": 32114, + "model_id": 32117, + "year_id": 32123, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32124, + "make_id": 32114, + "model_id": 32117, + "year_id": 32123, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32125, + "make_id": 32114, + "model_id": 32117, + "year_id": 32123, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32126, + "make_id": 32114, + "model_id": 32117, + "year_id": 32123, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32127, + "make_id": 32114, + "model_id": 32117, + "year_id": 32127, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32128, + "make_id": 32114, + "model_id": 32117, + "year_id": 32127, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32129, + "make_id": 32114, + "model_id": 32117, + "year_id": 32127, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32130, + "make_id": 32114, + "model_id": 32117, + "year_id": 32127, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32131, + "make_id": 32114, + "model_id": 32131, + "year_id": 32131, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32132, + "make_id": 32114, + "model_id": 32131, + "year_id": 32131, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32133, + "make_id": 32114, + "model_id": 32131, + "year_id": 32131, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32134, + "make_id": 32114, + "model_id": 32131, + "year_id": 32131, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32135, + "make_id": 32114, + "model_id": 32131, + "year_id": 32131, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32136, + "make_id": 32114, + "model_id": 32131, + "year_id": 32131, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32137, + "make_id": 32114, + "model_id": 32131, + "year_id": 32137, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32138, + "make_id": 32114, + "model_id": 32131, + "year_id": 32137, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32139, + "make_id": 32114, + "model_id": 32131, + "year_id": 32137, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32140, + "make_id": 32114, + "model_id": 32131, + "year_id": 32137, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32141, + "make_id": 32114, + "model_id": 32131, + "year_id": 32141, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32142, + "make_id": 32114, + "model_id": 32131, + "year_id": 32141, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32143, + "make_id": 32114, + "model_id": 32131, + "year_id": 32143, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32144, + "make_id": 32114, + "model_id": 32131, + "year_id": 32143, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32145, + "make_id": 32114, + "model_id": 32145, + "year_id": 32145, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32146, + "make_id": 32114, + "model_id": 32145, + "year_id": 32145, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32147, + "make_id": 32114, + "model_id": 32145, + "year_id": 32147, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32148, + "make_id": 32114, + "model_id": 32145, + "year_id": 32147, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32149, + "make_id": 32114, + "model_id": 32145, + "year_id": 32149, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32150, + "make_id": 32114, + "model_id": 32145, + "year_id": 32149, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32151, + "make_id": 32114, + "model_id": 32145, + "year_id": 32151, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32152, + "make_id": 32114, + "model_id": 32145, + "year_id": 32151, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 32153, + "make_id": 32114, + "model_id": 32153, + "year_id": 32153, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32154, + "make_id": 32114, + "model_id": 32153, + "year_id": 32153, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32155, + "make_id": 32114, + "model_id": 32153, + "year_id": 32155, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32156, + "make_id": 32114, + "model_id": 32153, + "year_id": 32155, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32157, + "make_id": 32114, + "model_id": 32153, + "year_id": 32157, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32158, + "make_id": 32114, + "model_id": 32153, + "year_id": 32157, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32159, + "make_id": 32114, + "model_id": 32153, + "year_id": 32159, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32160, + "make_id": 32114, + "model_id": 32153, + "year_id": 32159, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32161, + "make_id": 32114, + "model_id": 32153, + "year_id": 32161, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32162, + "make_id": 32114, + "model_id": 32153, + "year_id": 32161, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32163, + "make_id": 32114, + "model_id": 32153, + "year_id": 32163, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32164, + "make_id": 32114, + "model_id": 32153, + "year_id": 32163, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32165, + "make_id": 32114, + "model_id": 32153, + "year_id": 32165, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32166, + "make_id": 32114, + "model_id": 32153, + "year_id": 32165, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32167, + "make_id": 32114, + "model_id": 32153, + "year_id": 32165, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32168, + "make_id": 32114, + "model_id": 32153, + "year_id": 32165, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32169, + "make_id": 32114, + "model_id": 32153, + "year_id": 32169, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32170, + "make_id": 32114, + "model_id": 32153, + "year_id": 32169, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32171, + "make_id": 32114, + "model_id": 32153, + "year_id": 32169, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32172, + "make_id": 32114, + "model_id": 32153, + "year_id": 32169, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32173, + "make_id": 32114, + "model_id": 32153, + "year_id": 32173, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32174, + "make_id": 32114, + "model_id": 32153, + "year_id": 32173, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32175, + "make_id": 32114, + "model_id": 32153, + "year_id": 32173, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32176, + "make_id": 32114, + "model_id": 32153, + "year_id": 32173, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32177, + "make_id": 32114, + "model_id": 32153, + "year_id": 32177, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32178, + "make_id": 32114, + "model_id": 32153, + "year_id": 32177, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32179, + "make_id": 32114, + "model_id": 32153, + "year_id": 32177, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32180, + "make_id": 32114, + "model_id": 32153, + "year_id": 32177, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32181, + "make_id": 32114, + "model_id": 32153, + "year_id": 32181, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32182, + "make_id": 32114, + "model_id": 32153, + "year_id": 32181, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32183, + "make_id": 32114, + "model_id": 32153, + "year_id": 32181, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32184, + "make_id": 32114, + "model_id": 32153, + "year_id": 32181, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32185, + "make_id": 32114, + "model_id": 32153, + "year_id": 32185, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32186, + "make_id": 32114, + "model_id": 32153, + "year_id": 32185, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32187, + "make_id": 32114, + "model_id": 32153, + "year_id": 32185, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32188, + "make_id": 32114, + "model_id": 32153, + "year_id": 32188, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32189, + "make_id": 32114, + "model_id": 32153, + "year_id": 32188, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32190, + "make_id": 32114, + "model_id": 32153, + "year_id": 32188, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32191, + "make_id": 32114, + "model_id": 32153, + "year_id": 32191, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32192, + "make_id": 32114, + "model_id": 32153, + "year_id": 32191, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32193, + "make_id": 32114, + "model_id": 32153, + "year_id": 32191, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32194, + "make_id": 32114, + "model_id": 32153, + "year_id": 32194, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32195, + "make_id": 32114, + "model_id": 32153, + "year_id": 32194, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32196, + "make_id": 32114, + "model_id": 32153, + "year_id": 32194, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32197, + "make_id": 32114, + "model_id": 32153, + "year_id": 32197, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32198, + "make_id": 32114, + "model_id": 32153, + "year_id": 32197, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32199, + "make_id": 32114, + "model_id": 32153, + "year_id": 32197, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32200, + "make_id": 32114, + "model_id": 32153, + "year_id": 32200, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32201, + "make_id": 32114, + "model_id": 32153, + "year_id": 32200, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32202, + "make_id": 32114, + "model_id": 32153, + "year_id": 32200, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32203, + "make_id": 32114, + "model_id": 32153, + "year_id": 32203, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32204, + "make_id": 32114, + "model_id": 32153, + "year_id": 32203, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32205, + "make_id": 32114, + "model_id": 32153, + "year_id": 32203, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32206, + "make_id": 32114, + "model_id": 32153, + "year_id": 32206, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32207, + "make_id": 32114, + "model_id": 32153, + "year_id": 32206, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32208, + "make_id": 32114, + "model_id": 32153, + "year_id": 32206, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32209, + "make_id": 32114, + "model_id": 32153, + "year_id": 32209, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32210, + "make_id": 32114, + "model_id": 32153, + "year_id": 32209, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32211, + "make_id": 32114, + "model_id": 32211, + "year_id": 32211, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32212, + "make_id": 32114, + "model_id": 32211, + "year_id": 32211, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32213, + "make_id": 32114, + "model_id": 32211, + "year_id": 32211, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32214, + "make_id": 32114, + "model_id": 32211, + "year_id": 32211, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32215, + "make_id": 32114, + "model_id": 32211, + "year_id": 32211, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32216, + "make_id": 32114, + "model_id": 32211, + "year_id": 32211, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32217, + "make_id": 32114, + "model_id": 32211, + "year_id": 32211, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32218, + "make_id": 32114, + "model_id": 32211, + "year_id": 32218, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32219, + "make_id": 32114, + "model_id": 32211, + "year_id": 32218, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32220, + "make_id": 32114, + "model_id": 32211, + "year_id": 32218, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32221, + "make_id": 32114, + "model_id": 32211, + "year_id": 32218, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32222, + "make_id": 32114, + "model_id": 32211, + "year_id": 32218, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32223, + "make_id": 32114, + "model_id": 32211, + "year_id": 32218, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32224, + "make_id": 32114, + "model_id": 32211, + "year_id": 32224, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32225, + "make_id": 32114, + "model_id": 32211, + "year_id": 32224, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32226, + "make_id": 32114, + "model_id": 32211, + "year_id": 32224, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32227, + "make_id": 32114, + "model_id": 32211, + "year_id": 32224, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32228, + "make_id": 32114, + "model_id": 32211, + "year_id": 32224, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32229, + "make_id": 32114, + "model_id": 32211, + "year_id": 32229, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32230, + "make_id": 32114, + "model_id": 32211, + "year_id": 32229, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32231, + "make_id": 32114, + "model_id": 32211, + "year_id": 32229, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32232, + "make_id": 32114, + "model_id": 32211, + "year_id": 32232, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32233, + "make_id": 32114, + "model_id": 32211, + "year_id": 32232, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32234, + "make_id": 32114, + "model_id": 32211, + "year_id": 32232, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32235, + "make_id": 32114, + "model_id": 32235, + "year_id": 32235, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32236, + "make_id": 32114, + "model_id": 32235, + "year_id": 32235, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32237, + "make_id": 32114, + "model_id": 32235, + "year_id": 32235, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32238, + "make_id": 32114, + "model_id": 32235, + "year_id": 32235, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32239, + "make_id": 32114, + "model_id": 32235, + "year_id": 32239, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32240, + "make_id": 32114, + "model_id": 32235, + "year_id": 32239, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32241, + "make_id": 32114, + "model_id": 32235, + "year_id": 32239, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32242, + "make_id": 32114, + "model_id": 32235, + "year_id": 32239, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32243, + "make_id": 32114, + "model_id": 32235, + "year_id": 32243, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32244, + "make_id": 32114, + "model_id": 32235, + "year_id": 32243, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32245, + "make_id": 32114, + "model_id": 32235, + "year_id": 32243, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32246, + "make_id": 32114, + "model_id": 32235, + "year_id": 32243, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32247, + "make_id": 32114, + "model_id": 32235, + "year_id": 32243, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32248, + "make_id": 32114, + "model_id": 32235, + "year_id": 32248, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32249, + "make_id": 32114, + "model_id": 32235, + "year_id": 32248, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32250, + "make_id": 32114, + "model_id": 32235, + "year_id": 32248, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32251, + "make_id": 32114, + "model_id": 32235, + "year_id": 32248, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32252, + "make_id": 32114, + "model_id": 32235, + "year_id": 32248, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32253, + "make_id": 32114, + "model_id": 32235, + "year_id": 32253, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32254, + "make_id": 32114, + "model_id": 32235, + "year_id": 32253, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32255, + "make_id": 32114, + "model_id": 32235, + "year_id": 32253, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32256, + "make_id": 32114, + "model_id": 32235, + "year_id": 32256, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32257, + "make_id": 32114, + "model_id": 32235, + "year_id": 32256, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32258, + "make_id": 32114, + "model_id": 32235, + "year_id": 32256, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32259, + "make_id": 32114, + "model_id": 32235, + "year_id": 32256, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32260, + "make_id": 32114, + "model_id": 32235, + "year_id": 32260, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32261, + "make_id": 32114, + "model_id": 32235, + "year_id": 32260, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32262, + "make_id": 32114, + "model_id": 32235, + "year_id": 32260, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32263, + "make_id": 32114, + "model_id": 32235, + "year_id": 32260, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32264, + "make_id": 32114, + "model_id": 32235, + "year_id": 32264, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32265, + "make_id": 32114, + "model_id": 32235, + "year_id": 32264, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32266, + "make_id": 32114, + "model_id": 32235, + "year_id": 32266, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32267, + "make_id": 32114, + "model_id": 32235, + "year_id": 32266, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32268, + "make_id": 32114, + "model_id": 32235, + "year_id": 32266, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32269, + "make_id": 32114, + "model_id": 32235, + "year_id": 32266, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32270, + "make_id": 32114, + "model_id": 32235, + "year_id": 32270, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32271, + "make_id": 32114, + "model_id": 32235, + "year_id": 32270, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32272, + "make_id": 32114, + "model_id": 32235, + "year_id": 32270, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32273, + "make_id": 32114, + "model_id": 32235, + "year_id": 32270, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32274, + "make_id": 32114, + "model_id": 32235, + "year_id": 32274, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32275, + "make_id": 32114, + "model_id": 32235, + "year_id": 32274, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32276, + "make_id": 32114, + "model_id": 32235, + "year_id": 32274, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32277, + "make_id": 32114, + "model_id": 32235, + "year_id": 32274, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32278, + "make_id": 32114, + "model_id": 32235, + "year_id": 32278, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32279, + "make_id": 32114, + "model_id": 32235, + "year_id": 32278, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32280, + "make_id": 32114, + "model_id": 32235, + "year_id": 32278, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32281, + "make_id": 32114, + "model_id": 32235, + "year_id": 32278, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32282, + "make_id": 32114, + "model_id": 32235, + "year_id": 32278, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32283, + "make_id": 32114, + "model_id": 32235, + "year_id": 32283, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32284, + "make_id": 32114, + "model_id": 32235, + "year_id": 32283, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32285, + "make_id": 32114, + "model_id": 32235, + "year_id": 32283, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32286, + "make_id": 32114, + "model_id": 32235, + "year_id": 32283, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32287, + "make_id": 32114, + "model_id": 32235, + "year_id": 32283, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32288, + "make_id": 32114, + "model_id": 32235, + "year_id": 32288, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32289, + "make_id": 32114, + "model_id": 32235, + "year_id": 32288, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32290, + "make_id": 32114, + "model_id": 32235, + "year_id": 32288, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32291, + "make_id": 32114, + "model_id": 32235, + "year_id": 32288, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32292, + "make_id": 32114, + "model_id": 32235, + "year_id": 32288, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32293, + "make_id": 32114, + "model_id": 32235, + "year_id": 32293, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32294, + "make_id": 32114, + "model_id": 32235, + "year_id": 32293, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32295, + "make_id": 32114, + "model_id": 32235, + "year_id": 32293, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32296, + "make_id": 32114, + "model_id": 32235, + "year_id": 32293, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32297, + "make_id": 32114, + "model_id": 32235, + "year_id": 32293, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32298, + "make_id": 32114, + "model_id": 32235, + "year_id": 32298, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32299, + "make_id": 32114, + "model_id": 32235, + "year_id": 32298, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32300, + "make_id": 32114, + "model_id": 32235, + "year_id": 32298, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32301, + "make_id": 32114, + "model_id": 32235, + "year_id": 32298, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32302, + "make_id": 32114, + "model_id": 32235, + "year_id": 32302, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32303, + "make_id": 32114, + "model_id": 32235, + "year_id": 32302, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32304, + "make_id": 32114, + "model_id": 32235, + "year_id": 32302, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32305, + "make_id": 32114, + "model_id": 32235, + "year_id": 32302, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32306, + "make_id": 32114, + "model_id": 32235, + "year_id": 32306, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32307, + "make_id": 32114, + "model_id": 32235, + "year_id": 32306, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32308, + "make_id": 32114, + "model_id": 32235, + "year_id": 32306, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32309, + "make_id": 32114, + "model_id": 32235, + "year_id": 32306, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32310, + "make_id": 32114, + "model_id": 32235, + "year_id": 32310, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32311, + "make_id": 32114, + "model_id": 32235, + "year_id": 32310, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32312, + "make_id": 32114, + "model_id": 32235, + "year_id": 32310, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32313, + "make_id": 32114, + "model_id": 32235, + "year_id": 32310, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32314, + "make_id": 32114, + "model_id": 32235, + "year_id": 32314, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32315, + "make_id": 32114, + "model_id": 32235, + "year_id": 32314, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32316, + "make_id": 32114, + "model_id": 32235, + "year_id": 32314, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32317, + "make_id": 32114, + "model_id": 32235, + "year_id": 32314, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32318, + "make_id": 32114, + "model_id": 32235, + "year_id": 32318, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32319, + "make_id": 32114, + "model_id": 32235, + "year_id": 32318, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32320, + "make_id": 32114, + "model_id": 32235, + "year_id": 32318, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32321, + "make_id": 32114, + "model_id": 32235, + "year_id": 32318, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32322, + "make_id": 32114, + "model_id": 32235, + "year_id": 32322, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32323, + "make_id": 32114, + "model_id": 32235, + "year_id": 32322, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32324, + "make_id": 32114, + "model_id": 32235, + "year_id": 32322, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32325, + "make_id": 32114, + "model_id": 32235, + "year_id": 32322, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32326, + "make_id": 32114, + "model_id": 32235, + "year_id": 32326, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32327, + "make_id": 32114, + "model_id": 32235, + "year_id": 32326, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32328, + "make_id": 32114, + "model_id": 32235, + "year_id": 32328, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32329, + "make_id": 32114, + "model_id": 32235, + "year_id": 32328, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32330, + "make_id": 32114, + "model_id": 32330, + "year_id": 32330, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32331, + "make_id": 32114, + "model_id": 32330, + "year_id": 32330, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32332, + "make_id": 32114, + "model_id": 32330, + "year_id": 32332, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32333, + "make_id": 32114, + "model_id": 32330, + "year_id": 32332, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32334, + "make_id": 32114, + "model_id": 32334, + "year_id": 32334, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32335, + "make_id": 32114, + "model_id": 32334, + "year_id": 32334, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32336, + "make_id": 32114, + "model_id": 32334, + "year_id": 32334, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32337, + "make_id": 32114, + "model_id": 32334, + "year_id": 32334, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32338, + "make_id": 32114, + "model_id": 32334, + "year_id": 32338, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32339, + "make_id": 32114, + "model_id": 32334, + "year_id": 32338, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32340, + "make_id": 32114, + "model_id": 32334, + "year_id": 32338, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32341, + "make_id": 32114, + "model_id": 32334, + "year_id": 32338, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32342, + "make_id": 32114, + "model_id": 32334, + "year_id": 32342, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32343, + "make_id": 32114, + "model_id": 32334, + "year_id": 32342, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32344, + "make_id": 32114, + "model_id": 32334, + "year_id": 32342, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32345, + "make_id": 32114, + "model_id": 32334, + "year_id": 32342, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32346, + "make_id": 32114, + "model_id": 32334, + "year_id": 32342, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32347, + "make_id": 32114, + "model_id": 32334, + "year_id": 32347, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32348, + "make_id": 32114, + "model_id": 32334, + "year_id": 32347, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32349, + "make_id": 32114, + "model_id": 32334, + "year_id": 32349, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32350, + "make_id": 32114, + "model_id": 32334, + "year_id": 32349, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32351, + "make_id": 32114, + "model_id": 32334, + "year_id": 32351, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32352, + "make_id": 32114, + "model_id": 32334, + "year_id": 32351, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32353, + "make_id": 32114, + "model_id": 32334, + "year_id": 32353, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32354, + "make_id": 32114, + "model_id": 32334, + "year_id": 32353, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32355, + "make_id": 32114, + "model_id": 32334, + "year_id": 32355, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32356, + "make_id": 32114, + "model_id": 32334, + "year_id": 32355, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32357, + "make_id": 32114, + "model_id": 32334, + "year_id": 32357, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32358, + "make_id": 32114, + "model_id": 32334, + "year_id": 32357, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32359, + "make_id": 32114, + "model_id": 32334, + "year_id": 32357, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32360, + "make_id": 32114, + "model_id": 32334, + "year_id": 32357, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32361, + "make_id": 32114, + "model_id": 32334, + "year_id": 32361, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32362, + "make_id": 32114, + "model_id": 32334, + "year_id": 32361, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32363, + "make_id": 32114, + "model_id": 32334, + "year_id": 32361, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32364, + "make_id": 32114, + "model_id": 32334, + "year_id": 32361, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32365, + "make_id": 32114, + "model_id": 32334, + "year_id": 32365, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32366, + "make_id": 32114, + "model_id": 32334, + "year_id": 32365, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32367, + "make_id": 32114, + "model_id": 32334, + "year_id": 32365, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32368, + "make_id": 32114, + "model_id": 32334, + "year_id": 32365, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32369, + "make_id": 32114, + "model_id": 32334, + "year_id": 32369, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32370, + "make_id": 32114, + "model_id": 32334, + "year_id": 32369, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32371, + "make_id": 32114, + "model_id": 32334, + "year_id": 32371, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32372, + "make_id": 32114, + "model_id": 32334, + "year_id": 32371, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32373, + "make_id": 32114, + "model_id": 32373, + "year_id": 32373, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32374, + "make_id": 32114, + "model_id": 32373, + "year_id": 32373, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32375, + "make_id": 32114, + "model_id": 32373, + "year_id": 32373, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32376, + "make_id": 32114, + "model_id": 32373, + "year_id": 32373, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32377, + "make_id": 32114, + "model_id": 32373, + "year_id": 32373, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32378, + "make_id": 32114, + "model_id": 32373, + "year_id": 32378, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32379, + "make_id": 32114, + "model_id": 32373, + "year_id": 32378, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32380, + "make_id": 32114, + "model_id": 32373, + "year_id": 32378, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32381, + "make_id": 32114, + "model_id": 32373, + "year_id": 32378, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32382, + "make_id": 32114, + "model_id": 32373, + "year_id": 32382, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32383, + "make_id": 32114, + "model_id": 32373, + "year_id": 32382, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32384, + "make_id": 32114, + "model_id": 32373, + "year_id": 32382, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32385, + "make_id": 32114, + "model_id": 32373, + "year_id": 32382, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32386, + "make_id": 32114, + "model_id": 32386, + "year_id": 32386, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32387, + "make_id": 32114, + "model_id": 32386, + "year_id": 32386, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32388, + "make_id": 32114, + "model_id": 32386, + "year_id": 32386, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32389, + "make_id": 32114, + "model_id": 32386, + "year_id": 32386, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32390, + "make_id": 32114, + "model_id": 32386, + "year_id": 32390, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32391, + "make_id": 32114, + "model_id": 32386, + "year_id": 32390, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32392, + "make_id": 32114, + "model_id": 32386, + "year_id": 32390, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32393, + "make_id": 32114, + "model_id": 32386, + "year_id": 32390, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32394, + "make_id": 32114, + "model_id": 32386, + "year_id": 32394, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32395, + "make_id": 32114, + "model_id": 32386, + "year_id": 32394, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32396, + "make_id": 32114, + "model_id": 32386, + "year_id": 32394, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32397, + "make_id": 32114, + "model_id": 32386, + "year_id": 32394, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32398, + "make_id": 32114, + "model_id": 32386, + "year_id": 32398, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32399, + "make_id": 32114, + "model_id": 32386, + "year_id": 32398, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32400, + "make_id": 32114, + "model_id": 32386, + "year_id": 32398, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32401, + "make_id": 32114, + "model_id": 32386, + "year_id": 32398, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32402, + "make_id": 32114, + "model_id": 32386, + "year_id": 32402, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32403, + "make_id": 32114, + "model_id": 32386, + "year_id": 32402, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32404, + "make_id": 32114, + "model_id": 32386, + "year_id": 32402, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32405, + "make_id": 32114, + "model_id": 32386, + "year_id": 32402, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32406, + "make_id": 32114, + "model_id": 32386, + "year_id": 32406, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32407, + "make_id": 32114, + "model_id": 32386, + "year_id": 32406, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32408, + "make_id": 32114, + "model_id": 32386, + "year_id": 32406, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32409, + "make_id": 32114, + "model_id": 32386, + "year_id": 32406, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32410, + "make_id": 32114, + "model_id": 32386, + "year_id": 32406, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32411, + "make_id": 32114, + "model_id": 32386, + "year_id": 32411, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32412, + "make_id": 32114, + "model_id": 32386, + "year_id": 32411, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32413, + "make_id": 32114, + "model_id": 32386, + "year_id": 32411, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32414, + "make_id": 32114, + "model_id": 32386, + "year_id": 32411, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32415, + "make_id": 32114, + "model_id": 32386, + "year_id": 32411, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32416, + "make_id": 32114, + "model_id": 32416, + "year_id": 32416, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32417, + "make_id": 32114, + "model_id": 32416, + "year_id": 32417, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32418, + "make_id": 32114, + "model_id": 32416, + "year_id": 32417, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32419, + "make_id": 32114, + "model_id": 32416, + "year_id": 32419, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32420, + "make_id": 32114, + "model_id": 32416, + "year_id": 32419, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32421, + "make_id": 32114, + "model_id": 32416, + "year_id": 32419, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32422, + "make_id": 32114, + "model_id": 32416, + "year_id": 32422, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32423, + "make_id": 32114, + "model_id": 32416, + "year_id": 32422, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32424, + "make_id": 32114, + "model_id": 32416, + "year_id": 32422, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32425, + "make_id": 32114, + "model_id": 32416, + "year_id": 32422, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32426, + "make_id": 32114, + "model_id": 32416, + "year_id": 32422, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32427, + "make_id": 32114, + "model_id": 32416, + "year_id": 32427, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32428, + "make_id": 32114, + "model_id": 32416, + "year_id": 32427, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32429, + "make_id": 32114, + "model_id": 32416, + "year_id": 32427, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32430, + "make_id": 32114, + "model_id": 32416, + "year_id": 32427, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32431, + "make_id": 32114, + "model_id": 32416, + "year_id": 32427, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32432, + "make_id": 32114, + "model_id": 32416, + "year_id": 32432, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32433, + "make_id": 32114, + "model_id": 32416, + "year_id": 32432, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32434, + "make_id": 32114, + "model_id": 32416, + "year_id": 32432, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32435, + "make_id": 32114, + "model_id": 32416, + "year_id": 32432, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32436, + "make_id": 32114, + "model_id": 32416, + "year_id": 32432, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32437, + "make_id": 32114, + "model_id": 32416, + "year_id": 32437, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32438, + "make_id": 32114, + "model_id": 32416, + "year_id": 32437, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32439, + "make_id": 32114, + "model_id": 32416, + "year_id": 32437, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32440, + "make_id": 32114, + "model_id": 32416, + "year_id": 32437, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32441, + "make_id": 32114, + "model_id": 32416, + "year_id": 32441, + "cylinders": 3, + "displacement": 1.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32442, + "make_id": 32114, + "model_id": 32416, + "year_id": 32441, + "cylinders": 3, + "displacement": 1.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32443, + "make_id": 32114, + "model_id": 32443, + "year_id": 32443, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32444, + "make_id": 32114, + "model_id": 32443, + "year_id": 32443, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32445, + "make_id": 32114, + "model_id": 32443, + "year_id": 32443, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32446, + "make_id": 32114, + "model_id": 32443, + "year_id": 32443, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32447, + "make_id": 32114, + "model_id": 32443, + "year_id": 32447, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32448, + "make_id": 32114, + "model_id": 32443, + "year_id": 32447, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32449, + "make_id": 32114, + "model_id": 32443, + "year_id": 32447, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32450, + "make_id": 32114, + "model_id": 32443, + "year_id": 32447, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32451, + "make_id": 32114, + "model_id": 32443, + "year_id": 32451, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32452, + "make_id": 32114, + "model_id": 32443, + "year_id": 32451, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32453, + "make_id": 32114, + "model_id": 32443, + "year_id": 32451, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32454, + "make_id": 32114, + "model_id": 32443, + "year_id": 32451, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32455, + "make_id": 32114, + "model_id": 32443, + "year_id": 32455, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32456, + "make_id": 32114, + "model_id": 32443, + "year_id": 32455, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32457, + "make_id": 32114, + "model_id": 32443, + "year_id": 32455, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32458, + "make_id": 32114, + "model_id": 32443, + "year_id": 32455, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32459, + "make_id": 32114, + "model_id": 32443, + "year_id": 32459, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32460, + "make_id": 32114, + "model_id": 32443, + "year_id": 32459, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32461, + "make_id": 32114, + "model_id": 32443, + "year_id": 32459, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32462, + "make_id": 32114, + "model_id": 32443, + "year_id": 32459, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32463, + "make_id": 32114, + "model_id": 32443, + "year_id": 32463, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32464, + "make_id": 32114, + "model_id": 32443, + "year_id": 32463, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32465, + "make_id": 32114, + "model_id": 32443, + "year_id": 32463, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32466, + "make_id": 32114, + "model_id": 32443, + "year_id": 32463, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32467, + "make_id": 32114, + "model_id": 32443, + "year_id": 32467, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32468, + "make_id": 32114, + "model_id": 32443, + "year_id": 32467, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32469, + "make_id": 32114, + "model_id": 32443, + "year_id": 32467, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32470, + "make_id": 32114, + "model_id": 32443, + "year_id": 32467, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32471, + "make_id": 32114, + "model_id": 32443, + "year_id": 32467, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32472, + "make_id": 32114, + "model_id": 32443, + "year_id": 32472, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32473, + "make_id": 32114, + "model_id": 32443, + "year_id": 32472, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32474, + "make_id": 32114, + "model_id": 32443, + "year_id": 32472, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32475, + "make_id": 32114, + "model_id": 32443, + "year_id": 32472, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32476, + "make_id": 32114, + "model_id": 32443, + "year_id": 32472, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32477, + "make_id": 32114, + "model_id": 32443, + "year_id": 32477, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32478, + "make_id": 32114, + "model_id": 32443, + "year_id": 32477, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32479, + "make_id": 32114, + "model_id": 32443, + "year_id": 32477, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32480, + "make_id": 32114, + "model_id": 32443, + "year_id": 32477, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32481, + "make_id": 32114, + "model_id": 32443, + "year_id": 32477, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32482, + "make_id": 32114, + "model_id": 32443, + "year_id": 32482, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32483, + "make_id": 32114, + "model_id": 32443, + "year_id": 32482, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32484, + "make_id": 32114, + "model_id": 32443, + "year_id": 32482, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32485, + "make_id": 32114, + "model_id": 32443, + "year_id": 32482, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32486, + "make_id": 32114, + "model_id": 32443, + "year_id": 32486, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32487, + "make_id": 32114, + "model_id": 32443, + "year_id": 32486, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32488, + "make_id": 32114, + "model_id": 32443, + "year_id": 32488, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32489, + "make_id": 32114, + "model_id": 32443, + "year_id": 32488, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32490, + "make_id": 32114, + "model_id": 32443, + "year_id": 32490, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32491, + "make_id": 32114, + "model_id": 32443, + "year_id": 32491, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32492, + "make_id": 32114, + "model_id": 32443, + "year_id": 32491, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32493, + "make_id": 32114, + "model_id": 32443, + "year_id": 32491, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32494, + "make_id": 32114, + "model_id": 32443, + "year_id": 32491, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32495, + "make_id": 32114, + "model_id": 32443, + "year_id": 32495, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32496, + "make_id": 32114, + "model_id": 32443, + "year_id": 32495, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32497, + "make_id": 32114, + "model_id": 32443, + "year_id": 32495, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32498, + "make_id": 32114, + "model_id": 32443, + "year_id": 32495, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32499, + "make_id": 32114, + "model_id": 32443, + "year_id": 32499, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32500, + "make_id": 32114, + "model_id": 32443, + "year_id": 32499, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32501, + "make_id": 32114, + "model_id": 32443, + "year_id": 32499, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32502, + "make_id": 32114, + "model_id": 32443, + "year_id": 32499, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32503, + "make_id": 32114, + "model_id": 32443, + "year_id": 32499, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32504, + "make_id": 32114, + "model_id": 32443, + "year_id": 32504, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32505, + "make_id": 32114, + "model_id": 32443, + "year_id": 32504, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32506, + "make_id": 32114, + "model_id": 32443, + "year_id": 32504, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32507, + "make_id": 32114, + "model_id": 32443, + "year_id": 32504, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32508, + "make_id": 32114, + "model_id": 32443, + "year_id": 32504, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32509, + "make_id": 32114, + "model_id": 32443, + "year_id": 32504, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32510, + "make_id": 32114, + "model_id": 32443, + "year_id": 32510, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32511, + "make_id": 32114, + "model_id": 32443, + "year_id": 32510, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32512, + "make_id": 32114, + "model_id": 32443, + "year_id": 32510, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32513, + "make_id": 32114, + "model_id": 32443, + "year_id": 32510, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32514, + "make_id": 32114, + "model_id": 32443, + "year_id": 32510, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32515, + "make_id": 32114, + "model_id": 32443, + "year_id": 32510, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32516, + "make_id": 32114, + "model_id": 32443, + "year_id": 32516, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32517, + "make_id": 32114, + "model_id": 32443, + "year_id": 32516, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32518, + "make_id": 32114, + "model_id": 32443, + "year_id": 32516, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32519, + "make_id": 32114, + "model_id": 32443, + "year_id": 32516, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32520, + "make_id": 32114, + "model_id": 32443, + "year_id": 32520, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32521, + "make_id": 32114, + "model_id": 32443, + "year_id": 32520, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32522, + "make_id": 32114, + "model_id": 32443, + "year_id": 32520, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32523, + "make_id": 32114, + "model_id": 32443, + "year_id": 32520, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32524, + "make_id": 32114, + "model_id": 32443, + "year_id": 32524, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32525, + "make_id": 32114, + "model_id": 32443, + "year_id": 32524, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32526, + "make_id": 32114, + "model_id": 32443, + "year_id": 32524, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32527, + "make_id": 32114, + "model_id": 32443, + "year_id": 32524, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32528, + "make_id": 32114, + "model_id": 32443, + "year_id": 32528, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32529, + "make_id": 32114, + "model_id": 32443, + "year_id": 32528, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32530, + "make_id": 32114, + "model_id": 32443, + "year_id": 32528, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32531, + "make_id": 32114, + "model_id": 32443, + "year_id": 32531, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32532, + "make_id": 32114, + "model_id": 32443, + "year_id": 32531, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32533, + "make_id": 32114, + "model_id": 32443, + "year_id": 32531, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32534, + "make_id": 32114, + "model_id": 32443, + "year_id": 32534, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32535, + "make_id": 32114, + "model_id": 32443, + "year_id": 32534, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32536, + "make_id": 32114, + "model_id": 32443, + "year_id": 32536, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32537, + "make_id": 32114, + "model_id": 32443, + "year_id": 32536, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32538, + "make_id": 32114, + "model_id": 32443, + "year_id": 32538, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32539, + "make_id": 32114, + "model_id": 32443, + "year_id": 32538, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32540, + "make_id": 32114, + "model_id": 32540, + "year_id": 32540, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32541, + "make_id": 32114, + "model_id": 32540, + "year_id": 32540, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32542, + "make_id": 32114, + "model_id": 32542, + "year_id": 32542, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32543, + "make_id": 32114, + "model_id": 32542, + "year_id": 32542, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32544, + "make_id": 32114, + "model_id": 32542, + "year_id": 32542, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32545, + "make_id": 32114, + "model_id": 32542, + "year_id": 32545, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32546, + "make_id": 32114, + "model_id": 32542, + "year_id": 32545, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32547, + "make_id": 32114, + "model_id": 32542, + "year_id": 32547, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32548, + "make_id": 32114, + "model_id": 32542, + "year_id": 32547, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32549, + "make_id": 32114, + "model_id": 32542, + "year_id": 32549, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32550, + "make_id": 32114, + "model_id": 32542, + "year_id": 32549, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32551, + "make_id": 32114, + "model_id": 32551, + "year_id": 32551, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32552, + "make_id": 32114, + "model_id": 32551, + "year_id": 32551, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32553, + "make_id": 32114, + "model_id": 32551, + "year_id": 32551, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32554, + "make_id": 32114, + "model_id": 32551, + "year_id": 32551, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32555, + "make_id": 32114, + "model_id": 32551, + "year_id": 32555, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32556, + "make_id": 32114, + "model_id": 32551, + "year_id": 32555, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32557, + "make_id": 32114, + "model_id": 32551, + "year_id": 32555, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32558, + "make_id": 32114, + "model_id": 32551, + "year_id": 32555, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32559, + "make_id": 32114, + "model_id": 32551, + "year_id": 32559, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32560, + "make_id": 32114, + "model_id": 32551, + "year_id": 32559, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32561, + "make_id": 32114, + "model_id": 32551, + "year_id": 32559, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32562, + "make_id": 32114, + "model_id": 32551, + "year_id": 32559, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32563, + "make_id": 32114, + "model_id": 32551, + "year_id": 32563, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32564, + "make_id": 32114, + "model_id": 32551, + "year_id": 32563, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32565, + "make_id": 32114, + "model_id": 32551, + "year_id": 32563, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32566, + "make_id": 32114, + "model_id": 32551, + "year_id": 32563, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32567, + "make_id": 32114, + "model_id": 32551, + "year_id": 32567, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32568, + "make_id": 32114, + "model_id": 32551, + "year_id": 32567, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32569, + "make_id": 32114, + "model_id": 32551, + "year_id": 32567, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32570, + "make_id": 32114, + "model_id": 32551, + "year_id": 32567, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32571, + "make_id": 32114, + "model_id": 32551, + "year_id": 32571, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32572, + "make_id": 32114, + "model_id": 32551, + "year_id": 32571, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32573, + "make_id": 32114, + "model_id": 32551, + "year_id": 32571, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32574, + "make_id": 32114, + "model_id": 32551, + "year_id": 32571, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32575, + "make_id": 32114, + "model_id": 32551, + "year_id": 32575, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32576, + "make_id": 32114, + "model_id": 32551, + "year_id": 32575, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32577, + "make_id": 32114, + "model_id": 32551, + "year_id": 32575, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32578, + "make_id": 32114, + "model_id": 32551, + "year_id": 32575, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32579, + "make_id": 32114, + "model_id": 32551, + "year_id": 32579, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32580, + "make_id": 32114, + "model_id": 32551, + "year_id": 32579, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32581, + "make_id": 32114, + "model_id": 32551, + "year_id": 32579, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32582, + "make_id": 32114, + "model_id": 32551, + "year_id": 32579, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32583, + "make_id": 32114, + "model_id": 32551, + "year_id": 32579, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32584, + "make_id": 32114, + "model_id": 32551, + "year_id": 32584, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32585, + "make_id": 32114, + "model_id": 32551, + "year_id": 32584, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32586, + "make_id": 32114, + "model_id": 32551, + "year_id": 32584, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32587, + "make_id": 32114, + "model_id": 32551, + "year_id": 32584, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32588, + "make_id": 32114, + "model_id": 32551, + "year_id": 32584, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32589, + "make_id": 32114, + "model_id": 32551, + "year_id": 32589, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32590, + "make_id": 32114, + "model_id": 32551, + "year_id": 32589, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32591, + "make_id": 32114, + "model_id": 32551, + "year_id": 32589, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32592, + "make_id": 32114, + "model_id": 32551, + "year_id": 32589, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32593, + "make_id": 32114, + "model_id": 32551, + "year_id": 32593, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32594, + "make_id": 32114, + "model_id": 32551, + "year_id": 32593, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32595, + "make_id": 32114, + "model_id": 32551, + "year_id": 32595, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32596, + "make_id": 32114, + "model_id": 32551, + "year_id": 32595, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32597, + "make_id": 32114, + "model_id": 32551, + "year_id": 32595, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32598, + "make_id": 32114, + "model_id": 32551, + "year_id": 32598, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32599, + "make_id": 32114, + "model_id": 32551, + "year_id": 32598, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32600, + "make_id": 32114, + "model_id": 32551, + "year_id": 32598, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32601, + "make_id": 32114, + "model_id": 32551, + "year_id": 32598, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32602, + "make_id": 32114, + "model_id": 32551, + "year_id": 32602, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32603, + "make_id": 32114, + "model_id": 32551, + "year_id": 32602, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32604, + "make_id": 32114, + "model_id": 32551, + "year_id": 32602, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32605, + "make_id": 32114, + "model_id": 32551, + "year_id": 32602, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32606, + "make_id": 32114, + "model_id": 32551, + "year_id": 32606, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32607, + "make_id": 32114, + "model_id": 32551, + "year_id": 32606, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32608, + "make_id": 32114, + "model_id": 32551, + "year_id": 32606, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32609, + "make_id": 32114, + "model_id": 32551, + "year_id": 32606, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32610, + "make_id": 32114, + "model_id": 32610, + "year_id": 32610, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32611, + "make_id": 32114, + "model_id": 32610, + "year_id": 32610, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32612, + "make_id": 32114, + "model_id": 32610, + "year_id": 32610, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32613, + "make_id": 32114, + "model_id": 32613, + "year_id": 32613, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32614, + "make_id": 32114, + "model_id": 32613, + "year_id": 32613, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32615, + "make_id": 32114, + "model_id": 32613, + "year_id": 32615, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32616, + "make_id": 32114, + "model_id": 32613, + "year_id": 32616, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32617, + "make_id": 32114, + "model_id": 32617, + "year_id": 32617, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32618, + "make_id": 32114, + "model_id": 32617, + "year_id": 32617, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32619, + "make_id": 32114, + "model_id": 32617, + "year_id": 32617, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32620, + "make_id": 32114, + "model_id": 32617, + "year_id": 32617, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32621, + "make_id": 32114, + "model_id": 32617, + "year_id": 32621, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32622, + "make_id": 32114, + "model_id": 32617, + "year_id": 32621, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32623, + "make_id": 32114, + "model_id": 32617, + "year_id": 32621, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32624, + "make_id": 32114, + "model_id": 32617, + "year_id": 32621, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32625, + "make_id": 32114, + "model_id": 32625, + "year_id": 32625, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32626, + "make_id": 32114, + "model_id": 32625, + "year_id": 32625, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32627, + "make_id": 32114, + "model_id": 32625, + "year_id": 32625, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32628, + "make_id": 32114, + "model_id": 32625, + "year_id": 32625, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32629, + "make_id": 32114, + "model_id": 32625, + "year_id": 32629, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32630, + "make_id": 32114, + "model_id": 32625, + "year_id": 32629, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32631, + "make_id": 32114, + "model_id": 32625, + "year_id": 32629, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32632, + "make_id": 32114, + "model_id": 32625, + "year_id": 32629, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32633, + "make_id": 32114, + "model_id": 32633, + "year_id": 32633, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32634, + "make_id": 32114, + "model_id": 32633, + "year_id": 32633, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32635, + "make_id": 32114, + "model_id": 32633, + "year_id": 32633, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32636, + "make_id": 32114, + "model_id": 32633, + "year_id": 32633, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32637, + "make_id": 32114, + "model_id": 32633, + "year_id": 32633, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32638, + "make_id": 32114, + "model_id": 32633, + "year_id": 32638, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32639, + "make_id": 32114, + "model_id": 32633, + "year_id": 32638, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32640, + "make_id": 32114, + "model_id": 32633, + "year_id": 32638, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32641, + "make_id": 32114, + "model_id": 32633, + "year_id": 32638, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32642, + "make_id": 32114, + "model_id": 32633, + "year_id": 32642, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32643, + "make_id": 32114, + "model_id": 32633, + "year_id": 32642, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32644, + "make_id": 32114, + "model_id": 32633, + "year_id": 32642, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32645, + "make_id": 32114, + "model_id": 32633, + "year_id": 32642, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32646, + "make_id": 32114, + "model_id": 32633, + "year_id": 32646, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32647, + "make_id": 32114, + "model_id": 32633, + "year_id": 32646, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32648, + "make_id": 32114, + "model_id": 32633, + "year_id": 32646, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32649, + "make_id": 32114, + "model_id": 32633, + "year_id": 32646, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32650, + "make_id": 32114, + "model_id": 32650, + "year_id": 32650, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32651, + "make_id": 32114, + "model_id": 32651, + "year_id": 32651, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32652, + "make_id": 32114, + "model_id": 32651, + "year_id": 32651, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32653, + "make_id": 32114, + "model_id": 32651, + "year_id": 32651, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32654, + "make_id": 32114, + "model_id": 32651, + "year_id": 32651, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32655, + "make_id": 32114, + "model_id": 32651, + "year_id": 32651, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32656, + "make_id": 32114, + "model_id": 32651, + "year_id": 32656, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32657, + "make_id": 32114, + "model_id": 32651, + "year_id": 32656, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32658, + "make_id": 32114, + "model_id": 32651, + "year_id": 32656, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32659, + "make_id": 32114, + "model_id": 32651, + "year_id": 32656, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32660, + "make_id": 32114, + "model_id": 32651, + "year_id": 32660, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32661, + "make_id": 32114, + "model_id": 32651, + "year_id": 32660, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32662, + "make_id": 32114, + "model_id": 32651, + "year_id": 32660, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32663, + "make_id": 32114, + "model_id": 32651, + "year_id": 32660, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32664, + "make_id": 32114, + "model_id": 32651, + "year_id": 32664, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32665, + "make_id": 32114, + "model_id": 32651, + "year_id": 32664, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32666, + "make_id": 32114, + "model_id": 32651, + "year_id": 32664, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32667, + "make_id": 32114, + "model_id": 32651, + "year_id": 32664, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32668, + "make_id": 32114, + "model_id": 32651, + "year_id": 32668, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32669, + "make_id": 32114, + "model_id": 32651, + "year_id": 32668, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32670, + "make_id": 32114, + "model_id": 32670, + "year_id": 32670, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32671, + "make_id": 32114, + "model_id": 32671, + "year_id": 32671, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32672, + "make_id": 32114, + "model_id": 32671, + "year_id": 32672, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32673, + "make_id": 32114, + "model_id": 32671, + "year_id": 32672, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32674, + "make_id": 32114, + "model_id": 32671, + "year_id": 32674, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32675, + "make_id": 32114, + "model_id": 32671, + "year_id": 32674, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32676, + "make_id": 32114, + "model_id": 32671, + "year_id": 32676, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32677, + "make_id": 32114, + "model_id": 32671, + "year_id": 32676, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32678, + "make_id": 32114, + "model_id": 32671, + "year_id": 32676, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32679, + "make_id": 32114, + "model_id": 32671, + "year_id": 32679, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32680, + "make_id": 32114, + "model_id": 32671, + "year_id": 32679, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32681, + "make_id": 32114, + "model_id": 32671, + "year_id": 32679, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32682, + "make_id": 32114, + "model_id": 32671, + "year_id": 32682, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32683, + "make_id": 32114, + "model_id": 32671, + "year_id": 32682, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32684, + "make_id": 32114, + "model_id": 32671, + "year_id": 32684, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32685, + "make_id": 32114, + "model_id": 32671, + "year_id": 32684, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32686, + "make_id": 32114, + "model_id": 32671, + "year_id": 32686, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32687, + "make_id": 32114, + "model_id": 32671, + "year_id": 32686, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32688, + "make_id": 32114, + "model_id": 32688, + "year_id": 32688, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32689, + "make_id": 32114, + "model_id": 32688, + "year_id": 32688, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32690, + "make_id": 32114, + "model_id": 32688, + "year_id": 32688, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32691, + "make_id": 32114, + "model_id": 32688, + "year_id": 32688, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32692, + "make_id": 32114, + "model_id": 32688, + "year_id": 32688, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32693, + "make_id": 32114, + "model_id": 32688, + "year_id": 32693, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32694, + "make_id": 32114, + "model_id": 32688, + "year_id": 32693, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32695, + "make_id": 32114, + "model_id": 32688, + "year_id": 32693, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32696, + "make_id": 32114, + "model_id": 32688, + "year_id": 32693, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32697, + "make_id": 32114, + "model_id": 32688, + "year_id": 32693, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32698, + "make_id": 32114, + "model_id": 32688, + "year_id": 32698, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32699, + "make_id": 32114, + "model_id": 32688, + "year_id": 32698, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32700, + "make_id": 32114, + "model_id": 32688, + "year_id": 32698, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32701, + "make_id": 32114, + "model_id": 32688, + "year_id": 32698, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32702, + "make_id": 32114, + "model_id": 32688, + "year_id": 32698, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32703, + "make_id": 32114, + "model_id": 32688, + "year_id": 32703, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32704, + "make_id": 32114, + "model_id": 32688, + "year_id": 32703, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32705, + "make_id": 32114, + "model_id": 32688, + "year_id": 32703, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32706, + "make_id": 32114, + "model_id": 32688, + "year_id": 32703, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32707, + "make_id": 32114, + "model_id": 32688, + "year_id": 32703, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32708, + "make_id": 32114, + "model_id": 32688, + "year_id": 32708, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32709, + "make_id": 32114, + "model_id": 32688, + "year_id": 32708, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32710, + "make_id": 32114, + "model_id": 32688, + "year_id": 32708, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32711, + "make_id": 32114, + "model_id": 32688, + "year_id": 32708, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32712, + "make_id": 32114, + "model_id": 32688, + "year_id": 32708, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32713, + "make_id": 32114, + "model_id": 32688, + "year_id": 32713, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32714, + "make_id": 32114, + "model_id": 32688, + "year_id": 32713, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32715, + "make_id": 32114, + "model_id": 32688, + "year_id": 32713, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32716, + "make_id": 32114, + "model_id": 32688, + "year_id": 32716, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32717, + "make_id": 32114, + "model_id": 32688, + "year_id": 32716, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32718, + "make_id": 32114, + "model_id": 32688, + "year_id": 32716, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32719, + "make_id": 32114, + "model_id": 32688, + "year_id": 32719, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32720, + "make_id": 32114, + "model_id": 32688, + "year_id": 32719, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32721, + "make_id": 32114, + "model_id": 32688, + "year_id": 32719, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32722, + "make_id": 32114, + "model_id": 32722, + "year_id": 32722, + "cylinders": 0, + "displacement": 0, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32723, + "make_id": 32114, + "model_id": 32722, + "year_id": 32722, + "cylinders": 0, + "displacement": 0, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32724, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 32725, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 32726, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 32727, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 32728, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 32729, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 32730, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32731, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32732, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32733, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 32734, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 32735, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 32736, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 32737, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32738, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32739, + "make_id": 32114, + "model_id": 32724, + "year_id": 32724, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32740, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32741, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32742, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32743, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32744, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32745, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32746, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32747, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32748, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32749, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32750, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32751, + "make_id": 32114, + "model_id": 32724, + "year_id": 32740, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32752, + "make_id": 32114, + "model_id": 32752, + "year_id": 32752, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32753, + "make_id": 32114, + "model_id": 32752, + "year_id": 32752, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32754, + "make_id": 32114, + "model_id": 32752, + "year_id": 32752, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32755, + "make_id": 32114, + "model_id": 32752, + "year_id": 32752, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32756, + "make_id": 32114, + "model_id": 32752, + "year_id": 32752, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32757, + "make_id": 32114, + "model_id": 32752, + "year_id": 32752, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32758, + "make_id": 32114, + "model_id": 32752, + "year_id": 32752, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32759, + "make_id": 32114, + "model_id": 32752, + "year_id": 32752, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32760, + "make_id": 32114, + "model_id": 32752, + "year_id": 32752, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32761, + "make_id": 32114, + "model_id": 32752, + "year_id": 32752, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32762, + "make_id": 32114, + "model_id": 32752, + "year_id": 32762, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32763, + "make_id": 32114, + "model_id": 32752, + "year_id": 32762, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32764, + "make_id": 32114, + "model_id": 32752, + "year_id": 32762, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32765, + "make_id": 32114, + "model_id": 32752, + "year_id": 32762, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32766, + "make_id": 32114, + "model_id": 32752, + "year_id": 32762, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32767, + "make_id": 32114, + "model_id": 32752, + "year_id": 32762, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32768, + "make_id": 32114, + "model_id": 32752, + "year_id": 32762, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32769, + "make_id": 32114, + "model_id": 32752, + "year_id": 32762, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32770, + "make_id": 32114, + "model_id": 32752, + "year_id": 32770, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32771, + "make_id": 32114, + "model_id": 32752, + "year_id": 32770, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32772, + "make_id": 32114, + "model_id": 32752, + "year_id": 32770, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32773, + "make_id": 32114, + "model_id": 32752, + "year_id": 32770, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32774, + "make_id": 32114, + "model_id": 32752, + "year_id": 32770, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32775, + "make_id": 32114, + "model_id": 32752, + "year_id": 32775, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32776, + "make_id": 32114, + "model_id": 32752, + "year_id": 32775, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32777, + "make_id": 32114, + "model_id": 32752, + "year_id": 32775, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32778, + "make_id": 32114, + "model_id": 32752, + "year_id": 32775, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32779, + "make_id": 32114, + "model_id": 32752, + "year_id": 32775, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32780, + "make_id": 32114, + "model_id": 32780, + "year_id": 32780, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32781, + "make_id": 32114, + "model_id": 32780, + "year_id": 32780, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32782, + "make_id": 32114, + "model_id": 32780, + "year_id": 32782, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32783, + "make_id": 32114, + "model_id": 32780, + "year_id": 32782, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32784, + "make_id": 32114, + "model_id": 32780, + "year_id": 32784, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32785, + "make_id": 32114, + "model_id": 32780, + "year_id": 32784, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32786, + "make_id": 32114, + "model_id": 32786, + "year_id": 32786, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32787, + "make_id": 32114, + "model_id": 32786, + "year_id": 32787, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32788, + "make_id": 32114, + "model_id": 32786, + "year_id": 32787, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32789, + "make_id": 32114, + "model_id": 32786, + "year_id": 32789, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32790, + "make_id": 32114, + "model_id": 32786, + "year_id": 32789, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32791, + "make_id": 32114, + "model_id": 32786, + "year_id": 32791, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32792, + "make_id": 32114, + "model_id": 32786, + "year_id": 32791, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32793, + "make_id": 32114, + "model_id": 32786, + "year_id": 32793, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32794, + "make_id": 32114, + "model_id": 32786, + "year_id": 32794, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32795, + "make_id": 32114, + "model_id": 32795, + "year_id": 32795, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32796, + "make_id": 32114, + "model_id": 32795, + "year_id": 32796, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32797, + "make_id": 32114, + "model_id": 32795, + "year_id": 32797, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32798, + "make_id": 32114, + "model_id": 32795, + "year_id": 32798, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32799, + "make_id": 32114, + "model_id": 32795, + "year_id": 32799, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32800, + "make_id": 32114, + "model_id": 32795, + "year_id": 32800, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32801, + "make_id": 32114, + "model_id": 32795, + "year_id": 32801, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32802, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 32803, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 32804, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 32805, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 32806, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32807, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32808, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32809, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 32810, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 32811, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32812, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 32813, + "make_id": 32114, + "model_id": 32802, + "year_id": 32802, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32814, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32815, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32816, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32817, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32818, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32819, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32820, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32821, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32822, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32823, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32824, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32825, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32826, + "make_id": 32114, + "model_id": 32802, + "year_id": 32814, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32827, + "make_id": 32114, + "model_id": 32802, + "year_id": 32827, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32828, + "make_id": 32114, + "model_id": 32802, + "year_id": 32827, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32829, + "make_id": 32114, + "model_id": 32802, + "year_id": 32827, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32830, + "make_id": 32114, + "model_id": 32802, + "year_id": 32827, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32831, + "make_id": 32114, + "model_id": 32802, + "year_id": 32827, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32832, + "make_id": 32114, + "model_id": 32802, + "year_id": 32827, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32833, + "make_id": 32114, + "model_id": 32802, + "year_id": 32827, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32834, + "make_id": 32114, + "model_id": 32802, + "year_id": 32827, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32835, + "make_id": 32114, + "model_id": 32802, + "year_id": 32827, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32836, + "make_id": 32114, + "model_id": 32802, + "year_id": 32827, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32837, + "make_id": 32114, + "model_id": 32802, + "year_id": 32837, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32838, + "make_id": 32114, + "model_id": 32802, + "year_id": 32837, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32839, + "make_id": 32114, + "model_id": 32802, + "year_id": 32837, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32840, + "make_id": 32114, + "model_id": 32802, + "year_id": 32837, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32841, + "make_id": 32114, + "model_id": 32802, + "year_id": 32837, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32842, + "make_id": 32114, + "model_id": 32802, + "year_id": 32837, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32843, + "make_id": 32114, + "model_id": 32802, + "year_id": 32837, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32844, + "make_id": 32114, + "model_id": 32802, + "year_id": 32837, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32845, + "make_id": 32114, + "model_id": 32802, + "year_id": 32845, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32846, + "make_id": 32114, + "model_id": 32802, + "year_id": 32845, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32847, + "make_id": 32114, + "model_id": 32802, + "year_id": 32845, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32848, + "make_id": 32114, + "model_id": 32802, + "year_id": 32845, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32849, + "make_id": 32114, + "model_id": 32802, + "year_id": 32845, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32850, + "make_id": 32114, + "model_id": 32802, + "year_id": 32850, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32851, + "make_id": 32114, + "model_id": 32802, + "year_id": 32850, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32852, + "make_id": 32114, + "model_id": 32802, + "year_id": 32850, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32853, + "make_id": 32114, + "model_id": 32802, + "year_id": 32850, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32854, + "make_id": 32114, + "model_id": 32802, + "year_id": 32850, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32855, + "make_id": 32114, + "model_id": 32855, + "year_id": 32855, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32856, + "make_id": 32114, + "model_id": 32855, + "year_id": 32855, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32857, + "make_id": 32114, + "model_id": 32855, + "year_id": 32857, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32858, + "make_id": 32114, + "model_id": 32855, + "year_id": 32857, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32859, + "make_id": 32114, + "model_id": 32855, + "year_id": 32859, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32860, + "make_id": 32114, + "model_id": 32855, + "year_id": 32859, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32861, + "make_id": 32114, + "model_id": 32861, + "year_id": 32861, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32862, + "make_id": 32114, + "model_id": 32861, + "year_id": 32861, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32863, + "make_id": 32114, + "model_id": 32861, + "year_id": 32861, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32864, + "make_id": 32114, + "model_id": 32861, + "year_id": 32864, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32865, + "make_id": 32114, + "model_id": 32861, + "year_id": 32864, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32866, + "make_id": 32114, + "model_id": 32861, + "year_id": 32864, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32867, + "make_id": 32114, + "model_id": 32861, + "year_id": 32867, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32868, + "make_id": 32114, + "model_id": 32861, + "year_id": 32867, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32869, + "make_id": 32114, + "model_id": 32861, + "year_id": 32867, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 32870, + "make_id": 32114, + "model_id": 32870, + "year_id": 32870, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32871, + "make_id": 32114, + "model_id": 32870, + "year_id": 32870, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32872, + "make_id": 32114, + "model_id": 32870, + "year_id": 32870, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32873, + "make_id": 32114, + "model_id": 32870, + "year_id": 32870, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32874, + "make_id": 32114, + "model_id": 32870, + "year_id": 32874, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32875, + "make_id": 32114, + "model_id": 32870, + "year_id": 32874, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32876, + "make_id": 32114, + "model_id": 32870, + "year_id": 32874, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32877, + "make_id": 32114, + "model_id": 32870, + "year_id": 32874, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32878, + "make_id": 32114, + "model_id": 32870, + "year_id": 32874, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32879, + "make_id": 32114, + "model_id": 32870, + "year_id": 32874, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32880, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32881, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32882, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32883, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32884, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32885, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32886, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32887, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32888, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32889, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32890, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32891, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32892, + "make_id": 32114, + "model_id": 32870, + "year_id": 32880, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32893, + "make_id": 32114, + "model_id": 32870, + "year_id": 32893, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32894, + "make_id": 32114, + "model_id": 32870, + "year_id": 32893, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32895, + "make_id": 32114, + "model_id": 32870, + "year_id": 32893, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32896, + "make_id": 32114, + "model_id": 32870, + "year_id": 32893, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32897, + "make_id": 32114, + "model_id": 32870, + "year_id": 32893, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32898, + "make_id": 32114, + "model_id": 32870, + "year_id": 32893, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32899, + "make_id": 32114, + "model_id": 32870, + "year_id": 32899, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32900, + "make_id": 32114, + "model_id": 32870, + "year_id": 32899, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32901, + "make_id": 32114, + "model_id": 32870, + "year_id": 32899, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32902, + "make_id": 32114, + "model_id": 32870, + "year_id": 32899, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32903, + "make_id": 32114, + "model_id": 32870, + "year_id": 32899, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32904, + "make_id": 32114, + "model_id": 32870, + "year_id": 32899, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32905, + "make_id": 32114, + "model_id": 32870, + "year_id": 32899, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32906, + "make_id": 32114, + "model_id": 32870, + "year_id": 32906, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32907, + "make_id": 32114, + "model_id": 32870, + "year_id": 32906, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32908, + "make_id": 32114, + "model_id": 32870, + "year_id": 32906, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32909, + "make_id": 32114, + "model_id": 32870, + "year_id": 32906, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32910, + "make_id": 32114, + "model_id": 32870, + "year_id": 32906, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32911, + "make_id": 32114, + "model_id": 32870, + "year_id": 32906, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32912, + "make_id": 32114, + "model_id": 32870, + "year_id": 32906, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32913, + "make_id": 32114, + "model_id": 32870, + "year_id": 32913, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32914, + "make_id": 32114, + "model_id": 32870, + "year_id": 32913, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32915, + "make_id": 32114, + "model_id": 32870, + "year_id": 32913, + "cylinders": 6, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32916, + "make_id": 32114, + "model_id": 32870, + "year_id": 32913, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32917, + "make_id": 32114, + "model_id": 32870, + "year_id": 32913, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32918, + "make_id": 32114, + "model_id": 32870, + "year_id": 32913, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32919, + "make_id": 32114, + "model_id": 32870, + "year_id": 32913, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32920, + "make_id": 32114, + "model_id": 32920, + "year_id": 32920, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32921, + "make_id": 32114, + "model_id": 32920, + "year_id": 32921, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32922, + "make_id": 32114, + "model_id": 32920, + "year_id": 32922, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32923, + "make_id": 32114, + "model_id": 32920, + "year_id": 32922, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32924, + "make_id": 32114, + "model_id": 32920, + "year_id": 32924, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32925, + "make_id": 32114, + "model_id": 32920, + "year_id": 32925, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32926, + "make_id": 32114, + "model_id": 32926, + "year_id": 32926, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32927, + "make_id": 32114, + "model_id": 32926, + "year_id": 32926, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32928, + "make_id": 32114, + "model_id": 32926, + "year_id": 32928, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32929, + "make_id": 32114, + "model_id": 32926, + "year_id": 32928, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32930, + "make_id": 32114, + "model_id": 32926, + "year_id": 32930, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32931, + "make_id": 32114, + "model_id": 32926, + "year_id": 32930, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32932, + "make_id": 32114, + "model_id": 32926, + "year_id": 32932, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32933, + "make_id": 32114, + "model_id": 32926, + "year_id": 32932, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32934, + "make_id": 32114, + "model_id": 32934, + "year_id": 32934, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32935, + "make_id": 32114, + "model_id": 32934, + "year_id": 32935, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32936, + "make_id": 32114, + "model_id": 32934, + "year_id": 32936, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 32937, + "make_id": 32937, + "model_id": 32937, + "year_id": 32937, + "cylinders": 8, + "displacement": 6, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 32938, + "make_id": 32938, + "model_id": 32938, + "year_id": 32938, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32939, + "make_id": 32938, + "model_id": 32938, + "year_id": 32938, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32940, + "make_id": 32938, + "model_id": 32938, + "year_id": 32940, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32941, + "make_id": 32938, + "model_id": 32938, + "year_id": 32940, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32942, + "make_id": 32938, + "model_id": 32938, + "year_id": 32940, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32943, + "make_id": 32938, + "model_id": 32938, + "year_id": 32943, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32944, + "make_id": 32938, + "model_id": 32938, + "year_id": 32943, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32945, + "make_id": 32938, + "model_id": 32938, + "year_id": 32943, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32946, + "make_id": 32938, + "model_id": 32938, + "year_id": 32946, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32947, + "make_id": 32938, + "model_id": 32938, + "year_id": 32946, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32948, + "make_id": 32938, + "model_id": 32938, + "year_id": 32946, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32949, + "make_id": 32938, + "model_id": 32938, + "year_id": 32949, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32950, + "make_id": 32938, + "model_id": 32938, + "year_id": 32949, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32951, + "make_id": 32938, + "model_id": 32938, + "year_id": 32949, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32952, + "make_id": 32938, + "model_id": 32938, + "year_id": 32952, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32953, + "make_id": 32938, + "model_id": 32938, + "year_id": 32952, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32954, + "make_id": 32938, + "model_id": 32938, + "year_id": 32952, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32955, + "make_id": 32938, + "model_id": 32955, + "year_id": 32955, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32956, + "make_id": 32938, + "model_id": 32955, + "year_id": 32955, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32957, + "make_id": 32938, + "model_id": 32955, + "year_id": 32957, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32958, + "make_id": 32938, + "model_id": 32955, + "year_id": 32957, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32959, + "make_id": 32938, + "model_id": 32955, + "year_id": 32957, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32960, + "make_id": 32938, + "model_id": 32955, + "year_id": 32960, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32961, + "make_id": 32938, + "model_id": 32955, + "year_id": 32960, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32962, + "make_id": 32938, + "model_id": 32955, + "year_id": 32960, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32963, + "make_id": 32938, + "model_id": 32955, + "year_id": 32963, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32964, + "make_id": 32938, + "model_id": 32955, + "year_id": 32963, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32965, + "make_id": 32938, + "model_id": 32955, + "year_id": 32963, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32966, + "make_id": 32938, + "model_id": 32955, + "year_id": 32966, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32967, + "make_id": 32938, + "model_id": 32955, + "year_id": 32966, + "cylinders": 4, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32968, + "make_id": 32938, + "model_id": 32955, + "year_id": 32966, + "cylinders": 4, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32969, + "make_id": 32938, + "model_id": 32969, + "year_id": 32969, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32970, + "make_id": 32938, + "model_id": 32969, + "year_id": 32969, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32971, + "make_id": 32938, + "model_id": 32969, + "year_id": 32969, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32972, + "make_id": 32938, + "model_id": 32969, + "year_id": 32969, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32973, + "make_id": 32938, + "model_id": 32969, + "year_id": 32973, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32974, + "make_id": 32938, + "model_id": 32969, + "year_id": 32973, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32975, + "make_id": 32938, + "model_id": 32969, + "year_id": 32973, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32976, + "make_id": 32938, + "model_id": 32969, + "year_id": 32973, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32977, + "make_id": 32938, + "model_id": 32969, + "year_id": 32977, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32978, + "make_id": 32938, + "model_id": 32969, + "year_id": 32977, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32979, + "make_id": 32938, + "model_id": 32969, + "year_id": 32977, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32980, + "make_id": 32938, + "model_id": 32969, + "year_id": 32977, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32981, + "make_id": 32938, + "model_id": 32969, + "year_id": 32981, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32982, + "make_id": 32938, + "model_id": 32969, + "year_id": 32981, + "cylinders": 4, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32983, + "make_id": 32938, + "model_id": 32969, + "year_id": 32981, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32984, + "make_id": 32938, + "model_id": 32969, + "year_id": 32981, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 32985, + "make_id": 32938, + "model_id": 32985, + "year_id": 32985, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32986, + "make_id": 32938, + "model_id": 32985, + "year_id": 32985, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32987, + "make_id": 32938, + "model_id": 32985, + "year_id": 32987, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32988, + "make_id": 32938, + "model_id": 32985, + "year_id": 32987, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32989, + "make_id": 32938, + "model_id": 32985, + "year_id": 32989, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32990, + "make_id": 32938, + "model_id": 32985, + "year_id": 32989, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32991, + "make_id": 32938, + "model_id": 32985, + "year_id": 32991, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32992, + "make_id": 32938, + "model_id": 32985, + "year_id": 32991, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32993, + "make_id": 32938, + "model_id": 32985, + "year_id": 32991, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32994, + "make_id": 32938, + "model_id": 32985, + "year_id": 32991, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32995, + "make_id": 32938, + "model_id": 32985, + "year_id": 32995, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32996, + "make_id": 32938, + "model_id": 32985, + "year_id": 32995, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32997, + "make_id": 32938, + "model_id": 32985, + "year_id": 32995, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 32998, + "make_id": 32938, + "model_id": 32985, + "year_id": 32995, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 32999, + "make_id": 32938, + "model_id": 32985, + "year_id": 32999, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33000, + "make_id": 32938, + "model_id": 32985, + "year_id": 32999, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33001, + "make_id": 32938, + "model_id": 32985, + "year_id": 32999, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33002, + "make_id": 32938, + "model_id": 32985, + "year_id": 32999, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33003, + "make_id": 32938, + "model_id": 32985, + "year_id": 33003, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33004, + "make_id": 32938, + "model_id": 32985, + "year_id": 33003, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33005, + "make_id": 32938, + "model_id": 32985, + "year_id": 33003, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33006, + "make_id": 32938, + "model_id": 33006, + "year_id": 33006, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33007, + "make_id": 32938, + "model_id": 33006, + "year_id": 33006, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33008, + "make_id": 32938, + "model_id": 33006, + "year_id": 33008, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33009, + "make_id": 32938, + "model_id": 33006, + "year_id": 33008, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33010, + "make_id": 32938, + "model_id": 33006, + "year_id": 33008, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33011, + "make_id": 32938, + "model_id": 33006, + "year_id": 33008, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33012, + "make_id": 32938, + "model_id": 33006, + "year_id": 33012, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33013, + "make_id": 32938, + "model_id": 33006, + "year_id": 33012, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33014, + "make_id": 32938, + "model_id": 33006, + "year_id": 33012, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33015, + "make_id": 32938, + "model_id": 33006, + "year_id": 33012, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33016, + "make_id": 32938, + "model_id": 33006, + "year_id": 33016, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33017, + "make_id": 32938, + "model_id": 33006, + "year_id": 33016, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33018, + "make_id": 32938, + "model_id": 33006, + "year_id": 33018, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33019, + "make_id": 32938, + "model_id": 33006, + "year_id": 33018, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33020, + "make_id": 32938, + "model_id": 33006, + "year_id": 33018, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33021, + "make_id": 32938, + "model_id": 33021, + "year_id": 33021, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33022, + "make_id": 32938, + "model_id": 33021, + "year_id": 33021, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33023, + "make_id": 32938, + "model_id": 33021, + "year_id": 33023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33024, + "make_id": 32938, + "model_id": 33021, + "year_id": 33023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33025, + "make_id": 32938, + "model_id": 33021, + "year_id": 33025, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33026, + "make_id": 32938, + "model_id": 33021, + "year_id": 33025, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33027, + "make_id": 32938, + "model_id": 33021, + "year_id": 33027, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33028, + "make_id": 32938, + "model_id": 33021, + "year_id": 33027, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33029, + "make_id": 32938, + "model_id": 33021, + "year_id": 33029, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33030, + "make_id": 32938, + "model_id": 33021, + "year_id": 33029, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33031, + "make_id": 32938, + "model_id": 33031, + "year_id": 33031, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33032, + "make_id": 32938, + "model_id": 33031, + "year_id": 33031, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33033, + "make_id": 32938, + "model_id": 33031, + "year_id": 33033, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33034, + "make_id": 32938, + "model_id": 33031, + "year_id": 33033, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33035, + "make_id": 32938, + "model_id": 33031, + "year_id": 33035, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33036, + "make_id": 32938, + "model_id": 33031, + "year_id": 33035, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33037, + "make_id": 32938, + "model_id": 33031, + "year_id": 33037, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33038, + "make_id": 32938, + "model_id": 33031, + "year_id": 33037, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33039, + "make_id": 32938, + "model_id": 33039, + "year_id": 33039, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33040, + "make_id": 32938, + "model_id": 33039, + "year_id": 33039, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33041, + "make_id": 32938, + "model_id": 33039, + "year_id": 33041, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33042, + "make_id": 32938, + "model_id": 33039, + "year_id": 33041, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33043, + "make_id": 32938, + "model_id": 33043, + "year_id": 33043, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33044, + "make_id": 32938, + "model_id": 33043, + "year_id": 33044, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33045, + "make_id": 32938, + "model_id": 33045, + "year_id": 33045, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33046, + "make_id": 32938, + "model_id": 33045, + "year_id": 33045, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33047, + "make_id": 32938, + "model_id": 33045, + "year_id": 33045, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33048, + "make_id": 32938, + "model_id": 33045, + "year_id": 33045, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33049, + "make_id": 32938, + "model_id": 33045, + "year_id": 33049, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33050, + "make_id": 32938, + "model_id": 33045, + "year_id": 33049, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33051, + "make_id": 32938, + "model_id": 33045, + "year_id": 33049, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33052, + "make_id": 32938, + "model_id": 33045, + "year_id": 33049, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33053, + "make_id": 32938, + "model_id": 33045, + "year_id": 33053, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33054, + "make_id": 32938, + "model_id": 33045, + "year_id": 33053, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33055, + "make_id": 32938, + "model_id": 33045, + "year_id": 33053, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33056, + "make_id": 32938, + "model_id": 33045, + "year_id": 33053, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33057, + "make_id": 32938, + "model_id": 33045, + "year_id": 33057, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33058, + "make_id": 32938, + "model_id": 33045, + "year_id": 33057, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33059, + "make_id": 32938, + "model_id": 33045, + "year_id": 33057, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33060, + "make_id": 32938, + "model_id": 33045, + "year_id": 33057, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33061, + "make_id": 32938, + "model_id": 33045, + "year_id": 33061, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33062, + "make_id": 32938, + "model_id": 33045, + "year_id": 33061, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33063, + "make_id": 32938, + "model_id": 33045, + "year_id": 33061, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33064, + "make_id": 32938, + "model_id": 33045, + "year_id": 33061, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33065, + "make_id": 32938, + "model_id": 33045, + "year_id": 33065, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33066, + "make_id": 32938, + "model_id": 33045, + "year_id": 33065, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33067, + "make_id": 32938, + "model_id": 33045, + "year_id": 33065, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33068, + "make_id": 32938, + "model_id": 33045, + "year_id": 33065, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33069, + "make_id": 32938, + "model_id": 33045, + "year_id": 33069, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33070, + "make_id": 32938, + "model_id": 33045, + "year_id": 33069, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33071, + "make_id": 32938, + "model_id": 33045, + "year_id": 33069, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33072, + "make_id": 32938, + "model_id": 33045, + "year_id": 33069, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33073, + "make_id": 32938, + "model_id": 33045, + "year_id": 33073, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33074, + "make_id": 32938, + "model_id": 33045, + "year_id": 33073, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33075, + "make_id": 32938, + "model_id": 33045, + "year_id": 33073, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33076, + "make_id": 32938, + "model_id": 33045, + "year_id": 33073, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33077, + "make_id": 32938, + "model_id": 33045, + "year_id": 33077, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33078, + "make_id": 32938, + "model_id": 33045, + "year_id": 33077, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33079, + "make_id": 32938, + "model_id": 33045, + "year_id": 33077, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33080, + "make_id": 32938, + "model_id": 33045, + "year_id": 33077, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33081, + "make_id": 32938, + "model_id": 33045, + "year_id": 33077, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33082, + "make_id": 32938, + "model_id": 33045, + "year_id": 33077, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33083, + "make_id": 32938, + "model_id": 33045, + "year_id": 33083, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33084, + "make_id": 32938, + "model_id": 33045, + "year_id": 33083, + "cylinders": 6, + "displacement": 3.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33085, + "make_id": 32938, + "model_id": 33045, + "year_id": 33083, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33086, + "make_id": 32938, + "model_id": 33045, + "year_id": 33083, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33087, + "make_id": 32938, + "model_id": 33045, + "year_id": 33083, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33088, + "make_id": 32938, + "model_id": 33045, + "year_id": 33083, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33089, + "make_id": 32938, + "model_id": 33045, + "year_id": 33089, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33090, + "make_id": 32938, + "model_id": 33045, + "year_id": 33089, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33091, + "make_id": 32938, + "model_id": 33045, + "year_id": 33089, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33092, + "make_id": 32938, + "model_id": 33045, + "year_id": 33092, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33093, + "make_id": 32938, + "model_id": 33045, + "year_id": 33092, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33094, + "make_id": 32938, + "model_id": 33045, + "year_id": 33092, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33095, + "make_id": 32938, + "model_id": 33045, + "year_id": 33095, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33096, + "make_id": 32938, + "model_id": 33045, + "year_id": 33095, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33097, + "make_id": 32938, + "model_id": 33045, + "year_id": 33095, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33098, + "make_id": 32938, + "model_id": 33098, + "year_id": 33098, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33099, + "make_id": 32938, + "model_id": 33098, + "year_id": 33098, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33100, + "make_id": 32938, + "model_id": 33098, + "year_id": 33098, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33101, + "make_id": 32938, + "model_id": 33098, + "year_id": 33098, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33102, + "make_id": 32938, + "model_id": 33098, + "year_id": 33102, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33103, + "make_id": 32938, + "model_id": 33098, + "year_id": 33102, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33104, + "make_id": 32938, + "model_id": 33098, + "year_id": 33102, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33105, + "make_id": 32938, + "model_id": 33098, + "year_id": 33102, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33106, + "make_id": 32938, + "model_id": 33106, + "year_id": 33106, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33107, + "make_id": 32938, + "model_id": 33106, + "year_id": 33106, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33108, + "make_id": 32938, + "model_id": 33106, + "year_id": 33106, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33109, + "make_id": 32938, + "model_id": 33106, + "year_id": 33106, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33110, + "make_id": 32938, + "model_id": 33106, + "year_id": 33110, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33111, + "make_id": 32938, + "model_id": 33106, + "year_id": 33110, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33112, + "make_id": 32938, + "model_id": 33106, + "year_id": 33110, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33113, + "make_id": 32938, + "model_id": 33106, + "year_id": 33110, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33114, + "make_id": 32938, + "model_id": 33106, + "year_id": 33114, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33115, + "make_id": 32938, + "model_id": 33106, + "year_id": 33114, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33116, + "make_id": 32938, + "model_id": 33106, + "year_id": 33114, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33117, + "make_id": 32938, + "model_id": 33106, + "year_id": 33114, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33118, + "make_id": 32938, + "model_id": 33106, + "year_id": 33118, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33119, + "make_id": 32938, + "model_id": 33106, + "year_id": 33118, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33120, + "make_id": 32938, + "model_id": 33106, + "year_id": 33118, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33121, + "make_id": 32938, + "model_id": 33106, + "year_id": 33118, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33122, + "make_id": 32938, + "model_id": 33106, + "year_id": 33122, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33123, + "make_id": 32938, + "model_id": 33106, + "year_id": 33122, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33124, + "make_id": 32938, + "model_id": 33106, + "year_id": 33122, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33125, + "make_id": 32938, + "model_id": 33106, + "year_id": 33122, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33126, + "make_id": 32938, + "model_id": 33106, + "year_id": 33126, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33127, + "make_id": 32938, + "model_id": 33106, + "year_id": 33126, + "cylinders": 6, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33128, + "make_id": 32938, + "model_id": 33106, + "year_id": 33126, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33129, + "make_id": 32938, + "model_id": 33106, + "year_id": 33126, + "cylinders": 6, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33130, + "make_id": 32938, + "model_id": 33130, + "year_id": 33130, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33131, + "make_id": 32938, + "model_id": 33130, + "year_id": 33130, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33132, + "make_id": 32938, + "model_id": 33130, + "year_id": 33130, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33133, + "make_id": 32938, + "model_id": 33130, + "year_id": 33133, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33134, + "make_id": 32938, + "model_id": 33130, + "year_id": 33133, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33135, + "make_id": 32938, + "model_id": 33130, + "year_id": 33133, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33136, + "make_id": 32938, + "model_id": 33130, + "year_id": 33136, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33137, + "make_id": 32938, + "model_id": 33130, + "year_id": 33136, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33138, + "make_id": 32938, + "model_id": 33130, + "year_id": 33136, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33139, + "make_id": 32938, + "model_id": 33130, + "year_id": 33139, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33140, + "make_id": 32938, + "model_id": 33130, + "year_id": 33139, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33141, + "make_id": 32938, + "model_id": 33130, + "year_id": 33139, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33142, + "make_id": 32938, + "model_id": 33142, + "year_id": 33142, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33143, + "make_id": 32938, + "model_id": 33142, + "year_id": 33142, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33144, + "make_id": 32938, + "model_id": 33142, + "year_id": 33142, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33145, + "make_id": 32938, + "model_id": 33142, + "year_id": 33145, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33146, + "make_id": 32938, + "model_id": 33142, + "year_id": 33145, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33147, + "make_id": 32938, + "model_id": 33142, + "year_id": 33145, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33148, + "make_id": 32938, + "model_id": 33142, + "year_id": 33148, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33149, + "make_id": 32938, + "model_id": 33142, + "year_id": 33148, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33150, + "make_id": 32938, + "model_id": 33142, + "year_id": 33148, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33151, + "make_id": 32938, + "model_id": 33142, + "year_id": 33151, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33152, + "make_id": 32938, + "model_id": 33142, + "year_id": 33151, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33153, + "make_id": 32938, + "model_id": 33153, + "year_id": 33153, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33154, + "make_id": 32938, + "model_id": 33153, + "year_id": 33153, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33155, + "make_id": 32938, + "model_id": 33153, + "year_id": 33155, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33156, + "make_id": 32938, + "model_id": 33153, + "year_id": 33155, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33157, + "make_id": 32938, + "model_id": 33153, + "year_id": 33157, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33158, + "make_id": 32938, + "model_id": 33153, + "year_id": 33157, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33159, + "make_id": 32938, + "model_id": 33153, + "year_id": 33159, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33160, + "make_id": 32938, + "model_id": 33153, + "year_id": 33159, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33161, + "make_id": 32938, + "model_id": 33161, + "year_id": 33161, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33162, + "make_id": 32938, + "model_id": 33161, + "year_id": 33161, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33163, + "make_id": 32938, + "model_id": 33163, + "year_id": 33163, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33164, + "make_id": 32938, + "model_id": 33163, + "year_id": 33164, + "cylinders": 4, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33165, + "make_id": 32938, + "model_id": 33163, + "year_id": 33165, + "cylinders": 4, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33166, + "make_id": 32938, + "model_id": 33163, + "year_id": 33166, + "cylinders": 4, + "displacement": 1.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33167, + "make_id": 32938, + "model_id": 33163, + "year_id": 33167, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33168, + "make_id": 32938, + "model_id": 33168, + "year_id": 33168, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33169, + "make_id": 32938, + "model_id": 33168, + "year_id": 33169, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33170, + "make_id": 32938, + "model_id": 33168, + "year_id": 33170, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33171, + "make_id": 32938, + "model_id": 33168, + "year_id": 33171, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33172, + "make_id": 32938, + "model_id": 33172, + "year_id": 33172, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33173, + "make_id": 32938, + "model_id": 33172, + "year_id": 33173, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33174, + "make_id": 32938, + "model_id": 33172, + "year_id": 33174, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33175, + "make_id": 32938, + "model_id": 33172, + "year_id": 33175, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33176, + "make_id": 32938, + "model_id": 33172, + "year_id": 33176, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33177, + "make_id": 32938, + "model_id": 33177, + "year_id": 33177, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33178, + "make_id": 32938, + "model_id": 33177, + "year_id": 33178, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33179, + "make_id": 32938, + "model_id": 33177, + "year_id": 33179, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33180, + "make_id": 32938, + "model_id": 33177, + "year_id": 33180, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33181, + "make_id": 32938, + "model_id": 33177, + "year_id": 33181, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33182, + "make_id": 32938, + "model_id": 33182, + "year_id": 33182, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33183, + "make_id": 32938, + "model_id": 33182, + "year_id": 33183, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33184, + "make_id": 32938, + "model_id": 33182, + "year_id": 33184, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33185, + "make_id": 32938, + "model_id": 33182, + "year_id": 33185, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33186, + "make_id": 32938, + "model_id": 33182, + "year_id": 33185, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33187, + "make_id": 32938, + "model_id": 33187, + "year_id": 33187, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33188, + "make_id": 32938, + "model_id": 33187, + "year_id": 33187, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33189, + "make_id": 32938, + "model_id": 33187, + "year_id": 33187, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33190, + "make_id": 32938, + "model_id": 33187, + "year_id": 33187, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33191, + "make_id": 32938, + "model_id": 33187, + "year_id": 33187, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33192, + "make_id": 32938, + "model_id": 33187, + "year_id": 33187, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33193, + "make_id": 32938, + "model_id": 33187, + "year_id": 33187, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33194, + "make_id": 32938, + "model_id": 33187, + "year_id": 33187, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33195, + "make_id": 32938, + "model_id": 33187, + "year_id": 33195, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33196, + "make_id": 32938, + "model_id": 33187, + "year_id": 33195, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33197, + "make_id": 32938, + "model_id": 33187, + "year_id": 33195, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33198, + "make_id": 32938, + "model_id": 33187, + "year_id": 33195, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33199, + "make_id": 32938, + "model_id": 33187, + "year_id": 33199, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33200, + "make_id": 32938, + "model_id": 33187, + "year_id": 33199, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33201, + "make_id": 32938, + "model_id": 33187, + "year_id": 33199, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33202, + "make_id": 32938, + "model_id": 33187, + "year_id": 33199, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33203, + "make_id": 32938, + "model_id": 33187, + "year_id": 33203, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33204, + "make_id": 32938, + "model_id": 33187, + "year_id": 33203, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33205, + "make_id": 32938, + "model_id": 33205, + "year_id": 33205, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33206, + "make_id": 32938, + "model_id": 33205, + "year_id": 33205, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33207, + "make_id": 32938, + "model_id": 33207, + "year_id": 33207, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33208, + "make_id": 32938, + "model_id": 33207, + "year_id": 33207, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33209, + "make_id": 32938, + "model_id": 33207, + "year_id": 33207, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33210, + "make_id": 32938, + "model_id": 33207, + "year_id": 33207, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33211, + "make_id": 32938, + "model_id": 33207, + "year_id": 33211, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33212, + "make_id": 32938, + "model_id": 33207, + "year_id": 33211, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33213, + "make_id": 32938, + "model_id": 33207, + "year_id": 33211, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33214, + "make_id": 32938, + "model_id": 33207, + "year_id": 33211, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33215, + "make_id": 32938, + "model_id": 33207, + "year_id": 33215, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33216, + "make_id": 32938, + "model_id": 33207, + "year_id": 33215, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33217, + "make_id": 32938, + "model_id": 33207, + "year_id": 33215, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33218, + "make_id": 32938, + "model_id": 33207, + "year_id": 33215, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33219, + "make_id": 32938, + "model_id": 33207, + "year_id": 33219, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33220, + "make_id": 32938, + "model_id": 33207, + "year_id": 33219, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33221, + "make_id": 32938, + "model_id": 33221, + "year_id": 33221, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33222, + "make_id": 32938, + "model_id": 33221, + "year_id": 33221, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33223, + "make_id": 32938, + "model_id": 33223, + "year_id": 33223, + "cylinders": 4, + "displacement": 1.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33224, + "make_id": 32938, + "model_id": 33223, + "year_id": 33223, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33225, + "make_id": 32938, + "model_id": 33223, + "year_id": 33223, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33226, + "make_id": 32938, + "model_id": 33226, + "year_id": 33226, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33227, + "make_id": 32938, + "model_id": 33226, + "year_id": 33226, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33228, + "make_id": 32938, + "model_id": 33226, + "year_id": 33228, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33229, + "make_id": 32938, + "model_id": 33226, + "year_id": 33228, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33230, + "make_id": 32938, + "model_id": 33226, + "year_id": 33230, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33231, + "make_id": 32938, + "model_id": 33226, + "year_id": 33230, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33232, + "make_id": 32938, + "model_id": 33226, + "year_id": 33230, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33233, + "make_id": 32938, + "model_id": 33226, + "year_id": 33230, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33234, + "make_id": 32938, + "model_id": 33226, + "year_id": 33234, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33235, + "make_id": 32938, + "model_id": 33226, + "year_id": 33234, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33236, + "make_id": 32938, + "model_id": 33226, + "year_id": 33234, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33237, + "make_id": 32938, + "model_id": 33226, + "year_id": 33234, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33238, + "make_id": 32938, + "model_id": 33226, + "year_id": 33234, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33239, + "make_id": 32938, + "model_id": 33226, + "year_id": 33239, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33240, + "make_id": 32938, + "model_id": 33226, + "year_id": 33239, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33241, + "make_id": 32938, + "model_id": 33226, + "year_id": 33239, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33242, + "make_id": 32938, + "model_id": 33226, + "year_id": 33239, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33243, + "make_id": 32938, + "model_id": 33226, + "year_id": 33239, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33244, + "make_id": 32938, + "model_id": 33226, + "year_id": 33239, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33245, + "make_id": 32938, + "model_id": 33226, + "year_id": 33239, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33246, + "make_id": 32938, + "model_id": 33226, + "year_id": 33239, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33247, + "make_id": 32938, + "model_id": 33247, + "year_id": 33247, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33248, + "make_id": 32938, + "model_id": 33247, + "year_id": 33247, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33249, + "make_id": 32938, + "model_id": 33247, + "year_id": 33249, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33250, + "make_id": 32938, + "model_id": 33247, + "year_id": 33249, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33251, + "make_id": 32938, + "model_id": 33247, + "year_id": 33251, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33252, + "make_id": 32938, + "model_id": 33247, + "year_id": 33251, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33253, + "make_id": 32938, + "model_id": 33247, + "year_id": 33253, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33254, + "make_id": 32938, + "model_id": 33247, + "year_id": 33253, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33255, + "make_id": 32938, + "model_id": 33255, + "year_id": 33255, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33256, + "make_id": 32938, + "model_id": 33255, + "year_id": 33255, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33257, + "make_id": 32938, + "model_id": 33255, + "year_id": 33257, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33258, + "make_id": 32938, + "model_id": 33255, + "year_id": 33257, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33259, + "make_id": 32938, + "model_id": 33255, + "year_id": 33257, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33260, + "make_id": 32938, + "model_id": 33255, + "year_id": 33257, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33261, + "make_id": 32938, + "model_id": 33255, + "year_id": 33261, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33262, + "make_id": 32938, + "model_id": 33255, + "year_id": 33261, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33263, + "make_id": 32938, + "model_id": 33263, + "year_id": 33263, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33264, + "make_id": 32938, + "model_id": 33263, + "year_id": 33263, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33265, + "make_id": 32938, + "model_id": 33265, + "year_id": 33265, + "cylinders": 4, + "displacement": 1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33266, + "make_id": 32938, + "model_id": 33265, + "year_id": 33266, + "cylinders": 4, + "displacement": 1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33267, + "make_id": 32938, + "model_id": 33267, + "year_id": 33267, + "cylinders": 4, + "displacement": 1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33268, + "make_id": 32938, + "model_id": 33267, + "year_id": 33268, + "cylinders": 4, + "displacement": 1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33269, + "make_id": 32938, + "model_id": 33269, + "year_id": 33269, + "cylinders": 4, + "displacement": 1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33270, + "make_id": 32938, + "model_id": 33270, + "year_id": 33270, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33271, + "make_id": 32938, + "model_id": 33270, + "year_id": 33270, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33272, + "make_id": 32938, + "model_id": 33272, + "year_id": 33272, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33273, + "make_id": 32938, + "model_id": 33272, + "year_id": 33272, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33274, + "make_id": 32938, + "model_id": 33272, + "year_id": 33272, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33275, + "make_id": 32938, + "model_id": 33272, + "year_id": 33272, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33276, + "make_id": 32938, + "model_id": 33272, + "year_id": 33276, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33277, + "make_id": 32938, + "model_id": 33272, + "year_id": 33276, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33278, + "make_id": 32938, + "model_id": 33272, + "year_id": 33276, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33279, + "make_id": 32938, + "model_id": 33272, + "year_id": 33276, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33280, + "make_id": 32938, + "model_id": 33272, + "year_id": 33280, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33281, + "make_id": 32938, + "model_id": 33272, + "year_id": 33280, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33282, + "make_id": 32938, + "model_id": 33272, + "year_id": 33280, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33283, + "make_id": 32938, + "model_id": 33272, + "year_id": 33280, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33284, + "make_id": 32938, + "model_id": 33272, + "year_id": 33284, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33285, + "make_id": 32938, + "model_id": 33272, + "year_id": 33284, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33286, + "make_id": 32938, + "model_id": 33272, + "year_id": 33284, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33287, + "make_id": 32938, + "model_id": 33272, + "year_id": 33284, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33288, + "make_id": 32938, + "model_id": 33272, + "year_id": 33288, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33289, + "make_id": 32938, + "model_id": 33272, + "year_id": 33288, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33290, + "make_id": 32938, + "model_id": 33272, + "year_id": 33288, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33291, + "make_id": 32938, + "model_id": 33272, + "year_id": 33288, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33292, + "make_id": 32938, + "model_id": 33272, + "year_id": 33292, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33293, + "make_id": 32938, + "model_id": 33272, + "year_id": 33292, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33294, + "make_id": 32938, + "model_id": 33272, + "year_id": 33294, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33295, + "make_id": 32938, + "model_id": 33272, + "year_id": 33294, + "cylinders": 3, + "displacement": 1, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33296, + "make_id": 32938, + "model_id": 33272, + "year_id": 33296, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33297, + "make_id": 32938, + "model_id": 33272, + "year_id": 33296, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33298, + "make_id": 32938, + "model_id": 33272, + "year_id": 33298, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33299, + "make_id": 32938, + "model_id": 33272, + "year_id": 33298, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33300, + "make_id": 32938, + "model_id": 33272, + "year_id": 33300, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33301, + "make_id": 32938, + "model_id": 33272, + "year_id": 33300, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33302, + "make_id": 32938, + "model_id": 33272, + "year_id": 33302, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33303, + "make_id": 32938, + "model_id": 33272, + "year_id": 33302, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33304, + "make_id": 32938, + "model_id": 33272, + "year_id": 33304, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33305, + "make_id": 32938, + "model_id": 33272, + "year_id": 33304, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33306, + "make_id": 32938, + "model_id": 33272, + "year_id": 33306, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33307, + "make_id": 32938, + "model_id": 33272, + "year_id": 33306, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33308, + "make_id": 32938, + "model_id": 33272, + "year_id": 33308, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33309, + "make_id": 32938, + "model_id": 33272, + "year_id": 33308, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33310, + "make_id": 32938, + "model_id": 33310, + "year_id": 33310, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33311, + "make_id": 32938, + "model_id": 33311, + "year_id": 33311, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33312, + "make_id": 32938, + "model_id": 33311, + "year_id": 33311, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33313, + "make_id": 32938, + "model_id": 33311, + "year_id": 33313, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33314, + "make_id": 32938, + "model_id": 33311, + "year_id": 33314, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33315, + "make_id": 32938, + "model_id": 33311, + "year_id": 33315, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33316, + "make_id": 32938, + "model_id": 33311, + "year_id": 33316, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33317, + "make_id": 32938, + "model_id": 33317, + "year_id": 33317, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 33318, + "make_id": 32938, + "model_id": 33317, + "year_id": 33317, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33319, + "make_id": 32938, + "model_id": 33319, + "year_id": 33319, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33320, + "make_id": 32938, + "model_id": 33319, + "year_id": 33319, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33321, + "make_id": 32938, + "model_id": 33319, + "year_id": 33321, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33322, + "make_id": 32938, + "model_id": 33319, + "year_id": 33321, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33323, + "make_id": 32938, + "model_id": 33319, + "year_id": 33323, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33324, + "make_id": 32938, + "model_id": 33319, + "year_id": 33323, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33325, + "make_id": 32938, + "model_id": 33319, + "year_id": 33325, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33326, + "make_id": 32938, + "model_id": 33319, + "year_id": 33325, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33327, + "make_id": 32938, + "model_id": 33327, + "year_id": 33327, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33328, + "make_id": 32938, + "model_id": 33327, + "year_id": 33327, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33329, + "make_id": 32938, + "model_id": 33327, + "year_id": 33327, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33330, + "make_id": 32938, + "model_id": 33327, + "year_id": 33327, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33331, + "make_id": 32938, + "model_id": 33327, + "year_id": 33331, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33332, + "make_id": 32938, + "model_id": 33327, + "year_id": 33331, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33333, + "make_id": 32938, + "model_id": 33327, + "year_id": 33331, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33334, + "make_id": 32938, + "model_id": 33327, + "year_id": 33331, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33335, + "make_id": 32938, + "model_id": 33327, + "year_id": 33335, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33336, + "make_id": 32938, + "model_id": 33327, + "year_id": 33335, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33337, + "make_id": 32938, + "model_id": 33327, + "year_id": 33335, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33338, + "make_id": 32938, + "model_id": 33327, + "year_id": 33335, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33339, + "make_id": 32938, + "model_id": 33327, + "year_id": 33339, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33340, + "make_id": 32938, + "model_id": 33327, + "year_id": 33339, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33341, + "make_id": 32938, + "model_id": 33327, + "year_id": 33339, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33342, + "make_id": 32938, + "model_id": 33327, + "year_id": 33339, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33343, + "make_id": 32938, + "model_id": 33327, + "year_id": 33343, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33344, + "make_id": 32938, + "model_id": 33327, + "year_id": 33343, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33345, + "make_id": 32938, + "model_id": 33327, + "year_id": 33343, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33346, + "make_id": 32938, + "model_id": 33327, + "year_id": 33343, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33347, + "make_id": 32938, + "model_id": 33327, + "year_id": 33347, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33348, + "make_id": 32938, + "model_id": 33327, + "year_id": 33347, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33349, + "make_id": 32938, + "model_id": 33327, + "year_id": 33347, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33350, + "make_id": 32938, + "model_id": 33327, + "year_id": 33347, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33351, + "make_id": 32938, + "model_id": 33327, + "year_id": 33351, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33352, + "make_id": 32938, + "model_id": 33327, + "year_id": 33351, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33353, + "make_id": 32938, + "model_id": 33327, + "year_id": 33351, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33354, + "make_id": 32938, + "model_id": 33327, + "year_id": 33351, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33355, + "make_id": 32938, + "model_id": 33355, + "year_id": 33355, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33356, + "make_id": 32938, + "model_id": 33355, + "year_id": 33355, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33357, + "make_id": 32938, + "model_id": 33355, + "year_id": 33357, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33358, + "make_id": 32938, + "model_id": 33355, + "year_id": 33357, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33359, + "make_id": 32938, + "model_id": 33355, + "year_id": 33359, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33360, + "make_id": 32938, + "model_id": 33355, + "year_id": 33359, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33361, + "make_id": 32938, + "model_id": 33355, + "year_id": 33361, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33362, + "make_id": 32938, + "model_id": 33355, + "year_id": 33361, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33363, + "make_id": 32938, + "model_id": 33355, + "year_id": 33363, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33364, + "make_id": 32938, + "model_id": 33355, + "year_id": 33363, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33365, + "make_id": 32938, + "model_id": 33355, + "year_id": 33365, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33366, + "make_id": 32938, + "model_id": 33355, + "year_id": 33365, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33367, + "make_id": 32938, + "model_id": 33367, + "year_id": 33367, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33368, + "make_id": 32938, + "model_id": 33367, + "year_id": 33367, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33369, + "make_id": 32938, + "model_id": 33367, + "year_id": 33369, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33370, + "make_id": 32938, + "model_id": 33367, + "year_id": 33369, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33371, + "make_id": 32938, + "model_id": 33367, + "year_id": 33371, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33372, + "make_id": 32938, + "model_id": 33367, + "year_id": 33371, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33373, + "make_id": 32938, + "model_id": 33367, + "year_id": 33373, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33374, + "make_id": 32938, + "model_id": 33367, + "year_id": 33373, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33375, + "make_id": 32938, + "model_id": 33375, + "year_id": 33375, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33376, + "make_id": 32938, + "model_id": 33375, + "year_id": 33375, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33377, + "make_id": 32938, + "model_id": 33377, + "year_id": 33377, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33378, + "make_id": 32938, + "model_id": 33377, + "year_id": 33378, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33379, + "make_id": 32938, + "model_id": 33377, + "year_id": 33379, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33380, + "make_id": 32938, + "model_id": 33380, + "year_id": 33380, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33381, + "make_id": 32938, + "model_id": 33380, + "year_id": 33380, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33382, + "make_id": 32938, + "model_id": 33380, + "year_id": 33380, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33383, + "make_id": 32938, + "model_id": 33380, + "year_id": 33380, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33384, + "make_id": 32938, + "model_id": 33384, + "year_id": 33384, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33385, + "make_id": 32938, + "model_id": 33384, + "year_id": 33384, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33386, + "make_id": 32938, + "model_id": 33384, + "year_id": 33384, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33387, + "make_id": 32938, + "model_id": 33384, + "year_id": 33384, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33388, + "make_id": 32938, + "model_id": 33384, + "year_id": 33384, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33389, + "make_id": 32938, + "model_id": 33384, + "year_id": 33384, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33390, + "make_id": 32938, + "model_id": 33384, + "year_id": 33384, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33391, + "make_id": 32938, + "model_id": 33384, + "year_id": 33384, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33392, + "make_id": 32938, + "model_id": 33384, + "year_id": 33392, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33393, + "make_id": 32938, + "model_id": 33384, + "year_id": 33392, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33394, + "make_id": 32938, + "model_id": 33384, + "year_id": 33392, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33395, + "make_id": 32938, + "model_id": 33384, + "year_id": 33392, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33396, + "make_id": 32938, + "model_id": 33384, + "year_id": 33392, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33397, + "make_id": 32938, + "model_id": 33384, + "year_id": 33392, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33398, + "make_id": 32938, + "model_id": 33384, + "year_id": 33392, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33399, + "make_id": 32938, + "model_id": 33384, + "year_id": 33392, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33400, + "make_id": 32938, + "model_id": 33384, + "year_id": 33400, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33401, + "make_id": 32938, + "model_id": 33384, + "year_id": 33400, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33402, + "make_id": 32938, + "model_id": 33384, + "year_id": 33400, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33403, + "make_id": 32938, + "model_id": 33384, + "year_id": 33400, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33404, + "make_id": 32938, + "model_id": 33384, + "year_id": 33400, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33405, + "make_id": 32938, + "model_id": 33384, + "year_id": 33400, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33406, + "make_id": 32938, + "model_id": 33384, + "year_id": 33400, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33407, + "make_id": 32938, + "model_id": 33384, + "year_id": 33400, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33408, + "make_id": 32938, + "model_id": 33384, + "year_id": 33408, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33409, + "make_id": 32938, + "model_id": 33384, + "year_id": 33408, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33410, + "make_id": 32938, + "model_id": 33384, + "year_id": 33408, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33411, + "make_id": 32938, + "model_id": 33384, + "year_id": 33408, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33412, + "make_id": 32938, + "model_id": 33412, + "year_id": 33412, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33413, + "make_id": 32938, + "model_id": 33412, + "year_id": 33412, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33414, + "make_id": 32938, + "model_id": 33412, + "year_id": 33412, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33415, + "make_id": 32938, + "model_id": 33412, + "year_id": 33412, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33416, + "make_id": 32938, + "model_id": 33412, + "year_id": 33416, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33417, + "make_id": 32938, + "model_id": 33412, + "year_id": 33416, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33418, + "make_id": 32938, + "model_id": 33412, + "year_id": 33416, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33419, + "make_id": 32938, + "model_id": 33412, + "year_id": 33416, + "cylinders": 6, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33420, + "make_id": 32938, + "model_id": 33420, + "year_id": 33420, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33421, + "make_id": 32938, + "model_id": 33420, + "year_id": 33420, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33422, + "make_id": 32938, + "model_id": 33420, + "year_id": 33420, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33423, + "make_id": 32938, + "model_id": 33420, + "year_id": 33420, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33424, + "make_id": 32938, + "model_id": 33420, + "year_id": 33424, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33425, + "make_id": 32938, + "model_id": 33420, + "year_id": 33424, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33426, + "make_id": 32938, + "model_id": 33420, + "year_id": 33424, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33427, + "make_id": 32938, + "model_id": 33420, + "year_id": 33424, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33428, + "make_id": 32938, + "model_id": 33420, + "year_id": 33428, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33429, + "make_id": 32938, + "model_id": 33420, + "year_id": 33428, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33430, + "make_id": 32938, + "model_id": 33420, + "year_id": 33428, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33431, + "make_id": 32938, + "model_id": 33420, + "year_id": 33428, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33432, + "make_id": 32938, + "model_id": 33420, + "year_id": 33432, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33433, + "make_id": 32938, + "model_id": 33420, + "year_id": 33432, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33434, + "make_id": 32938, + "model_id": 33420, + "year_id": 33432, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33435, + "make_id": 32938, + "model_id": 33420, + "year_id": 33432, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33436, + "make_id": 32938, + "model_id": 33436, + "year_id": 33436, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33437, + "make_id": 32938, + "model_id": 33436, + "year_id": 33436, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33438, + "make_id": 32938, + "model_id": 33436, + "year_id": 33436, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33439, + "make_id": 32938, + "model_id": 33436, + "year_id": 33439, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33440, + "make_id": 32938, + "model_id": 33436, + "year_id": 33439, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33441, + "make_id": 32938, + "model_id": 33436, + "year_id": 33439, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33442, + "make_id": 32938, + "model_id": 33436, + "year_id": 33439, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33443, + "make_id": 32938, + "model_id": 33436, + "year_id": 33443, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33444, + "make_id": 32938, + "model_id": 33436, + "year_id": 33443, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33445, + "make_id": 32938, + "model_id": 33445, + "year_id": 33445, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33446, + "make_id": 32938, + "model_id": 33445, + "year_id": 33445, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33447, + "make_id": 32938, + "model_id": 33447, + "year_id": 33447, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33448, + "make_id": 32938, + "model_id": 33447, + "year_id": 33447, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33449, + "make_id": 32938, + "model_id": 33447, + "year_id": 33449, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33450, + "make_id": 32938, + "model_id": 33447, + "year_id": 33449, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33451, + "make_id": 32938, + "model_id": 33447, + "year_id": 33451, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33452, + "make_id": 32938, + "model_id": 33447, + "year_id": 33451, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33453, + "make_id": 33453, + "model_id": 33453, + "year_id": 33453, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33454, + "make_id": 33453, + "model_id": 33453, + "year_id": 33453, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33455, + "make_id": 33453, + "model_id": 33455, + "year_id": 33455, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33456, + "make_id": 33453, + "model_id": 33455, + "year_id": 33455, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33457, + "make_id": 33453, + "model_id": 33457, + "year_id": 33457, + "cylinders": 8, + "displacement": 5.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33458, + "make_id": 33453, + "model_id": 33457, + "year_id": 33457, + "cylinders": 8, + "displacement": 5.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33459, + "make_id": 33459, + "model_id": 33459, + "year_id": 33459, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33460, + "make_id": 33459, + "model_id": 33460, + "year_id": 33460, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33461, + "make_id": 33459, + "model_id": 33460, + "year_id": 33461, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33462, + "make_id": 33459, + "model_id": 33462, + "year_id": 33462, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33463, + "make_id": 33459, + "model_id": 33463, + "year_id": 33463, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33464, + "make_id": 33459, + "model_id": 33463, + "year_id": 33464, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33465, + "make_id": 33459, + "model_id": 33465, + "year_id": 33465, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33466, + "make_id": 33459, + "model_id": 33465, + "year_id": 33466, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33467, + "make_id": 33459, + "model_id": 33467, + "year_id": 33467, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33468, + "make_id": 33459, + "model_id": 33467, + "year_id": 33468, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33469, + "make_id": 33459, + "model_id": 33469, + "year_id": 33469, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33470, + "make_id": 33459, + "model_id": 33469, + "year_id": 33470, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33471, + "make_id": 33459, + "model_id": 33471, + "year_id": 33471, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33472, + "make_id": 33459, + "model_id": 33472, + "year_id": 33472, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33473, + "make_id": 33459, + "model_id": 33472, + "year_id": 33473, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33474, + "make_id": 33459, + "model_id": 33472, + "year_id": 33474, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33475, + "make_id": 33459, + "model_id": 33475, + "year_id": 33475, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33476, + "make_id": 33459, + "model_id": 33476, + "year_id": 33476, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33477, + "make_id": 33459, + "model_id": 33477, + "year_id": 33477, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33478, + "make_id": 33459, + "model_id": 33477, + "year_id": 33478, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33479, + "make_id": 33459, + "model_id": 33477, + "year_id": 33478, + "cylinders": 0, + "displacement": 0, + "drive": "4-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33480, + "make_id": 33459, + "model_id": 33477, + "year_id": 33480, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33481, + "make_id": 33459, + "model_id": 33477, + "year_id": 33481, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33482, + "make_id": 33459, + "model_id": 33482, + "year_id": 33482, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33483, + "make_id": 33459, + "model_id": 33482, + "year_id": 33483, + "cylinders": 0, + "displacement": 0, + "drive": "Rear-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33484, + "make_id": 33459, + "model_id": 33484, + "year_id": 33484, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33485, + "make_id": 33459, + "model_id": 33485, + "year_id": 33485, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33486, + "make_id": 33459, + "model_id": 33486, + "year_id": 33486, + "cylinders": 0, + "displacement": 0, + "drive": "All-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 33487, + "make_id": 33487, + "model_id": 33487, + "year_id": 33487, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33488, + "make_id": 33487, + "model_id": 33488, + "year_id": 33488, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33489, + "make_id": 33487, + "model_id": 33489, + "year_id": 33489, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33490, + "make_id": 33487, + "model_id": 33490, + "year_id": 33490, + "cylinders": 8, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33491, + "make_id": 33491, + "model_id": 33491, + "year_id": 33491, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33492, + "make_id": 33491, + "model_id": 33491, + "year_id": 33491, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33493, + "make_id": 33491, + "model_id": 33493, + "year_id": 33493, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33494, + "make_id": 33491, + "model_id": 33493, + "year_id": 33493, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33495, + "make_id": 33491, + "model_id": 33493, + "year_id": 33495, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33496, + "make_id": 33491, + "model_id": 33493, + "year_id": 33495, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33497, + "make_id": 33491, + "model_id": 33493, + "year_id": 33497, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33498, + "make_id": 33491, + "model_id": 33493, + "year_id": 33497, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33499, + "make_id": 33491, + "model_id": 33493, + "year_id": 33499, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33500, + "make_id": 33491, + "model_id": 33493, + "year_id": 33499, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33501, + "make_id": 33491, + "model_id": 33493, + "year_id": 33501, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33502, + "make_id": 33491, + "model_id": 33493, + "year_id": 33501, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33503, + "make_id": 33491, + "model_id": 33493, + "year_id": 33503, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33504, + "make_id": 33491, + "model_id": 33493, + "year_id": 33503, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33505, + "make_id": 33491, + "model_id": 33493, + "year_id": 33505, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33506, + "make_id": 33491, + "model_id": 33493, + "year_id": 33505, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33507, + "make_id": 33491, + "model_id": 33493, + "year_id": 33507, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33508, + "make_id": 33491, + "model_id": 33493, + "year_id": 33507, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33509, + "make_id": 33491, + "model_id": 33509, + "year_id": 33509, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33510, + "make_id": 33491, + "model_id": 33509, + "year_id": 33509, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33511, + "make_id": 33491, + "model_id": 33509, + "year_id": 33511, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33512, + "make_id": 33491, + "model_id": 33509, + "year_id": 33511, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33513, + "make_id": 33491, + "model_id": 33509, + "year_id": 33513, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33514, + "make_id": 33491, + "model_id": 33509, + "year_id": 33513, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33515, + "make_id": 33491, + "model_id": 33509, + "year_id": 33513, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33516, + "make_id": 33491, + "model_id": 33509, + "year_id": 33516, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33517, + "make_id": 33491, + "model_id": 33509, + "year_id": 33516, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33518, + "make_id": 33491, + "model_id": 33509, + "year_id": 33516, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33519, + "make_id": 33491, + "model_id": 33509, + "year_id": 33519, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33520, + "make_id": 33491, + "model_id": 33509, + "year_id": 33519, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33521, + "make_id": 33491, + "model_id": 33509, + "year_id": 33519, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33522, + "make_id": 33491, + "model_id": 33509, + "year_id": 33519, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33523, + "make_id": 33491, + "model_id": 33509, + "year_id": 33523, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33524, + "make_id": 33491, + "model_id": 33509, + "year_id": 33523, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33525, + "make_id": 33491, + "model_id": 33509, + "year_id": 33523, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33526, + "make_id": 33491, + "model_id": 33509, + "year_id": 33523, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33527, + "make_id": 33491, + "model_id": 33509, + "year_id": 33527, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33528, + "make_id": 33491, + "model_id": 33509, + "year_id": 33527, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33529, + "make_id": 33491, + "model_id": 33509, + "year_id": 33527, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33530, + "make_id": 33491, + "model_id": 33509, + "year_id": 33527, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33531, + "make_id": 33491, + "model_id": 33509, + "year_id": 33527, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33532, + "make_id": 33491, + "model_id": 33509, + "year_id": 33527, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33533, + "make_id": 33491, + "model_id": 33509, + "year_id": 33533, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33534, + "make_id": 33491, + "model_id": 33509, + "year_id": 33533, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33535, + "make_id": 33491, + "model_id": 33509, + "year_id": 33533, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33536, + "make_id": 33491, + "model_id": 33509, + "year_id": 33533, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33537, + "make_id": 33491, + "model_id": 33509, + "year_id": 33533, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33538, + "make_id": 33491, + "model_id": 33509, + "year_id": 33533, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33539, + "make_id": 33491, + "model_id": 33509, + "year_id": 33539, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33540, + "make_id": 33491, + "model_id": 33509, + "year_id": 33539, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33541, + "make_id": 33491, + "model_id": 33509, + "year_id": 33539, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33542, + "make_id": 33491, + "model_id": 33509, + "year_id": 33539, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33543, + "make_id": 33491, + "model_id": 33509, + "year_id": 33539, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33544, + "make_id": 33491, + "model_id": 33509, + "year_id": 33544, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33545, + "make_id": 33491, + "model_id": 33509, + "year_id": 33544, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33546, + "make_id": 33491, + "model_id": 33509, + "year_id": 33544, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33547, + "make_id": 33491, + "model_id": 33509, + "year_id": 33544, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33548, + "make_id": 33491, + "model_id": 33509, + "year_id": 33544, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33549, + "make_id": 33491, + "model_id": 33509, + "year_id": 33549, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33550, + "make_id": 33491, + "model_id": 33509, + "year_id": 33549, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33551, + "make_id": 33491, + "model_id": 33509, + "year_id": 33549, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33552, + "make_id": 33491, + "model_id": 33509, + "year_id": 33549, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33553, + "make_id": 33491, + "model_id": 33509, + "year_id": 33553, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33554, + "make_id": 33491, + "model_id": 33509, + "year_id": 33553, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33555, + "make_id": 33491, + "model_id": 33509, + "year_id": 33553, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33556, + "make_id": 33491, + "model_id": 33509, + "year_id": 33553, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33557, + "make_id": 33491, + "model_id": 33509, + "year_id": 33557, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33558, + "make_id": 33491, + "model_id": 33509, + "year_id": 33557, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33559, + "make_id": 33491, + "model_id": 33509, + "year_id": 33557, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33560, + "make_id": 33491, + "model_id": 33509, + "year_id": 33557, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33561, + "make_id": 33491, + "model_id": 33509, + "year_id": 33557, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33562, + "make_id": 33491, + "model_id": 33509, + "year_id": 33557, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33563, + "make_id": 33491, + "model_id": 33509, + "year_id": 33557, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33564, + "make_id": 33491, + "model_id": 33509, + "year_id": 33564, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33565, + "make_id": 33491, + "model_id": 33509, + "year_id": 33564, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33566, + "make_id": 33491, + "model_id": 33509, + "year_id": 33564, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33567, + "make_id": 33491, + "model_id": 33509, + "year_id": 33564, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33568, + "make_id": 33491, + "model_id": 33509, + "year_id": 33564, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33569, + "make_id": 33491, + "model_id": 33509, + "year_id": 33564, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33570, + "make_id": 33491, + "model_id": 33509, + "year_id": 33564, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33571, + "make_id": 33491, + "model_id": 33509, + "year_id": 33571, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33572, + "make_id": 33491, + "model_id": 33509, + "year_id": 33571, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33573, + "make_id": 33491, + "model_id": 33509, + "year_id": 33571, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33574, + "make_id": 33491, + "model_id": 33509, + "year_id": 33571, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33575, + "make_id": 33491, + "model_id": 33509, + "year_id": 33571, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33576, + "make_id": 33491, + "model_id": 33509, + "year_id": 33571, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33577, + "make_id": 33491, + "model_id": 33509, + "year_id": 33571, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33578, + "make_id": 33491, + "model_id": 33509, + "year_id": 33578, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33579, + "make_id": 33491, + "model_id": 33509, + "year_id": 33578, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33580, + "make_id": 33491, + "model_id": 33509, + "year_id": 33578, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33581, + "make_id": 33491, + "model_id": 33509, + "year_id": 33578, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33582, + "make_id": 33491, + "model_id": 33509, + "year_id": 33578, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33583, + "make_id": 33491, + "model_id": 33509, + "year_id": 33578, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33584, + "make_id": 33491, + "model_id": 33509, + "year_id": 33578, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33585, + "make_id": 33491, + "model_id": 33509, + "year_id": 33585, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33586, + "make_id": 33491, + "model_id": 33509, + "year_id": 33585, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33587, + "make_id": 33491, + "model_id": 33509, + "year_id": 33585, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33588, + "make_id": 33491, + "model_id": 33509, + "year_id": 33585, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33589, + "make_id": 33491, + "model_id": 33509, + "year_id": 33585, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33590, + "make_id": 33491, + "model_id": 33509, + "year_id": 33585, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33591, + "make_id": 33491, + "model_id": 33509, + "year_id": 33585, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33592, + "make_id": 33491, + "model_id": 33509, + "year_id": 33592, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33593, + "make_id": 33491, + "model_id": 33509, + "year_id": 33592, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33594, + "make_id": 33491, + "model_id": 33509, + "year_id": 33594, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33595, + "make_id": 33491, + "model_id": 33509, + "year_id": 33594, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33596, + "make_id": 33491, + "model_id": 33509, + "year_id": 33596, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33597, + "make_id": 33491, + "model_id": 33509, + "year_id": 33596, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33598, + "make_id": 33491, + "model_id": 33509, + "year_id": 33596, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33599, + "make_id": 33491, + "model_id": 33509, + "year_id": 33596, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33600, + "make_id": 33491, + "model_id": 33509, + "year_id": 33600, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33601, + "make_id": 33491, + "model_id": 33509, + "year_id": 33600, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33602, + "make_id": 33491, + "model_id": 33509, + "year_id": 33600, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33603, + "make_id": 33491, + "model_id": 33509, + "year_id": 33600, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33604, + "make_id": 33491, + "model_id": 33509, + "year_id": 33604, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33605, + "make_id": 33491, + "model_id": 33509, + "year_id": 33604, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33606, + "make_id": 33491, + "model_id": 33509, + "year_id": 33604, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33607, + "make_id": 33491, + "model_id": 33509, + "year_id": 33604, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33608, + "make_id": 33491, + "model_id": 33509, + "year_id": 33608, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33609, + "make_id": 33491, + "model_id": 33509, + "year_id": 33608, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33610, + "make_id": 33491, + "model_id": 33509, + "year_id": 33608, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33611, + "make_id": 33491, + "model_id": 33509, + "year_id": 33608, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33612, + "make_id": 33491, + "model_id": 33509, + "year_id": 33612, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33613, + "make_id": 33491, + "model_id": 33509, + "year_id": 33612, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33614, + "make_id": 33491, + "model_id": 33509, + "year_id": 33612, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33615, + "make_id": 33491, + "model_id": 33509, + "year_id": 33612, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33616, + "make_id": 33491, + "model_id": 33509, + "year_id": 33616, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33617, + "make_id": 33491, + "model_id": 33509, + "year_id": 33616, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33618, + "make_id": 33491, + "model_id": 33509, + "year_id": 33616, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33619, + "make_id": 33491, + "model_id": 33509, + "year_id": 33616, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33620, + "make_id": 33491, + "model_id": 33509, + "year_id": 33620, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33621, + "make_id": 33491, + "model_id": 33509, + "year_id": 33620, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33622, + "make_id": 33491, + "model_id": 33509, + "year_id": 33620, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33623, + "make_id": 33491, + "model_id": 33509, + "year_id": 33620, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33624, + "make_id": 33491, + "model_id": 33509, + "year_id": 33624, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33625, + "make_id": 33491, + "model_id": 33509, + "year_id": 33624, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33626, + "make_id": 33491, + "model_id": 33509, + "year_id": 33624, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33627, + "make_id": 33491, + "model_id": 33509, + "year_id": 33624, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33628, + "make_id": 33491, + "model_id": 33509, + "year_id": 33628, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33629, + "make_id": 33491, + "model_id": 33509, + "year_id": 33628, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33630, + "make_id": 33491, + "model_id": 33509, + "year_id": 33628, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33631, + "make_id": 33491, + "model_id": 33509, + "year_id": 33628, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33632, + "make_id": 33491, + "model_id": 33509, + "year_id": 33632, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33633, + "make_id": 33491, + "model_id": 33509, + "year_id": 33632, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33634, + "make_id": 33491, + "model_id": 33509, + "year_id": 33632, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33635, + "make_id": 33491, + "model_id": 33509, + "year_id": 33635, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33636, + "make_id": 33491, + "model_id": 33509, + "year_id": 33635, + "cylinders": 6, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33637, + "make_id": 33491, + "model_id": 33509, + "year_id": 33635, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33638, + "make_id": 33491, + "model_id": 33509, + "year_id": 33638, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33639, + "make_id": 33491, + "model_id": 33509, + "year_id": 33638, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33640, + "make_id": 33491, + "model_id": 33509, + "year_id": 33638, + "cylinders": 6, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33641, + "make_id": 33491, + "model_id": 33509, + "year_id": 33641, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33642, + "make_id": 33491, + "model_id": 33509, + "year_id": 33641, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33643, + "make_id": 33491, + "model_id": 33509, + "year_id": 33641, + "cylinders": 6, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33644, + "make_id": 33491, + "model_id": 33509, + "year_id": 33644, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33645, + "make_id": 33491, + "model_id": 33509, + "year_id": 33644, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33646, + "make_id": 33491, + "model_id": 33509, + "year_id": 33644, + "cylinders": 6, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33647, + "make_id": 33491, + "model_id": 33647, + "year_id": 33647, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33648, + "make_id": 33491, + "model_id": 33647, + "year_id": 33648, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33649, + "make_id": 33491, + "model_id": 33647, + "year_id": 33649, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33650, + "make_id": 33491, + "model_id": 33647, + "year_id": 33650, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33651, + "make_id": 33491, + "model_id": 33647, + "year_id": 33651, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33652, + "make_id": 33491, + "model_id": 33647, + "year_id": 33652, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33653, + "make_id": 33491, + "model_id": 33647, + "year_id": 33653, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33654, + "make_id": 33491, + "model_id": 33647, + "year_id": 33654, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33655, + "make_id": 33491, + "model_id": 33647, + "year_id": 33655, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33656, + "make_id": 33491, + "model_id": 33647, + "year_id": 33656, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33657, + "make_id": 33491, + "model_id": 33647, + "year_id": 33657, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33658, + "make_id": 33491, + "model_id": 33647, + "year_id": 33658, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33659, + "make_id": 33491, + "model_id": 33647, + "year_id": 33659, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33660, + "make_id": 33491, + "model_id": 33647, + "year_id": 33660, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33661, + "make_id": 33491, + "model_id": 33647, + "year_id": 33661, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33662, + "make_id": 33491, + "model_id": 33647, + "year_id": 33662, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33663, + "make_id": 33491, + "model_id": 33647, + "year_id": 33663, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33664, + "make_id": 33491, + "model_id": 33647, + "year_id": 33664, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33665, + "make_id": 33491, + "model_id": 33647, + "year_id": 33665, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33666, + "make_id": 33491, + "model_id": 33647, + "year_id": 33665, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33667, + "make_id": 33491, + "model_id": 33647, + "year_id": 33667, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33668, + "make_id": 33491, + "model_id": 33647, + "year_id": 33667, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33669, + "make_id": 33491, + "model_id": 33647, + "year_id": 33669, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33670, + "make_id": 33491, + "model_id": 33647, + "year_id": 33670, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33671, + "make_id": 33491, + "model_id": 33671, + "year_id": 33671, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33672, + "make_id": 33491, + "model_id": 33671, + "year_id": 33672, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33673, + "make_id": 33491, + "model_id": 33671, + "year_id": 33673, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33674, + "make_id": 33491, + "model_id": 33671, + "year_id": 33674, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33675, + "make_id": 33491, + "model_id": 33675, + "year_id": 33675, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33676, + "make_id": 33491, + "model_id": 33675, + "year_id": 33675, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33677, + "make_id": 33491, + "model_id": 33675, + "year_id": 33677, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33678, + "make_id": 33491, + "model_id": 33675, + "year_id": 33677, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33679, + "make_id": 33491, + "model_id": 33679, + "year_id": 33679, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33680, + "make_id": 33491, + "model_id": 33679, + "year_id": 33679, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33681, + "make_id": 33491, + "model_id": 33679, + "year_id": 33681, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33682, + "make_id": 33491, + "model_id": 33679, + "year_id": 33681, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33683, + "make_id": 33491, + "model_id": 33679, + "year_id": 33683, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33684, + "make_id": 33491, + "model_id": 33679, + "year_id": 33683, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 33685, + "make_id": 33491, + "model_id": 33679, + "year_id": 33685, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33686, + "make_id": 33491, + "model_id": 33679, + "year_id": 33685, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33687, + "make_id": 33491, + "model_id": 33679, + "year_id": 33687, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33688, + "make_id": 33491, + "model_id": 33679, + "year_id": 33687, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33689, + "make_id": 33491, + "model_id": 33679, + "year_id": 33689, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33690, + "make_id": 33491, + "model_id": 33679, + "year_id": 33689, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33691, + "make_id": 33491, + "model_id": 33679, + "year_id": 33691, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33692, + "make_id": 33491, + "model_id": 33679, + "year_id": 33691, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33693, + "make_id": 33491, + "model_id": 33679, + "year_id": 33693, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33694, + "make_id": 33491, + "model_id": 33679, + "year_id": 33693, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33695, + "make_id": 33491, + "model_id": 33679, + "year_id": 33693, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33696, + "make_id": 33491, + "model_id": 33679, + "year_id": 33693, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33697, + "make_id": 33491, + "model_id": 33697, + "year_id": 33697, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 33698, + "make_id": 33491, + "model_id": 33697, + "year_id": 33697, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 33699, + "make_id": 33491, + "model_id": 33697, + "year_id": 33697, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 33700, + "make_id": 33491, + "model_id": 33697, + "year_id": 33697, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 33701, + "make_id": 33491, + "model_id": 33697, + "year_id": 33697, + "cylinders": 4, + "displacement": 2, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 33702, + "make_id": 33491, + "model_id": 33697, + "year_id": 33702, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33703, + "make_id": 33491, + "model_id": 33697, + "year_id": 33702, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33704, + "make_id": 33491, + "model_id": 33697, + "year_id": 33702, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33705, + "make_id": 33491, + "model_id": 33697, + "year_id": 33705, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33706, + "make_id": 33491, + "model_id": 33697, + "year_id": 33705, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33707, + "make_id": 33491, + "model_id": 33697, + "year_id": 33705, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33708, + "make_id": 33491, + "model_id": 33697, + "year_id": 33708, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33709, + "make_id": 33491, + "model_id": 33697, + "year_id": 33708, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33710, + "make_id": 33491, + "model_id": 33697, + "year_id": 33710, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33711, + "make_id": 33491, + "model_id": 33697, + "year_id": 33710, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33712, + "make_id": 33491, + "model_id": 33697, + "year_id": 33710, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33713, + "make_id": 33491, + "model_id": 33697, + "year_id": 33710, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33714, + "make_id": 33491, + "model_id": 33697, + "year_id": 33710, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33715, + "make_id": 33491, + "model_id": 33697, + "year_id": 33710, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33716, + "make_id": 33491, + "model_id": 33697, + "year_id": 33716, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33717, + "make_id": 33491, + "model_id": 33697, + "year_id": 33716, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33718, + "make_id": 33491, + "model_id": 33697, + "year_id": 33716, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33719, + "make_id": 33491, + "model_id": 33697, + "year_id": 33716, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33720, + "make_id": 33491, + "model_id": 33697, + "year_id": 33716, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33721, + "make_id": 33491, + "model_id": 33697, + "year_id": 33716, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33722, + "make_id": 33491, + "model_id": 33697, + "year_id": 33716, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33723, + "make_id": 33491, + "model_id": 33697, + "year_id": 33723, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33724, + "make_id": 33491, + "model_id": 33697, + "year_id": 33723, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33725, + "make_id": 33491, + "model_id": 33697, + "year_id": 33723, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33726, + "make_id": 33491, + "model_id": 33697, + "year_id": 33723, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33727, + "make_id": 33491, + "model_id": 33697, + "year_id": 33723, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33728, + "make_id": 33491, + "model_id": 33697, + "year_id": 33723, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33729, + "make_id": 33491, + "model_id": 33697, + "year_id": 33723, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33730, + "make_id": 33491, + "model_id": 33697, + "year_id": 33730, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33731, + "make_id": 33491, + "model_id": 33697, + "year_id": 33730, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33732, + "make_id": 33491, + "model_id": 33697, + "year_id": 33730, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33733, + "make_id": 33491, + "model_id": 33697, + "year_id": 33730, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33734, + "make_id": 33491, + "model_id": 33697, + "year_id": 33730, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33735, + "make_id": 33491, + "model_id": 33697, + "year_id": 33730, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33736, + "make_id": 33491, + "model_id": 33697, + "year_id": 33736, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33737, + "make_id": 33491, + "model_id": 33697, + "year_id": 33736, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33738, + "make_id": 33491, + "model_id": 33697, + "year_id": 33736, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33739, + "make_id": 33491, + "model_id": 33697, + "year_id": 33736, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33740, + "make_id": 33491, + "model_id": 33697, + "year_id": 33736, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33741, + "make_id": 33491, + "model_id": 33697, + "year_id": 33741, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33742, + "make_id": 33491, + "model_id": 33697, + "year_id": 33741, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33743, + "make_id": 33491, + "model_id": 33697, + "year_id": 33741, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33744, + "make_id": 33491, + "model_id": 33697, + "year_id": 33741, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33745, + "make_id": 33491, + "model_id": 33697, + "year_id": 33745, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33746, + "make_id": 33491, + "model_id": 33697, + "year_id": 33745, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33747, + "make_id": 33491, + "model_id": 33697, + "year_id": 33745, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33748, + "make_id": 33491, + "model_id": 33697, + "year_id": 33748, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33749, + "make_id": 33491, + "model_id": 33697, + "year_id": 33748, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33750, + "make_id": 33491, + "model_id": 33697, + "year_id": 33748, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33751, + "make_id": 33491, + "model_id": 33697, + "year_id": 33751, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33752, + "make_id": 33491, + "model_id": 33697, + "year_id": 33751, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33753, + "make_id": 33491, + "model_id": 33697, + "year_id": 33751, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33754, + "make_id": 33491, + "model_id": 33697, + "year_id": 33754, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33755, + "make_id": 33491, + "model_id": 33697, + "year_id": 33754, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33756, + "make_id": 33491, + "model_id": 33697, + "year_id": 33754, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33757, + "make_id": 33491, + "model_id": 33697, + "year_id": 33754, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33758, + "make_id": 33491, + "model_id": 33697, + "year_id": 33758, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33759, + "make_id": 33491, + "model_id": 33697, + "year_id": 33758, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33760, + "make_id": 33491, + "model_id": 33697, + "year_id": 33758, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33761, + "make_id": 33491, + "model_id": 33697, + "year_id": 33758, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33762, + "make_id": 33491, + "model_id": 33697, + "year_id": 33762, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33763, + "make_id": 33491, + "model_id": 33697, + "year_id": 33762, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33764, + "make_id": 33491, + "model_id": 33697, + "year_id": 33762, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33765, + "make_id": 33491, + "model_id": 33697, + "year_id": 33762, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33766, + "make_id": 33491, + "model_id": 33697, + "year_id": 33766, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33767, + "make_id": 33491, + "model_id": 33697, + "year_id": 33766, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33768, + "make_id": 33491, + "model_id": 33697, + "year_id": 33766, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33769, + "make_id": 33491, + "model_id": 33697, + "year_id": 33766, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33770, + "make_id": 33491, + "model_id": 33697, + "year_id": 33770, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33771, + "make_id": 33491, + "model_id": 33697, + "year_id": 33770, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33772, + "make_id": 33491, + "model_id": 33697, + "year_id": 33770, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33773, + "make_id": 33491, + "model_id": 33697, + "year_id": 33770, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33774, + "make_id": 33491, + "model_id": 33697, + "year_id": 33774, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33775, + "make_id": 33491, + "model_id": 33697, + "year_id": 33774, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33776, + "make_id": 33491, + "model_id": 33697, + "year_id": 33774, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33777, + "make_id": 33491, + "model_id": 33697, + "year_id": 33777, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33778, + "make_id": 33491, + "model_id": 33697, + "year_id": 33777, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33779, + "make_id": 33491, + "model_id": 33697, + "year_id": 33777, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33780, + "make_id": 33491, + "model_id": 33697, + "year_id": 33777, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33781, + "make_id": 33491, + "model_id": 33697, + "year_id": 33781, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33782, + "make_id": 33491, + "model_id": 33697, + "year_id": 33781, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33783, + "make_id": 33491, + "model_id": 33697, + "year_id": 33781, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33784, + "make_id": 33491, + "model_id": 33697, + "year_id": 33781, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33785, + "make_id": 33491, + "model_id": 33697, + "year_id": 33785, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33786, + "make_id": 33491, + "model_id": 33697, + "year_id": 33785, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33787, + "make_id": 33491, + "model_id": 33697, + "year_id": 33785, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33788, + "make_id": 33491, + "model_id": 33697, + "year_id": 33785, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33789, + "make_id": 33491, + "model_id": 33697, + "year_id": 33789, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33790, + "make_id": 33491, + "model_id": 33697, + "year_id": 33789, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33791, + "make_id": 33491, + "model_id": 33697, + "year_id": 33789, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33792, + "make_id": 33491, + "model_id": 33697, + "year_id": 33789, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33793, + "make_id": 33491, + "model_id": 33697, + "year_id": 33793, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33794, + "make_id": 33491, + "model_id": 33697, + "year_id": 33793, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33795, + "make_id": 33491, + "model_id": 33697, + "year_id": 33793, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33796, + "make_id": 33491, + "model_id": 33697, + "year_id": 33796, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33797, + "make_id": 33491, + "model_id": 33697, + "year_id": 33796, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33798, + "make_id": 33491, + "model_id": 33697, + "year_id": 33796, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33799, + "make_id": 33491, + "model_id": 33697, + "year_id": 33799, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33800, + "make_id": 33491, + "model_id": 33697, + "year_id": 33799, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33801, + "make_id": 33491, + "model_id": 33697, + "year_id": 33799, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33802, + "make_id": 33491, + "model_id": 33697, + "year_id": 33802, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33803, + "make_id": 33491, + "model_id": 33697, + "year_id": 33802, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33804, + "make_id": 33491, + "model_id": 33697, + "year_id": 33802, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33805, + "make_id": 33491, + "model_id": 33697, + "year_id": 33805, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33806, + "make_id": 33491, + "model_id": 33697, + "year_id": 33805, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33807, + "make_id": 33491, + "model_id": 33697, + "year_id": 33805, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33808, + "make_id": 33491, + "model_id": 33697, + "year_id": 33808, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33809, + "make_id": 33491, + "model_id": 33697, + "year_id": 33808, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33810, + "make_id": 33491, + "model_id": 33697, + "year_id": 33810, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33811, + "make_id": 33491, + "model_id": 33697, + "year_id": 33810, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33812, + "make_id": 33491, + "model_id": 33697, + "year_id": 33812, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33813, + "make_id": 33491, + "model_id": 33697, + "year_id": 33812, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33814, + "make_id": 33491, + "model_id": 33697, + "year_id": 33814, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33815, + "make_id": 33491, + "model_id": 33697, + "year_id": 33814, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33816, + "make_id": 33491, + "model_id": 33697, + "year_id": 33816, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33817, + "make_id": 33491, + "model_id": 33697, + "year_id": 33816, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33818, + "make_id": 33491, + "model_id": 33697, + "year_id": 33818, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 33819, + "make_id": 33491, + "model_id": 33819, + "year_id": 33819, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33820, + "make_id": 33491, + "model_id": 33819, + "year_id": 33820, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33821, + "make_id": 33491, + "model_id": 33819, + "year_id": 33821, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33822, + "make_id": 33491, + "model_id": 33822, + "year_id": 33822, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33823, + "make_id": 33491, + "model_id": 33822, + "year_id": 33823, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33824, + "make_id": 33491, + "model_id": 33822, + "year_id": 33824, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33825, + "make_id": 33491, + "model_id": 33822, + "year_id": 33825, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33826, + "make_id": 33491, + "model_id": 33822, + "year_id": 33826, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33827, + "make_id": 33491, + "model_id": 33827, + "year_id": 33827, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33828, + "make_id": 33491, + "model_id": 33827, + "year_id": 33828, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33829, + "make_id": 33491, + "model_id": 33827, + "year_id": 33829, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33830, + "make_id": 33491, + "model_id": 33827, + "year_id": 33830, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33831, + "make_id": 33491, + "model_id": 33827, + "year_id": 33831, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33832, + "make_id": 33491, + "model_id": 33832, + "year_id": 33832, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33833, + "make_id": 33491, + "model_id": 33832, + "year_id": 33833, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33834, + "make_id": 33491, + "model_id": 33834, + "year_id": 33834, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33835, + "make_id": 33491, + "model_id": 33834, + "year_id": 33835, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33836, + "make_id": 33491, + "model_id": 33834, + "year_id": 33836, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 33837, + "make_id": 33491, + "model_id": 33837, + "year_id": 33837, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33838, + "make_id": 33491, + "model_id": 33837, + "year_id": 33837, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33839, + "make_id": 33491, + "model_id": 33837, + "year_id": 33837, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33840, + "make_id": 33491, + "model_id": 33837, + "year_id": 33837, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33841, + "make_id": 33491, + "model_id": 33837, + "year_id": 33841, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33842, + "make_id": 33491, + "model_id": 33837, + "year_id": 33841, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33843, + "make_id": 33491, + "model_id": 33837, + "year_id": 33841, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33844, + "make_id": 33491, + "model_id": 33837, + "year_id": 33841, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33845, + "make_id": 33491, + "model_id": 33837, + "year_id": 33845, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33846, + "make_id": 33491, + "model_id": 33837, + "year_id": 33845, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33847, + "make_id": 33491, + "model_id": 33837, + "year_id": 33845, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33848, + "make_id": 33491, + "model_id": 33837, + "year_id": 33845, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33849, + "make_id": 33491, + "model_id": 33837, + "year_id": 33849, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33850, + "make_id": 33491, + "model_id": 33837, + "year_id": 33849, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33851, + "make_id": 33491, + "model_id": 33837, + "year_id": 33849, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33852, + "make_id": 33491, + "model_id": 33837, + "year_id": 33849, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33853, + "make_id": 33491, + "model_id": 33837, + "year_id": 33853, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33854, + "make_id": 33491, + "model_id": 33837, + "year_id": 33853, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33855, + "make_id": 33491, + "model_id": 33837, + "year_id": 33853, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33856, + "make_id": 33491, + "model_id": 33837, + "year_id": 33856, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33857, + "make_id": 33491, + "model_id": 33837, + "year_id": 33856, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33858, + "make_id": 33491, + "model_id": 33837, + "year_id": 33856, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33859, + "make_id": 33491, + "model_id": 33837, + "year_id": 33859, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33860, + "make_id": 33491, + "model_id": 33837, + "year_id": 33859, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33861, + "make_id": 33491, + "model_id": 33837, + "year_id": 33859, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33862, + "make_id": 33491, + "model_id": 33837, + "year_id": 33862, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33863, + "make_id": 33491, + "model_id": 33837, + "year_id": 33862, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33864, + "make_id": 33491, + "model_id": 33837, + "year_id": 33862, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33865, + "make_id": 33491, + "model_id": 33837, + "year_id": 33865, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33866, + "make_id": 33491, + "model_id": 33837, + "year_id": 33865, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33867, + "make_id": 33491, + "model_id": 33837, + "year_id": 33865, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33868, + "make_id": 33491, + "model_id": 33837, + "year_id": 33868, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33869, + "make_id": 33491, + "model_id": 33837, + "year_id": 33868, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33870, + "make_id": 33491, + "model_id": 33837, + "year_id": 33868, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33871, + "make_id": 33491, + "model_id": 33871, + "year_id": 33871, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33872, + "make_id": 33491, + "model_id": 33871, + "year_id": 33871, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33873, + "make_id": 33491, + "model_id": 33871, + "year_id": 33873, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33874, + "make_id": 33491, + "model_id": 33871, + "year_id": 33873, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33875, + "make_id": 33491, + "model_id": 33871, + "year_id": 33875, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33876, + "make_id": 33491, + "model_id": 33871, + "year_id": 33875, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33877, + "make_id": 33491, + "model_id": 33871, + "year_id": 33877, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33878, + "make_id": 33491, + "model_id": 33871, + "year_id": 33877, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33879, + "make_id": 33491, + "model_id": 33871, + "year_id": 33879, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33880, + "make_id": 33491, + "model_id": 33871, + "year_id": 33880, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33881, + "make_id": 33491, + "model_id": 33871, + "year_id": 33881, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33882, + "make_id": 33491, + "model_id": 33871, + "year_id": 33882, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33883, + "make_id": 33491, + "model_id": 33871, + "year_id": 33883, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 33884, + "make_id": 33491, + "model_id": 33884, + "year_id": 33884, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33885, + "make_id": 33491, + "model_id": 33884, + "year_id": 33884, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33886, + "make_id": 33491, + "model_id": 33884, + "year_id": 33886, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33887, + "make_id": 33491, + "model_id": 33884, + "year_id": 33886, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33888, + "make_id": 33491, + "model_id": 33884, + "year_id": 33886, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33889, + "make_id": 33491, + "model_id": 33884, + "year_id": 33889, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33890, + "make_id": 33491, + "model_id": 33884, + "year_id": 33889, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33891, + "make_id": 33491, + "model_id": 33884, + "year_id": 33889, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33892, + "make_id": 33491, + "model_id": 33884, + "year_id": 33892, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33893, + "make_id": 33491, + "model_id": 33884, + "year_id": 33892, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33894, + "make_id": 33491, + "model_id": 33884, + "year_id": 33894, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33895, + "make_id": 33491, + "model_id": 33884, + "year_id": 33894, + "cylinders": 6, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33896, + "make_id": 33491, + "model_id": 33884, + "year_id": 33896, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33897, + "make_id": 33491, + "model_id": 33884, + "year_id": 33896, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33898, + "make_id": 33491, + "model_id": 33884, + "year_id": 33898, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33899, + "make_id": 33491, + "model_id": 33884, + "year_id": 33898, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33900, + "make_id": 33491, + "model_id": 33884, + "year_id": 33900, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33901, + "make_id": 33491, + "model_id": 33884, + "year_id": 33900, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33902, + "make_id": 33491, + "model_id": 33884, + "year_id": 33902, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33903, + "make_id": 33491, + "model_id": 33884, + "year_id": 33902, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33904, + "make_id": 33491, + "model_id": 33884, + "year_id": 33904, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33905, + "make_id": 33491, + "model_id": 33884, + "year_id": 33904, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33906, + "make_id": 33491, + "model_id": 33906, + "year_id": 33906, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33907, + "make_id": 33491, + "model_id": 33906, + "year_id": 33906, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33908, + "make_id": 33491, + "model_id": 33906, + "year_id": 33906, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33909, + "make_id": 33491, + "model_id": 33906, + "year_id": 33906, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33910, + "make_id": 33491, + "model_id": 33906, + "year_id": 33910, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33911, + "make_id": 33491, + "model_id": 33906, + "year_id": 33910, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33912, + "make_id": 33491, + "model_id": 33906, + "year_id": 33912, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33913, + "make_id": 33491, + "model_id": 33906, + "year_id": 33912, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33914, + "make_id": 33491, + "model_id": 33906, + "year_id": 33914, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33915, + "make_id": 33491, + "model_id": 33906, + "year_id": 33914, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33916, + "make_id": 33491, + "model_id": 33906, + "year_id": 33914, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33917, + "make_id": 33491, + "model_id": 33906, + "year_id": 33914, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33918, + "make_id": 33491, + "model_id": 33918, + "year_id": 33918, + "cylinders": 4, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 33919, + "make_id": 33491, + "model_id": 33918, + "year_id": 33918, + "cylinders": 4, + "displacement": 2.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 33920, + "make_id": 33491, + "model_id": 33918, + "year_id": 33918, + "cylinders": 4, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 33921, + "make_id": 33491, + "model_id": 33918, + "year_id": 33918, + "cylinders": 4, + "displacement": 2.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 33922, + "make_id": 33491, + "model_id": 33918, + "year_id": 33922, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33923, + "make_id": 33491, + "model_id": 33918, + "year_id": 33922, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33924, + "make_id": 33491, + "model_id": 33918, + "year_id": 33924, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33925, + "make_id": 33491, + "model_id": 33918, + "year_id": 33924, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33926, + "make_id": 33491, + "model_id": 33918, + "year_id": 33924, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33927, + "make_id": 33491, + "model_id": 33918, + "year_id": 33924, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33928, + "make_id": 33491, + "model_id": 33918, + "year_id": 33928, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33929, + "make_id": 33491, + "model_id": 33918, + "year_id": 33928, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33930, + "make_id": 33491, + "model_id": 33918, + "year_id": 33928, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33931, + "make_id": 33491, + "model_id": 33918, + "year_id": 33928, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33932, + "make_id": 33491, + "model_id": 33918, + "year_id": 33932, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33933, + "make_id": 33491, + "model_id": 33918, + "year_id": 33932, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33934, + "make_id": 33491, + "model_id": 33918, + "year_id": 33932, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33935, + "make_id": 33491, + "model_id": 33918, + "year_id": 33932, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33936, + "make_id": 33491, + "model_id": 33918, + "year_id": 33932, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33937, + "make_id": 33491, + "model_id": 33918, + "year_id": 33937, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33938, + "make_id": 33491, + "model_id": 33918, + "year_id": 33937, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33939, + "make_id": 33491, + "model_id": 33918, + "year_id": 33937, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33940, + "make_id": 33491, + "model_id": 33918, + "year_id": 33937, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33941, + "make_id": 33491, + "model_id": 33918, + "year_id": 33937, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33942, + "make_id": 33491, + "model_id": 33918, + "year_id": 33942, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33943, + "make_id": 33491, + "model_id": 33918, + "year_id": 33942, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33944, + "make_id": 33491, + "model_id": 33918, + "year_id": 33942, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33945, + "make_id": 33491, + "model_id": 33918, + "year_id": 33942, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33946, + "make_id": 33491, + "model_id": 33918, + "year_id": 33942, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33947, + "make_id": 33491, + "model_id": 33918, + "year_id": 33942, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33948, + "make_id": 33491, + "model_id": 33918, + "year_id": 33948, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33949, + "make_id": 33491, + "model_id": 33918, + "year_id": 33948, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33950, + "make_id": 33491, + "model_id": 33918, + "year_id": 33948, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33951, + "make_id": 33491, + "model_id": 33918, + "year_id": 33948, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33952, + "make_id": 33491, + "model_id": 33918, + "year_id": 33948, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33953, + "make_id": 33491, + "model_id": 33918, + "year_id": 33948, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33954, + "make_id": 33491, + "model_id": 33918, + "year_id": 33954, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33955, + "make_id": 33491, + "model_id": 33918, + "year_id": 33954, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33956, + "make_id": 33491, + "model_id": 33918, + "year_id": 33954, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33957, + "make_id": 33491, + "model_id": 33918, + "year_id": 33954, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33958, + "make_id": 33491, + "model_id": 33918, + "year_id": 33954, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33959, + "make_id": 33491, + "model_id": 33918, + "year_id": 33954, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33960, + "make_id": 33491, + "model_id": 33918, + "year_id": 33960, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33961, + "make_id": 33491, + "model_id": 33918, + "year_id": 33960, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33962, + "make_id": 33491, + "model_id": 33918, + "year_id": 33960, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33963, + "make_id": 33491, + "model_id": 33918, + "year_id": 33960, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33964, + "make_id": 33491, + "model_id": 33918, + "year_id": 33960, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33965, + "make_id": 33491, + "model_id": 33918, + "year_id": 33965, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33966, + "make_id": 33491, + "model_id": 33918, + "year_id": 33965, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33967, + "make_id": 33491, + "model_id": 33918, + "year_id": 33965, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33968, + "make_id": 33491, + "model_id": 33918, + "year_id": 33965, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33969, + "make_id": 33491, + "model_id": 33918, + "year_id": 33969, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33970, + "make_id": 33491, + "model_id": 33918, + "year_id": 33969, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33971, + "make_id": 33491, + "model_id": 33918, + "year_id": 33969, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33972, + "make_id": 33491, + "model_id": 33918, + "year_id": 33969, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33973, + "make_id": 33491, + "model_id": 33918, + "year_id": 33973, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33974, + "make_id": 33491, + "model_id": 33918, + "year_id": 33973, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33975, + "make_id": 33491, + "model_id": 33918, + "year_id": 33973, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33976, + "make_id": 33491, + "model_id": 33918, + "year_id": 33973, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33977, + "make_id": 33491, + "model_id": 33918, + "year_id": 33977, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33978, + "make_id": 33491, + "model_id": 33918, + "year_id": 33977, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33979, + "make_id": 33491, + "model_id": 33918, + "year_id": 33977, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33980, + "make_id": 33491, + "model_id": 33918, + "year_id": 33977, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33981, + "make_id": 33491, + "model_id": 33918, + "year_id": 33981, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33982, + "make_id": 33491, + "model_id": 33918, + "year_id": 33981, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33983, + "make_id": 33491, + "model_id": 33918, + "year_id": 33983, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33984, + "make_id": 33491, + "model_id": 33918, + "year_id": 33983, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33985, + "make_id": 33491, + "model_id": 33918, + "year_id": 33985, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33986, + "make_id": 33491, + "model_id": 33918, + "year_id": 33985, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33987, + "make_id": 33491, + "model_id": 33918, + "year_id": 33985, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33988, + "make_id": 33491, + "model_id": 33918, + "year_id": 33985, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33989, + "make_id": 33491, + "model_id": 33918, + "year_id": 33989, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33990, + "make_id": 33491, + "model_id": 33918, + "year_id": 33989, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33991, + "make_id": 33491, + "model_id": 33918, + "year_id": 33989, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33992, + "make_id": 33491, + "model_id": 33918, + "year_id": 33989, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33993, + "make_id": 33491, + "model_id": 33918, + "year_id": 33993, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33994, + "make_id": 33491, + "model_id": 33918, + "year_id": 33993, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33995, + "make_id": 33491, + "model_id": 33918, + "year_id": 33993, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 33996, + "make_id": 33491, + "model_id": 33918, + "year_id": 33993, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33997, + "make_id": 33491, + "model_id": 33918, + "year_id": 33997, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 33998, + "make_id": 33491, + "model_id": 33918, + "year_id": 33997, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 33999, + "make_id": 33491, + "model_id": 33918, + "year_id": 33997, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34000, + "make_id": 33491, + "model_id": 33918, + "year_id": 33997, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34001, + "make_id": 33491, + "model_id": 33918, + "year_id": 34001, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34002, + "make_id": 33491, + "model_id": 33918, + "year_id": 34001, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34003, + "make_id": 33491, + "model_id": 33918, + "year_id": 34001, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34004, + "make_id": 33491, + "model_id": 33918, + "year_id": 34001, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34005, + "make_id": 33491, + "model_id": 33918, + "year_id": 34005, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34006, + "make_id": 33491, + "model_id": 33918, + "year_id": 34005, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34007, + "make_id": 33491, + "model_id": 33918, + "year_id": 34005, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34008, + "make_id": 33491, + "model_id": 33918, + "year_id": 34005, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34009, + "make_id": 33491, + "model_id": 34009, + "year_id": 34009, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34010, + "make_id": 33491, + "model_id": 34009, + "year_id": 34009, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34011, + "make_id": 33491, + "model_id": 34009, + "year_id": 34011, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34012, + "make_id": 33491, + "model_id": 34009, + "year_id": 34011, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34013, + "make_id": 33491, + "model_id": 34009, + "year_id": 34013, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34014, + "make_id": 33491, + "model_id": 34009, + "year_id": 34013, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34015, + "make_id": 33491, + "model_id": 34009, + "year_id": 34015, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34016, + "make_id": 33491, + "model_id": 34009, + "year_id": 34015, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34017, + "make_id": 33491, + "model_id": 34009, + "year_id": 34017, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34018, + "make_id": 33491, + "model_id": 34009, + "year_id": 34017, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34019, + "make_id": 33491, + "model_id": 34009, + "year_id": 34019, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34020, + "make_id": 33491, + "model_id": 34009, + "year_id": 34019, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34021, + "make_id": 33491, + "model_id": 34009, + "year_id": 34019, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34022, + "make_id": 33491, + "model_id": 34009, + "year_id": 34022, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34023, + "make_id": 33491, + "model_id": 34009, + "year_id": 34022, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34024, + "make_id": 33491, + "model_id": 34009, + "year_id": 34024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34025, + "make_id": 33491, + "model_id": 34009, + "year_id": 34024, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34026, + "make_id": 33491, + "model_id": 34009, + "year_id": 34026, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34027, + "make_id": 33491, + "model_id": 34009, + "year_id": 34026, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34028, + "make_id": 33491, + "model_id": 34009, + "year_id": 34028, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34029, + "make_id": 33491, + "model_id": 34009, + "year_id": 34028, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34030, + "make_id": 33491, + "model_id": 34009, + "year_id": 34030, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34031, + "make_id": 33491, + "model_id": 34009, + "year_id": 34030, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34032, + "make_id": 33491, + "model_id": 34009, + "year_id": 34032, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34033, + "make_id": 33491, + "model_id": 34009, + "year_id": 34032, + "cylinders": 4, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34034, + "make_id": 33491, + "model_id": 34034, + "year_id": 34034, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 34035, + "make_id": 33491, + "model_id": 34034, + "year_id": 34034, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34036, + "make_id": 33491, + "model_id": 34034, + "year_id": 34034, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 34037, + "make_id": 33491, + "model_id": 34034, + "year_id": 34034, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34038, + "make_id": 33491, + "model_id": 34034, + "year_id": 34038, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34039, + "make_id": 33491, + "model_id": 34034, + "year_id": 34038, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34040, + "make_id": 33491, + "model_id": 34034, + "year_id": 34040, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34041, + "make_id": 33491, + "model_id": 34034, + "year_id": 34040, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34042, + "make_id": 33491, + "model_id": 34042, + "year_id": 34042, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 34043, + "make_id": 33491, + "model_id": 34042, + "year_id": 34042, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34044, + "make_id": 33491, + "model_id": 34042, + "year_id": 34042, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 34045, + "make_id": 33491, + "model_id": 34042, + "year_id": 34042, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 34046, + "make_id": 33491, + "model_id": 34042, + "year_id": 34042, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34047, + "make_id": 33491, + "model_id": 34042, + "year_id": 34042, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 34048, + "make_id": 33491, + "model_id": 34042, + "year_id": 34042, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34049, + "make_id": 33491, + "model_id": 34042, + "year_id": 34042, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34050, + "make_id": 33491, + "model_id": 34042, + "year_id": 34050, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34051, + "make_id": 33491, + "model_id": 34042, + "year_id": 34050, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34052, + "make_id": 33491, + "model_id": 34042, + "year_id": 34050, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34053, + "make_id": 33491, + "model_id": 34042, + "year_id": 34050, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34054, + "make_id": 33491, + "model_id": 34042, + "year_id": 34050, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34055, + "make_id": 33491, + "model_id": 34042, + "year_id": 34050, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34056, + "make_id": 33491, + "model_id": 34042, + "year_id": 34056, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34057, + "make_id": 33491, + "model_id": 34042, + "year_id": 34056, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34058, + "make_id": 33491, + "model_id": 34042, + "year_id": 34056, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34059, + "make_id": 33491, + "model_id": 34042, + "year_id": 34059, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34060, + "make_id": 33491, + "model_id": 34042, + "year_id": 34059, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34061, + "make_id": 33491, + "model_id": 34042, + "year_id": 34059, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34062, + "make_id": 33491, + "model_id": 34042, + "year_id": 34062, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34063, + "make_id": 33491, + "model_id": 34042, + "year_id": 34062, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34064, + "make_id": 33491, + "model_id": 34042, + "year_id": 34062, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34065, + "make_id": 33491, + "model_id": 34042, + "year_id": 34062, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34066, + "make_id": 33491, + "model_id": 34042, + "year_id": 34066, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34067, + "make_id": 33491, + "model_id": 34042, + "year_id": 34066, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34068, + "make_id": 33491, + "model_id": 34042, + "year_id": 34066, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34069, + "make_id": 33491, + "model_id": 34042, + "year_id": 34066, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34070, + "make_id": 33491, + "model_id": 34042, + "year_id": 34066, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34071, + "make_id": 33491, + "model_id": 34042, + "year_id": 34066, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34072, + "make_id": 33491, + "model_id": 34042, + "year_id": 34072, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34073, + "make_id": 33491, + "model_id": 34042, + "year_id": 34072, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34074, + "make_id": 33491, + "model_id": 34042, + "year_id": 34072, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34075, + "make_id": 33491, + "model_id": 34042, + "year_id": 34072, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34076, + "make_id": 33491, + "model_id": 34042, + "year_id": 34072, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34077, + "make_id": 33491, + "model_id": 34042, + "year_id": 34072, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34078, + "make_id": 33491, + "model_id": 34042, + "year_id": 34078, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34079, + "make_id": 33491, + "model_id": 34042, + "year_id": 34078, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34080, + "make_id": 33491, + "model_id": 34042, + "year_id": 34078, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34081, + "make_id": 33491, + "model_id": 34042, + "year_id": 34078, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34082, + "make_id": 33491, + "model_id": 34042, + "year_id": 34082, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34083, + "make_id": 33491, + "model_id": 34042, + "year_id": 34082, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34084, + "make_id": 33491, + "model_id": 34042, + "year_id": 34082, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34085, + "make_id": 33491, + "model_id": 34042, + "year_id": 34085, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34086, + "make_id": 33491, + "model_id": 34042, + "year_id": 34085, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34087, + "make_id": 33491, + "model_id": 34042, + "year_id": 34085, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34088, + "make_id": 33491, + "model_id": 34042, + "year_id": 34085, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34089, + "make_id": 33491, + "model_id": 34042, + "year_id": 34089, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34090, + "make_id": 33491, + "model_id": 34042, + "year_id": 34089, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34091, + "make_id": 33491, + "model_id": 34042, + "year_id": 34089, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34092, + "make_id": 33491, + "model_id": 34042, + "year_id": 34089, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34093, + "make_id": 33491, + "model_id": 34042, + "year_id": 34093, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34094, + "make_id": 33491, + "model_id": 34042, + "year_id": 34093, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34095, + "make_id": 33491, + "model_id": 34042, + "year_id": 34093, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34096, + "make_id": 33491, + "model_id": 34042, + "year_id": 34093, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34097, + "make_id": 33491, + "model_id": 34042, + "year_id": 34097, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34098, + "make_id": 33491, + "model_id": 34042, + "year_id": 34097, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34099, + "make_id": 33491, + "model_id": 34042, + "year_id": 34097, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34100, + "make_id": 33491, + "model_id": 34042, + "year_id": 34097, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34101, + "make_id": 33491, + "model_id": 34042, + "year_id": 34101, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34102, + "make_id": 33491, + "model_id": 34042, + "year_id": 34101, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34103, + "make_id": 33491, + "model_id": 34042, + "year_id": 34101, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34104, + "make_id": 33491, + "model_id": 34042, + "year_id": 34101, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34105, + "make_id": 33491, + "model_id": 34042, + "year_id": 34105, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34106, + "make_id": 33491, + "model_id": 34042, + "year_id": 34105, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34107, + "make_id": 33491, + "model_id": 34042, + "year_id": 34105, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34108, + "make_id": 33491, + "model_id": 34042, + "year_id": 34108, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34109, + "make_id": 33491, + "model_id": 34042, + "year_id": 34108, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34110, + "make_id": 33491, + "model_id": 34042, + "year_id": 34108, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34111, + "make_id": 33491, + "model_id": 34042, + "year_id": 34111, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34112, + "make_id": 33491, + "model_id": 34042, + "year_id": 34111, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34113, + "make_id": 33491, + "model_id": 34042, + "year_id": 34111, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34114, + "make_id": 33491, + "model_id": 34042, + "year_id": 34114, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34115, + "make_id": 33491, + "model_id": 34042, + "year_id": 34114, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34116, + "make_id": 33491, + "model_id": 34042, + "year_id": 34114, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34117, + "make_id": 33491, + "model_id": 34042, + "year_id": 34117, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34118, + "make_id": 33491, + "model_id": 34042, + "year_id": 34117, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34119, + "make_id": 33491, + "model_id": 34042, + "year_id": 34117, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34120, + "make_id": 33491, + "model_id": 34042, + "year_id": 34120, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34121, + "make_id": 33491, + "model_id": 34042, + "year_id": 34120, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34122, + "make_id": 33491, + "model_id": 34042, + "year_id": 34122, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34123, + "make_id": 33491, + "model_id": 34042, + "year_id": 34122, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34124, + "make_id": 33491, + "model_id": 34042, + "year_id": 34124, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34125, + "make_id": 33491, + "model_id": 34042, + "year_id": 34124, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34126, + "make_id": 33491, + "model_id": 34042, + "year_id": 34124, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34127, + "make_id": 33491, + "model_id": 34042, + "year_id": 34127, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34128, + "make_id": 33491, + "model_id": 34042, + "year_id": 34127, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34129, + "make_id": 33491, + "model_id": 34042, + "year_id": 34127, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34130, + "make_id": 33491, + "model_id": 34042, + "year_id": 34130, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34131, + "make_id": 33491, + "model_id": 34042, + "year_id": 34130, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34132, + "make_id": 33491, + "model_id": 34042, + "year_id": 34132, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34133, + "make_id": 33491, + "model_id": 34042, + "year_id": 34132, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34134, + "make_id": 33491, + "model_id": 34042, + "year_id": 34134, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34135, + "make_id": 33491, + "model_id": 34042, + "year_id": 34134, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34136, + "make_id": 33491, + "model_id": 34042, + "year_id": 34134, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34137, + "make_id": 33491, + "model_id": 34042, + "year_id": 34134, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34138, + "make_id": 33491, + "model_id": 34042, + "year_id": 34138, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34139, + "make_id": 33491, + "model_id": 34042, + "year_id": 34138, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34140, + "make_id": 33491, + "model_id": 34042, + "year_id": 34138, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34141, + "make_id": 33491, + "model_id": 34042, + "year_id": 34138, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34142, + "make_id": 33491, + "model_id": 34042, + "year_id": 34142, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34143, + "make_id": 33491, + "model_id": 34042, + "year_id": 34142, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34144, + "make_id": 33491, + "model_id": 34042, + "year_id": 34142, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34145, + "make_id": 33491, + "model_id": 34042, + "year_id": 34142, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34146, + "make_id": 33491, + "model_id": 34042, + "year_id": 34146, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34147, + "make_id": 33491, + "model_id": 34042, + "year_id": 34146, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34148, + "make_id": 33491, + "model_id": 34042, + "year_id": 34148, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34149, + "make_id": 33491, + "model_id": 34042, + "year_id": 34148, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34150, + "make_id": 33491, + "model_id": 34042, + "year_id": 34150, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34151, + "make_id": 33491, + "model_id": 34042, + "year_id": 34150, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34152, + "make_id": 33491, + "model_id": 34042, + "year_id": 34150, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34153, + "make_id": 33491, + "model_id": 34042, + "year_id": 34150, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34154, + "make_id": 33491, + "model_id": 34042, + "year_id": 34154, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34155, + "make_id": 33491, + "model_id": 34042, + "year_id": 34154, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34156, + "make_id": 33491, + "model_id": 34042, + "year_id": 34154, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34157, + "make_id": 33491, + "model_id": 34042, + "year_id": 34154, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34158, + "make_id": 33491, + "model_id": 34042, + "year_id": 34158, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34159, + "make_id": 33491, + "model_id": 34042, + "year_id": 34158, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34160, + "make_id": 33491, + "model_id": 34042, + "year_id": 34158, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34161, + "make_id": 33491, + "model_id": 34042, + "year_id": 34158, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34162, + "make_id": 33491, + "model_id": 34162, + "year_id": 34162, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34163, + "make_id": 33491, + "model_id": 34162, + "year_id": 34162, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34164, + "make_id": 33491, + "model_id": 34162, + "year_id": 34164, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34165, + "make_id": 33491, + "model_id": 34162, + "year_id": 34164, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34166, + "make_id": 33491, + "model_id": 34162, + "year_id": 34166, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34167, + "make_id": 33491, + "model_id": 34162, + "year_id": 34166, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34168, + "make_id": 33491, + "model_id": 34162, + "year_id": 34168, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34169, + "make_id": 33491, + "model_id": 34162, + "year_id": 34168, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34170, + "make_id": 33491, + "model_id": 34162, + "year_id": 34170, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34171, + "make_id": 33491, + "model_id": 34162, + "year_id": 34170, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34172, + "make_id": 33491, + "model_id": 34172, + "year_id": 34172, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34173, + "make_id": 33491, + "model_id": 34172, + "year_id": 34172, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34174, + "make_id": 33491, + "model_id": 34172, + "year_id": 34174, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34175, + "make_id": 33491, + "model_id": 34172, + "year_id": 34174, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34176, + "make_id": 33491, + "model_id": 34172, + "year_id": 34174, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34177, + "make_id": 33491, + "model_id": 34172, + "year_id": 34174, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34178, + "make_id": 33491, + "model_id": 34178, + "year_id": 34178, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34179, + "make_id": 33491, + "model_id": 34178, + "year_id": 34178, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34180, + "make_id": 33491, + "model_id": 34178, + "year_id": 34180, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34181, + "make_id": 33491, + "model_id": 34178, + "year_id": 34180, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34182, + "make_id": 33491, + "model_id": 34178, + "year_id": 34182, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34183, + "make_id": 33491, + "model_id": 34178, + "year_id": 34182, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34184, + "make_id": 33491, + "model_id": 34184, + "year_id": 34184, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 34185, + "make_id": 33491, + "model_id": 34184, + "year_id": 34184, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34186, + "make_id": 33491, + "model_id": 34184, + "year_id": 34184, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 34187, + "make_id": 33491, + "model_id": 34184, + "year_id": 34184, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34188, + "make_id": 33491, + "model_id": 34184, + "year_id": 34188, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34189, + "make_id": 33491, + "model_id": 34184, + "year_id": 34188, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34190, + "make_id": 33491, + "model_id": 34184, + "year_id": 34188, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34191, + "make_id": 33491, + "model_id": 34184, + "year_id": 34188, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34192, + "make_id": 33491, + "model_id": 34184, + "year_id": 34192, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34193, + "make_id": 33491, + "model_id": 34184, + "year_id": 34192, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34194, + "make_id": 33491, + "model_id": 34184, + "year_id": 34192, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34195, + "make_id": 33491, + "model_id": 34184, + "year_id": 34195, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34196, + "make_id": 33491, + "model_id": 34184, + "year_id": 34195, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34197, + "make_id": 33491, + "model_id": 34184, + "year_id": 34195, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34198, + "make_id": 33491, + "model_id": 34198, + "year_id": 34198, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34199, + "make_id": 33491, + "model_id": 34198, + "year_id": 34198, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34200, + "make_id": 33491, + "model_id": 34198, + "year_id": 34200, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34201, + "make_id": 33491, + "model_id": 34198, + "year_id": 34200, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34202, + "make_id": 33491, + "model_id": 34198, + "year_id": 34202, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34203, + "make_id": 33491, + "model_id": 34198, + "year_id": 34202, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34204, + "make_id": 33491, + "model_id": 34198, + "year_id": 34204, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34205, + "make_id": 33491, + "model_id": 34198, + "year_id": 34204, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34206, + "make_id": 33491, + "model_id": 34198, + "year_id": 34206, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34207, + "make_id": 33491, + "model_id": 34198, + "year_id": 34206, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34208, + "make_id": 33491, + "model_id": 34198, + "year_id": 34208, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34209, + "make_id": 33491, + "model_id": 34198, + "year_id": 34208, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34210, + "make_id": 33491, + "model_id": 34198, + "year_id": 34210, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34211, + "make_id": 33491, + "model_id": 34198, + "year_id": 34210, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34212, + "make_id": 33491, + "model_id": 34198, + "year_id": 34212, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34213, + "make_id": 33491, + "model_id": 34198, + "year_id": 34212, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34214, + "make_id": 33491, + "model_id": 34198, + "year_id": 34214, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34215, + "make_id": 33491, + "model_id": 34198, + "year_id": 34214, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34216, + "make_id": 33491, + "model_id": 34216, + "year_id": 34216, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 34217, + "make_id": 33491, + "model_id": 34216, + "year_id": 34216, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34218, + "make_id": 33491, + "model_id": 34216, + "year_id": 34216, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 34219, + "make_id": 33491, + "model_id": 34216, + "year_id": 34216, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34220, + "make_id": 33491, + "model_id": 34216, + "year_id": 34220, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34221, + "make_id": 33491, + "model_id": 34216, + "year_id": 34220, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34222, + "make_id": 33491, + "model_id": 34216, + "year_id": 34222, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34223, + "make_id": 33491, + "model_id": 34216, + "year_id": 34222, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34224, + "make_id": 33491, + "model_id": 34216, + "year_id": 34224, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34225, + "make_id": 33491, + "model_id": 34216, + "year_id": 34224, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34226, + "make_id": 33491, + "model_id": 34216, + "year_id": 34226, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34227, + "make_id": 33491, + "model_id": 34216, + "year_id": 34227, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34228, + "make_id": 33491, + "model_id": 34216, + "year_id": 34228, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34229, + "make_id": 33491, + "model_id": 34216, + "year_id": 34229, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34230, + "make_id": 33491, + "model_id": 34216, + "year_id": 34230, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34231, + "make_id": 33491, + "model_id": 34231, + "year_id": 34231, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 34232, + "make_id": 33491, + "model_id": 34231, + "year_id": 34231, + "cylinders": 6, + "displacement": 2.8, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 34233, + "make_id": 33491, + "model_id": 34231, + "year_id": 34233, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34234, + "make_id": 33491, + "model_id": 34231, + "year_id": 34234, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34235, + "make_id": 33491, + "model_id": 34231, + "year_id": 34235, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34236, + "make_id": 33491, + "model_id": 34236, + "year_id": 34236, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34237, + "make_id": 33491, + "model_id": 34236, + "year_id": 34236, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34238, + "make_id": 33491, + "model_id": 34236, + "year_id": 34238, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34239, + "make_id": 33491, + "model_id": 34236, + "year_id": 34238, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34240, + "make_id": 33491, + "model_id": 34236, + "year_id": 34240, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34241, + "make_id": 33491, + "model_id": 34236, + "year_id": 34240, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34242, + "make_id": 33491, + "model_id": 34236, + "year_id": 34242, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34243, + "make_id": 33491, + "model_id": 34236, + "year_id": 34242, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34244, + "make_id": 33491, + "model_id": 34236, + "year_id": 34244, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34245, + "make_id": 33491, + "model_id": 34236, + "year_id": 34244, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34246, + "make_id": 33491, + "model_id": 34236, + "year_id": 34246, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34247, + "make_id": 33491, + "model_id": 34236, + "year_id": 34246, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34248, + "make_id": 33491, + "model_id": 34248, + "year_id": 34248, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34249, + "make_id": 33491, + "model_id": 34248, + "year_id": 34248, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34250, + "make_id": 33491, + "model_id": 34248, + "year_id": 34248, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34251, + "make_id": 33491, + "model_id": 34248, + "year_id": 34251, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34252, + "make_id": 33491, + "model_id": 34248, + "year_id": 34251, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34253, + "make_id": 33491, + "model_id": 34248, + "year_id": 34251, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34254, + "make_id": 33491, + "model_id": 34248, + "year_id": 34254, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34255, + "make_id": 33491, + "model_id": 34248, + "year_id": 34254, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34256, + "make_id": 33491, + "model_id": 34248, + "year_id": 34254, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34257, + "make_id": 33491, + "model_id": 34248, + "year_id": 34257, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34258, + "make_id": 33491, + "model_id": 34248, + "year_id": 34257, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34259, + "make_id": 33491, + "model_id": 34248, + "year_id": 34257, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34260, + "make_id": 33491, + "model_id": 34248, + "year_id": 34260, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34261, + "make_id": 33491, + "model_id": 34248, + "year_id": 34260, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34262, + "make_id": 33491, + "model_id": 34248, + "year_id": 34260, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34263, + "make_id": 33491, + "model_id": 34248, + "year_id": 34263, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34264, + "make_id": 33491, + "model_id": 34248, + "year_id": 34263, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34265, + "make_id": 33491, + "model_id": 34248, + "year_id": 34263, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34266, + "make_id": 33491, + "model_id": 34248, + "year_id": 34266, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34267, + "make_id": 33491, + "model_id": 34248, + "year_id": 34266, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34268, + "make_id": 33491, + "model_id": 34248, + "year_id": 34266, + "cylinders": 6, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34269, + "make_id": 33491, + "model_id": 34248, + "year_id": 34269, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34270, + "make_id": 33491, + "model_id": 34248, + "year_id": 34269, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34271, + "make_id": 33491, + "model_id": 34248, + "year_id": 34269, + "cylinders": 6, + "displacement": 4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34272, + "make_id": 33491, + "model_id": 34272, + "year_id": 34272, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34273, + "make_id": 33491, + "model_id": 34272, + "year_id": 34272, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34274, + "make_id": 33491, + "model_id": 34272, + "year_id": 34272, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34275, + "make_id": 33491, + "model_id": 34272, + "year_id": 34272, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34276, + "make_id": 33491, + "model_id": 34272, + "year_id": 34276, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34277, + "make_id": 33491, + "model_id": 34272, + "year_id": 34276, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34278, + "make_id": 33491, + "model_id": 34272, + "year_id": 34276, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34279, + "make_id": 33491, + "model_id": 34272, + "year_id": 34276, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34280, + "make_id": 33491, + "model_id": 34272, + "year_id": 34280, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34281, + "make_id": 33491, + "model_id": 34272, + "year_id": 34280, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34282, + "make_id": 33491, + "model_id": 34272, + "year_id": 34280, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34283, + "make_id": 33491, + "model_id": 34272, + "year_id": 34280, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34284, + "make_id": 33491, + "model_id": 34272, + "year_id": 34284, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34285, + "make_id": 33491, + "model_id": 34272, + "year_id": 34284, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34286, + "make_id": 33491, + "model_id": 34272, + "year_id": 34284, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34287, + "make_id": 33491, + "model_id": 34272, + "year_id": 34284, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34288, + "make_id": 33491, + "model_id": 34272, + "year_id": 34288, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34289, + "make_id": 33491, + "model_id": 34272, + "year_id": 34288, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34290, + "make_id": 33491, + "model_id": 34272, + "year_id": 34288, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34291, + "make_id": 33491, + "model_id": 34272, + "year_id": 34288, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34292, + "make_id": 33491, + "model_id": 34272, + "year_id": 34292, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34293, + "make_id": 33491, + "model_id": 34272, + "year_id": 34292, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34294, + "make_id": 33491, + "model_id": 34272, + "year_id": 34292, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34295, + "make_id": 33491, + "model_id": 34272, + "year_id": 34292, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34296, + "make_id": 33491, + "model_id": 34272, + "year_id": 34296, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34297, + "make_id": 33491, + "model_id": 34272, + "year_id": 34296, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34298, + "make_id": 33491, + "model_id": 34272, + "year_id": 34296, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34299, + "make_id": 33491, + "model_id": 34272, + "year_id": 34296, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34300, + "make_id": 33491, + "model_id": 34272, + "year_id": 34300, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34301, + "make_id": 33491, + "model_id": 34272, + "year_id": 34300, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34302, + "make_id": 33491, + "model_id": 34272, + "year_id": 34302, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34303, + "make_id": 33491, + "model_id": 34272, + "year_id": 34302, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34304, + "make_id": 33491, + "model_id": 34272, + "year_id": 34302, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34305, + "make_id": 33491, + "model_id": 34272, + "year_id": 34305, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34306, + "make_id": 33491, + "model_id": 34272, + "year_id": 34305, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34307, + "make_id": 33491, + "model_id": 34272, + "year_id": 34305, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34308, + "make_id": 33491, + "model_id": 34272, + "year_id": 34308, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34309, + "make_id": 33491, + "model_id": 34272, + "year_id": 34308, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34310, + "make_id": 33491, + "model_id": 34272, + "year_id": 34308, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34311, + "make_id": 33491, + "model_id": 34272, + "year_id": 34311, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34312, + "make_id": 33491, + "model_id": 34272, + "year_id": 34311, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34313, + "make_id": 33491, + "model_id": 34272, + "year_id": 34311, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34314, + "make_id": 33491, + "model_id": 34272, + "year_id": 34314, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34315, + "make_id": 33491, + "model_id": 34272, + "year_id": 34314, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34316, + "make_id": 33491, + "model_id": 34272, + "year_id": 34314, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34317, + "make_id": 33491, + "model_id": 34272, + "year_id": 34317, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34318, + "make_id": 33491, + "model_id": 34272, + "year_id": 34317, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34319, + "make_id": 33491, + "model_id": 34272, + "year_id": 34317, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34320, + "make_id": 33491, + "model_id": 34272, + "year_id": 34320, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34321, + "make_id": 33491, + "model_id": 34272, + "year_id": 34320, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34322, + "make_id": 33491, + "model_id": 34272, + "year_id": 34320, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34323, + "make_id": 33491, + "model_id": 34272, + "year_id": 34323, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34324, + "make_id": 33491, + "model_id": 34272, + "year_id": 34323, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34325, + "make_id": 33491, + "model_id": 34272, + "year_id": 34323, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34326, + "make_id": 33491, + "model_id": 34326, + "year_id": 34326, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34327, + "make_id": 33491, + "model_id": 34326, + "year_id": 34326, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34328, + "make_id": 33491, + "model_id": 34326, + "year_id": 34328, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34329, + "make_id": 33491, + "model_id": 34326, + "year_id": 34328, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34330, + "make_id": 33491, + "model_id": 34326, + "year_id": 34330, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34331, + "make_id": 33491, + "model_id": 34326, + "year_id": 34331, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34332, + "make_id": 33491, + "model_id": 34326, + "year_id": 34332, + "cylinders": 6, + "displacement": 3.3, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34333, + "make_id": 33491, + "model_id": 34326, + "year_id": 34333, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34334, + "make_id": 33491, + "model_id": 34326, + "year_id": 34334, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34335, + "make_id": 33491, + "model_id": 34326, + "year_id": 34335, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34336, + "make_id": 33491, + "model_id": 34326, + "year_id": 34336, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34337, + "make_id": 33491, + "model_id": 34326, + "year_id": 34337, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34338, + "make_id": 33491, + "model_id": 34326, + "year_id": 34338, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34339, + "make_id": 33491, + "model_id": 34339, + "year_id": 34339, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34340, + "make_id": 33491, + "model_id": 34339, + "year_id": 34340, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34341, + "make_id": 33491, + "model_id": 34339, + "year_id": 34341, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34342, + "make_id": 33491, + "model_id": 34342, + "year_id": 34342, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 34343, + "make_id": 33491, + "model_id": 34342, + "year_id": 34343, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 34344, + "make_id": 33491, + "model_id": 34342, + "year_id": 34344, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 34345, + "make_id": 33491, + "model_id": 34342, + "year_id": 34345, + "cylinders": 6, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 34346, + "make_id": 33491, + "model_id": 34342, + "year_id": 34346, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34347, + "make_id": 33491, + "model_id": 34342, + "year_id": 34347, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34348, + "make_id": 33491, + "model_id": 34342, + "year_id": 34348, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34349, + "make_id": 33491, + "model_id": 34342, + "year_id": 34349, + "cylinders": 6, + "displacement": 3.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34350, + "make_id": 33491, + "model_id": 34342, + "year_id": 34350, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34351, + "make_id": 33491, + "model_id": 34342, + "year_id": 34351, + "cylinders": 6, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34352, + "make_id": 33491, + "model_id": 34342, + "year_id": 34352, + "cylinders": 6, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34353, + "make_id": 33491, + "model_id": 34342, + "year_id": 34353, + "cylinders": 6, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34354, + "make_id": 33491, + "model_id": 34342, + "year_id": 34354, + "cylinders": 6, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34355, + "make_id": 33491, + "model_id": 34342, + "year_id": 34355, + "cylinders": 6, + "displacement": 4.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34356, + "make_id": 33491, + "model_id": 34342, + "year_id": 34356, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34357, + "make_id": 33491, + "model_id": 34342, + "year_id": 34357, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34358, + "make_id": 33491, + "model_id": 34342, + "year_id": 34358, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34359, + "make_id": 33491, + "model_id": 34342, + "year_id": 34359, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34360, + "make_id": 33491, + "model_id": 34342, + "year_id": 34360, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34361, + "make_id": 33491, + "model_id": 34342, + "year_id": 34361, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34362, + "make_id": 33491, + "model_id": 34342, + "year_id": 34362, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34363, + "make_id": 33491, + "model_id": 34342, + "year_id": 34363, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34364, + "make_id": 33491, + "model_id": 34342, + "year_id": 34364, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34365, + "make_id": 33491, + "model_id": 34342, + "year_id": 34365, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34366, + "make_id": 33491, + "model_id": 34342, + "year_id": 34366, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34367, + "make_id": 33491, + "model_id": 34342, + "year_id": 34367, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34368, + "make_id": 33491, + "model_id": 34342, + "year_id": 34368, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34369, + "make_id": 33491, + "model_id": 34342, + "year_id": 34369, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34370, + "make_id": 33491, + "model_id": 34342, + "year_id": 34370, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34371, + "make_id": 33491, + "model_id": 34342, + "year_id": 34371, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34372, + "make_id": 33491, + "model_id": 34342, + "year_id": 34372, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34373, + "make_id": 33491, + "model_id": 34342, + "year_id": 34373, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 34374, + "make_id": 33491, + "model_id": 34374, + "year_id": 34374, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34375, + "make_id": 33491, + "model_id": 34374, + "year_id": 34374, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34376, + "make_id": 33491, + "model_id": 34374, + "year_id": 34374, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34377, + "make_id": 33491, + "model_id": 34374, + "year_id": 34374, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34378, + "make_id": 33491, + "model_id": 34374, + "year_id": 34374, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34379, + "make_id": 33491, + "model_id": 34374, + "year_id": 34379, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34380, + "make_id": 33491, + "model_id": 34374, + "year_id": 34379, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34381, + "make_id": 33491, + "model_id": 34374, + "year_id": 34379, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34382, + "make_id": 33491, + "model_id": 34374, + "year_id": 34379, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34383, + "make_id": 33491, + "model_id": 34374, + "year_id": 34383, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34384, + "make_id": 33491, + "model_id": 34374, + "year_id": 34383, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34385, + "make_id": 33491, + "model_id": 34374, + "year_id": 34383, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34386, + "make_id": 33491, + "model_id": 34374, + "year_id": 34383, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34387, + "make_id": 33491, + "model_id": 34374, + "year_id": 34387, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34388, + "make_id": 33491, + "model_id": 34374, + "year_id": 34387, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34389, + "make_id": 33491, + "model_id": 34374, + "year_id": 34387, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34390, + "make_id": 33491, + "model_id": 34374, + "year_id": 34387, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34391, + "make_id": 33491, + "model_id": 34374, + "year_id": 34391, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34392, + "make_id": 33491, + "model_id": 34374, + "year_id": 34391, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34393, + "make_id": 33491, + "model_id": 34374, + "year_id": 34393, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34394, + "make_id": 33491, + "model_id": 34374, + "year_id": 34393, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34395, + "make_id": 33491, + "model_id": 34374, + "year_id": 34395, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34396, + "make_id": 33491, + "model_id": 34374, + "year_id": 34395, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34397, + "make_id": 33491, + "model_id": 34374, + "year_id": 34395, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34398, + "make_id": 33491, + "model_id": 34374, + "year_id": 34395, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34399, + "make_id": 33491, + "model_id": 34374, + "year_id": 34395, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34400, + "make_id": 33491, + "model_id": 34374, + "year_id": 34400, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34401, + "make_id": 33491, + "model_id": 34374, + "year_id": 34400, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34402, + "make_id": 33491, + "model_id": 34374, + "year_id": 34400, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34403, + "make_id": 33491, + "model_id": 34374, + "year_id": 34400, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34404, + "make_id": 33491, + "model_id": 34374, + "year_id": 34400, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34405, + "make_id": 33491, + "model_id": 34374, + "year_id": 34405, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34406, + "make_id": 33491, + "model_id": 34374, + "year_id": 34405, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34407, + "make_id": 33491, + "model_id": 34374, + "year_id": 34405, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34408, + "make_id": 33491, + "model_id": 34374, + "year_id": 34405, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34409, + "make_id": 33491, + "model_id": 34374, + "year_id": 34405, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34410, + "make_id": 33491, + "model_id": 34374, + "year_id": 34410, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34411, + "make_id": 33491, + "model_id": 34374, + "year_id": 34410, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34412, + "make_id": 33491, + "model_id": 34374, + "year_id": 34410, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34413, + "make_id": 33491, + "model_id": 34374, + "year_id": 34410, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34414, + "make_id": 33491, + "model_id": 34374, + "year_id": 34410, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34415, + "make_id": 33491, + "model_id": 34374, + "year_id": 34415, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34416, + "make_id": 33491, + "model_id": 34374, + "year_id": 34415, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34417, + "make_id": 33491, + "model_id": 34374, + "year_id": 34415, + "cylinders": 4, + "displacement": 2.4, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34418, + "make_id": 33491, + "model_id": 34374, + "year_id": 34415, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34419, + "make_id": 33491, + "model_id": 34374, + "year_id": 34415, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34420, + "make_id": 33491, + "model_id": 34420, + "year_id": 34420, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34421, + "make_id": 33491, + "model_id": 34420, + "year_id": 34421, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34422, + "make_id": 33491, + "model_id": 34420, + "year_id": 34421, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34423, + "make_id": 33491, + "model_id": 34420, + "year_id": 34423, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34424, + "make_id": 33491, + "model_id": 34420, + "year_id": 34423, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34425, + "make_id": 33491, + "model_id": 34420, + "year_id": 34425, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34426, + "make_id": 33491, + "model_id": 34420, + "year_id": 34425, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34427, + "make_id": 33491, + "model_id": 34420, + "year_id": 34425, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34428, + "make_id": 33491, + "model_id": 34420, + "year_id": 34425, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34429, + "make_id": 33491, + "model_id": 34420, + "year_id": 34429, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34430, + "make_id": 33491, + "model_id": 34420, + "year_id": 34429, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34431, + "make_id": 33491, + "model_id": 34420, + "year_id": 34429, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34432, + "make_id": 33491, + "model_id": 34420, + "year_id": 34429, + "cylinders": 4, + "displacement": 1.6, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34433, + "make_id": 33491, + "model_id": 34420, + "year_id": 34433, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34434, + "make_id": 33491, + "model_id": 34420, + "year_id": 34433, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34435, + "make_id": 33491, + "model_id": 34420, + "year_id": 34433, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34436, + "make_id": 33491, + "model_id": 34420, + "year_id": 34436, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34437, + "make_id": 33491, + "model_id": 34420, + "year_id": 34436, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34438, + "make_id": 33491, + "model_id": 34420, + "year_id": 34436, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34439, + "make_id": 33491, + "model_id": 34420, + "year_id": 34439, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34440, + "make_id": 33491, + "model_id": 34420, + "year_id": 34439, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34441, + "make_id": 33491, + "model_id": 34420, + "year_id": 34439, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34442, + "make_id": 33491, + "model_id": 34420, + "year_id": 34442, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34443, + "make_id": 33491, + "model_id": 34420, + "year_id": 34442, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34444, + "make_id": 33491, + "model_id": 34420, + "year_id": 34442, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34445, + "make_id": 33491, + "model_id": 34420, + "year_id": 34445, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34446, + "make_id": 33491, + "model_id": 34420, + "year_id": 34445, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34447, + "make_id": 33491, + "model_id": 34420, + "year_id": 34445, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34448, + "make_id": 33491, + "model_id": 34420, + "year_id": 34448, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34449, + "make_id": 33491, + "model_id": 34420, + "year_id": 34449, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34450, + "make_id": 33491, + "model_id": 34420, + "year_id": 34450, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34451, + "make_id": 33491, + "model_id": 34420, + "year_id": 34451, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34452, + "make_id": 33491, + "model_id": 34420, + "year_id": 34451, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34453, + "make_id": 33491, + "model_id": 34420, + "year_id": 34453, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34454, + "make_id": 33491, + "model_id": 34420, + "year_id": 34453, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34455, + "make_id": 33491, + "model_id": 34420, + "year_id": 34455, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34456, + "make_id": 33491, + "model_id": 34420, + "year_id": 34455, + "cylinders": 4, + "displacement": 1.8, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34457, + "make_id": 33491, + "model_id": 34457, + "year_id": 34457, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34458, + "make_id": 33491, + "model_id": 34457, + "year_id": 34457, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34459, + "make_id": 33491, + "model_id": 34457, + "year_id": 34459, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34460, + "make_id": 33491, + "model_id": 34457, + "year_id": 34459, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34461, + "make_id": 33491, + "model_id": 34457, + "year_id": 34461, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34462, + "make_id": 33491, + "model_id": 34457, + "year_id": 34461, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34463, + "make_id": 33491, + "model_id": 34457, + "year_id": 34463, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34464, + "make_id": 33491, + "model_id": 34457, + "year_id": 34463, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34465, + "make_id": 33491, + "model_id": 34457, + "year_id": 34465, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34466, + "make_id": 33491, + "model_id": 34457, + "year_id": 34465, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34467, + "make_id": 33491, + "model_id": 34457, + "year_id": 34467, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34468, + "make_id": 33491, + "model_id": 34457, + "year_id": 34467, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34469, + "make_id": 33491, + "model_id": 34457, + "year_id": 34469, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34470, + "make_id": 33491, + "model_id": 34457, + "year_id": 34469, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34471, + "make_id": 33491, + "model_id": 34457, + "year_id": 34471, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34472, + "make_id": 33491, + "model_id": 34457, + "year_id": 34471, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34473, + "make_id": 33491, + "model_id": 34473, + "year_id": 34473, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34474, + "make_id": 33491, + "model_id": 34473, + "year_id": 34473, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34475, + "make_id": 33491, + "model_id": 34473, + "year_id": 34475, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34476, + "make_id": 33491, + "model_id": 34473, + "year_id": 34475, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34477, + "make_id": 33491, + "model_id": 34473, + "year_id": 34477, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34478, + "make_id": 33491, + "model_id": 34473, + "year_id": 34477, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34479, + "make_id": 33491, + "model_id": 34479, + "year_id": 34479, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34480, + "make_id": 33491, + "model_id": 34479, + "year_id": 34479, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34481, + "make_id": 33491, + "model_id": 34479, + "year_id": 34481, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34482, + "make_id": 33491, + "model_id": 34479, + "year_id": 34481, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34483, + "make_id": 33491, + "model_id": 34479, + "year_id": 34483, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34484, + "make_id": 33491, + "model_id": 34479, + "year_id": 34483, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34485, + "make_id": 33491, + "model_id": 34479, + "year_id": 34485, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34486, + "make_id": 33491, + "model_id": 34479, + "year_id": 34485, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34487, + "make_id": 33491, + "model_id": 34479, + "year_id": 34487, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34488, + "make_id": 33491, + "model_id": 34479, + "year_id": 34487, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34489, + "make_id": 33491, + "model_id": 34479, + "year_id": 34489, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34490, + "make_id": 33491, + "model_id": 34479, + "year_id": 34490, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34491, + "make_id": 33491, + "model_id": 34491, + "year_id": 34491, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34492, + "make_id": 33491, + "model_id": 34491, + "year_id": 34491, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34493, + "make_id": 33491, + "model_id": 34491, + "year_id": 34493, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34494, + "make_id": 33491, + "model_id": 34491, + "year_id": 34493, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34495, + "make_id": 33491, + "model_id": 34491, + "year_id": 34495, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34496, + "make_id": 33491, + "model_id": 34491, + "year_id": 34496, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34497, + "make_id": 33491, + "model_id": 34491, + "year_id": 34496, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34498, + "make_id": 33491, + "model_id": 34491, + "year_id": 34498, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34499, + "make_id": 33491, + "model_id": 34491, + "year_id": 34498, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34500, + "make_id": 33491, + "model_id": 34491, + "year_id": 34500, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34501, + "make_id": 33491, + "model_id": 34491, + "year_id": 34501, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34502, + "make_id": 33491, + "model_id": 34502, + "year_id": 34502, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34503, + "make_id": 33491, + "model_id": 34502, + "year_id": 34503, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34504, + "make_id": 33491, + "model_id": 34502, + "year_id": 34504, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34505, + "make_id": 33491, + "model_id": 34502, + "year_id": 34505, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34506, + "make_id": 33491, + "model_id": 34502, + "year_id": 34506, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34507, + "make_id": 33491, + "model_id": 34502, + "year_id": 34507, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34508, + "make_id": 33491, + "model_id": 34502, + "year_id": 34508, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34509, + "make_id": 33491, + "model_id": 34502, + "year_id": 34509, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34510, + "make_id": 33491, + "model_id": 34502, + "year_id": 34510, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34511, + "make_id": 33491, + "model_id": 34502, + "year_id": 34511, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34512, + "make_id": 33491, + "model_id": 34502, + "year_id": 34512, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34513, + "make_id": 33491, + "model_id": 34502, + "year_id": 34513, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34514, + "make_id": 33491, + "model_id": 34502, + "year_id": 34514, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34515, + "make_id": 33491, + "model_id": 34502, + "year_id": 34515, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34516, + "make_id": 33491, + "model_id": 34502, + "year_id": 34516, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34517, + "make_id": 33491, + "model_id": 34502, + "year_id": 34517, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34518, + "make_id": 33491, + "model_id": 34518, + "year_id": 34518, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34519, + "make_id": 33491, + "model_id": 34518, + "year_id": 34519, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34520, + "make_id": 33491, + "model_id": 34518, + "year_id": 34520, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34521, + "make_id": 33491, + "model_id": 34518, + "year_id": 34521, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34522, + "make_id": 33491, + "model_id": 34518, + "year_id": 34522, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34523, + "make_id": 33491, + "model_id": 34523, + "year_id": 34523, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34524, + "make_id": 33491, + "model_id": 34524, + "year_id": 34524, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34525, + "make_id": 33491, + "model_id": 34524, + "year_id": 34525, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34526, + "make_id": 33491, + "model_id": 34524, + "year_id": 34526, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34527, + "make_id": 33491, + "model_id": 34524, + "year_id": 34527, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34528, + "make_id": 33491, + "model_id": 34528, + "year_id": 34528, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34529, + "make_id": 33491, + "model_id": 34528, + "year_id": 34529, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34530, + "make_id": 33491, + "model_id": 34528, + "year_id": 34530, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34531, + "make_id": 33491, + "model_id": 34528, + "year_id": 34531, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34532, + "make_id": 33491, + "model_id": 34528, + "year_id": 34532, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34533, + "make_id": 33491, + "model_id": 34528, + "year_id": 34533, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34534, + "make_id": 33491, + "model_id": 34534, + "year_id": 34534, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34535, + "make_id": 33491, + "model_id": 34534, + "year_id": 34534, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34536, + "make_id": 33491, + "model_id": 34534, + "year_id": 34534, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34537, + "make_id": 33491, + "model_id": 34534, + "year_id": 34534, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34538, + "make_id": 33491, + "model_id": 34534, + "year_id": 34538, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34539, + "make_id": 33491, + "model_id": 34534, + "year_id": 34538, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34540, + "make_id": 33491, + "model_id": 34534, + "year_id": 34538, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34541, + "make_id": 33491, + "model_id": 34534, + "year_id": 34538, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34542, + "make_id": 33491, + "model_id": 34534, + "year_id": 34542, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34543, + "make_id": 33491, + "model_id": 34534, + "year_id": 34542, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34544, + "make_id": 33491, + "model_id": 34534, + "year_id": 34542, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34545, + "make_id": 33491, + "model_id": 34534, + "year_id": 34542, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34546, + "make_id": 33491, + "model_id": 34534, + "year_id": 34546, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34547, + "make_id": 33491, + "model_id": 34534, + "year_id": 34546, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34548, + "make_id": 33491, + "model_id": 34534, + "year_id": 34546, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34549, + "make_id": 33491, + "model_id": 34534, + "year_id": 34546, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34550, + "make_id": 33491, + "model_id": 34534, + "year_id": 34550, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34551, + "make_id": 33491, + "model_id": 34534, + "year_id": 34550, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34552, + "make_id": 33491, + "model_id": 34534, + "year_id": 34550, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34553, + "make_id": 33491, + "model_id": 34534, + "year_id": 34550, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34554, + "make_id": 33491, + "model_id": 34534, + "year_id": 34554, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34555, + "make_id": 33491, + "model_id": 34534, + "year_id": 34554, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34556, + "make_id": 33491, + "model_id": 34534, + "year_id": 34554, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34557, + "make_id": 33491, + "model_id": 34534, + "year_id": 34554, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34558, + "make_id": 33491, + "model_id": 34534, + "year_id": 34558, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34559, + "make_id": 33491, + "model_id": 34534, + "year_id": 34558, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34560, + "make_id": 33491, + "model_id": 34534, + "year_id": 34558, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34561, + "make_id": 33491, + "model_id": 34534, + "year_id": 34558, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34562, + "make_id": 33491, + "model_id": 34534, + "year_id": 34562, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34563, + "make_id": 33491, + "model_id": 34534, + "year_id": 34562, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34564, + "make_id": 33491, + "model_id": 34534, + "year_id": 34562, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34565, + "make_id": 33491, + "model_id": 34534, + "year_id": 34562, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34566, + "make_id": 33491, + "model_id": 34534, + "year_id": 34566, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34567, + "make_id": 33491, + "model_id": 34534, + "year_id": 34566, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34568, + "make_id": 33491, + "model_id": 34534, + "year_id": 34566, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34569, + "make_id": 33491, + "model_id": 34534, + "year_id": 34566, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34570, + "make_id": 33491, + "model_id": 34534, + "year_id": 34570, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34571, + "make_id": 33491, + "model_id": 34534, + "year_id": 34570, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34572, + "make_id": 33491, + "model_id": 34534, + "year_id": 34570, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34573, + "make_id": 33491, + "model_id": 34534, + "year_id": 34570, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34574, + "make_id": 33491, + "model_id": 34534, + "year_id": 34574, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34575, + "make_id": 33491, + "model_id": 34534, + "year_id": 34574, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34576, + "make_id": 33491, + "model_id": 34534, + "year_id": 34574, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34577, + "make_id": 33491, + "model_id": 34534, + "year_id": 34574, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34578, + "make_id": 33491, + "model_id": 34534, + "year_id": 34578, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34579, + "make_id": 33491, + "model_id": 34534, + "year_id": 34578, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34580, + "make_id": 33491, + "model_id": 34534, + "year_id": 34578, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34581, + "make_id": 33491, + "model_id": 34534, + "year_id": 34578, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34582, + "make_id": 33491, + "model_id": 34534, + "year_id": 34582, + "cylinders": 4, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34583, + "make_id": 33491, + "model_id": 34534, + "year_id": 34582, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34584, + "make_id": 33491, + "model_id": 34534, + "year_id": 34582, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34585, + "make_id": 33491, + "model_id": 34534, + "year_id": 34582, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34586, + "make_id": 33491, + "model_id": 34534, + "year_id": 34586, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34587, + "make_id": 33491, + "model_id": 34534, + "year_id": 34586, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34588, + "make_id": 33491, + "model_id": 34534, + "year_id": 34586, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34589, + "make_id": 33491, + "model_id": 34534, + "year_id": 34586, + "cylinders": 4, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34590, + "make_id": 33491, + "model_id": 34534, + "year_id": 34590, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34591, + "make_id": 33491, + "model_id": 34534, + "year_id": 34590, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34592, + "make_id": 33491, + "model_id": 34534, + "year_id": 34590, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34593, + "make_id": 33491, + "model_id": 34534, + "year_id": 34590, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34594, + "make_id": 33491, + "model_id": 34534, + "year_id": 34594, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34595, + "make_id": 33491, + "model_id": 34534, + "year_id": 34594, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34596, + "make_id": 33491, + "model_id": 34534, + "year_id": 34594, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34597, + "make_id": 33491, + "model_id": 34534, + "year_id": 34594, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34598, + "make_id": 33491, + "model_id": 34534, + "year_id": 34598, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34599, + "make_id": 33491, + "model_id": 34534, + "year_id": 34598, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34600, + "make_id": 33491, + "model_id": 34534, + "year_id": 34598, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34601, + "make_id": 33491, + "model_id": 34534, + "year_id": 34598, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34602, + "make_id": 33491, + "model_id": 34534, + "year_id": 34602, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34603, + "make_id": 33491, + "model_id": 34534, + "year_id": 34602, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34604, + "make_id": 33491, + "model_id": 34534, + "year_id": 34604, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34605, + "make_id": 33491, + "model_id": 34534, + "year_id": 34604, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34606, + "make_id": 33491, + "model_id": 34534, + "year_id": 34606, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34607, + "make_id": 33491, + "model_id": 34534, + "year_id": 34606, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34608, + "make_id": 33491, + "model_id": 34534, + "year_id": 34608, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34609, + "make_id": 33491, + "model_id": 34534, + "year_id": 34608, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34610, + "make_id": 33491, + "model_id": 34610, + "year_id": 34610, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "" + }, + { + "id": 34611, + "make_id": 33491, + "model_id": 34610, + "year_id": 34611, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "" + }, + { + "id": 34612, + "make_id": 33491, + "model_id": 34610, + "year_id": 34612, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "" + }, + { + "id": 34613, + "make_id": 33491, + "model_id": 34610, + "year_id": 34613, + "cylinders": 0, + "displacement": 0, + "drive": "2-Wheel Drive", + "transmission": "" + }, + { + "id": 34614, + "make_id": 33491, + "model_id": 34610, + "year_id": 34614, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34615, + "make_id": 33491, + "model_id": 34610, + "year_id": 34615, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34616, + "make_id": 33491, + "model_id": 34610, + "year_id": 34616, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34617, + "make_id": 33491, + "model_id": 34617, + "year_id": 34617, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "CVT" + }, + { + "id": 34618, + "make_id": 33491, + "model_id": 34618, + "year_id": 34618, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34619, + "make_id": 33491, + "model_id": 34618, + "year_id": 34619, + "cylinders": 4, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34620, + "make_id": 33491, + "model_id": 34620, + "year_id": 34620, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34621, + "make_id": 33491, + "model_id": 34620, + "year_id": 34621, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34622, + "make_id": 33491, + "model_id": 34620, + "year_id": 34622, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34623, + "make_id": 33491, + "model_id": 34623, + "year_id": 34623, + "cylinders": 4, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34624, + "make_id": 33491, + "model_id": 34624, + "year_id": 34624, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34625, + "make_id": 33491, + "model_id": 34624, + "year_id": 34624, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34626, + "make_id": 33491, + "model_id": 34624, + "year_id": 34624, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34627, + "make_id": 33491, + "model_id": 34624, + "year_id": 34624, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34628, + "make_id": 33491, + "model_id": 34624, + "year_id": 34628, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34629, + "make_id": 33491, + "model_id": 34624, + "year_id": 34628, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34630, + "make_id": 33491, + "model_id": 34624, + "year_id": 34628, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34631, + "make_id": 33491, + "model_id": 34624, + "year_id": 34628, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34632, + "make_id": 33491, + "model_id": 34624, + "year_id": 34632, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34633, + "make_id": 33491, + "model_id": 34624, + "year_id": 34632, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34634, + "make_id": 33491, + "model_id": 34624, + "year_id": 34632, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34635, + "make_id": 33491, + "model_id": 34624, + "year_id": 34632, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34636, + "make_id": 33491, + "model_id": 34636, + "year_id": 34636, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34637, + "make_id": 33491, + "model_id": 34636, + "year_id": 34636, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34638, + "make_id": 33491, + "model_id": 34636, + "year_id": 34638, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34639, + "make_id": 33491, + "model_id": 34636, + "year_id": 34638, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34640, + "make_id": 33491, + "model_id": 34636, + "year_id": 34640, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34641, + "make_id": 33491, + "model_id": 34636, + "year_id": 34640, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34642, + "make_id": 33491, + "model_id": 34636, + "year_id": 34642, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34643, + "make_id": 33491, + "model_id": 34636, + "year_id": 34642, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34644, + "make_id": 33491, + "model_id": 34636, + "year_id": 34644, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34645, + "make_id": 33491, + "model_id": 34636, + "year_id": 34644, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34646, + "make_id": 33491, + "model_id": 34636, + "year_id": 34646, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34647, + "make_id": 33491, + "model_id": 34636, + "year_id": 34646, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34648, + "make_id": 33491, + "model_id": 34636, + "year_id": 34648, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34649, + "make_id": 33491, + "model_id": 34636, + "year_id": 34648, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34650, + "make_id": 33491, + "model_id": 34636, + "year_id": 34650, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34651, + "make_id": 33491, + "model_id": 34636, + "year_id": 34650, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34652, + "make_id": 33491, + "model_id": 34636, + "year_id": 34650, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34653, + "make_id": 33491, + "model_id": 34636, + "year_id": 34650, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34654, + "make_id": 33491, + "model_id": 34636, + "year_id": 34654, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34655, + "make_id": 33491, + "model_id": 34636, + "year_id": 34654, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34656, + "make_id": 33491, + "model_id": 34636, + "year_id": 34654, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34657, + "make_id": 33491, + "model_id": 34636, + "year_id": 34654, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34658, + "make_id": 33491, + "model_id": 34636, + "year_id": 34654, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34659, + "make_id": 33491, + "model_id": 34636, + "year_id": 34659, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34660, + "make_id": 33491, + "model_id": 34636, + "year_id": 34659, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34661, + "make_id": 33491, + "model_id": 34636, + "year_id": 34659, + "cylinders": 8, + "displacement": 4.6, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34662, + "make_id": 33491, + "model_id": 34636, + "year_id": 34659, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34663, + "make_id": 33491, + "model_id": 34636, + "year_id": 34659, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34664, + "make_id": 33491, + "model_id": 34636, + "year_id": 34664, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34665, + "make_id": 33491, + "model_id": 34636, + "year_id": 34664, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34666, + "make_id": 33491, + "model_id": 34636, + "year_id": 34664, + "cylinders": 8, + "displacement": 4.6, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34667, + "make_id": 33491, + "model_id": 34636, + "year_id": 34664, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34668, + "make_id": 33491, + "model_id": 34636, + "year_id": 34664, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34669, + "make_id": 33491, + "model_id": 34636, + "year_id": 34669, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34670, + "make_id": 33491, + "model_id": 34636, + "year_id": 34669, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34671, + "make_id": 33491, + "model_id": 34636, + "year_id": 34669, + "cylinders": 8, + "displacement": 4.6, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34672, + "make_id": 33491, + "model_id": 34636, + "year_id": 34669, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34673, + "make_id": 33491, + "model_id": 34636, + "year_id": 34669, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34674, + "make_id": 33491, + "model_id": 34636, + "year_id": 34674, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34675, + "make_id": 33491, + "model_id": 34636, + "year_id": 34674, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34676, + "make_id": 33491, + "model_id": 34636, + "year_id": 34674, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34677, + "make_id": 33491, + "model_id": 34636, + "year_id": 34677, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34678, + "make_id": 33491, + "model_id": 34636, + "year_id": 34677, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34679, + "make_id": 33491, + "model_id": 34636, + "year_id": 34677, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34680, + "make_id": 33491, + "model_id": 34636, + "year_id": 34680, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34681, + "make_id": 33491, + "model_id": 34636, + "year_id": 34680, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34682, + "make_id": 33491, + "model_id": 34636, + "year_id": 34680, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34683, + "make_id": 33491, + "model_id": 34636, + "year_id": 34683, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34684, + "make_id": 33491, + "model_id": 34636, + "year_id": 34683, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34685, + "make_id": 33491, + "model_id": 34636, + "year_id": 34683, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34686, + "make_id": 33491, + "model_id": 34686, + "year_id": 34686, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34687, + "make_id": 33491, + "model_id": 34686, + "year_id": 34687, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34688, + "make_id": 33491, + "model_id": 34686, + "year_id": 34688, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34689, + "make_id": 33491, + "model_id": 34686, + "year_id": 34689, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34690, + "make_id": 33491, + "model_id": 34686, + "year_id": 34690, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34691, + "make_id": 33491, + "model_id": 34686, + "year_id": 34691, + "cylinders": 6, + "displacement": 3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34692, + "make_id": 33491, + "model_id": 34686, + "year_id": 34692, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34693, + "make_id": 33491, + "model_id": 34686, + "year_id": 34692, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34694, + "make_id": 33491, + "model_id": 34686, + "year_id": 34694, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34695, + "make_id": 33491, + "model_id": 34686, + "year_id": 34694, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34696, + "make_id": 33491, + "model_id": 34686, + "year_id": 34696, + "cylinders": 6, + "displacement": 3.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34697, + "make_id": 33491, + "model_id": 34686, + "year_id": 34696, + "cylinders": 6, + "displacement": 3.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34698, + "make_id": 33491, + "model_id": 34686, + "year_id": 34698, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34699, + "make_id": 33491, + "model_id": 34686, + "year_id": 34698, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34700, + "make_id": 33491, + "model_id": 34686, + "year_id": 34700, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34701, + "make_id": 33491, + "model_id": 34686, + "year_id": 34700, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34702, + "make_id": 33491, + "model_id": 34686, + "year_id": 34702, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34703, + "make_id": 33491, + "model_id": 34686, + "year_id": 34702, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34704, + "make_id": 33491, + "model_id": 34686, + "year_id": 34704, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34705, + "make_id": 33491, + "model_id": 34686, + "year_id": 34704, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34706, + "make_id": 33491, + "model_id": 34686, + "year_id": 34706, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34707, + "make_id": 33491, + "model_id": 34686, + "year_id": 34706, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34708, + "make_id": 33491, + "model_id": 34686, + "year_id": 34706, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34709, + "make_id": 33491, + "model_id": 34686, + "year_id": 34709, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34710, + "make_id": 33491, + "model_id": 34686, + "year_id": 34709, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34711, + "make_id": 33491, + "model_id": 34686, + "year_id": 34709, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34712, + "make_id": 33491, + "model_id": 34686, + "year_id": 34712, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34713, + "make_id": 33491, + "model_id": 34686, + "year_id": 34712, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34714, + "make_id": 33491, + "model_id": 34686, + "year_id": 34712, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34715, + "make_id": 33491, + "model_id": 34686, + "year_id": 34715, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34716, + "make_id": 33491, + "model_id": 34686, + "year_id": 34715, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34717, + "make_id": 33491, + "model_id": 34686, + "year_id": 34717, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34718, + "make_id": 33491, + "model_id": 34686, + "year_id": 34717, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34719, + "make_id": 33491, + "model_id": 34686, + "year_id": 34719, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34720, + "make_id": 33491, + "model_id": 34686, + "year_id": 34719, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34721, + "make_id": 33491, + "model_id": 34721, + "year_id": 34721, + "cylinders": 4, + "displacement": 1.3, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 34722, + "make_id": 33491, + "model_id": 34721, + "year_id": 34721, + "cylinders": 4, + "displacement": 1.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34723, + "make_id": 33491, + "model_id": 34721, + "year_id": 34721, + "cylinders": 4, + "displacement": 1.3, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 34724, + "make_id": 33491, + "model_id": 34724, + "year_id": 34724, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34725, + "make_id": 33491, + "model_id": 34724, + "year_id": 34724, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34726, + "make_id": 33491, + "model_id": 34724, + "year_id": 34726, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34727, + "make_id": 33491, + "model_id": 34724, + "year_id": 34726, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34728, + "make_id": 33491, + "model_id": 34724, + "year_id": 34726, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34729, + "make_id": 33491, + "model_id": 34724, + "year_id": 34726, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34730, + "make_id": 33491, + "model_id": 34724, + "year_id": 34730, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34731, + "make_id": 33491, + "model_id": 34724, + "year_id": 34730, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34732, + "make_id": 33491, + "model_id": 34724, + "year_id": 34730, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34733, + "make_id": 33491, + "model_id": 34724, + "year_id": 34730, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34734, + "make_id": 33491, + "model_id": 34724, + "year_id": 34734, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34735, + "make_id": 33491, + "model_id": 34724, + "year_id": 34734, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34736, + "make_id": 33491, + "model_id": 34724, + "year_id": 34734, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34737, + "make_id": 33491, + "model_id": 34724, + "year_id": 34734, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34738, + "make_id": 33491, + "model_id": 34724, + "year_id": 34738, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34739, + "make_id": 33491, + "model_id": 34724, + "year_id": 34738, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34740, + "make_id": 33491, + "model_id": 34724, + "year_id": 34738, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34741, + "make_id": 33491, + "model_id": 34724, + "year_id": 34738, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34742, + "make_id": 33491, + "model_id": 34724, + "year_id": 34742, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34743, + "make_id": 33491, + "model_id": 34724, + "year_id": 34742, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34744, + "make_id": 33491, + "model_id": 34724, + "year_id": 34742, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34745, + "make_id": 33491, + "model_id": 34724, + "year_id": 34742, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34746, + "make_id": 33491, + "model_id": 34724, + "year_id": 34746, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34747, + "make_id": 33491, + "model_id": 34724, + "year_id": 34746, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34748, + "make_id": 33491, + "model_id": 34724, + "year_id": 34746, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34749, + "make_id": 33491, + "model_id": 34724, + "year_id": 34746, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34750, + "make_id": 33491, + "model_id": 34724, + "year_id": 34750, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34751, + "make_id": 33491, + "model_id": 34724, + "year_id": 34750, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34752, + "make_id": 33491, + "model_id": 34724, + "year_id": 34750, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34753, + "make_id": 33491, + "model_id": 34724, + "year_id": 34750, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34754, + "make_id": 33491, + "model_id": 34724, + "year_id": 34754, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34755, + "make_id": 33491, + "model_id": 34724, + "year_id": 34754, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34756, + "make_id": 33491, + "model_id": 34724, + "year_id": 34754, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34757, + "make_id": 33491, + "model_id": 34724, + "year_id": 34754, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34758, + "make_id": 33491, + "model_id": 34724, + "year_id": 34758, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34759, + "make_id": 33491, + "model_id": 34724, + "year_id": 34758, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34760, + "make_id": 33491, + "model_id": 34724, + "year_id": 34758, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34761, + "make_id": 33491, + "model_id": 34724, + "year_id": 34758, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34762, + "make_id": 33491, + "model_id": 34724, + "year_id": 34762, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34763, + "make_id": 33491, + "model_id": 34724, + "year_id": 34762, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34764, + "make_id": 33491, + "model_id": 34724, + "year_id": 34762, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34765, + "make_id": 33491, + "model_id": 34724, + "year_id": 34765, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34766, + "make_id": 33491, + "model_id": 34724, + "year_id": 34765, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34767, + "make_id": 33491, + "model_id": 34724, + "year_id": 34765, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34768, + "make_id": 33491, + "model_id": 34724, + "year_id": 34765, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34769, + "make_id": 33491, + "model_id": 34724, + "year_id": 34769, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34770, + "make_id": 33491, + "model_id": 34724, + "year_id": 34769, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34771, + "make_id": 33491, + "model_id": 34724, + "year_id": 34769, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34772, + "make_id": 33491, + "model_id": 34772, + "year_id": 34772, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34773, + "make_id": 33491, + "model_id": 34772, + "year_id": 34772, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34774, + "make_id": 33491, + "model_id": 34772, + "year_id": 34772, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34775, + "make_id": 33491, + "model_id": 34772, + "year_id": 34772, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34776, + "make_id": 33491, + "model_id": 34772, + "year_id": 34772, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34777, + "make_id": 33491, + "model_id": 34772, + "year_id": 34777, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34778, + "make_id": 33491, + "model_id": 34772, + "year_id": 34777, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34779, + "make_id": 33491, + "model_id": 34772, + "year_id": 34777, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34780, + "make_id": 33491, + "model_id": 34772, + "year_id": 34777, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34781, + "make_id": 33491, + "model_id": 34772, + "year_id": 34777, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34782, + "make_id": 33491, + "model_id": 34772, + "year_id": 34782, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34783, + "make_id": 33491, + "model_id": 34772, + "year_id": 34782, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34784, + "make_id": 33491, + "model_id": 34772, + "year_id": 34782, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34785, + "make_id": 33491, + "model_id": 34772, + "year_id": 34782, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34786, + "make_id": 33491, + "model_id": 34772, + "year_id": 34782, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34787, + "make_id": 33491, + "model_id": 34772, + "year_id": 34782, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34788, + "make_id": 33491, + "model_id": 34772, + "year_id": 34788, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34789, + "make_id": 33491, + "model_id": 34772, + "year_id": 34788, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34790, + "make_id": 33491, + "model_id": 34772, + "year_id": 34788, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34791, + "make_id": 33491, + "model_id": 34772, + "year_id": 34788, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34792, + "make_id": 33491, + "model_id": 34772, + "year_id": 34788, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34793, + "make_id": 33491, + "model_id": 34772, + "year_id": 34788, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34794, + "make_id": 33491, + "model_id": 34772, + "year_id": 34794, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34795, + "make_id": 33491, + "model_id": 34772, + "year_id": 34794, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34796, + "make_id": 33491, + "model_id": 34772, + "year_id": 34794, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34797, + "make_id": 33491, + "model_id": 34772, + "year_id": 34794, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34798, + "make_id": 33491, + "model_id": 34772, + "year_id": 34794, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34799, + "make_id": 33491, + "model_id": 34772, + "year_id": 34794, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34800, + "make_id": 33491, + "model_id": 34772, + "year_id": 34800, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34801, + "make_id": 33491, + "model_id": 34772, + "year_id": 34800, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34802, + "make_id": 33491, + "model_id": 34772, + "year_id": 34800, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34803, + "make_id": 33491, + "model_id": 34772, + "year_id": 34800, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34804, + "make_id": 33491, + "model_id": 34772, + "year_id": 34800, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34805, + "make_id": 33491, + "model_id": 34772, + "year_id": 34800, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34806, + "make_id": 33491, + "model_id": 34806, + "year_id": 34806, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34807, + "make_id": 33491, + "model_id": 34806, + "year_id": 34806, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34808, + "make_id": 33491, + "model_id": 34806, + "year_id": 34806, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34809, + "make_id": 33491, + "model_id": 34806, + "year_id": 34806, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34810, + "make_id": 33491, + "model_id": 34806, + "year_id": 34806, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34811, + "make_id": 33491, + "model_id": 34806, + "year_id": 34806, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34812, + "make_id": 33491, + "model_id": 34806, + "year_id": 34806, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34813, + "make_id": 33491, + "model_id": 34806, + "year_id": 34806, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34814, + "make_id": 33491, + "model_id": 34806, + "year_id": 34814, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34815, + "make_id": 33491, + "model_id": 34806, + "year_id": 34814, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34816, + "make_id": 33491, + "model_id": 34806, + "year_id": 34814, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34817, + "make_id": 33491, + "model_id": 34806, + "year_id": 34814, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34818, + "make_id": 33491, + "model_id": 34806, + "year_id": 34814, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34819, + "make_id": 33491, + "model_id": 34806, + "year_id": 34814, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34820, + "make_id": 33491, + "model_id": 34806, + "year_id": 34814, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34821, + "make_id": 33491, + "model_id": 34806, + "year_id": 34814, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34822, + "make_id": 33491, + "model_id": 34806, + "year_id": 34822, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34823, + "make_id": 33491, + "model_id": 34806, + "year_id": 34822, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34824, + "make_id": 33491, + "model_id": 34806, + "year_id": 34822, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34825, + "make_id": 33491, + "model_id": 34806, + "year_id": 34822, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34826, + "make_id": 33491, + "model_id": 34806, + "year_id": 34822, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34827, + "make_id": 33491, + "model_id": 34806, + "year_id": 34822, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34828, + "make_id": 33491, + "model_id": 34806, + "year_id": 34822, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34829, + "make_id": 33491, + "model_id": 34806, + "year_id": 34822, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34830, + "make_id": 33491, + "model_id": 34806, + "year_id": 34830, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34831, + "make_id": 33491, + "model_id": 34806, + "year_id": 34830, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34832, + "make_id": 33491, + "model_id": 34806, + "year_id": 34830, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34833, + "make_id": 33491, + "model_id": 34806, + "year_id": 34830, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34834, + "make_id": 33491, + "model_id": 34806, + "year_id": 34830, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34835, + "make_id": 33491, + "model_id": 34806, + "year_id": 34830, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34836, + "make_id": 33491, + "model_id": 34806, + "year_id": 34830, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34837, + "make_id": 33491, + "model_id": 34806, + "year_id": 34830, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34838, + "make_id": 33491, + "model_id": 34806, + "year_id": 34830, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34839, + "make_id": 33491, + "model_id": 34806, + "year_id": 34830, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34840, + "make_id": 33491, + "model_id": 34806, + "year_id": 34840, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34841, + "make_id": 33491, + "model_id": 34806, + "year_id": 34840, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34842, + "make_id": 33491, + "model_id": 34806, + "year_id": 34840, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34843, + "make_id": 33491, + "model_id": 34806, + "year_id": 34840, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34844, + "make_id": 33491, + "model_id": 34806, + "year_id": 34840, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34845, + "make_id": 33491, + "model_id": 34806, + "year_id": 34840, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34846, + "make_id": 33491, + "model_id": 34806, + "year_id": 34840, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34847, + "make_id": 33491, + "model_id": 34806, + "year_id": 34840, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34848, + "make_id": 33491, + "model_id": 34806, + "year_id": 34840, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34849, + "make_id": 33491, + "model_id": 34806, + "year_id": 34849, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34850, + "make_id": 33491, + "model_id": 34806, + "year_id": 34849, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34851, + "make_id": 33491, + "model_id": 34806, + "year_id": 34849, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34852, + "make_id": 33491, + "model_id": 34806, + "year_id": 34849, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34853, + "make_id": 33491, + "model_id": 34806, + "year_id": 34849, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34854, + "make_id": 33491, + "model_id": 34806, + "year_id": 34849, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34855, + "make_id": 33491, + "model_id": 34806, + "year_id": 34849, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34856, + "make_id": 33491, + "model_id": 34806, + "year_id": 34849, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34857, + "make_id": 33491, + "model_id": 34806, + "year_id": 34849, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34858, + "make_id": 33491, + "model_id": 34806, + "year_id": 34858, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34859, + "make_id": 33491, + "model_id": 34806, + "year_id": 34858, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34860, + "make_id": 33491, + "model_id": 34806, + "year_id": 34858, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34861, + "make_id": 33491, + "model_id": 34806, + "year_id": 34858, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34862, + "make_id": 33491, + "model_id": 34806, + "year_id": 34858, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34863, + "make_id": 33491, + "model_id": 34806, + "year_id": 34858, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34864, + "make_id": 33491, + "model_id": 34806, + "year_id": 34858, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34865, + "make_id": 33491, + "model_id": 34806, + "year_id": 34858, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34866, + "make_id": 33491, + "model_id": 34806, + "year_id": 34858, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34867, + "make_id": 33491, + "model_id": 34806, + "year_id": 34867, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34868, + "make_id": 33491, + "model_id": 34806, + "year_id": 34867, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34869, + "make_id": 33491, + "model_id": 34806, + "year_id": 34867, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34870, + "make_id": 33491, + "model_id": 34806, + "year_id": 34867, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34871, + "make_id": 33491, + "model_id": 34806, + "year_id": 34867, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34872, + "make_id": 33491, + "model_id": 34806, + "year_id": 34867, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34873, + "make_id": 33491, + "model_id": 34806, + "year_id": 34867, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34874, + "make_id": 33491, + "model_id": 34806, + "year_id": 34867, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34875, + "make_id": 33491, + "model_id": 34806, + "year_id": 34867, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34876, + "make_id": 33491, + "model_id": 34806, + "year_id": 34876, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34877, + "make_id": 33491, + "model_id": 34806, + "year_id": 34876, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34878, + "make_id": 33491, + "model_id": 34806, + "year_id": 34876, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34879, + "make_id": 33491, + "model_id": 34806, + "year_id": 34876, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34880, + "make_id": 33491, + "model_id": 34806, + "year_id": 34876, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34881, + "make_id": 33491, + "model_id": 34806, + "year_id": 34876, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34882, + "make_id": 33491, + "model_id": 34806, + "year_id": 34876, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34883, + "make_id": 33491, + "model_id": 34806, + "year_id": 34876, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34884, + "make_id": 33491, + "model_id": 34806, + "year_id": 34876, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34885, + "make_id": 33491, + "model_id": 34806, + "year_id": 34885, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34886, + "make_id": 33491, + "model_id": 34806, + "year_id": 34885, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34887, + "make_id": 33491, + "model_id": 34806, + "year_id": 34885, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34888, + "make_id": 33491, + "model_id": 34806, + "year_id": 34885, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34889, + "make_id": 33491, + "model_id": 34806, + "year_id": 34885, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34890, + "make_id": 33491, + "model_id": 34806, + "year_id": 34885, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34891, + "make_id": 33491, + "model_id": 34806, + "year_id": 34885, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34892, + "make_id": 33491, + "model_id": 34806, + "year_id": 34885, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34893, + "make_id": 33491, + "model_id": 34806, + "year_id": 34885, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34894, + "make_id": 33491, + "model_id": 34806, + "year_id": 34894, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34895, + "make_id": 33491, + "model_id": 34806, + "year_id": 34894, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34896, + "make_id": 33491, + "model_id": 34806, + "year_id": 34894, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34897, + "make_id": 33491, + "model_id": 34806, + "year_id": 34894, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34898, + "make_id": 33491, + "model_id": 34806, + "year_id": 34894, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34899, + "make_id": 33491, + "model_id": 34806, + "year_id": 34894, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34900, + "make_id": 33491, + "model_id": 34806, + "year_id": 34894, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34901, + "make_id": 33491, + "model_id": 34806, + "year_id": 34901, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34902, + "make_id": 33491, + "model_id": 34806, + "year_id": 34901, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34903, + "make_id": 33491, + "model_id": 34806, + "year_id": 34901, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34904, + "make_id": 33491, + "model_id": 34806, + "year_id": 34901, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34905, + "make_id": 33491, + "model_id": 34806, + "year_id": 34901, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34906, + "make_id": 33491, + "model_id": 34806, + "year_id": 34901, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34907, + "make_id": 33491, + "model_id": 34806, + "year_id": 34901, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34908, + "make_id": 33491, + "model_id": 34806, + "year_id": 34908, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34909, + "make_id": 33491, + "model_id": 34806, + "year_id": 34908, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34910, + "make_id": 33491, + "model_id": 34806, + "year_id": 34908, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34911, + "make_id": 33491, + "model_id": 34806, + "year_id": 34908, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34912, + "make_id": 33491, + "model_id": 34806, + "year_id": 34908, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34913, + "make_id": 33491, + "model_id": 34806, + "year_id": 34908, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34914, + "make_id": 33491, + "model_id": 34806, + "year_id": 34908, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34915, + "make_id": 33491, + "model_id": 34806, + "year_id": 34915, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34916, + "make_id": 33491, + "model_id": 34806, + "year_id": 34915, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34917, + "make_id": 33491, + "model_id": 34806, + "year_id": 34915, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34918, + "make_id": 33491, + "model_id": 34806, + "year_id": 34915, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34919, + "make_id": 33491, + "model_id": 34806, + "year_id": 34915, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34920, + "make_id": 33491, + "model_id": 34806, + "year_id": 34915, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34921, + "make_id": 33491, + "model_id": 34806, + "year_id": 34915, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34922, + "make_id": 33491, + "model_id": 34806, + "year_id": 34922, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34923, + "make_id": 33491, + "model_id": 34806, + "year_id": 34922, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34924, + "make_id": 33491, + "model_id": 34806, + "year_id": 34922, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34925, + "make_id": 33491, + "model_id": 34806, + "year_id": 34922, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34926, + "make_id": 33491, + "model_id": 34806, + "year_id": 34922, + "cylinders": 4, + "displacement": 2.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34927, + "make_id": 33491, + "model_id": 34806, + "year_id": 34922, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34928, + "make_id": 33491, + "model_id": 34806, + "year_id": 34922, + "cylinders": 6, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34929, + "make_id": 33491, + "model_id": 34806, + "year_id": 34929, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34930, + "make_id": 33491, + "model_id": 34806, + "year_id": 34929, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34931, + "make_id": 33491, + "model_id": 34806, + "year_id": 34929, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34932, + "make_id": 33491, + "model_id": 34806, + "year_id": 34929, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34933, + "make_id": 33491, + "model_id": 34806, + "year_id": 34929, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34934, + "make_id": 33491, + "model_id": 34806, + "year_id": 34929, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34935, + "make_id": 33491, + "model_id": 34806, + "year_id": 34929, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34936, + "make_id": 33491, + "model_id": 34806, + "year_id": 34936, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34937, + "make_id": 33491, + "model_id": 34806, + "year_id": 34936, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34938, + "make_id": 33491, + "model_id": 34806, + "year_id": 34936, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34939, + "make_id": 33491, + "model_id": 34806, + "year_id": 34936, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34940, + "make_id": 33491, + "model_id": 34806, + "year_id": 34936, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34941, + "make_id": 33491, + "model_id": 34806, + "year_id": 34936, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34942, + "make_id": 33491, + "model_id": 34806, + "year_id": 34936, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34943, + "make_id": 33491, + "model_id": 34806, + "year_id": 34936, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34944, + "make_id": 33491, + "model_id": 34806, + "year_id": 34944, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34945, + "make_id": 33491, + "model_id": 34806, + "year_id": 34944, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34946, + "make_id": 33491, + "model_id": 34806, + "year_id": 34944, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34947, + "make_id": 33491, + "model_id": 34806, + "year_id": 34944, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34948, + "make_id": 33491, + "model_id": 34806, + "year_id": 34944, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34949, + "make_id": 33491, + "model_id": 34806, + "year_id": 34944, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34950, + "make_id": 33491, + "model_id": 34806, + "year_id": 34944, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34951, + "make_id": 33491, + "model_id": 34806, + "year_id": 34944, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34952, + "make_id": 33491, + "model_id": 34806, + "year_id": 34952, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34953, + "make_id": 33491, + "model_id": 34806, + "year_id": 34952, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34954, + "make_id": 33491, + "model_id": 34806, + "year_id": 34952, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34955, + "make_id": 33491, + "model_id": 34806, + "year_id": 34952, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34956, + "make_id": 33491, + "model_id": 34806, + "year_id": 34952, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34957, + "make_id": 33491, + "model_id": 34806, + "year_id": 34952, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34958, + "make_id": 33491, + "model_id": 34806, + "year_id": 34952, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34959, + "make_id": 33491, + "model_id": 34806, + "year_id": 34952, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34960, + "make_id": 33491, + "model_id": 34806, + "year_id": 34960, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34961, + "make_id": 33491, + "model_id": 34806, + "year_id": 34960, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34962, + "make_id": 33491, + "model_id": 34806, + "year_id": 34960, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34963, + "make_id": 33491, + "model_id": 34806, + "year_id": 34960, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34964, + "make_id": 33491, + "model_id": 34806, + "year_id": 34960, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34965, + "make_id": 33491, + "model_id": 34806, + "year_id": 34960, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34966, + "make_id": 33491, + "model_id": 34806, + "year_id": 34960, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34967, + "make_id": 33491, + "model_id": 34806, + "year_id": 34960, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34968, + "make_id": 33491, + "model_id": 34806, + "year_id": 34968, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34969, + "make_id": 33491, + "model_id": 34806, + "year_id": 34968, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34970, + "make_id": 33491, + "model_id": 34806, + "year_id": 34968, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34971, + "make_id": 33491, + "model_id": 34806, + "year_id": 34968, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34972, + "make_id": 33491, + "model_id": 34806, + "year_id": 34968, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34973, + "make_id": 33491, + "model_id": 34806, + "year_id": 34968, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34974, + "make_id": 33491, + "model_id": 34806, + "year_id": 34968, + "cylinders": 6, + "displacement": 4, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 34975, + "make_id": 33491, + "model_id": 34806, + "year_id": 34968, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 34976, + "make_id": 33491, + "model_id": 34806, + "year_id": 34976, + "cylinders": 4, + "displacement": 2.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34977, + "make_id": 33491, + "model_id": 34806, + "year_id": 34976, + "cylinders": 6, + "displacement": 3.5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34978, + "make_id": 33491, + "model_id": 34806, + "year_id": 34976, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34979, + "make_id": 33491, + "model_id": 34806, + "year_id": 34976, + "cylinders": 4, + "displacement": 2.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34980, + "make_id": 33491, + "model_id": 34806, + "year_id": 34976, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 34981, + "make_id": 33491, + "model_id": 34806, + "year_id": 34976, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34982, + "make_id": 33491, + "model_id": 34982, + "year_id": 34982, + "cylinders": 6, + "displacement": 3.5, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 34983, + "make_id": 33491, + "model_id": 34983, + "year_id": 34983, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 34984, + "make_id": 33491, + "model_id": 34983, + "year_id": 34983, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 34985, + "make_id": 33491, + "model_id": 34983, + "year_id": 34983, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34986, + "make_id": 33491, + "model_id": 34983, + "year_id": 34983, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 34987, + "make_id": 33491, + "model_id": 34983, + "year_id": 34983, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 34988, + "make_id": 33491, + "model_id": 34983, + "year_id": 34983, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 34989, + "make_id": 33491, + "model_id": 34983, + "year_id": 34989, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34990, + "make_id": 33491, + "model_id": 34983, + "year_id": 34989, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 34991, + "make_id": 33491, + "model_id": 34983, + "year_id": 34989, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34992, + "make_id": 33491, + "model_id": 34983, + "year_id": 34989, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 34993, + "make_id": 33491, + "model_id": 34983, + "year_id": 34989, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34994, + "make_id": 33491, + "model_id": 34983, + "year_id": 34994, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34995, + "make_id": 33491, + "model_id": 34983, + "year_id": 34994, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 34996, + "make_id": 33491, + "model_id": 34983, + "year_id": 34994, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 34997, + "make_id": 33491, + "model_id": 34983, + "year_id": 34997, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 34998, + "make_id": 33491, + "model_id": 34983, + "year_id": 34997, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 34999, + "make_id": 33491, + "model_id": 34983, + "year_id": 34997, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35000, + "make_id": 33491, + "model_id": 34983, + "year_id": 35000, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35001, + "make_id": 33491, + "model_id": 34983, + "year_id": 35000, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35002, + "make_id": 33491, + "model_id": 34983, + "year_id": 35000, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35003, + "make_id": 33491, + "model_id": 34983, + "year_id": 35003, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35004, + "make_id": 33491, + "model_id": 34983, + "year_id": 35003, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35005, + "make_id": 33491, + "model_id": 34983, + "year_id": 35003, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35006, + "make_id": 33491, + "model_id": 34983, + "year_id": 35006, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35007, + "make_id": 33491, + "model_id": 34983, + "year_id": 35006, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35008, + "make_id": 33491, + "model_id": 34983, + "year_id": 35006, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35009, + "make_id": 33491, + "model_id": 34983, + "year_id": 35006, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35010, + "make_id": 33491, + "model_id": 34983, + "year_id": 35010, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35011, + "make_id": 33491, + "model_id": 34983, + "year_id": 35010, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35012, + "make_id": 33491, + "model_id": 34983, + "year_id": 35010, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35013, + "make_id": 33491, + "model_id": 34983, + "year_id": 35013, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35014, + "make_id": 33491, + "model_id": 34983, + "year_id": 35013, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35015, + "make_id": 33491, + "model_id": 34983, + "year_id": 35013, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35016, + "make_id": 33491, + "model_id": 34983, + "year_id": 35016, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35017, + "make_id": 33491, + "model_id": 34983, + "year_id": 35016, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35018, + "make_id": 33491, + "model_id": 34983, + "year_id": 35016, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35019, + "make_id": 33491, + "model_id": 34983, + "year_id": 35019, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35020, + "make_id": 33491, + "model_id": 34983, + "year_id": 35019, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35021, + "make_id": 33491, + "model_id": 34983, + "year_id": 35019, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35022, + "make_id": 33491, + "model_id": 34983, + "year_id": 35022, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35023, + "make_id": 33491, + "model_id": 34983, + "year_id": 35022, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35024, + "make_id": 33491, + "model_id": 34983, + "year_id": 35022, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35025, + "make_id": 33491, + "model_id": 34983, + "year_id": 35022, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35026, + "make_id": 33491, + "model_id": 34983, + "year_id": 35026, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35027, + "make_id": 33491, + "model_id": 34983, + "year_id": 35026, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35028, + "make_id": 33491, + "model_id": 34983, + "year_id": 35026, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35029, + "make_id": 33491, + "model_id": 34983, + "year_id": 35026, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35030, + "make_id": 33491, + "model_id": 34983, + "year_id": 35030, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35031, + "make_id": 33491, + "model_id": 34983, + "year_id": 35030, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35032, + "make_id": 33491, + "model_id": 34983, + "year_id": 35030, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35033, + "make_id": 33491, + "model_id": 34983, + "year_id": 35033, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35034, + "make_id": 33491, + "model_id": 34983, + "year_id": 35033, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35035, + "make_id": 33491, + "model_id": 34983, + "year_id": 35033, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35036, + "make_id": 33491, + "model_id": 34983, + "year_id": 35036, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35037, + "make_id": 33491, + "model_id": 34983, + "year_id": 35036, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35038, + "make_id": 33491, + "model_id": 34983, + "year_id": 35036, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35039, + "make_id": 33491, + "model_id": 35039, + "year_id": 35039, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35040, + "make_id": 33491, + "model_id": 35040, + "year_id": 35040, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 35041, + "make_id": 33491, + "model_id": 35040, + "year_id": 35040, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35042, + "make_id": 33491, + "model_id": 35040, + "year_id": 35040, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 35043, + "make_id": 33491, + "model_id": 35040, + "year_id": 35040, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35044, + "make_id": 33491, + "model_id": 35040, + "year_id": 35040, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 35045, + "make_id": 33491, + "model_id": 35040, + "year_id": 35040, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35046, + "make_id": 33491, + "model_id": 35040, + "year_id": 35040, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 35047, + "make_id": 33491, + "model_id": 35040, + "year_id": 35040, + "cylinders": 4, + "displacement": 1.5, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35048, + "make_id": 33491, + "model_id": 35040, + "year_id": 35048, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35049, + "make_id": 33491, + "model_id": 35040, + "year_id": 35048, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35050, + "make_id": 33491, + "model_id": 35040, + "year_id": 35048, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35051, + "make_id": 33491, + "model_id": 35040, + "year_id": 35048, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35052, + "make_id": 33491, + "model_id": 35040, + "year_id": 35048, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35053, + "make_id": 33491, + "model_id": 35040, + "year_id": 35048, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35054, + "make_id": 33491, + "model_id": 35040, + "year_id": 35048, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35055, + "make_id": 33491, + "model_id": 35040, + "year_id": 35055, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35056, + "make_id": 33491, + "model_id": 35040, + "year_id": 35055, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35057, + "make_id": 33491, + "model_id": 35040, + "year_id": 35055, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35058, + "make_id": 33491, + "model_id": 35040, + "year_id": 35055, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35059, + "make_id": 33491, + "model_id": 35040, + "year_id": 35059, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35060, + "make_id": 33491, + "model_id": 35040, + "year_id": 35059, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35061, + "make_id": 33491, + "model_id": 35040, + "year_id": 35059, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35062, + "make_id": 33491, + "model_id": 35040, + "year_id": 35059, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35063, + "make_id": 33491, + "model_id": 35040, + "year_id": 35063, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35064, + "make_id": 33491, + "model_id": 35040, + "year_id": 35063, + "cylinders": 4, + "displacement": 1.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35065, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35066, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35067, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35068, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35069, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35070, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35071, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35072, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35073, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35074, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35075, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35076, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35077, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35078, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35079, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35080, + "make_id": 33491, + "model_id": 35065, + "year_id": 35065, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35081, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35082, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35083, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35084, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35085, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35086, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35087, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35088, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35089, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35090, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35091, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35092, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35093, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35094, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35095, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35096, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35097, + "make_id": 33491, + "model_id": 35065, + "year_id": 35081, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35098, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35099, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35100, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35101, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35102, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35103, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35104, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35105, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35106, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35107, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35108, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35109, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35110, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35111, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35112, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35113, + "make_id": 33491, + "model_id": 35065, + "year_id": 35098, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35114, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35115, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35116, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35117, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35118, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35119, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35120, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35121, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35122, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35123, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35124, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35125, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35126, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35127, + "make_id": 33491, + "model_id": 35065, + "year_id": 35114, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35128, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35129, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35130, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35131, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35132, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35133, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35134, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35135, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35136, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35137, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35138, + "make_id": 33491, + "model_id": 35065, + "year_id": 35128, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35139, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35140, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35141, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35142, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35143, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35144, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35145, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35146, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35147, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35148, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35149, + "make_id": 33491, + "model_id": 35065, + "year_id": 35139, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35150, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35151, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35152, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35153, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35154, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35155, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35156, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35157, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35158, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35159, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35160, + "make_id": 33491, + "model_id": 35065, + "year_id": 35150, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35161, + "make_id": 33491, + "model_id": 35065, + "year_id": 35161, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35162, + "make_id": 33491, + "model_id": 35065, + "year_id": 35161, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35163, + "make_id": 33491, + "model_id": 35065, + "year_id": 35161, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35164, + "make_id": 33491, + "model_id": 35065, + "year_id": 35161, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35165, + "make_id": 33491, + "model_id": 35065, + "year_id": 35161, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35166, + "make_id": 33491, + "model_id": 35065, + "year_id": 35161, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35167, + "make_id": 33491, + "model_id": 35065, + "year_id": 35161, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35168, + "make_id": 33491, + "model_id": 35065, + "year_id": 35161, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35169, + "make_id": 33491, + "model_id": 35065, + "year_id": 35169, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35170, + "make_id": 33491, + "model_id": 35065, + "year_id": 35169, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35171, + "make_id": 33491, + "model_id": 35065, + "year_id": 35169, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35172, + "make_id": 33491, + "model_id": 35065, + "year_id": 35169, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35173, + "make_id": 33491, + "model_id": 35065, + "year_id": 35169, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35174, + "make_id": 33491, + "model_id": 35065, + "year_id": 35169, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35175, + "make_id": 33491, + "model_id": 35065, + "year_id": 35169, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35176, + "make_id": 33491, + "model_id": 35065, + "year_id": 35169, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35177, + "make_id": 33491, + "model_id": 35065, + "year_id": 35177, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35178, + "make_id": 33491, + "model_id": 35065, + "year_id": 35177, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35179, + "make_id": 33491, + "model_id": 35065, + "year_id": 35177, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35180, + "make_id": 33491, + "model_id": 35065, + "year_id": 35177, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35181, + "make_id": 33491, + "model_id": 35065, + "year_id": 35177, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35182, + "make_id": 33491, + "model_id": 35065, + "year_id": 35177, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35183, + "make_id": 33491, + "model_id": 35065, + "year_id": 35177, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35184, + "make_id": 33491, + "model_id": 35065, + "year_id": 35177, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35185, + "make_id": 33491, + "model_id": 35065, + "year_id": 35185, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35186, + "make_id": 33491, + "model_id": 35065, + "year_id": 35185, + "cylinders": 4, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35187, + "make_id": 33491, + "model_id": 35065, + "year_id": 35185, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35188, + "make_id": 33491, + "model_id": 35065, + "year_id": 35185, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35189, + "make_id": 33491, + "model_id": 35065, + "year_id": 35185, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35190, + "make_id": 33491, + "model_id": 35065, + "year_id": 35185, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35191, + "make_id": 33491, + "model_id": 35065, + "year_id": 35185, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35192, + "make_id": 33491, + "model_id": 35065, + "year_id": 35185, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35193, + "make_id": 33491, + "model_id": 35193, + "year_id": 35193, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35194, + "make_id": 33491, + "model_id": 35193, + "year_id": 35193, + "cylinders": 4, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35195, + "make_id": 33491, + "model_id": 35193, + "year_id": 35193, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35196, + "make_id": 33491, + "model_id": 35193, + "year_id": 35193, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35197, + "make_id": 33491, + "model_id": 35193, + "year_id": 35193, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35198, + "make_id": 33491, + "model_id": 35193, + "year_id": 35193, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35199, + "make_id": 33491, + "model_id": 35193, + "year_id": 35193, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35200, + "make_id": 33491, + "model_id": 35193, + "year_id": 35193, + "cylinders": 6, + "displacement": 3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35201, + "make_id": 33491, + "model_id": 35193, + "year_id": 35193, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35202, + "make_id": 33491, + "model_id": 35193, + "year_id": 35193, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35203, + "make_id": 33491, + "model_id": 35203, + "year_id": 35203, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35204, + "make_id": 33491, + "model_id": 35203, + "year_id": 35203, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35205, + "make_id": 33491, + "model_id": 35203, + "year_id": 35203, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35206, + "make_id": 33491, + "model_id": 35203, + "year_id": 35203, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35207, + "make_id": 33491, + "model_id": 35203, + "year_id": 35203, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35208, + "make_id": 33491, + "model_id": 35203, + "year_id": 35203, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35209, + "make_id": 33491, + "model_id": 35203, + "year_id": 35209, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35210, + "make_id": 33491, + "model_id": 35203, + "year_id": 35209, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35211, + "make_id": 33491, + "model_id": 35203, + "year_id": 35209, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35212, + "make_id": 33491, + "model_id": 35203, + "year_id": 35209, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35213, + "make_id": 33491, + "model_id": 35203, + "year_id": 35209, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35214, + "make_id": 33491, + "model_id": 35203, + "year_id": 35209, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35215, + "make_id": 33491, + "model_id": 35203, + "year_id": 35215, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35216, + "make_id": 33491, + "model_id": 35203, + "year_id": 35215, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35217, + "make_id": 33491, + "model_id": 35203, + "year_id": 35215, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35218, + "make_id": 33491, + "model_id": 35203, + "year_id": 35215, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35219, + "make_id": 33491, + "model_id": 35203, + "year_id": 35215, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35220, + "make_id": 33491, + "model_id": 35203, + "year_id": 35215, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35221, + "make_id": 33491, + "model_id": 35203, + "year_id": 35221, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35222, + "make_id": 33491, + "model_id": 35203, + "year_id": 35221, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35223, + "make_id": 33491, + "model_id": 35203, + "year_id": 35221, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35224, + "make_id": 33491, + "model_id": 35203, + "year_id": 35221, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35225, + "make_id": 33491, + "model_id": 35203, + "year_id": 35221, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35226, + "make_id": 33491, + "model_id": 35203, + "year_id": 35221, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35227, + "make_id": 33491, + "model_id": 35203, + "year_id": 35227, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35228, + "make_id": 33491, + "model_id": 35203, + "year_id": 35227, + "cylinders": 6, + "displacement": 3.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35229, + "make_id": 33491, + "model_id": 35203, + "year_id": 35227, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35230, + "make_id": 33491, + "model_id": 35203, + "year_id": 35227, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35231, + "make_id": 33491, + "model_id": 35203, + "year_id": 35227, + "cylinders": 6, + "displacement": 3.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35232, + "make_id": 33491, + "model_id": 35203, + "year_id": 35227, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35233, + "make_id": 33491, + "model_id": 35203, + "year_id": 35233, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35234, + "make_id": 33491, + "model_id": 35203, + "year_id": 35233, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35235, + "make_id": 33491, + "model_id": 35203, + "year_id": 35233, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35236, + "make_id": 33491, + "model_id": 35203, + "year_id": 35233, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35237, + "make_id": 33491, + "model_id": 35203, + "year_id": 35237, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35238, + "make_id": 33491, + "model_id": 35203, + "year_id": 35237, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35239, + "make_id": 33491, + "model_id": 35203, + "year_id": 35237, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35240, + "make_id": 33491, + "model_id": 35203, + "year_id": 35237, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35241, + "make_id": 33491, + "model_id": 35203, + "year_id": 35241, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35242, + "make_id": 33491, + "model_id": 35203, + "year_id": 35241, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35243, + "make_id": 33491, + "model_id": 35203, + "year_id": 35241, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35244, + "make_id": 33491, + "model_id": 35203, + "year_id": 35241, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35245, + "make_id": 33491, + "model_id": 35203, + "year_id": 35241, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35246, + "make_id": 33491, + "model_id": 35203, + "year_id": 35246, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35247, + "make_id": 33491, + "model_id": 35203, + "year_id": 35246, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35248, + "make_id": 33491, + "model_id": 35203, + "year_id": 35246, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35249, + "make_id": 33491, + "model_id": 35203, + "year_id": 35246, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35250, + "make_id": 33491, + "model_id": 35203, + "year_id": 35246, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35251, + "make_id": 33491, + "model_id": 35203, + "year_id": 35251, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35252, + "make_id": 33491, + "model_id": 35203, + "year_id": 35251, + "cylinders": 8, + "displacement": 4.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35253, + "make_id": 33491, + "model_id": 35203, + "year_id": 35251, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35254, + "make_id": 33491, + "model_id": 35203, + "year_id": 35251, + "cylinders": 8, + "displacement": 4.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35255, + "make_id": 33491, + "model_id": 35203, + "year_id": 35251, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35256, + "make_id": 33491, + "model_id": 35203, + "year_id": 35251, + "cylinders": 8, + "displacement": 5.7, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35257, + "make_id": 33491, + "model_id": 35203, + "year_id": 35257, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35258, + "make_id": 33491, + "model_id": 35203, + "year_id": 35257, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35259, + "make_id": 33491, + "model_id": 35203, + "year_id": 35257, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35260, + "make_id": 33491, + "model_id": 35203, + "year_id": 35257, + "cylinders": 8, + "displacement": 4.6, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35261, + "make_id": 33491, + "model_id": 35203, + "year_id": 35257, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35262, + "make_id": 33491, + "model_id": 35203, + "year_id": 35257, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35263, + "make_id": 33491, + "model_id": 35203, + "year_id": 35263, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35264, + "make_id": 33491, + "model_id": 35203, + "year_id": 35263, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35265, + "make_id": 33491, + "model_id": 35203, + "year_id": 35263, + "cylinders": 8, + "displacement": 4.6, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35266, + "make_id": 33491, + "model_id": 35203, + "year_id": 35263, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35267, + "make_id": 33491, + "model_id": 35203, + "year_id": 35263, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35268, + "make_id": 33491, + "model_id": 35203, + "year_id": 35263, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35269, + "make_id": 33491, + "model_id": 35203, + "year_id": 35269, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35270, + "make_id": 33491, + "model_id": 35203, + "year_id": 35269, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35271, + "make_id": 33491, + "model_id": 35203, + "year_id": 35269, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35272, + "make_id": 33491, + "model_id": 35203, + "year_id": 35269, + "cylinders": 8, + "displacement": 4.6, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35273, + "make_id": 33491, + "model_id": 35203, + "year_id": 35269, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35274, + "make_id": 33491, + "model_id": 35203, + "year_id": 35269, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35275, + "make_id": 33491, + "model_id": 35203, + "year_id": 35275, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35276, + "make_id": 33491, + "model_id": 35203, + "year_id": 35275, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35277, + "make_id": 33491, + "model_id": 35203, + "year_id": 35275, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35278, + "make_id": 33491, + "model_id": 35203, + "year_id": 35275, + "cylinders": 8, + "displacement": 4.6, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35279, + "make_id": 33491, + "model_id": 35203, + "year_id": 35275, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35280, + "make_id": 33491, + "model_id": 35203, + "year_id": 35275, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35281, + "make_id": 33491, + "model_id": 35203, + "year_id": 35281, + "cylinders": 6, + "displacement": 4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35282, + "make_id": 33491, + "model_id": 35203, + "year_id": 35281, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35283, + "make_id": 33491, + "model_id": 35203, + "year_id": 35281, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35284, + "make_id": 33491, + "model_id": 35203, + "year_id": 35281, + "cylinders": 8, + "displacement": 4.6, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35285, + "make_id": 33491, + "model_id": 35203, + "year_id": 35281, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35286, + "make_id": 33491, + "model_id": 35203, + "year_id": 35281, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35287, + "make_id": 33491, + "model_id": 35203, + "year_id": 35287, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35288, + "make_id": 33491, + "model_id": 35203, + "year_id": 35287, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35289, + "make_id": 33491, + "model_id": 35203, + "year_id": 35287, + "cylinders": 8, + "displacement": 4.6, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35290, + "make_id": 33491, + "model_id": 35203, + "year_id": 35287, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35291, + "make_id": 33491, + "model_id": 35203, + "year_id": 35287, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35292, + "make_id": 33491, + "model_id": 35203, + "year_id": 35292, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35293, + "make_id": 33491, + "model_id": 35203, + "year_id": 35292, + "cylinders": 8, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35294, + "make_id": 33491, + "model_id": 35203, + "year_id": 35292, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35295, + "make_id": 33491, + "model_id": 35203, + "year_id": 35292, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35296, + "make_id": 33491, + "model_id": 35203, + "year_id": 35292, + "cylinders": 8, + "displacement": 5.7, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35297, + "make_id": 33491, + "model_id": 35203, + "year_id": 35292, + "cylinders": 8, + "displacement": 4.6, + "drive": "Part-time 4-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35298, + "make_id": 33491, + "model_id": 35298, + "year_id": 35298, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35299, + "make_id": 33491, + "model_id": 35298, + "year_id": 35298, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35300, + "make_id": 33491, + "model_id": 35298, + "year_id": 35298, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35301, + "make_id": 33491, + "model_id": 35298, + "year_id": 35298, + "cylinders": 4, + "displacement": 2, + "drive": "2-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35302, + "make_id": 33491, + "model_id": 35298, + "year_id": 35302, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35303, + "make_id": 33491, + "model_id": 35298, + "year_id": 35302, + "cylinders": 4, + "displacement": 2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35304, + "make_id": 33491, + "model_id": 35298, + "year_id": 35304, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35305, + "make_id": 33491, + "model_id": 35298, + "year_id": 35304, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35306, + "make_id": 33491, + "model_id": 35298, + "year_id": 35306, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35307, + "make_id": 33491, + "model_id": 35298, + "year_id": 35306, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35308, + "make_id": 33491, + "model_id": 35298, + "year_id": 35306, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35309, + "make_id": 33491, + "model_id": 35298, + "year_id": 35306, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35310, + "make_id": 33491, + "model_id": 35310, + "year_id": 35310, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35311, + "make_id": 33491, + "model_id": 35310, + "year_id": 35310, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35312, + "make_id": 33491, + "model_id": 35310, + "year_id": 35310, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35313, + "make_id": 33491, + "model_id": 35310, + "year_id": 35310, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35314, + "make_id": 33491, + "model_id": 35310, + "year_id": 35314, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35315, + "make_id": 33491, + "model_id": 35310, + "year_id": 35314, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35316, + "make_id": 33491, + "model_id": 35310, + "year_id": 35314, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35317, + "make_id": 33491, + "model_id": 35317, + "year_id": 35317, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35318, + "make_id": 33491, + "model_id": 35317, + "year_id": 35317, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35319, + "make_id": 33491, + "model_id": 35317, + "year_id": 35317, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35320, + "make_id": 33491, + "model_id": 35317, + "year_id": 35317, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35321, + "make_id": 33491, + "model_id": 35317, + "year_id": 35321, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35322, + "make_id": 33491, + "model_id": 35317, + "year_id": 35321, + "cylinders": 4, + "displacement": 2.2, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35323, + "make_id": 33491, + "model_id": 35317, + "year_id": 35321, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35324, + "make_id": 33491, + "model_id": 35317, + "year_id": 35321, + "cylinders": 4, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35325, + "make_id": 33491, + "model_id": 35325, + "year_id": 35325, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35326, + "make_id": 33491, + "model_id": 35325, + "year_id": 35325, + "cylinders": 6, + "displacement": 3.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35327, + "make_id": 33491, + "model_id": 35325, + "year_id": 35325, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35328, + "make_id": 33491, + "model_id": 35325, + "year_id": 35325, + "cylinders": 4, + "displacement": 2.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35329, + "make_id": 33491, + "model_id": 35325, + "year_id": 35329, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35330, + "make_id": 33491, + "model_id": 35325, + "year_id": 35329, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35331, + "make_id": 33491, + "model_id": 35325, + "year_id": 35329, + "cylinders": 4, + "displacement": 2.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35332, + "make_id": 33491, + "model_id": 35325, + "year_id": 35329, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35333, + "make_id": 33491, + "model_id": 35325, + "year_id": 35333, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35334, + "make_id": 33491, + "model_id": 35325, + "year_id": 35333, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35335, + "make_id": 33491, + "model_id": 35325, + "year_id": 35333, + "cylinders": 4, + "displacement": 2.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35336, + "make_id": 33491, + "model_id": 35325, + "year_id": 35333, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35337, + "make_id": 33491, + "model_id": 35325, + "year_id": 35337, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35338, + "make_id": 33491, + "model_id": 35325, + "year_id": 35337, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35339, + "make_id": 33491, + "model_id": 35325, + "year_id": 35337, + "cylinders": 4, + "displacement": 2.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35340, + "make_id": 33491, + "model_id": 35325, + "year_id": 35337, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35341, + "make_id": 33491, + "model_id": 35325, + "year_id": 35341, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35342, + "make_id": 33491, + "model_id": 35325, + "year_id": 35341, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35343, + "make_id": 33491, + "model_id": 35325, + "year_id": 35341, + "cylinders": 4, + "displacement": 2.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35344, + "make_id": 33491, + "model_id": 35325, + "year_id": 35341, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35345, + "make_id": 33491, + "model_id": 35325, + "year_id": 35345, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35346, + "make_id": 33491, + "model_id": 35325, + "year_id": 35345, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35347, + "make_id": 33491, + "model_id": 35325, + "year_id": 35345, + "cylinders": 4, + "displacement": 2.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35348, + "make_id": 33491, + "model_id": 35325, + "year_id": 35345, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35349, + "make_id": 33491, + "model_id": 35325, + "year_id": 35349, + "cylinders": 4, + "displacement": 2.7, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35350, + "make_id": 33491, + "model_id": 35325, + "year_id": 35349, + "cylinders": 6, + "displacement": 3.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35351, + "make_id": 33491, + "model_id": 35325, + "year_id": 35349, + "cylinders": 4, + "displacement": 2.7, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35352, + "make_id": 33491, + "model_id": 35325, + "year_id": 35349, + "cylinders": 6, + "displacement": 3.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35353, + "make_id": 33491, + "model_id": 35353, + "year_id": 35353, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35354, + "make_id": 33491, + "model_id": 35353, + "year_id": 35353, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35355, + "make_id": 33491, + "model_id": 35353, + "year_id": 35355, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35356, + "make_id": 33491, + "model_id": 35353, + "year_id": 35355, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35357, + "make_id": 33491, + "model_id": 35353, + "year_id": 35357, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35358, + "make_id": 33491, + "model_id": 35353, + "year_id": 35357, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35359, + "make_id": 33491, + "model_id": 35353, + "year_id": 35359, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35360, + "make_id": 33491, + "model_id": 35353, + "year_id": 35359, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35361, + "make_id": 33491, + "model_id": 35353, + "year_id": 35361, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35362, + "make_id": 33491, + "model_id": 35353, + "year_id": 35361, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35363, + "make_id": 33491, + "model_id": 35353, + "year_id": 35363, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35364, + "make_id": 33491, + "model_id": 35353, + "year_id": 35363, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35365, + "make_id": 33491, + "model_id": 35353, + "year_id": 35365, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35366, + "make_id": 33491, + "model_id": 35353, + "year_id": 35365, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35367, + "make_id": 33491, + "model_id": 35353, + "year_id": 35367, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35368, + "make_id": 33491, + "model_id": 35353, + "year_id": 35367, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35369, + "make_id": 33491, + "model_id": 35353, + "year_id": 35369, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35370, + "make_id": 33491, + "model_id": 35353, + "year_id": 35369, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35371, + "make_id": 33491, + "model_id": 35353, + "year_id": 35371, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35372, + "make_id": 33491, + "model_id": 35353, + "year_id": 35371, + "cylinders": 4, + "displacement": 1.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35373, + "make_id": 35373, + "model_id": 35373, + "year_id": 35373, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35374, + "make_id": 35373, + "model_id": 35374, + "year_id": 35374, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35375, + "make_id": 35373, + "model_id": 35375, + "year_id": 35375, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35376, + "make_id": 35373, + "model_id": 35376, + "year_id": 35376, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35377, + "make_id": 35377, + "model_id": 35377, + "year_id": 35377, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35378, + "make_id": 35377, + "model_id": 35377, + "year_id": 35378, + "cylinders": 12, + "displacement": 5.7, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35379, + "make_id": 35377, + "model_id": 35379, + "year_id": 35379, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35380, + "make_id": 35377, + "model_id": 35379, + "year_id": 35380, + "cylinders": 8, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35381, + "make_id": 35381, + "model_id": 35381, + "year_id": 35381, + "cylinders": 6, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35382, + "make_id": 35382, + "model_id": 35382, + "year_id": 35382, + "cylinders": 4, + "displacement": 1.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35383, + "make_id": 35383, + "model_id": 35383, + "year_id": 35383, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35384, + "make_id": 35383, + "model_id": 35383, + "year_id": 35383, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35385, + "make_id": 35383, + "model_id": 35383, + "year_id": 35383, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35386, + "make_id": 35383, + "model_id": 35383, + "year_id": 35383, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35387, + "make_id": 35383, + "model_id": 35383, + "year_id": 35387, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35388, + "make_id": 35383, + "model_id": 35383, + "year_id": 35387, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35389, + "make_id": 35383, + "model_id": 35383, + "year_id": 35387, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35390, + "make_id": 35383, + "model_id": 35383, + "year_id": 35387, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35391, + "make_id": 35383, + "model_id": 35383, + "year_id": 35387, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35392, + "make_id": 35383, + "model_id": 35383, + "year_id": 35387, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35393, + "make_id": 35383, + "model_id": 35383, + "year_id": 35393, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35394, + "make_id": 35383, + "model_id": 35383, + "year_id": 35393, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35395, + "make_id": 35383, + "model_id": 35383, + "year_id": 35393, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35396, + "make_id": 35383, + "model_id": 35383, + "year_id": 35393, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35397, + "make_id": 35383, + "model_id": 35383, + "year_id": 35393, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35398, + "make_id": 35383, + "model_id": 35383, + "year_id": 35393, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35399, + "make_id": 35383, + "model_id": 35383, + "year_id": 35393, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35400, + "make_id": 35383, + "model_id": 35383, + "year_id": 35393, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35401, + "make_id": 35383, + "model_id": 35383, + "year_id": 35401, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35402, + "make_id": 35383, + "model_id": 35383, + "year_id": 35401, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35403, + "make_id": 35383, + "model_id": 35383, + "year_id": 35401, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35404, + "make_id": 35383, + "model_id": 35383, + "year_id": 35401, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35405, + "make_id": 35383, + "model_id": 35383, + "year_id": 35401, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35406, + "make_id": 35383, + "model_id": 35383, + "year_id": 35401, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35407, + "make_id": 35383, + "model_id": 35383, + "year_id": 35407, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35408, + "make_id": 35383, + "model_id": 35383, + "year_id": 35407, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35409, + "make_id": 35383, + "model_id": 35383, + "year_id": 35407, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35410, + "make_id": 35383, + "model_id": 35383, + "year_id": 35407, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35411, + "make_id": 35383, + "model_id": 35411, + "year_id": 35411, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35412, + "make_id": 35383, + "model_id": 35411, + "year_id": 35411, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35413, + "make_id": 35383, + "model_id": 35411, + "year_id": 35411, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35414, + "make_id": 35383, + "model_id": 35411, + "year_id": 35411, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35415, + "make_id": 35383, + "model_id": 35411, + "year_id": 35411, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35416, + "make_id": 35383, + "model_id": 35411, + "year_id": 35416, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35417, + "make_id": 35383, + "model_id": 35411, + "year_id": 35416, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35418, + "make_id": 35383, + "model_id": 35411, + "year_id": 35416, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35419, + "make_id": 35383, + "model_id": 35411, + "year_id": 35416, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35420, + "make_id": 35383, + "model_id": 35411, + "year_id": 35416, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35421, + "make_id": 35383, + "model_id": 35411, + "year_id": 35416, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35422, + "make_id": 35383, + "model_id": 35411, + "year_id": 35422, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35423, + "make_id": 35383, + "model_id": 35411, + "year_id": 35422, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35424, + "make_id": 35383, + "model_id": 35411, + "year_id": 35422, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35425, + "make_id": 35383, + "model_id": 35411, + "year_id": 35422, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35426, + "make_id": 35383, + "model_id": 35411, + "year_id": 35422, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35427, + "make_id": 35383, + "model_id": 35411, + "year_id": 35427, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35428, + "make_id": 35383, + "model_id": 35411, + "year_id": 35427, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35429, + "make_id": 35383, + "model_id": 35411, + "year_id": 35427, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35430, + "make_id": 35383, + "model_id": 35430, + "year_id": 35430, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35431, + "make_id": 35383, + "model_id": 35431, + "year_id": 35431, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35432, + "make_id": 35383, + "model_id": 35431, + "year_id": 35431, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35433, + "make_id": 35383, + "model_id": 35431, + "year_id": 35433, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35434, + "make_id": 35383, + "model_id": 35431, + "year_id": 35433, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35435, + "make_id": 35383, + "model_id": 35431, + "year_id": 35435, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35436, + "make_id": 35383, + "model_id": 35431, + "year_id": 35435, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35437, + "make_id": 35383, + "model_id": 35431, + "year_id": 35437, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35438, + "make_id": 35383, + "model_id": 35431, + "year_id": 35437, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35439, + "make_id": 35383, + "model_id": 35431, + "year_id": 35439, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35440, + "make_id": 35383, + "model_id": 35431, + "year_id": 35439, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35441, + "make_id": 35383, + "model_id": 35431, + "year_id": 35441, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35442, + "make_id": 35383, + "model_id": 35431, + "year_id": 35441, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35443, + "make_id": 35383, + "model_id": 35431, + "year_id": 35443, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35444, + "make_id": 35383, + "model_id": 35431, + "year_id": 35443, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35445, + "make_id": 35383, + "model_id": 35431, + "year_id": 35445, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35446, + "make_id": 35383, + "model_id": 35431, + "year_id": 35445, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35447, + "make_id": 35383, + "model_id": 35447, + "year_id": 35447, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35448, + "make_id": 35383, + "model_id": 35447, + "year_id": 35447, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35449, + "make_id": 35383, + "model_id": 35447, + "year_id": 35449, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35450, + "make_id": 35383, + "model_id": 35447, + "year_id": 35449, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35451, + "make_id": 35383, + "model_id": 35447, + "year_id": 35451, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35452, + "make_id": 35383, + "model_id": 35447, + "year_id": 35451, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35453, + "make_id": 35383, + "model_id": 35447, + "year_id": 35453, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35454, + "make_id": 35383, + "model_id": 35447, + "year_id": 35453, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35455, + "make_id": 35383, + "model_id": 35447, + "year_id": 35455, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35456, + "make_id": 35383, + "model_id": 35447, + "year_id": 35455, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35457, + "make_id": 35383, + "model_id": 35447, + "year_id": 35457, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35458, + "make_id": 35383, + "model_id": 35447, + "year_id": 35457, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35459, + "make_id": 35383, + "model_id": 35447, + "year_id": 35459, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35460, + "make_id": 35383, + "model_id": 35447, + "year_id": 35459, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35461, + "make_id": 35383, + "model_id": 35447, + "year_id": 35461, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35462, + "make_id": 35383, + "model_id": 35447, + "year_id": 35461, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35463, + "make_id": 35383, + "model_id": 35447, + "year_id": 35463, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35464, + "make_id": 35383, + "model_id": 35447, + "year_id": 35463, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35465, + "make_id": 35383, + "model_id": 35465, + "year_id": 35465, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35466, + "make_id": 35383, + "model_id": 35465, + "year_id": 35465, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35467, + "make_id": 35383, + "model_id": 35465, + "year_id": 35465, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35468, + "make_id": 35383, + "model_id": 35465, + "year_id": 35468, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35469, + "make_id": 35383, + "model_id": 35465, + "year_id": 35468, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35470, + "make_id": 35383, + "model_id": 35465, + "year_id": 35468, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35471, + "make_id": 35383, + "model_id": 35465, + "year_id": 35471, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35472, + "make_id": 35383, + "model_id": 35465, + "year_id": 35471, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35473, + "make_id": 35383, + "model_id": 35465, + "year_id": 35473, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35474, + "make_id": 35383, + "model_id": 35465, + "year_id": 35473, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35475, + "make_id": 35383, + "model_id": 35465, + "year_id": 35475, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35476, + "make_id": 35383, + "model_id": 35465, + "year_id": 35475, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35477, + "make_id": 35383, + "model_id": 35465, + "year_id": 35475, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35478, + "make_id": 35383, + "model_id": 35465, + "year_id": 35478, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35479, + "make_id": 35383, + "model_id": 35465, + "year_id": 35478, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35480, + "make_id": 35383, + "model_id": 35465, + "year_id": 35480, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35481, + "make_id": 35383, + "model_id": 35465, + "year_id": 35480, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35482, + "make_id": 35383, + "model_id": 35465, + "year_id": 35482, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35483, + "make_id": 35383, + "model_id": 35465, + "year_id": 35482, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35484, + "make_id": 35383, + "model_id": 35484, + "year_id": 35484, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35485, + "make_id": 35383, + "model_id": 35484, + "year_id": 35485, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35486, + "make_id": 35383, + "model_id": 35484, + "year_id": 35486, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35487, + "make_id": 35383, + "model_id": 35484, + "year_id": 35487, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35488, + "make_id": 35383, + "model_id": 35484, + "year_id": 35488, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35489, + "make_id": 35383, + "model_id": 35484, + "year_id": 35489, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35490, + "make_id": 35383, + "model_id": 35484, + "year_id": 35490, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35491, + "make_id": 35383, + "model_id": 35484, + "year_id": 35491, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35492, + "make_id": 35383, + "model_id": 35492, + "year_id": 35492, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35493, + "make_id": 35383, + "model_id": 35492, + "year_id": 35493, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35494, + "make_id": 35383, + "model_id": 35492, + "year_id": 35493, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35495, + "make_id": 35383, + "model_id": 35492, + "year_id": 35495, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35496, + "make_id": 35383, + "model_id": 35492, + "year_id": 35495, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35497, + "make_id": 35383, + "model_id": 35497, + "year_id": 35497, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35498, + "make_id": 35383, + "model_id": 35497, + "year_id": 35497, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35499, + "make_id": 35383, + "model_id": 35497, + "year_id": 35499, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35500, + "make_id": 35383, + "model_id": 35497, + "year_id": 35499, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35501, + "make_id": 35383, + "model_id": 35497, + "year_id": 35499, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35502, + "make_id": 35383, + "model_id": 35497, + "year_id": 35502, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35503, + "make_id": 35383, + "model_id": 35497, + "year_id": 35502, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35504, + "make_id": 35383, + "model_id": 35504, + "year_id": 35504, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 35505, + "make_id": 35383, + "model_id": 35504, + "year_id": 35505, + "cylinders": 0, + "displacement": 0, + "drive": "Front-Wheel Drive", + "transmission": "1-Speed Direct Drive" + }, + { + "id": 35506, + "make_id": 35383, + "model_id": 35506, + "year_id": 35506, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35507, + "make_id": 35383, + "model_id": 35506, + "year_id": 35506, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35508, + "make_id": 35383, + "model_id": 35506, + "year_id": 35506, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35509, + "make_id": 35383, + "model_id": 35506, + "year_id": 35509, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35510, + "make_id": 35383, + "model_id": 35506, + "year_id": 35509, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35511, + "make_id": 35383, + "model_id": 35506, + "year_id": 35509, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35512, + "make_id": 35383, + "model_id": 35506, + "year_id": 35512, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35513, + "make_id": 35383, + "model_id": 35506, + "year_id": 35512, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35514, + "make_id": 35383, + "model_id": 35506, + "year_id": 35514, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35515, + "make_id": 35383, + "model_id": 35506, + "year_id": 35514, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35516, + "make_id": 35383, + "model_id": 35506, + "year_id": 35516, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35517, + "make_id": 35383, + "model_id": 35506, + "year_id": 35516, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35518, + "make_id": 35383, + "model_id": 35506, + "year_id": 35518, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35519, + "make_id": 35383, + "model_id": 35506, + "year_id": 35519, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35520, + "make_id": 35383, + "model_id": 35506, + "year_id": 35520, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35521, + "make_id": 35383, + "model_id": 35506, + "year_id": 35521, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35522, + "make_id": 35383, + "model_id": 35506, + "year_id": 35522, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35523, + "make_id": 35383, + "model_id": 35523, + "year_id": 35523, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35524, + "make_id": 35383, + "model_id": 35523, + "year_id": 35523, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35525, + "make_id": 35383, + "model_id": 35523, + "year_id": 35523, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35526, + "make_id": 35383, + "model_id": 35523, + "year_id": 35526, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35527, + "make_id": 35383, + "model_id": 35523, + "year_id": 35526, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35528, + "make_id": 35383, + "model_id": 35523, + "year_id": 35528, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35529, + "make_id": 35383, + "model_id": 35523, + "year_id": 35529, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35530, + "make_id": 35383, + "model_id": 35523, + "year_id": 35530, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35531, + "make_id": 35383, + "model_id": 35523, + "year_id": 35531, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35532, + "make_id": 35383, + "model_id": 35523, + "year_id": 35532, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35533, + "make_id": 35383, + "model_id": 35533, + "year_id": 35533, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35534, + "make_id": 35383, + "model_id": 35533, + "year_id": 35533, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35535, + "make_id": 35383, + "model_id": 35533, + "year_id": 35535, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35536, + "make_id": 35383, + "model_id": 35533, + "year_id": 35536, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35537, + "make_id": 35383, + "model_id": 35533, + "year_id": 35537, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35538, + "make_id": 35383, + "model_id": 35533, + "year_id": 35538, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35539, + "make_id": 35383, + "model_id": 35533, + "year_id": 35539, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35540, + "make_id": 35383, + "model_id": 35533, + "year_id": 35540, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35541, + "make_id": 35383, + "model_id": 35541, + "year_id": 35541, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35542, + "make_id": 35383, + "model_id": 35541, + "year_id": 35542, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35543, + "make_id": 35383, + "model_id": 35541, + "year_id": 35542, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35544, + "make_id": 35383, + "model_id": 35541, + "year_id": 35544, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35545, + "make_id": 35383, + "model_id": 35541, + "year_id": 35544, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35546, + "make_id": 35383, + "model_id": 35541, + "year_id": 35546, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35547, + "make_id": 35383, + "model_id": 35541, + "year_id": 35546, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35548, + "make_id": 35383, + "model_id": 35541, + "year_id": 35548, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35549, + "make_id": 35383, + "model_id": 35541, + "year_id": 35548, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35550, + "make_id": 35383, + "model_id": 35541, + "year_id": 35550, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35551, + "make_id": 35383, + "model_id": 35541, + "year_id": 35550, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35552, + "make_id": 35383, + "model_id": 35541, + "year_id": 35552, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35553, + "make_id": 35383, + "model_id": 35553, + "year_id": 35553, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35554, + "make_id": 35383, + "model_id": 35554, + "year_id": 35554, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35555, + "make_id": 35383, + "model_id": 35554, + "year_id": 35555, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35556, + "make_id": 35383, + "model_id": 35554, + "year_id": 35556, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 35557, + "make_id": 35383, + "model_id": 35557, + "year_id": 35557, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35558, + "make_id": 35383, + "model_id": 35557, + "year_id": 35557, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35559, + "make_id": 35383, + "model_id": 35557, + "year_id": 35557, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35560, + "make_id": 35383, + "model_id": 35557, + "year_id": 35560, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35561, + "make_id": 35383, + "model_id": 35557, + "year_id": 35560, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35562, + "make_id": 35383, + "model_id": 35557, + "year_id": 35560, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35563, + "make_id": 35383, + "model_id": 35557, + "year_id": 35563, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35564, + "make_id": 35383, + "model_id": 35557, + "year_id": 35563, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35565, + "make_id": 35383, + "model_id": 35557, + "year_id": 35565, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35566, + "make_id": 35383, + "model_id": 35557, + "year_id": 35565, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35567, + "make_id": 35383, + "model_id": 35557, + "year_id": 35565, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35568, + "make_id": 35383, + "model_id": 35557, + "year_id": 35568, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35569, + "make_id": 35383, + "model_id": 35557, + "year_id": 35568, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35570, + "make_id": 35383, + "model_id": 35557, + "year_id": 35570, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35571, + "make_id": 35383, + "model_id": 35557, + "year_id": 35570, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35572, + "make_id": 35383, + "model_id": 35557, + "year_id": 35570, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35573, + "make_id": 35383, + "model_id": 35557, + "year_id": 35570, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35574, + "make_id": 35383, + "model_id": 35557, + "year_id": 35570, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35575, + "make_id": 35383, + "model_id": 35557, + "year_id": 35570, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35576, + "make_id": 35383, + "model_id": 35557, + "year_id": 35576, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35577, + "make_id": 35383, + "model_id": 35557, + "year_id": 35576, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35578, + "make_id": 35383, + "model_id": 35557, + "year_id": 35576, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35579, + "make_id": 35383, + "model_id": 35557, + "year_id": 35576, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35580, + "make_id": 35383, + "model_id": 35557, + "year_id": 35576, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35581, + "make_id": 35383, + "model_id": 35557, + "year_id": 35576, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35582, + "make_id": 35383, + "model_id": 35557, + "year_id": 35582, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35583, + "make_id": 35383, + "model_id": 35557, + "year_id": 35582, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35584, + "make_id": 35383, + "model_id": 35557, + "year_id": 35582, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35585, + "make_id": 35383, + "model_id": 35557, + "year_id": 35582, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35586, + "make_id": 35383, + "model_id": 35557, + "year_id": 35586, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35587, + "make_id": 35383, + "model_id": 35557, + "year_id": 35586, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35588, + "make_id": 35383, + "model_id": 35557, + "year_id": 35586, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35589, + "make_id": 35383, + "model_id": 35557, + "year_id": 35586, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35590, + "make_id": 35383, + "model_id": 35557, + "year_id": 35590, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35591, + "make_id": 35383, + "model_id": 35557, + "year_id": 35590, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35592, + "make_id": 35383, + "model_id": 35557, + "year_id": 35590, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35593, + "make_id": 35383, + "model_id": 35557, + "year_id": 35590, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35594, + "make_id": 35383, + "model_id": 35557, + "year_id": 35594, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35595, + "make_id": 35383, + "model_id": 35557, + "year_id": 35594, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35596, + "make_id": 35383, + "model_id": 35557, + "year_id": 35594, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35597, + "make_id": 35383, + "model_id": 35557, + "year_id": 35594, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35598, + "make_id": 35383, + "model_id": 35557, + "year_id": 35598, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35599, + "make_id": 35383, + "model_id": 35557, + "year_id": 35598, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35600, + "make_id": 35383, + "model_id": 35557, + "year_id": 35598, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35601, + "make_id": 35383, + "model_id": 35557, + "year_id": 35598, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35602, + "make_id": 35383, + "model_id": 35557, + "year_id": 35602, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35603, + "make_id": 35383, + "model_id": 35557, + "year_id": 35602, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35604, + "make_id": 35383, + "model_id": 35557, + "year_id": 35602, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35605, + "make_id": 35383, + "model_id": 35557, + "year_id": 35602, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35606, + "make_id": 35383, + "model_id": 35557, + "year_id": 35606, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35607, + "make_id": 35383, + "model_id": 35557, + "year_id": 35606, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35608, + "make_id": 35383, + "model_id": 35557, + "year_id": 35606, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35609, + "make_id": 35383, + "model_id": 35557, + "year_id": 35606, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35610, + "make_id": 35383, + "model_id": 35557, + "year_id": 35610, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35611, + "make_id": 35383, + "model_id": 35557, + "year_id": 35610, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35612, + "make_id": 35383, + "model_id": 35557, + "year_id": 35610, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35613, + "make_id": 35383, + "model_id": 35557, + "year_id": 35610, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35614, + "make_id": 35383, + "model_id": 35557, + "year_id": 35614, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35615, + "make_id": 35383, + "model_id": 35557, + "year_id": 35614, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35616, + "make_id": 35383, + "model_id": 35557, + "year_id": 35614, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35617, + "make_id": 35383, + "model_id": 35557, + "year_id": 35614, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35618, + "make_id": 35383, + "model_id": 35557, + "year_id": 35618, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35619, + "make_id": 35383, + "model_id": 35557, + "year_id": 35618, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35620, + "make_id": 35383, + "model_id": 35557, + "year_id": 35618, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35621, + "make_id": 35383, + "model_id": 35557, + "year_id": 35621, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35622, + "make_id": 35383, + "model_id": 35557, + "year_id": 35621, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35623, + "make_id": 35383, + "model_id": 35557, + "year_id": 35621, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35624, + "make_id": 35383, + "model_id": 35557, + "year_id": 35621, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35625, + "make_id": 35383, + "model_id": 35557, + "year_id": 35625, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35626, + "make_id": 35383, + "model_id": 35557, + "year_id": 35625, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35627, + "make_id": 35383, + "model_id": 35627, + "year_id": 35627, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35628, + "make_id": 35383, + "model_id": 35627, + "year_id": 35627, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35629, + "make_id": 35383, + "model_id": 35627, + "year_id": 35629, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35630, + "make_id": 35383, + "model_id": 35627, + "year_id": 35629, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35631, + "make_id": 35383, + "model_id": 35631, + "year_id": 35631, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35632, + "make_id": 35383, + "model_id": 35631, + "year_id": 35631, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35633, + "make_id": 35383, + "model_id": 35631, + "year_id": 35631, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35634, + "make_id": 35383, + "model_id": 35634, + "year_id": 35634, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35635, + "make_id": 35383, + "model_id": 35634, + "year_id": 35635, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35636, + "make_id": 35383, + "model_id": 35634, + "year_id": 35636, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35637, + "make_id": 35383, + "model_id": 35634, + "year_id": 35637, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35638, + "make_id": 35383, + "model_id": 35634, + "year_id": 35637, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35639, + "make_id": 35383, + "model_id": 35639, + "year_id": 35639, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35640, + "make_id": 35383, + "model_id": 35639, + "year_id": 35639, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35641, + "make_id": 35383, + "model_id": 35639, + "year_id": 35639, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35642, + "make_id": 35383, + "model_id": 35639, + "year_id": 35639, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35643, + "make_id": 35383, + "model_id": 35639, + "year_id": 35643, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35644, + "make_id": 35383, + "model_id": 35639, + "year_id": 35643, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35645, + "make_id": 35383, + "model_id": 35645, + "year_id": 35645, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35646, + "make_id": 35383, + "model_id": 35645, + "year_id": 35645, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35647, + "make_id": 35383, + "model_id": 35645, + "year_id": 35645, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35648, + "make_id": 35383, + "model_id": 35645, + "year_id": 35645, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35649, + "make_id": 35383, + "model_id": 35645, + "year_id": 35649, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35650, + "make_id": 35383, + "model_id": 35645, + "year_id": 35649, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35651, + "make_id": 35383, + "model_id": 35645, + "year_id": 35651, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35652, + "make_id": 35383, + "model_id": 35645, + "year_id": 35651, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35653, + "make_id": 35383, + "model_id": 35645, + "year_id": 35653, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35654, + "make_id": 35383, + "model_id": 35645, + "year_id": 35653, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35655, + "make_id": 35383, + "model_id": 35645, + "year_id": 35655, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35656, + "make_id": 35383, + "model_id": 35645, + "year_id": 35655, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35657, + "make_id": 35383, + "model_id": 35645, + "year_id": 35655, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35658, + "make_id": 35383, + "model_id": 35645, + "year_id": 35658, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35659, + "make_id": 35383, + "model_id": 35645, + "year_id": 35658, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35660, + "make_id": 35383, + "model_id": 35645, + "year_id": 35658, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35661, + "make_id": 35383, + "model_id": 35645, + "year_id": 35661, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35662, + "make_id": 35383, + "model_id": 35645, + "year_id": 35661, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35663, + "make_id": 35383, + "model_id": 35663, + "year_id": 35663, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35664, + "make_id": 35383, + "model_id": 35663, + "year_id": 35664, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35665, + "make_id": 35383, + "model_id": 35663, + "year_id": 35664, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35666, + "make_id": 35383, + "model_id": 35663, + "year_id": 35664, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35667, + "make_id": 35383, + "model_id": 35663, + "year_id": 35667, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35668, + "make_id": 35383, + "model_id": 35663, + "year_id": 35667, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35669, + "make_id": 35383, + "model_id": 35663, + "year_id": 35667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35670, + "make_id": 35383, + "model_id": 35663, + "year_id": 35667, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35671, + "make_id": 35383, + "model_id": 35663, + "year_id": 35667, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35672, + "make_id": 35383, + "model_id": 35663, + "year_id": 35672, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35673, + "make_id": 35383, + "model_id": 35663, + "year_id": 35672, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35674, + "make_id": 35383, + "model_id": 35663, + "year_id": 35672, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35675, + "make_id": 35383, + "model_id": 35663, + "year_id": 35675, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35676, + "make_id": 35383, + "model_id": 35663, + "year_id": 35675, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35677, + "make_id": 35383, + "model_id": 35663, + "year_id": 35675, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35678, + "make_id": 35383, + "model_id": 35663, + "year_id": 35675, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35679, + "make_id": 35383, + "model_id": 35663, + "year_id": 35675, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35680, + "make_id": 35383, + "model_id": 35663, + "year_id": 35680, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35681, + "make_id": 35383, + "model_id": 35663, + "year_id": 35680, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35682, + "make_id": 35383, + "model_id": 35663, + "year_id": 35680, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35683, + "make_id": 35383, + "model_id": 35663, + "year_id": 35680, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35684, + "make_id": 35383, + "model_id": 35663, + "year_id": 35684, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35685, + "make_id": 35383, + "model_id": 35663, + "year_id": 35684, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35686, + "make_id": 35383, + "model_id": 35663, + "year_id": 35684, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35687, + "make_id": 35383, + "model_id": 35663, + "year_id": 35687, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35688, + "make_id": 35383, + "model_id": 35663, + "year_id": 35687, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35689, + "make_id": 35383, + "model_id": 35663, + "year_id": 35687, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35690, + "make_id": 35383, + "model_id": 35663, + "year_id": 35690, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35691, + "make_id": 35383, + "model_id": 35663, + "year_id": 35690, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35692, + "make_id": 35383, + "model_id": 35663, + "year_id": 35690, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35693, + "make_id": 35383, + "model_id": 35663, + "year_id": 35690, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35694, + "make_id": 35383, + "model_id": 35663, + "year_id": 35694, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35695, + "make_id": 35383, + "model_id": 35663, + "year_id": 35694, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35696, + "make_id": 35383, + "model_id": 35663, + "year_id": 35696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35697, + "make_id": 35383, + "model_id": 35663, + "year_id": 35696, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35698, + "make_id": 35383, + "model_id": 35663, + "year_id": 35698, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35699, + "make_id": 35383, + "model_id": 35663, + "year_id": 35698, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35700, + "make_id": 35383, + "model_id": 35663, + "year_id": 35700, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35701, + "make_id": 35383, + "model_id": 35663, + "year_id": 35700, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35702, + "make_id": 35383, + "model_id": 35663, + "year_id": 35702, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35703, + "make_id": 35383, + "model_id": 35663, + "year_id": 35702, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35704, + "make_id": 35383, + "model_id": 35663, + "year_id": 35704, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35705, + "make_id": 35383, + "model_id": 35663, + "year_id": 35704, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35706, + "make_id": 35383, + "model_id": 35663, + "year_id": 35706, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35707, + "make_id": 35383, + "model_id": 35663, + "year_id": 35706, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35708, + "make_id": 35383, + "model_id": 35663, + "year_id": 35708, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35709, + "make_id": 35383, + "model_id": 35663, + "year_id": 35708, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35710, + "make_id": 35383, + "model_id": 35663, + "year_id": 35710, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35711, + "make_id": 35383, + "model_id": 35663, + "year_id": 35710, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35712, + "make_id": 35383, + "model_id": 35663, + "year_id": 35712, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35713, + "make_id": 35383, + "model_id": 35663, + "year_id": 35712, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35714, + "make_id": 35383, + "model_id": 35714, + "year_id": 35714, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35715, + "make_id": 35383, + "model_id": 35714, + "year_id": 35715, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35716, + "make_id": 35383, + "model_id": 35714, + "year_id": 35716, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35717, + "make_id": 35383, + "model_id": 35714, + "year_id": 35717, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35718, + "make_id": 35383, + "model_id": 35714, + "year_id": 35718, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35719, + "make_id": 35383, + "model_id": 35714, + "year_id": 35719, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35720, + "make_id": 35383, + "model_id": 35720, + "year_id": 35720, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35721, + "make_id": 35383, + "model_id": 35720, + "year_id": 35721, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35722, + "make_id": 35383, + "model_id": 35720, + "year_id": 35722, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35723, + "make_id": 35383, + "model_id": 35720, + "year_id": 35723, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35724, + "make_id": 35383, + "model_id": 35724, + "year_id": 35724, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35725, + "make_id": 35383, + "model_id": 35724, + "year_id": 35724, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35726, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35727, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35728, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 35729, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 35730, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35731, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35732, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35733, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 35734, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35735, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35736, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 35737, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 35738, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35739, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35740, + "make_id": 35383, + "model_id": 35726, + "year_id": 35726, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 35741, + "make_id": 35383, + "model_id": 35726, + "year_id": 35741, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35742, + "make_id": 35383, + "model_id": 35726, + "year_id": 35741, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35743, + "make_id": 35383, + "model_id": 35726, + "year_id": 35741, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35744, + "make_id": 35383, + "model_id": 35726, + "year_id": 35741, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35745, + "make_id": 35383, + "model_id": 35726, + "year_id": 35741, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35746, + "make_id": 35383, + "model_id": 35726, + "year_id": 35741, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35747, + "make_id": 35383, + "model_id": 35726, + "year_id": 35747, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35748, + "make_id": 35383, + "model_id": 35726, + "year_id": 35747, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35749, + "make_id": 35383, + "model_id": 35726, + "year_id": 35747, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35750, + "make_id": 35383, + "model_id": 35726, + "year_id": 35747, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35751, + "make_id": 35383, + "model_id": 35726, + "year_id": 35751, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35752, + "make_id": 35383, + "model_id": 35726, + "year_id": 35751, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35753, + "make_id": 35383, + "model_id": 35726, + "year_id": 35753, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35754, + "make_id": 35383, + "model_id": 35726, + "year_id": 35753, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35755, + "make_id": 35383, + "model_id": 35726, + "year_id": 35755, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35756, + "make_id": 35383, + "model_id": 35726, + "year_id": 35755, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35757, + "make_id": 35383, + "model_id": 35726, + "year_id": 35755, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35758, + "make_id": 35383, + "model_id": 35726, + "year_id": 35758, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35759, + "make_id": 35383, + "model_id": 35726, + "year_id": 35758, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35760, + "make_id": 35383, + "model_id": 35726, + "year_id": 35758, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35761, + "make_id": 35383, + "model_id": 35726, + "year_id": 35761, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35762, + "make_id": 35383, + "model_id": 35726, + "year_id": 35761, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35763, + "make_id": 35383, + "model_id": 35726, + "year_id": 35761, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35764, + "make_id": 35383, + "model_id": 35726, + "year_id": 35761, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35765, + "make_id": 35383, + "model_id": 35726, + "year_id": 35765, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35766, + "make_id": 35383, + "model_id": 35726, + "year_id": 35765, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35767, + "make_id": 35383, + "model_id": 35726, + "year_id": 35765, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35768, + "make_id": 35383, + "model_id": 35726, + "year_id": 35768, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35769, + "make_id": 35383, + "model_id": 35726, + "year_id": 35768, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35770, + "make_id": 35383, + "model_id": 35726, + "year_id": 35768, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35771, + "make_id": 35383, + "model_id": 35726, + "year_id": 35771, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35772, + "make_id": 35383, + "model_id": 35726, + "year_id": 35771, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35773, + "make_id": 35383, + "model_id": 35726, + "year_id": 35771, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35774, + "make_id": 35383, + "model_id": 35726, + "year_id": 35774, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35775, + "make_id": 35383, + "model_id": 35726, + "year_id": 35774, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35776, + "make_id": 35383, + "model_id": 35726, + "year_id": 35774, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35777, + "make_id": 35383, + "model_id": 35726, + "year_id": 35777, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35778, + "make_id": 35383, + "model_id": 35726, + "year_id": 35777, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35779, + "make_id": 35383, + "model_id": 35726, + "year_id": 35777, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35780, + "make_id": 35383, + "model_id": 35726, + "year_id": 35777, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35781, + "make_id": 35383, + "model_id": 35726, + "year_id": 35777, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35782, + "make_id": 35383, + "model_id": 35726, + "year_id": 35782, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35783, + "make_id": 35383, + "model_id": 35726, + "year_id": 35782, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35784, + "make_id": 35383, + "model_id": 35726, + "year_id": 35782, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35785, + "make_id": 35383, + "model_id": 35726, + "year_id": 35782, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35786, + "make_id": 35383, + "model_id": 35726, + "year_id": 35782, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35787, + "make_id": 35383, + "model_id": 35726, + "year_id": 35782, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35788, + "make_id": 35383, + "model_id": 35726, + "year_id": 35782, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35789, + "make_id": 35383, + "model_id": 35726, + "year_id": 35782, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35790, + "make_id": 35383, + "model_id": 35726, + "year_id": 35790, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35791, + "make_id": 35383, + "model_id": 35726, + "year_id": 35790, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35792, + "make_id": 35383, + "model_id": 35726, + "year_id": 35790, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35793, + "make_id": 35383, + "model_id": 35726, + "year_id": 35790, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35794, + "make_id": 35383, + "model_id": 35726, + "year_id": 35790, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35795, + "make_id": 35383, + "model_id": 35726, + "year_id": 35790, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35796, + "make_id": 35383, + "model_id": 35726, + "year_id": 35790, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35797, + "make_id": 35383, + "model_id": 35726, + "year_id": 35790, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35798, + "make_id": 35383, + "model_id": 35726, + "year_id": 35798, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35799, + "make_id": 35383, + "model_id": 35726, + "year_id": 35798, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35800, + "make_id": 35383, + "model_id": 35726, + "year_id": 35798, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35801, + "make_id": 35383, + "model_id": 35726, + "year_id": 35798, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35802, + "make_id": 35383, + "model_id": 35726, + "year_id": 35798, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35803, + "make_id": 35383, + "model_id": 35726, + "year_id": 35798, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35804, + "make_id": 35383, + "model_id": 35726, + "year_id": 35798, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35805, + "make_id": 35383, + "model_id": 35726, + "year_id": 35798, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35806, + "make_id": 35383, + "model_id": 35726, + "year_id": 35798, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35807, + "make_id": 35383, + "model_id": 35726, + "year_id": 35798, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35808, + "make_id": 35383, + "model_id": 35726, + "year_id": 35808, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35809, + "make_id": 35383, + "model_id": 35726, + "year_id": 35808, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35810, + "make_id": 35383, + "model_id": 35726, + "year_id": 35808, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35811, + "make_id": 35383, + "model_id": 35726, + "year_id": 35808, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35812, + "make_id": 35383, + "model_id": 35726, + "year_id": 35808, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35813, + "make_id": 35383, + "model_id": 35726, + "year_id": 35808, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35814, + "make_id": 35383, + "model_id": 35726, + "year_id": 35808, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35815, + "make_id": 35383, + "model_id": 35726, + "year_id": 35808, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35816, + "make_id": 35383, + "model_id": 35726, + "year_id": 35816, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35817, + "make_id": 35383, + "model_id": 35726, + "year_id": 35816, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35818, + "make_id": 35383, + "model_id": 35726, + "year_id": 35816, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35819, + "make_id": 35383, + "model_id": 35726, + "year_id": 35816, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35820, + "make_id": 35383, + "model_id": 35726, + "year_id": 35816, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35821, + "make_id": 35383, + "model_id": 35726, + "year_id": 35816, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35822, + "make_id": 35383, + "model_id": 35726, + "year_id": 35816, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35823, + "make_id": 35383, + "model_id": 35726, + "year_id": 35816, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35824, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35825, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35826, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35827, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35828, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35829, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35830, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35831, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35832, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35833, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35834, + "make_id": 35383, + "model_id": 35726, + "year_id": 35824, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35835, + "make_id": 35383, + "model_id": 35726, + "year_id": 35835, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35836, + "make_id": 35383, + "model_id": 35726, + "year_id": 35835, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35837, + "make_id": 35383, + "model_id": 35726, + "year_id": 35835, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35838, + "make_id": 35383, + "model_id": 35726, + "year_id": 35835, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35839, + "make_id": 35383, + "model_id": 35726, + "year_id": 35835, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35840, + "make_id": 35383, + "model_id": 35726, + "year_id": 35835, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35841, + "make_id": 35383, + "model_id": 35726, + "year_id": 35841, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35842, + "make_id": 35383, + "model_id": 35726, + "year_id": 35841, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35843, + "make_id": 35383, + "model_id": 35726, + "year_id": 35841, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35844, + "make_id": 35383, + "model_id": 35726, + "year_id": 35841, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35845, + "make_id": 35383, + "model_id": 35726, + "year_id": 35845, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35846, + "make_id": 35383, + "model_id": 35726, + "year_id": 35845, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35847, + "make_id": 35383, + "model_id": 35726, + "year_id": 35845, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35848, + "make_id": 35383, + "model_id": 35726, + "year_id": 35845, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35849, + "make_id": 35383, + "model_id": 35726, + "year_id": 35849, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35850, + "make_id": 35383, + "model_id": 35726, + "year_id": 35849, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35851, + "make_id": 35383, + "model_id": 35726, + "year_id": 35849, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35852, + "make_id": 35383, + "model_id": 35726, + "year_id": 35849, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35853, + "make_id": 35383, + "model_id": 35726, + "year_id": 35849, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35854, + "make_id": 35383, + "model_id": 35726, + "year_id": 35849, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35855, + "make_id": 35383, + "model_id": 35726, + "year_id": 35855, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35856, + "make_id": 35383, + "model_id": 35726, + "year_id": 35855, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35857, + "make_id": 35383, + "model_id": 35726, + "year_id": 35855, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35858, + "make_id": 35383, + "model_id": 35726, + "year_id": 35855, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35859, + "make_id": 35383, + "model_id": 35726, + "year_id": 35855, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35860, + "make_id": 35383, + "model_id": 35726, + "year_id": 35855, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35861, + "make_id": 35383, + "model_id": 35726, + "year_id": 35861, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35862, + "make_id": 35383, + "model_id": 35726, + "year_id": 35861, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35863, + "make_id": 35383, + "model_id": 35726, + "year_id": 35861, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35864, + "make_id": 35383, + "model_id": 35726, + "year_id": 35861, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35865, + "make_id": 35383, + "model_id": 35726, + "year_id": 35861, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35866, + "make_id": 35383, + "model_id": 35726, + "year_id": 35861, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35867, + "make_id": 35383, + "model_id": 35726, + "year_id": 35867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35868, + "make_id": 35383, + "model_id": 35726, + "year_id": 35867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35869, + "make_id": 35383, + "model_id": 35726, + "year_id": 35867, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35870, + "make_id": 35383, + "model_id": 35726, + "year_id": 35867, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35871, + "make_id": 35383, + "model_id": 35726, + "year_id": 35867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35872, + "make_id": 35383, + "model_id": 35726, + "year_id": 35867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35873, + "make_id": 35383, + "model_id": 35726, + "year_id": 35867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35874, + "make_id": 35383, + "model_id": 35726, + "year_id": 35867, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35875, + "make_id": 35383, + "model_id": 35726, + "year_id": 35875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35876, + "make_id": 35383, + "model_id": 35726, + "year_id": 35875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35877, + "make_id": 35383, + "model_id": 35726, + "year_id": 35875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35878, + "make_id": 35383, + "model_id": 35726, + "year_id": 35875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35879, + "make_id": 35383, + "model_id": 35726, + "year_id": 35875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35880, + "make_id": 35383, + "model_id": 35726, + "year_id": 35875, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35881, + "make_id": 35383, + "model_id": 35726, + "year_id": 35875, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35882, + "make_id": 35383, + "model_id": 35726, + "year_id": 35875, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35883, + "make_id": 35383, + "model_id": 35726, + "year_id": 35883, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35884, + "make_id": 35383, + "model_id": 35726, + "year_id": 35883, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35885, + "make_id": 35383, + "model_id": 35726, + "year_id": 35883, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35886, + "make_id": 35383, + "model_id": 35726, + "year_id": 35883, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35887, + "make_id": 35383, + "model_id": 35726, + "year_id": 35883, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35888, + "make_id": 35383, + "model_id": 35726, + "year_id": 35883, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35889, + "make_id": 35383, + "model_id": 35726, + "year_id": 35883, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35890, + "make_id": 35383, + "model_id": 35726, + "year_id": 35883, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35891, + "make_id": 35383, + "model_id": 35726, + "year_id": 35891, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35892, + "make_id": 35383, + "model_id": 35726, + "year_id": 35891, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35893, + "make_id": 35383, + "model_id": 35726, + "year_id": 35891, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35894, + "make_id": 35383, + "model_id": 35726, + "year_id": 35891, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35895, + "make_id": 35383, + "model_id": 35726, + "year_id": 35891, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35896, + "make_id": 35383, + "model_id": 35726, + "year_id": 35891, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35897, + "make_id": 35383, + "model_id": 35726, + "year_id": 35891, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35898, + "make_id": 35383, + "model_id": 35726, + "year_id": 35891, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35899, + "make_id": 35383, + "model_id": 35726, + "year_id": 35899, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35900, + "make_id": 35383, + "model_id": 35726, + "year_id": 35899, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35901, + "make_id": 35383, + "model_id": 35726, + "year_id": 35899, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35902, + "make_id": 35383, + "model_id": 35726, + "year_id": 35899, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35903, + "make_id": 35383, + "model_id": 35726, + "year_id": 35899, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35904, + "make_id": 35383, + "model_id": 35726, + "year_id": 35899, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35905, + "make_id": 35383, + "model_id": 35905, + "year_id": 35905, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35906, + "make_id": 35383, + "model_id": 35905, + "year_id": 35905, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35907, + "make_id": 35383, + "model_id": 35907, + "year_id": 35907, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35908, + "make_id": 35383, + "model_id": 35907, + "year_id": 35908, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35909, + "make_id": 35383, + "model_id": 35907, + "year_id": 35909, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35910, + "make_id": 35383, + "model_id": 35907, + "year_id": 35910, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35911, + "make_id": 35383, + "model_id": 35907, + "year_id": 35911, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35912, + "make_id": 35383, + "model_id": 35907, + "year_id": 35912, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35913, + "make_id": 35383, + "model_id": 35913, + "year_id": 35913, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 35914, + "make_id": 35383, + "model_id": 35913, + "year_id": 35913, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35915, + "make_id": 35383, + "model_id": 35915, + "year_id": 35915, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35916, + "make_id": 35383, + "model_id": 35915, + "year_id": 35915, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35917, + "make_id": 35383, + "model_id": 35915, + "year_id": 35917, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35918, + "make_id": 35383, + "model_id": 35915, + "year_id": 35917, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35919, + "make_id": 35383, + "model_id": 35915, + "year_id": 35919, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35920, + "make_id": 35383, + "model_id": 35915, + "year_id": 35919, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35921, + "make_id": 35383, + "model_id": 35921, + "year_id": 35921, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 35922, + "make_id": 35383, + "model_id": 35921, + "year_id": 35922, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 35923, + "make_id": 35383, + "model_id": 35921, + "year_id": 35923, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 35924, + "make_id": 35383, + "model_id": 35921, + "year_id": 35924, + "cylinders": 4, + "displacement": 1.4, + "drive": "Front-Wheel Drive", + "transmission": "7-Speed Automated Manual" + }, + { + "id": 35925, + "make_id": 35383, + "model_id": 35925, + "year_id": 35925, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35926, + "make_id": 35383, + "model_id": 35925, + "year_id": 35925, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35927, + "make_id": 35383, + "model_id": 35925, + "year_id": 35925, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35928, + "make_id": 35383, + "model_id": 35925, + "year_id": 35928, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35929, + "make_id": 35383, + "model_id": 35925, + "year_id": 35928, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35930, + "make_id": 35383, + "model_id": 35925, + "year_id": 35930, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35931, + "make_id": 35383, + "model_id": 35925, + "year_id": 35930, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35932, + "make_id": 35383, + "model_id": 35932, + "year_id": 35932, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35933, + "make_id": 35383, + "model_id": 35932, + "year_id": 35932, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35934, + "make_id": 35383, + "model_id": 35932, + "year_id": 35934, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35935, + "make_id": 35383, + "model_id": 35932, + "year_id": 35934, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35936, + "make_id": 35383, + "model_id": 35936, + "year_id": 35936, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35937, + "make_id": 35383, + "model_id": 35936, + "year_id": 35936, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35938, + "make_id": 35383, + "model_id": 35936, + "year_id": 35938, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35939, + "make_id": 35383, + "model_id": 35936, + "year_id": 35938, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35940, + "make_id": 35383, + "model_id": 35936, + "year_id": 35938, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35941, + "make_id": 35383, + "model_id": 35936, + "year_id": 35938, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35942, + "make_id": 35383, + "model_id": 35936, + "year_id": 35938, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35943, + "make_id": 35383, + "model_id": 35936, + "year_id": 35938, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35944, + "make_id": 35383, + "model_id": 35936, + "year_id": 35944, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35945, + "make_id": 35383, + "model_id": 35936, + "year_id": 35944, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35946, + "make_id": 35383, + "model_id": 35936, + "year_id": 35944, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35947, + "make_id": 35383, + "model_id": 35936, + "year_id": 35944, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35948, + "make_id": 35383, + "model_id": 35936, + "year_id": 35948, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35949, + "make_id": 35383, + "model_id": 35936, + "year_id": 35948, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35950, + "make_id": 35383, + "model_id": 35936, + "year_id": 35948, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35951, + "make_id": 35383, + "model_id": 35936, + "year_id": 35948, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35952, + "make_id": 35383, + "model_id": 35936, + "year_id": 35952, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35953, + "make_id": 35383, + "model_id": 35936, + "year_id": 35952, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35954, + "make_id": 35383, + "model_id": 35936, + "year_id": 35952, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35955, + "make_id": 35383, + "model_id": 35936, + "year_id": 35952, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35956, + "make_id": 35383, + "model_id": 35936, + "year_id": 35956, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35957, + "make_id": 35383, + "model_id": 35936, + "year_id": 35956, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35958, + "make_id": 35383, + "model_id": 35936, + "year_id": 35956, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35959, + "make_id": 35383, + "model_id": 35936, + "year_id": 35956, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35960, + "make_id": 35383, + "model_id": 35936, + "year_id": 35960, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 35961, + "make_id": 35383, + "model_id": 35936, + "year_id": 35960, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 35962, + "make_id": 35383, + "model_id": 35936, + "year_id": 35960, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 35963, + "make_id": 35383, + "model_id": 35936, + "year_id": 35960, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35964, + "make_id": 35383, + "model_id": 35964, + "year_id": 35964, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35965, + "make_id": 35383, + "model_id": 35964, + "year_id": 35964, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35966, + "make_id": 35383, + "model_id": 35964, + "year_id": 35964, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35967, + "make_id": 35383, + "model_id": 35964, + "year_id": 35964, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35968, + "make_id": 35383, + "model_id": 35964, + "year_id": 35968, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35969, + "make_id": 35383, + "model_id": 35964, + "year_id": 35968, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35970, + "make_id": 35383, + "model_id": 35964, + "year_id": 35968, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35971, + "make_id": 35383, + "model_id": 35964, + "year_id": 35968, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35972, + "make_id": 35383, + "model_id": 35964, + "year_id": 35968, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35973, + "make_id": 35383, + "model_id": 35964, + "year_id": 35968, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35974, + "make_id": 35383, + "model_id": 35964, + "year_id": 35968, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35975, + "make_id": 35383, + "model_id": 35964, + "year_id": 35968, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35976, + "make_id": 35383, + "model_id": 35964, + "year_id": 35976, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35977, + "make_id": 35383, + "model_id": 35964, + "year_id": 35976, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35978, + "make_id": 35383, + "model_id": 35964, + "year_id": 35976, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35979, + "make_id": 35383, + "model_id": 35964, + "year_id": 35976, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35980, + "make_id": 35383, + "model_id": 35964, + "year_id": 35976, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35981, + "make_id": 35383, + "model_id": 35964, + "year_id": 35976, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35982, + "make_id": 35383, + "model_id": 35964, + "year_id": 35982, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35983, + "make_id": 35383, + "model_id": 35964, + "year_id": 35982, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35984, + "make_id": 35383, + "model_id": 35964, + "year_id": 35982, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35985, + "make_id": 35383, + "model_id": 35964, + "year_id": 35982, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35986, + "make_id": 35383, + "model_id": 35964, + "year_id": 35982, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35987, + "make_id": 35383, + "model_id": 35964, + "year_id": 35982, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35988, + "make_id": 35383, + "model_id": 35964, + "year_id": 35988, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35989, + "make_id": 35383, + "model_id": 35964, + "year_id": 35988, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35990, + "make_id": 35383, + "model_id": 35964, + "year_id": 35988, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35991, + "make_id": 35383, + "model_id": 35964, + "year_id": 35988, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 35992, + "make_id": 35383, + "model_id": 35964, + "year_id": 35988, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35993, + "make_id": 35383, + "model_id": 35964, + "year_id": 35988, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35994, + "make_id": 35383, + "model_id": 35994, + "year_id": 35994, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35995, + "make_id": 35383, + "model_id": 35994, + "year_id": 35994, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35996, + "make_id": 35383, + "model_id": 35994, + "year_id": 35994, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35997, + "make_id": 35383, + "model_id": 35994, + "year_id": 35994, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 35998, + "make_id": 35383, + "model_id": 35994, + "year_id": 35998, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 35999, + "make_id": 35383, + "model_id": 35994, + "year_id": 35998, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36000, + "make_id": 35383, + "model_id": 35994, + "year_id": 35998, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36001, + "make_id": 35383, + "model_id": 35994, + "year_id": 35998, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36002, + "make_id": 35383, + "model_id": 35994, + "year_id": 35998, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36003, + "make_id": 35383, + "model_id": 35994, + "year_id": 35998, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36004, + "make_id": 35383, + "model_id": 35994, + "year_id": 36004, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36005, + "make_id": 35383, + "model_id": 35994, + "year_id": 36004, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36006, + "make_id": 35383, + "model_id": 35994, + "year_id": 36004, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36007, + "make_id": 35383, + "model_id": 35994, + "year_id": 36004, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36008, + "make_id": 35383, + "model_id": 35994, + "year_id": 36004, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36009, + "make_id": 35383, + "model_id": 35994, + "year_id": 36004, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36010, + "make_id": 35383, + "model_id": 35994, + "year_id": 36010, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36011, + "make_id": 35383, + "model_id": 35994, + "year_id": 36010, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36012, + "make_id": 35383, + "model_id": 35994, + "year_id": 36010, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36013, + "make_id": 35383, + "model_id": 35994, + "year_id": 36010, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36014, + "make_id": 35383, + "model_id": 35994, + "year_id": 36010, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36015, + "make_id": 35383, + "model_id": 35994, + "year_id": 36010, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36016, + "make_id": 35383, + "model_id": 35994, + "year_id": 36016, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36017, + "make_id": 35383, + "model_id": 35994, + "year_id": 36016, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36018, + "make_id": 35383, + "model_id": 35994, + "year_id": 36016, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36019, + "make_id": 35383, + "model_id": 35994, + "year_id": 36016, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36020, + "make_id": 35383, + "model_id": 35994, + "year_id": 36016, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36021, + "make_id": 35383, + "model_id": 35994, + "year_id": 36016, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36022, + "make_id": 35383, + "model_id": 35994, + "year_id": 36016, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36023, + "make_id": 35383, + "model_id": 35994, + "year_id": 36023, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36024, + "make_id": 35383, + "model_id": 35994, + "year_id": 36023, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36025, + "make_id": 35383, + "model_id": 35994, + "year_id": 36023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36026, + "make_id": 35383, + "model_id": 35994, + "year_id": 36023, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36027, + "make_id": 35383, + "model_id": 35994, + "year_id": 36023, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36028, + "make_id": 35383, + "model_id": 35994, + "year_id": 36023, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36029, + "make_id": 35383, + "model_id": 35994, + "year_id": 36023, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36030, + "make_id": 35383, + "model_id": 35994, + "year_id": 36030, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36031, + "make_id": 35383, + "model_id": 35994, + "year_id": 36030, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36032, + "make_id": 35383, + "model_id": 35994, + "year_id": 36030, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36033, + "make_id": 35383, + "model_id": 35994, + "year_id": 36030, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36034, + "make_id": 35383, + "model_id": 35994, + "year_id": 36030, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36035, + "make_id": 35383, + "model_id": 35994, + "year_id": 36030, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36036, + "make_id": 35383, + "model_id": 35994, + "year_id": 36030, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36037, + "make_id": 35383, + "model_id": 35994, + "year_id": 36037, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36038, + "make_id": 35383, + "model_id": 35994, + "year_id": 36037, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36039, + "make_id": 35383, + "model_id": 35994, + "year_id": 36037, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36040, + "make_id": 35383, + "model_id": 35994, + "year_id": 36037, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36041, + "make_id": 35383, + "model_id": 35994, + "year_id": 36037, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36042, + "make_id": 35383, + "model_id": 35994, + "year_id": 36037, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36043, + "make_id": 35383, + "model_id": 35994, + "year_id": 36043, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36044, + "make_id": 35383, + "model_id": 35994, + "year_id": 36043, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36045, + "make_id": 35383, + "model_id": 35994, + "year_id": 36043, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36046, + "make_id": 35383, + "model_id": 35994, + "year_id": 36043, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36047, + "make_id": 35383, + "model_id": 35994, + "year_id": 36047, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36048, + "make_id": 35383, + "model_id": 35994, + "year_id": 36047, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36049, + "make_id": 35383, + "model_id": 35994, + "year_id": 36049, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36050, + "make_id": 35383, + "model_id": 35994, + "year_id": 36049, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36051, + "make_id": 35383, + "model_id": 35994, + "year_id": 36051, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36052, + "make_id": 35383, + "model_id": 35994, + "year_id": 36051, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36053, + "make_id": 35383, + "model_id": 35994, + "year_id": 36053, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36054, + "make_id": 35383, + "model_id": 35994, + "year_id": 36053, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36055, + "make_id": 35383, + "model_id": 36055, + "year_id": 36055, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36056, + "make_id": 35383, + "model_id": 36055, + "year_id": 36055, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36057, + "make_id": 35383, + "model_id": 36055, + "year_id": 36055, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36058, + "make_id": 35383, + "model_id": 36055, + "year_id": 36055, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36059, + "make_id": 35383, + "model_id": 36055, + "year_id": 36059, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36060, + "make_id": 35383, + "model_id": 36055, + "year_id": 36059, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36061, + "make_id": 35383, + "model_id": 36055, + "year_id": 36059, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36062, + "make_id": 35383, + "model_id": 36055, + "year_id": 36059, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36063, + "make_id": 35383, + "model_id": 36055, + "year_id": 36063, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36064, + "make_id": 35383, + "model_id": 36055, + "year_id": 36063, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36065, + "make_id": 35383, + "model_id": 36055, + "year_id": 36063, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36066, + "make_id": 35383, + "model_id": 36055, + "year_id": 36063, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36067, + "make_id": 35383, + "model_id": 36055, + "year_id": 36067, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36068, + "make_id": 35383, + "model_id": 36055, + "year_id": 36067, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36069, + "make_id": 35383, + "model_id": 36055, + "year_id": 36069, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36070, + "make_id": 35383, + "model_id": 36055, + "year_id": 36069, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36071, + "make_id": 35383, + "model_id": 36055, + "year_id": 36071, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36072, + "make_id": 35383, + "model_id": 36055, + "year_id": 36071, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36073, + "make_id": 35383, + "model_id": 36055, + "year_id": 36073, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36074, + "make_id": 35383, + "model_id": 36055, + "year_id": 36073, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36075, + "make_id": 35383, + "model_id": 36055, + "year_id": 36075, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36076, + "make_id": 35383, + "model_id": 36076, + "year_id": 36076, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36077, + "make_id": 35383, + "model_id": 36076, + "year_id": 36076, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36078, + "make_id": 35383, + "model_id": 36076, + "year_id": 36076, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36079, + "make_id": 35383, + "model_id": 36076, + "year_id": 36076, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36080, + "make_id": 35383, + "model_id": 36080, + "year_id": 36080, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36081, + "make_id": 35383, + "model_id": 36080, + "year_id": 36080, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36082, + "make_id": 35383, + "model_id": 36080, + "year_id": 36080, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36083, + "make_id": 35383, + "model_id": 36083, + "year_id": 36083, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36084, + "make_id": 35383, + "model_id": 36083, + "year_id": 36083, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36085, + "make_id": 35383, + "model_id": 36083, + "year_id": 36083, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36086, + "make_id": 35383, + "model_id": 36083, + "year_id": 36083, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36087, + "make_id": 35383, + "model_id": 36083, + "year_id": 36083, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36088, + "make_id": 35383, + "model_id": 36083, + "year_id": 36083, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36089, + "make_id": 35383, + "model_id": 36089, + "year_id": 36089, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36090, + "make_id": 35383, + "model_id": 36089, + "year_id": 36089, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36091, + "make_id": 35383, + "model_id": 36089, + "year_id": 36091, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36092, + "make_id": 35383, + "model_id": 36089, + "year_id": 36091, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36093, + "make_id": 35383, + "model_id": 36089, + "year_id": 36093, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36094, + "make_id": 35383, + "model_id": 36089, + "year_id": 36093, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36095, + "make_id": 35383, + "model_id": 36089, + "year_id": 36095, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36096, + "make_id": 35383, + "model_id": 36089, + "year_id": 36095, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36097, + "make_id": 35383, + "model_id": 36089, + "year_id": 36095, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36098, + "make_id": 35383, + "model_id": 36089, + "year_id": 36095, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36099, + "make_id": 35383, + "model_id": 36089, + "year_id": 36095, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36100, + "make_id": 35383, + "model_id": 36089, + "year_id": 36095, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36101, + "make_id": 35383, + "model_id": 36089, + "year_id": 36101, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36102, + "make_id": 35383, + "model_id": 36089, + "year_id": 36101, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36103, + "make_id": 35383, + "model_id": 36089, + "year_id": 36103, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36104, + "make_id": 35383, + "model_id": 36089, + "year_id": 36103, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36105, + "make_id": 35383, + "model_id": 36089, + "year_id": 36103, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36106, + "make_id": 35383, + "model_id": 36089, + "year_id": 36103, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36107, + "make_id": 35383, + "model_id": 36089, + "year_id": 36107, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36108, + "make_id": 35383, + "model_id": 36089, + "year_id": 36107, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36109, + "make_id": 35383, + "model_id": 36089, + "year_id": 36107, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36110, + "make_id": 35383, + "model_id": 36089, + "year_id": 36107, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36111, + "make_id": 35383, + "model_id": 36089, + "year_id": 36107, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36112, + "make_id": 35383, + "model_id": 36089, + "year_id": 36112, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36113, + "make_id": 35383, + "model_id": 36089, + "year_id": 36112, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36114, + "make_id": 35383, + "model_id": 36089, + "year_id": 36112, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36115, + "make_id": 35383, + "model_id": 36089, + "year_id": 36115, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36116, + "make_id": 35383, + "model_id": 36089, + "year_id": 36115, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36117, + "make_id": 35383, + "model_id": 36089, + "year_id": 36115, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36118, + "make_id": 35383, + "model_id": 36089, + "year_id": 36115, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36119, + "make_id": 35383, + "model_id": 36089, + "year_id": 36115, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36120, + "make_id": 35383, + "model_id": 36089, + "year_id": 36115, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36121, + "make_id": 35383, + "model_id": 36089, + "year_id": 36121, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36122, + "make_id": 35383, + "model_id": 36089, + "year_id": 36121, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36123, + "make_id": 35383, + "model_id": 36089, + "year_id": 36121, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36124, + "make_id": 35383, + "model_id": 36089, + "year_id": 36121, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36125, + "make_id": 35383, + "model_id": 36089, + "year_id": 36121, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36126, + "make_id": 35383, + "model_id": 36089, + "year_id": 36121, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36127, + "make_id": 35383, + "model_id": 36089, + "year_id": 36127, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36128, + "make_id": 35383, + "model_id": 36089, + "year_id": 36127, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36129, + "make_id": 35383, + "model_id": 36089, + "year_id": 36127, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36130, + "make_id": 35383, + "model_id": 36089, + "year_id": 36127, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36131, + "make_id": 35383, + "model_id": 36089, + "year_id": 36131, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36132, + "make_id": 35383, + "model_id": 36089, + "year_id": 36131, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36133, + "make_id": 35383, + "model_id": 36089, + "year_id": 36131, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36134, + "make_id": 35383, + "model_id": 36089, + "year_id": 36131, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36135, + "make_id": 35383, + "model_id": 36089, + "year_id": 36135, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36136, + "make_id": 35383, + "model_id": 36089, + "year_id": 36135, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36137, + "make_id": 35383, + "model_id": 36089, + "year_id": 36135, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36138, + "make_id": 35383, + "model_id": 36089, + "year_id": 36135, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36139, + "make_id": 35383, + "model_id": 36089, + "year_id": 36139, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36140, + "make_id": 35383, + "model_id": 36089, + "year_id": 36139, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36141, + "make_id": 35383, + "model_id": 36089, + "year_id": 36139, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36142, + "make_id": 35383, + "model_id": 36089, + "year_id": 36139, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36143, + "make_id": 35383, + "model_id": 36089, + "year_id": 36143, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36144, + "make_id": 35383, + "model_id": 36089, + "year_id": 36143, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36145, + "make_id": 35383, + "model_id": 36089, + "year_id": 36143, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36146, + "make_id": 35383, + "model_id": 36089, + "year_id": 36143, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36147, + "make_id": 35383, + "model_id": 36089, + "year_id": 36143, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36148, + "make_id": 35383, + "model_id": 36089, + "year_id": 36148, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36149, + "make_id": 35383, + "model_id": 36089, + "year_id": 36148, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36150, + "make_id": 35383, + "model_id": 36089, + "year_id": 36148, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36151, + "make_id": 35383, + "model_id": 36089, + "year_id": 36148, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36152, + "make_id": 35383, + "model_id": 36089, + "year_id": 36148, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36153, + "make_id": 35383, + "model_id": 36089, + "year_id": 36153, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36154, + "make_id": 35383, + "model_id": 36089, + "year_id": 36153, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36155, + "make_id": 35383, + "model_id": 36089, + "year_id": 36153, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36156, + "make_id": 35383, + "model_id": 36089, + "year_id": 36156, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36157, + "make_id": 35383, + "model_id": 36089, + "year_id": 36156, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36158, + "make_id": 35383, + "model_id": 36089, + "year_id": 36156, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36159, + "make_id": 35383, + "model_id": 36089, + "year_id": 36159, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36160, + "make_id": 35383, + "model_id": 36089, + "year_id": 36159, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36161, + "make_id": 35383, + "model_id": 36089, + "year_id": 36159, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36162, + "make_id": 35383, + "model_id": 36089, + "year_id": 36162, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36163, + "make_id": 35383, + "model_id": 36089, + "year_id": 36163, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36164, + "make_id": 35383, + "model_id": 36089, + "year_id": 36164, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36165, + "make_id": 35383, + "model_id": 36089, + "year_id": 36164, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36166, + "make_id": 35383, + "model_id": 36089, + "year_id": 36164, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36167, + "make_id": 35383, + "model_id": 36089, + "year_id": 36164, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36168, + "make_id": 35383, + "model_id": 36089, + "year_id": 36164, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36169, + "make_id": 35383, + "model_id": 36089, + "year_id": 36169, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 36170, + "make_id": 35383, + "model_id": 36089, + "year_id": 36169, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 36171, + "make_id": 35383, + "model_id": 36089, + "year_id": 36169, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36172, + "make_id": 35383, + "model_id": 36089, + "year_id": 36169, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36173, + "make_id": 35383, + "model_id": 36089, + "year_id": 36169, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36174, + "make_id": 35383, + "model_id": 36089, + "year_id": 36174, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 36175, + "make_id": 35383, + "model_id": 36089, + "year_id": 36174, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 36176, + "make_id": 35383, + "model_id": 36089, + "year_id": 36174, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36177, + "make_id": 35383, + "model_id": 36089, + "year_id": 36174, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36178, + "make_id": 35383, + "model_id": 36089, + "year_id": 36174, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36179, + "make_id": 35383, + "model_id": 36089, + "year_id": 36174, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36180, + "make_id": 35383, + "model_id": 36089, + "year_id": 36174, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36181, + "make_id": 35383, + "model_id": 36089, + "year_id": 36181, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 36182, + "make_id": 35383, + "model_id": 36089, + "year_id": 36181, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36183, + "make_id": 35383, + "model_id": 36089, + "year_id": 36181, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 36184, + "make_id": 35383, + "model_id": 36089, + "year_id": 36181, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36185, + "make_id": 35383, + "model_id": 36089, + "year_id": 36181, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36186, + "make_id": 35383, + "model_id": 36089, + "year_id": 36186, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automated Manual" + }, + { + "id": 36187, + "make_id": 35383, + "model_id": 36089, + "year_id": 36186, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36188, + "make_id": 35383, + "model_id": 36188, + "year_id": 36188, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36189, + "make_id": 35383, + "model_id": 36188, + "year_id": 36189, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36190, + "make_id": 35383, + "model_id": 36188, + "year_id": 36190, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36191, + "make_id": 35383, + "model_id": 36188, + "year_id": 36190, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36192, + "make_id": 35383, + "model_id": 36188, + "year_id": 36192, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36193, + "make_id": 35383, + "model_id": 36188, + "year_id": 36192, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36194, + "make_id": 35383, + "model_id": 36188, + "year_id": 36192, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36195, + "make_id": 35383, + "model_id": 36188, + "year_id": 36195, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36196, + "make_id": 35383, + "model_id": 36188, + "year_id": 36195, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36197, + "make_id": 35383, + "model_id": 36188, + "year_id": 36195, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36198, + "make_id": 35383, + "model_id": 36188, + "year_id": 36195, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36199, + "make_id": 35383, + "model_id": 36188, + "year_id": 36195, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36200, + "make_id": 35383, + "model_id": 36188, + "year_id": 36200, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36201, + "make_id": 35383, + "model_id": 36188, + "year_id": 36200, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36202, + "make_id": 35383, + "model_id": 36188, + "year_id": 36200, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36203, + "make_id": 35383, + "model_id": 36188, + "year_id": 36203, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36204, + "make_id": 35383, + "model_id": 36188, + "year_id": 36204, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36205, + "make_id": 35383, + "model_id": 36188, + "year_id": 36205, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36206, + "make_id": 35383, + "model_id": 36206, + "year_id": 36206, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36207, + "make_id": 35383, + "model_id": 36206, + "year_id": 36207, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36208, + "make_id": 35383, + "model_id": 36206, + "year_id": 36207, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36209, + "make_id": 35383, + "model_id": 36209, + "year_id": 36209, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36210, + "make_id": 35383, + "model_id": 36209, + "year_id": 36209, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36211, + "make_id": 35383, + "model_id": 36209, + "year_id": 36211, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36212, + "make_id": 35383, + "model_id": 36209, + "year_id": 36211, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36213, + "make_id": 35383, + "model_id": 36209, + "year_id": 36213, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36214, + "make_id": 35383, + "model_id": 36209, + "year_id": 36213, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36215, + "make_id": 35383, + "model_id": 36209, + "year_id": 36215, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36216, + "make_id": 35383, + "model_id": 36209, + "year_id": 36215, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36217, + "make_id": 35383, + "model_id": 36209, + "year_id": 36215, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36218, + "make_id": 35383, + "model_id": 36209, + "year_id": 36215, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36219, + "make_id": 35383, + "model_id": 36209, + "year_id": 36215, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36220, + "make_id": 35383, + "model_id": 36209, + "year_id": 36220, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36221, + "make_id": 35383, + "model_id": 36209, + "year_id": 36220, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36222, + "make_id": 35383, + "model_id": 36209, + "year_id": 36222, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36223, + "make_id": 35383, + "model_id": 36209, + "year_id": 36222, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36224, + "make_id": 35383, + "model_id": 36209, + "year_id": 36224, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36225, + "make_id": 35383, + "model_id": 36209, + "year_id": 36224, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36226, + "make_id": 35383, + "model_id": 36209, + "year_id": 36224, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36227, + "make_id": 35383, + "model_id": 36209, + "year_id": 36227, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36228, + "make_id": 35383, + "model_id": 36209, + "year_id": 36227, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36229, + "make_id": 35383, + "model_id": 36209, + "year_id": 36227, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36230, + "make_id": 35383, + "model_id": 36209, + "year_id": 36230, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36231, + "make_id": 35383, + "model_id": 36209, + "year_id": 36230, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36232, + "make_id": 35383, + "model_id": 36209, + "year_id": 36230, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36233, + "make_id": 35383, + "model_id": 36209, + "year_id": 36230, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36234, + "make_id": 35383, + "model_id": 36209, + "year_id": 36234, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36235, + "make_id": 35383, + "model_id": 36209, + "year_id": 36234, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36236, + "make_id": 35383, + "model_id": 36209, + "year_id": 36234, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36237, + "make_id": 35383, + "model_id": 36209, + "year_id": 36234, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36238, + "make_id": 35383, + "model_id": 36209, + "year_id": 36234, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36239, + "make_id": 35383, + "model_id": 36209, + "year_id": 36234, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36240, + "make_id": 35383, + "model_id": 36209, + "year_id": 36240, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36241, + "make_id": 35383, + "model_id": 36209, + "year_id": 36240, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36242, + "make_id": 35383, + "model_id": 36209, + "year_id": 36240, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36243, + "make_id": 35383, + "model_id": 36209, + "year_id": 36240, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36244, + "make_id": 35383, + "model_id": 36209, + "year_id": 36244, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36245, + "make_id": 35383, + "model_id": 36209, + "year_id": 36244, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36246, + "make_id": 35383, + "model_id": 36209, + "year_id": 36244, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36247, + "make_id": 35383, + "model_id": 36209, + "year_id": 36244, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36248, + "make_id": 35383, + "model_id": 36209, + "year_id": 36248, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36249, + "make_id": 35383, + "model_id": 36209, + "year_id": 36248, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36250, + "make_id": 35383, + "model_id": 36209, + "year_id": 36248, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36251, + "make_id": 35383, + "model_id": 36209, + "year_id": 36248, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36252, + "make_id": 35383, + "model_id": 36209, + "year_id": 36252, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36253, + "make_id": 35383, + "model_id": 36209, + "year_id": 36252, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36254, + "make_id": 35383, + "model_id": 36209, + "year_id": 36252, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36255, + "make_id": 35383, + "model_id": 36209, + "year_id": 36252, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36256, + "make_id": 35383, + "model_id": 36209, + "year_id": 36256, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36257, + "make_id": 35383, + "model_id": 36209, + "year_id": 36256, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36258, + "make_id": 35383, + "model_id": 36209, + "year_id": 36256, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36259, + "make_id": 35383, + "model_id": 36209, + "year_id": 36256, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36260, + "make_id": 35383, + "model_id": 36209, + "year_id": 36256, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36261, + "make_id": 35383, + "model_id": 36209, + "year_id": 36261, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36262, + "make_id": 35383, + "model_id": 36209, + "year_id": 36261, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36263, + "make_id": 35383, + "model_id": 36209, + "year_id": 36261, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36264, + "make_id": 35383, + "model_id": 36209, + "year_id": 36261, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36265, + "make_id": 35383, + "model_id": 36209, + "year_id": 36261, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36266, + "make_id": 35383, + "model_id": 36209, + "year_id": 36266, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36267, + "make_id": 35383, + "model_id": 36209, + "year_id": 36266, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36268, + "make_id": 35383, + "model_id": 36209, + "year_id": 36266, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36269, + "make_id": 35383, + "model_id": 36209, + "year_id": 36269, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36270, + "make_id": 35383, + "model_id": 36209, + "year_id": 36269, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36271, + "make_id": 35383, + "model_id": 36209, + "year_id": 36271, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36272, + "make_id": 35383, + "model_id": 36209, + "year_id": 36272, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36273, + "make_id": 35383, + "model_id": 36273, + "year_id": 36273, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36274, + "make_id": 35383, + "model_id": 36273, + "year_id": 36274, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36275, + "make_id": 35383, + "model_id": 36273, + "year_id": 36275, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36276, + "make_id": 35383, + "model_id": 36273, + "year_id": 36275, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36277, + "make_id": 35383, + "model_id": 36273, + "year_id": 36277, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36278, + "make_id": 35383, + "model_id": 36273, + "year_id": 36277, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36279, + "make_id": 35383, + "model_id": 36273, + "year_id": 36277, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36280, + "make_id": 35383, + "model_id": 36273, + "year_id": 36280, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36281, + "make_id": 35383, + "model_id": 36273, + "year_id": 36280, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36282, + "make_id": 35383, + "model_id": 36273, + "year_id": 36280, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36283, + "make_id": 35383, + "model_id": 36273, + "year_id": 36280, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36284, + "make_id": 35383, + "model_id": 36273, + "year_id": 36280, + "cylinders": 8, + "displacement": 4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36285, + "make_id": 35383, + "model_id": 36273, + "year_id": 36285, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36286, + "make_id": 35383, + "model_id": 36273, + "year_id": 36285, + "cylinders": 4, + "displacement": 1.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36287, + "make_id": 35383, + "model_id": 36273, + "year_id": 36285, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36288, + "make_id": 35383, + "model_id": 36273, + "year_id": 36288, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36289, + "make_id": 35383, + "model_id": 36273, + "year_id": 36289, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36290, + "make_id": 35383, + "model_id": 36290, + "year_id": 36290, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36291, + "make_id": 35383, + "model_id": 36290, + "year_id": 36291, + "cylinders": 6, + "displacement": 2.8, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36292, + "make_id": 35383, + "model_id": 36290, + "year_id": 36291, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36293, + "make_id": 35383, + "model_id": 36293, + "year_id": 36293, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36294, + "make_id": 35383, + "model_id": 36293, + "year_id": 36293, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36295, + "make_id": 35383, + "model_id": 36293, + "year_id": 36295, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36296, + "make_id": 35383, + "model_id": 36293, + "year_id": 36295, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36297, + "make_id": 35383, + "model_id": 36293, + "year_id": 36297, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36298, + "make_id": 35383, + "model_id": 36293, + "year_id": 36297, + "cylinders": 12, + "displacement": 6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36299, + "make_id": 35383, + "model_id": 36299, + "year_id": 36299, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36300, + "make_id": 35383, + "model_id": 36299, + "year_id": 36299, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36301, + "make_id": 35383, + "model_id": 36299, + "year_id": 36299, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36302, + "make_id": 35383, + "model_id": 36299, + "year_id": 36299, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36303, + "make_id": 35383, + "model_id": 36299, + "year_id": 36299, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36304, + "make_id": 35383, + "model_id": 36299, + "year_id": 36299, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36305, + "make_id": 35383, + "model_id": 36299, + "year_id": 36299, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36306, + "make_id": 35383, + "model_id": 36299, + "year_id": 36299, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36307, + "make_id": 35383, + "model_id": 36299, + "year_id": 36299, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36308, + "make_id": 35383, + "model_id": 36299, + "year_id": 36299, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36309, + "make_id": 35383, + "model_id": 36299, + "year_id": 36309, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36310, + "make_id": 35383, + "model_id": 36299, + "year_id": 36309, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36311, + "make_id": 35383, + "model_id": 36299, + "year_id": 36309, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36312, + "make_id": 35383, + "model_id": 36299, + "year_id": 36312, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36313, + "make_id": 35383, + "model_id": 36299, + "year_id": 36312, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36314, + "make_id": 35383, + "model_id": 36299, + "year_id": 36314, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36315, + "make_id": 35383, + "model_id": 36299, + "year_id": 36314, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36316, + "make_id": 35383, + "model_id": 36299, + "year_id": 36316, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36317, + "make_id": 35383, + "model_id": 36299, + "year_id": 36316, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36318, + "make_id": 35383, + "model_id": 36318, + "year_id": 36318, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36319, + "make_id": 35383, + "model_id": 36318, + "year_id": 36319, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36320, + "make_id": 35383, + "model_id": 36318, + "year_id": 36320, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36321, + "make_id": 35383, + "model_id": 36318, + "year_id": 36321, + "cylinders": 5, + "displacement": 2.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36322, + "make_id": 35383, + "model_id": 36322, + "year_id": 36322, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36323, + "make_id": 35383, + "model_id": 36322, + "year_id": 36322, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36324, + "make_id": 35383, + "model_id": 36322, + "year_id": 36322, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36325, + "make_id": 35383, + "model_id": 36322, + "year_id": 36322, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36326, + "make_id": 35383, + "model_id": 36322, + "year_id": 36322, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36327, + "make_id": 35383, + "model_id": 36322, + "year_id": 36322, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36328, + "make_id": 35383, + "model_id": 36322, + "year_id": 36322, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36329, + "make_id": 35383, + "model_id": 36322, + "year_id": 36322, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36330, + "make_id": 35383, + "model_id": 36322, + "year_id": 36322, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36331, + "make_id": 35383, + "model_id": 36322, + "year_id": 36322, + "cylinders": 5, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36332, + "make_id": 35383, + "model_id": 36322, + "year_id": 36332, + "cylinders": 4, + "displacement": 1.6, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36333, + "make_id": 35383, + "model_id": 36322, + "year_id": 36332, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36334, + "make_id": 35383, + "model_id": 36322, + "year_id": 36332, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36335, + "make_id": 35383, + "model_id": 36322, + "year_id": 36335, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36336, + "make_id": 35383, + "model_id": 36322, + "year_id": 36335, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36337, + "make_id": 35383, + "model_id": 36322, + "year_id": 36335, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36338, + "make_id": 35383, + "model_id": 36322, + "year_id": 36335, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36339, + "make_id": 35383, + "model_id": 36322, + "year_id": 36339, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36340, + "make_id": 35383, + "model_id": 36322, + "year_id": 36339, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36341, + "make_id": 35383, + "model_id": 36322, + "year_id": 36341, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36342, + "make_id": 35383, + "model_id": 36322, + "year_id": 36341, + "cylinders": 5, + "displacement": 2.2, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36343, + "make_id": 35383, + "model_id": 36343, + "year_id": 36343, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36344, + "make_id": 35383, + "model_id": 36343, + "year_id": 36344, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36345, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36346, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 36347, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36348, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 36349, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 36350, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36351, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36352, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36353, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36354, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36355, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.6, + "drive": "", + "transmission": "4-Speed Manual" + }, + { + "id": 36356, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36357, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36358, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36359, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.7, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36360, + "make_id": 35383, + "model_id": 36345, + "year_id": 36345, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36361, + "make_id": 35383, + "model_id": 36345, + "year_id": 36361, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36362, + "make_id": 35383, + "model_id": 36345, + "year_id": 36361, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36363, + "make_id": 35383, + "model_id": 36345, + "year_id": 36363, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36364, + "make_id": 35383, + "model_id": 36345, + "year_id": 36363, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36365, + "make_id": 35383, + "model_id": 36345, + "year_id": 36365, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36366, + "make_id": 35383, + "model_id": 36345, + "year_id": 36365, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36367, + "make_id": 35383, + "model_id": 36345, + "year_id": 36367, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36368, + "make_id": 35383, + "model_id": 36345, + "year_id": 36367, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36369, + "make_id": 35383, + "model_id": 36369, + "year_id": 36369, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36370, + "make_id": 35383, + "model_id": 36369, + "year_id": 36369, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36371, + "make_id": 35383, + "model_id": 36369, + "year_id": 36369, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36372, + "make_id": 35383, + "model_id": 36369, + "year_id": 36369, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36373, + "make_id": 35383, + "model_id": 36373, + "year_id": 36373, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36374, + "make_id": 35383, + "model_id": 36373, + "year_id": 36373, + "cylinders": 6, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36375, + "make_id": 35383, + "model_id": 36373, + "year_id": 36375, + "cylinders": 6, + "displacement": 4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36376, + "make_id": 35383, + "model_id": 36373, + "year_id": 36375, + "cylinders": 6, + "displacement": 3.8, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36377, + "make_id": 35383, + "model_id": 36373, + "year_id": 36377, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36378, + "make_id": 35383, + "model_id": 36373, + "year_id": 36378, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36379, + "make_id": 35383, + "model_id": 36373, + "year_id": 36379, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36380, + "make_id": 35383, + "model_id": 36373, + "year_id": 36380, + "cylinders": 6, + "displacement": 3.6, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36381, + "make_id": 35383, + "model_id": 36381, + "year_id": 36381, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36382, + "make_id": 35383, + "model_id": 36381, + "year_id": 36381, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36383, + "make_id": 35383, + "model_id": 36381, + "year_id": 36381, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36384, + "make_id": 35383, + "model_id": 36381, + "year_id": 36381, + "cylinders": 4, + "displacement": 1.8, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36385, + "make_id": 35383, + "model_id": 36381, + "year_id": 36385, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36386, + "make_id": 35383, + "model_id": 36381, + "year_id": 36385, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36387, + "make_id": 35383, + "model_id": 36381, + "year_id": 36387, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36388, + "make_id": 35383, + "model_id": 36381, + "year_id": 36387, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36389, + "make_id": 35383, + "model_id": 36381, + "year_id": 36389, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36390, + "make_id": 35383, + "model_id": 36381, + "year_id": 36389, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36391, + "make_id": 35383, + "model_id": 36391, + "year_id": 36391, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36392, + "make_id": 35383, + "model_id": 36391, + "year_id": 36392, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36393, + "make_id": 35383, + "model_id": 36391, + "year_id": 36393, + "cylinders": 4, + "displacement": 1.8, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36394, + "make_id": 35383, + "model_id": 36394, + "year_id": 36394, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36395, + "make_id": 35383, + "model_id": 36394, + "year_id": 36394, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36396, + "make_id": 35383, + "model_id": 36394, + "year_id": 36396, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36397, + "make_id": 35383, + "model_id": 36394, + "year_id": 36396, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36398, + "make_id": 35383, + "model_id": 36394, + "year_id": 36398, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36399, + "make_id": 35383, + "model_id": 36394, + "year_id": 36398, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36400, + "make_id": 35383, + "model_id": 36394, + "year_id": 36400, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36401, + "make_id": 35383, + "model_id": 36394, + "year_id": 36400, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36402, + "make_id": 35383, + "model_id": 36394, + "year_id": 36402, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36403, + "make_id": 35383, + "model_id": 36394, + "year_id": 36402, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36404, + "make_id": 35383, + "model_id": 36394, + "year_id": 36404, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36405, + "make_id": 35383, + "model_id": 36394, + "year_id": 36404, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36406, + "make_id": 35383, + "model_id": 36394, + "year_id": 36406, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36407, + "make_id": 35383, + "model_id": 36394, + "year_id": 36407, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36408, + "make_id": 35383, + "model_id": 36408, + "year_id": 36408, + "cylinders": 4, + "displacement": 2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36409, + "make_id": 35383, + "model_id": 36408, + "year_id": 36409, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36410, + "make_id": 35383, + "model_id": 36408, + "year_id": 36410, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36411, + "make_id": 35383, + "model_id": 36408, + "year_id": 36411, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36412, + "make_id": 35383, + "model_id": 36408, + "year_id": 36412, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36413, + "make_id": 35383, + "model_id": 36408, + "year_id": 36413, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36414, + "make_id": 35383, + "model_id": 36408, + "year_id": 36414, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36415, + "make_id": 35383, + "model_id": 36408, + "year_id": 36415, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36416, + "make_id": 35383, + "model_id": 36416, + "year_id": 36416, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36417, + "make_id": 35383, + "model_id": 36416, + "year_id": 36416, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36418, + "make_id": 35383, + "model_id": 36416, + "year_id": 36416, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36419, + "make_id": 35383, + "model_id": 36416, + "year_id": 36419, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36420, + "make_id": 35383, + "model_id": 36416, + "year_id": 36419, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36421, + "make_id": 35383, + "model_id": 36416, + "year_id": 36421, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36422, + "make_id": 35383, + "model_id": 36416, + "year_id": 36421, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36423, + "make_id": 35383, + "model_id": 36416, + "year_id": 36421, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36424, + "make_id": 35383, + "model_id": 36416, + "year_id": 36424, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36425, + "make_id": 35383, + "model_id": 36416, + "year_id": 36424, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36426, + "make_id": 35383, + "model_id": 36416, + "year_id": 36424, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36427, + "make_id": 35383, + "model_id": 36416, + "year_id": 36427, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36428, + "make_id": 35383, + "model_id": 36416, + "year_id": 36427, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36429, + "make_id": 35383, + "model_id": 36416, + "year_id": 36427, + "cylinders": 10, + "displacement": 5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36430, + "make_id": 35383, + "model_id": 36416, + "year_id": 36430, + "cylinders": 8, + "displacement": 4.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36431, + "make_id": 35383, + "model_id": 36416, + "year_id": 36430, + "cylinders": 6, + "displacement": 3.6, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36432, + "make_id": 35383, + "model_id": 36416, + "year_id": 36430, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36433, + "make_id": 35383, + "model_id": 36416, + "year_id": 36433, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36434, + "make_id": 35383, + "model_id": 36416, + "year_id": 36433, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36435, + "make_id": 35383, + "model_id": 36416, + "year_id": 36435, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36436, + "make_id": 35383, + "model_id": 36416, + "year_id": 36435, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36437, + "make_id": 35383, + "model_id": 36416, + "year_id": 36437, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36438, + "make_id": 35383, + "model_id": 36416, + "year_id": 36437, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36439, + "make_id": 35383, + "model_id": 36416, + "year_id": 36439, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36440, + "make_id": 35383, + "model_id": 36416, + "year_id": 36439, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36441, + "make_id": 35383, + "model_id": 36416, + "year_id": 36441, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36442, + "make_id": 35383, + "model_id": 36416, + "year_id": 36441, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36443, + "make_id": 35383, + "model_id": 36416, + "year_id": 36443, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36444, + "make_id": 35383, + "model_id": 36416, + "year_id": 36443, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36445, + "make_id": 35383, + "model_id": 36416, + "year_id": 36445, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36446, + "make_id": 35383, + "model_id": 36416, + "year_id": 36445, + "cylinders": 6, + "displacement": 3.6, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36447, + "make_id": 35383, + "model_id": 36447, + "year_id": 36447, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36448, + "make_id": 35383, + "model_id": 36447, + "year_id": 36448, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36449, + "make_id": 35383, + "model_id": 36447, + "year_id": 36449, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36450, + "make_id": 35383, + "model_id": 36447, + "year_id": 36450, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36451, + "make_id": 35383, + "model_id": 36447, + "year_id": 36451, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36452, + "make_id": 35383, + "model_id": 36452, + "year_id": 36452, + "cylinders": 4, + "displacement": 1.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36453, + "make_id": 35383, + "model_id": 36452, + "year_id": 36452, + "cylinders": 4, + "displacement": 1.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36454, + "make_id": 35383, + "model_id": 36452, + "year_id": 36452, + "cylinders": 4, + "displacement": 1.9, + "drive": "2-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36455, + "make_id": 35383, + "model_id": 36452, + "year_id": 36452, + "cylinders": 4, + "displacement": 1.9, + "drive": "2-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36456, + "make_id": 35383, + "model_id": 36452, + "year_id": 36456, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36457, + "make_id": 35383, + "model_id": 36452, + "year_id": 36456, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36458, + "make_id": 35383, + "model_id": 36452, + "year_id": 36456, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36459, + "make_id": 35383, + "model_id": 36452, + "year_id": 36456, + "cylinders": 4, + "displacement": 1.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36460, + "make_id": 35383, + "model_id": 36460, + "year_id": 36460, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36461, + "make_id": 35383, + "model_id": 36460, + "year_id": 36461, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36462, + "make_id": 35383, + "model_id": 36460, + "year_id": 36462, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36463, + "make_id": 35383, + "model_id": 36460, + "year_id": 36463, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36464, + "make_id": 35383, + "model_id": 36460, + "year_id": 36464, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36465, + "make_id": 35383, + "model_id": 36460, + "year_id": 36465, + "cylinders": 4, + "displacement": 2.1, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36466, + "make_id": 35383, + "model_id": 36466, + "year_id": 36466, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36467, + "make_id": 35383, + "model_id": 36466, + "year_id": 36466, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36468, + "make_id": 35383, + "model_id": 36466, + "year_id": 36468, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36469, + "make_id": 35383, + "model_id": 36466, + "year_id": 36468, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36470, + "make_id": 35383, + "model_id": 36466, + "year_id": 36470, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36471, + "make_id": 35383, + "model_id": 36466, + "year_id": 36470, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36472, + "make_id": 35383, + "model_id": 36466, + "year_id": 36472, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36473, + "make_id": 35383, + "model_id": 36466, + "year_id": 36472, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36474, + "make_id": 35383, + "model_id": 36466, + "year_id": 36474, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36475, + "make_id": 35383, + "model_id": 36466, + "year_id": 36474, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36476, + "make_id": 35383, + "model_id": 36466, + "year_id": 36476, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "3-Speed Automatic" + }, + { + "id": 36477, + "make_id": 35383, + "model_id": 36466, + "year_id": 36476, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36478, + "make_id": 36478, + "model_id": 36478, + "year_id": 36478, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36479, + "make_id": 36478, + "model_id": 36478, + "year_id": 36478, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36480, + "make_id": 36478, + "model_id": 36478, + "year_id": 36478, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36481, + "make_id": 36478, + "model_id": 36478, + "year_id": 36478, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36482, + "make_id": 36478, + "model_id": 36478, + "year_id": 36478, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36483, + "make_id": 36478, + "model_id": 36478, + "year_id": 36478, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36484, + "make_id": 36478, + "model_id": 36478, + "year_id": 36484, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36485, + "make_id": 36478, + "model_id": 36478, + "year_id": 36484, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36486, + "make_id": 36478, + "model_id": 36478, + "year_id": 36486, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36487, + "make_id": 36478, + "model_id": 36478, + "year_id": 36486, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36488, + "make_id": 36478, + "model_id": 36478, + "year_id": 36488, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36489, + "make_id": 36478, + "model_id": 36478, + "year_id": 36488, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36490, + "make_id": 36478, + "model_id": 36490, + "year_id": 36490, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36491, + "make_id": 36478, + "model_id": 36490, + "year_id": 36490, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36492, + "make_id": 36478, + "model_id": 36490, + "year_id": 36490, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36493, + "make_id": 36478, + "model_id": 36490, + "year_id": 36490, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36494, + "make_id": 36478, + "model_id": 36490, + "year_id": 36490, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36495, + "make_id": 36478, + "model_id": 36490, + "year_id": 36490, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36496, + "make_id": 36478, + "model_id": 36490, + "year_id": 36490, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36497, + "make_id": 36478, + "model_id": 36490, + "year_id": 36490, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36498, + "make_id": 36478, + "model_id": 36490, + "year_id": 36498, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36499, + "make_id": 36478, + "model_id": 36490, + "year_id": 36498, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36500, + "make_id": 36478, + "model_id": 36490, + "year_id": 36498, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36501, + "make_id": 36478, + "model_id": 36490, + "year_id": 36498, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36502, + "make_id": 36478, + "model_id": 36490, + "year_id": 36498, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36503, + "make_id": 36478, + "model_id": 36490, + "year_id": 36498, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36504, + "make_id": 36478, + "model_id": 36490, + "year_id": 36504, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36505, + "make_id": 36478, + "model_id": 36490, + "year_id": 36504, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36506, + "make_id": 36478, + "model_id": 36490, + "year_id": 36504, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36507, + "make_id": 36478, + "model_id": 36490, + "year_id": 36504, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36508, + "make_id": 36478, + "model_id": 36490, + "year_id": 36508, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36509, + "make_id": 36478, + "model_id": 36490, + "year_id": 36508, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36510, + "make_id": 36478, + "model_id": 36510, + "year_id": 36510, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36511, + "make_id": 36478, + "model_id": 36510, + "year_id": 36510, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36512, + "make_id": 36478, + "model_id": 36510, + "year_id": 36512, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36513, + "make_id": 36478, + "model_id": 36510, + "year_id": 36512, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36514, + "make_id": 36478, + "model_id": 36514, + "year_id": 36514, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36515, + "make_id": 36478, + "model_id": 36514, + "year_id": 36514, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36516, + "make_id": 36478, + "model_id": 36514, + "year_id": 36516, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36517, + "make_id": 36478, + "model_id": 36514, + "year_id": 36517, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36518, + "make_id": 36478, + "model_id": 36514, + "year_id": 36517, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36519, + "make_id": 36478, + "model_id": 36514, + "year_id": 36519, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36520, + "make_id": 36478, + "model_id": 36514, + "year_id": 36519, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36521, + "make_id": 36478, + "model_id": 36521, + "year_id": 36521, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36522, + "make_id": 36478, + "model_id": 36521, + "year_id": 36521, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36523, + "make_id": 36478, + "model_id": 36521, + "year_id": 36523, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36524, + "make_id": 36478, + "model_id": 36521, + "year_id": 36523, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36525, + "make_id": 36478, + "model_id": 36521, + "year_id": 36523, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36526, + "make_id": 36478, + "model_id": 36521, + "year_id": 36526, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36527, + "make_id": 36478, + "model_id": 36521, + "year_id": 36526, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36528, + "make_id": 36478, + "model_id": 36521, + "year_id": 36526, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36529, + "make_id": 36478, + "model_id": 36521, + "year_id": 36529, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36530, + "make_id": 36478, + "model_id": 36521, + "year_id": 36529, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36531, + "make_id": 36478, + "model_id": 36521, + "year_id": 36529, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36532, + "make_id": 36478, + "model_id": 36521, + "year_id": 36532, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36533, + "make_id": 36478, + "model_id": 36521, + "year_id": 36532, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36534, + "make_id": 36478, + "model_id": 36521, + "year_id": 36532, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36535, + "make_id": 36478, + "model_id": 36521, + "year_id": 36532, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36536, + "make_id": 36478, + "model_id": 36536, + "year_id": 36536, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36537, + "make_id": 36478, + "model_id": 36536, + "year_id": 36536, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36538, + "make_id": 36478, + "model_id": 36536, + "year_id": 36538, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36539, + "make_id": 36478, + "model_id": 36536, + "year_id": 36538, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36540, + "make_id": 36478, + "model_id": 36536, + "year_id": 36540, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36541, + "make_id": 36478, + "model_id": 36536, + "year_id": 36540, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36542, + "make_id": 36478, + "model_id": 36536, + "year_id": 36542, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36543, + "make_id": 36478, + "model_id": 36536, + "year_id": 36542, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36544, + "make_id": 36478, + "model_id": 36544, + "year_id": 36544, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36545, + "make_id": 36478, + "model_id": 36544, + "year_id": 36545, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36546, + "make_id": 36478, + "model_id": 36544, + "year_id": 36546, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36547, + "make_id": 36478, + "model_id": 36544, + "year_id": 36547, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36548, + "make_id": 36478, + "model_id": 36544, + "year_id": 36548, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36549, + "make_id": 36478, + "model_id": 36549, + "year_id": 36549, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36550, + "make_id": 36478, + "model_id": 36549, + "year_id": 36549, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36551, + "make_id": 36478, + "model_id": 36549, + "year_id": 36551, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36552, + "make_id": 36478, + "model_id": 36549, + "year_id": 36551, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36553, + "make_id": 36478, + "model_id": 36549, + "year_id": 36553, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36554, + "make_id": 36478, + "model_id": 36549, + "year_id": 36553, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36555, + "make_id": 36478, + "model_id": 36549, + "year_id": 36555, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36556, + "make_id": 36478, + "model_id": 36549, + "year_id": 36555, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36557, + "make_id": 36478, + "model_id": 36549, + "year_id": 36555, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36558, + "make_id": 36478, + "model_id": 36549, + "year_id": 36555, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36559, + "make_id": 36478, + "model_id": 36559, + "year_id": 36559, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36560, + "make_id": 36478, + "model_id": 36559, + "year_id": 36559, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36561, + "make_id": 36478, + "model_id": 36559, + "year_id": 36561, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36562, + "make_id": 36478, + "model_id": 36559, + "year_id": 36561, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36563, + "make_id": 36478, + "model_id": 36559, + "year_id": 36563, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36564, + "make_id": 36478, + "model_id": 36559, + "year_id": 36563, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36565, + "make_id": 36478, + "model_id": 36559, + "year_id": 36565, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36566, + "make_id": 36478, + "model_id": 36559, + "year_id": 36565, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36567, + "make_id": 36478, + "model_id": 36559, + "year_id": 36565, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36568, + "make_id": 36478, + "model_id": 36559, + "year_id": 36565, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36569, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36570, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36571, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36572, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36573, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36574, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36575, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36576, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36577, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36578, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36579, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36580, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36581, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36582, + "make_id": 36478, + "model_id": 36569, + "year_id": 36569, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36583, + "make_id": 36478, + "model_id": 36583, + "year_id": 36583, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36584, + "make_id": 36478, + "model_id": 36583, + "year_id": 36583, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36585, + "make_id": 36478, + "model_id": 36583, + "year_id": 36583, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36586, + "make_id": 36478, + "model_id": 36583, + "year_id": 36583, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36587, + "make_id": 36478, + "model_id": 36583, + "year_id": 36583, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36588, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36589, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36590, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36591, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36592, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36593, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36594, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "3-Speed Automatic" + }, + { + "id": 36595, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36596, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.1, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36597, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.1, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36598, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36599, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36600, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36601, + "make_id": 36478, + "model_id": 36588, + "year_id": 36588, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36602, + "make_id": 36478, + "model_id": 36602, + "year_id": 36602, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36603, + "make_id": 36478, + "model_id": 36602, + "year_id": 36602, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36604, + "make_id": 36478, + "model_id": 36602, + "year_id": 36602, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36605, + "make_id": 36478, + "model_id": 36602, + "year_id": 36602, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36606, + "make_id": 36478, + "model_id": 36602, + "year_id": 36602, + "cylinders": 4, + "displacement": 2.1, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36607, + "make_id": 36478, + "model_id": 36607, + "year_id": 36607, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36608, + "make_id": 36478, + "model_id": 36607, + "year_id": 36607, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36609, + "make_id": 36478, + "model_id": 36607, + "year_id": 36607, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36610, + "make_id": 36478, + "model_id": 36607, + "year_id": 36607, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36611, + "make_id": 36478, + "model_id": 36607, + "year_id": 36607, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36612, + "make_id": 36478, + "model_id": 36607, + "year_id": 36607, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36613, + "make_id": 36478, + "model_id": 36607, + "year_id": 36613, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36614, + "make_id": 36478, + "model_id": 36607, + "year_id": 36613, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36615, + "make_id": 36478, + "model_id": 36607, + "year_id": 36615, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36616, + "make_id": 36478, + "model_id": 36607, + "year_id": 36615, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36617, + "make_id": 36478, + "model_id": 36607, + "year_id": 36617, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36618, + "make_id": 36478, + "model_id": 36607, + "year_id": 36617, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36619, + "make_id": 36478, + "model_id": 36619, + "year_id": 36619, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36620, + "make_id": 36478, + "model_id": 36619, + "year_id": 36619, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36621, + "make_id": 36478, + "model_id": 36621, + "year_id": 36621, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36622, + "make_id": 36478, + "model_id": 36621, + "year_id": 36621, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36623, + "make_id": 36478, + "model_id": 36623, + "year_id": 36623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36624, + "make_id": 36478, + "model_id": 36623, + "year_id": 36623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36625, + "make_id": 36478, + "model_id": 36623, + "year_id": 36623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36626, + "make_id": 36478, + "model_id": 36623, + "year_id": 36623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36627, + "make_id": 36478, + "model_id": 36623, + "year_id": 36623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36628, + "make_id": 36478, + "model_id": 36623, + "year_id": 36623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36629, + "make_id": 36478, + "model_id": 36623, + "year_id": 36623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36630, + "make_id": 36478, + "model_id": 36623, + "year_id": 36623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36631, + "make_id": 36478, + "model_id": 36623, + "year_id": 36623, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36632, + "make_id": 36478, + "model_id": 36623, + "year_id": 36632, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36633, + "make_id": 36478, + "model_id": 36623, + "year_id": 36632, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36634, + "make_id": 36478, + "model_id": 36623, + "year_id": 36632, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36635, + "make_id": 36478, + "model_id": 36623, + "year_id": 36632, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36636, + "make_id": 36478, + "model_id": 36623, + "year_id": 36632, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36637, + "make_id": 36478, + "model_id": 36623, + "year_id": 36632, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36638, + "make_id": 36478, + "model_id": 36623, + "year_id": 36638, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36639, + "make_id": 36478, + "model_id": 36623, + "year_id": 36638, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36640, + "make_id": 36478, + "model_id": 36623, + "year_id": 36638, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36641, + "make_id": 36478, + "model_id": 36623, + "year_id": 36638, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36642, + "make_id": 36478, + "model_id": 36623, + "year_id": 36642, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36643, + "make_id": 36478, + "model_id": 36623, + "year_id": 36642, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36644, + "make_id": 36478, + "model_id": 36644, + "year_id": 36644, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36645, + "make_id": 36478, + "model_id": 36644, + "year_id": 36644, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36646, + "make_id": 36478, + "model_id": 36644, + "year_id": 36644, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36647, + "make_id": 36478, + "model_id": 36644, + "year_id": 36644, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36648, + "make_id": 36478, + "model_id": 36644, + "year_id": 36644, + "cylinders": 6, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36649, + "make_id": 36478, + "model_id": 36644, + "year_id": 36644, + "cylinders": 6, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36650, + "make_id": 36478, + "model_id": 36644, + "year_id": 36644, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36651, + "make_id": 36478, + "model_id": 36644, + "year_id": 36651, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36652, + "make_id": 36478, + "model_id": 36644, + "year_id": 36651, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36653, + "make_id": 36478, + "model_id": 36644, + "year_id": 36651, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36654, + "make_id": 36478, + "model_id": 36644, + "year_id": 36651, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36655, + "make_id": 36478, + "model_id": 36644, + "year_id": 36651, + "cylinders": 6, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36656, + "make_id": 36478, + "model_id": 36644, + "year_id": 36651, + "cylinders": 6, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36657, + "make_id": 36478, + "model_id": 36644, + "year_id": 36651, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36658, + "make_id": 36478, + "model_id": 36644, + "year_id": 36658, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36659, + "make_id": 36478, + "model_id": 36644, + "year_id": 36658, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36660, + "make_id": 36478, + "model_id": 36644, + "year_id": 36658, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36661, + "make_id": 36478, + "model_id": 36644, + "year_id": 36658, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36662, + "make_id": 36478, + "model_id": 36644, + "year_id": 36658, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36663, + "make_id": 36478, + "model_id": 36644, + "year_id": 36658, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36664, + "make_id": 36478, + "model_id": 36644, + "year_id": 36664, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36665, + "make_id": 36478, + "model_id": 36644, + "year_id": 36664, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36666, + "make_id": 36478, + "model_id": 36644, + "year_id": 36664, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36667, + "make_id": 36478, + "model_id": 36644, + "year_id": 36664, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36668, + "make_id": 36478, + "model_id": 36644, + "year_id": 36664, + "cylinders": 6, + "displacement": 2.8, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36669, + "make_id": 36478, + "model_id": 36669, + "year_id": 36669, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36670, + "make_id": 36478, + "model_id": 36669, + "year_id": 36669, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36671, + "make_id": 36478, + "model_id": 36669, + "year_id": 36669, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36672, + "make_id": 36478, + "model_id": 36669, + "year_id": 36669, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36673, + "make_id": 36478, + "model_id": 36669, + "year_id": 36669, + "cylinders": 6, + "displacement": 2.4, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36674, + "make_id": 36478, + "model_id": 36669, + "year_id": 36674, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36675, + "make_id": 36478, + "model_id": 36669, + "year_id": 36674, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36676, + "make_id": 36478, + "model_id": 36669, + "year_id": 36674, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36677, + "make_id": 36478, + "model_id": 36669, + "year_id": 36674, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36678, + "make_id": 36478, + "model_id": 36669, + "year_id": 36678, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36679, + "make_id": 36478, + "model_id": 36669, + "year_id": 36678, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36680, + "make_id": 36478, + "model_id": 36669, + "year_id": 36678, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 36681, + "make_id": 36478, + "model_id": 36669, + "year_id": 36678, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36682, + "make_id": 36478, + "model_id": 36682, + "year_id": 36682, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36683, + "make_id": 36478, + "model_id": 36682, + "year_id": 36682, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36684, + "make_id": 36478, + "model_id": 36682, + "year_id": 36682, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36685, + "make_id": 36478, + "model_id": 36682, + "year_id": 36682, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36686, + "make_id": 36478, + "model_id": 36682, + "year_id": 36682, + "cylinders": 6, + "displacement": 2.9, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36687, + "make_id": 36478, + "model_id": 36682, + "year_id": 36682, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36688, + "make_id": 36478, + "model_id": 36682, + "year_id": 36682, + "cylinders": 4, + "displacement": 2.3, + "drive": "", + "transmission": "5-Speed Manual" + }, + { + "id": 36689, + "make_id": 36478, + "model_id": 36682, + "year_id": 36682, + "cylinders": 6, + "displacement": 2.4, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36690, + "make_id": 36478, + "model_id": 36682, + "year_id": 36682, + "cylinders": 6, + "displacement": 2.9, + "drive": "", + "transmission": "4-Speed Automatic" + }, + { + "id": 36691, + "make_id": 36478, + "model_id": 36691, + "year_id": 36691, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36692, + "make_id": 36478, + "model_id": 36691, + "year_id": 36692, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36693, + "make_id": 36478, + "model_id": 36693, + "year_id": 36693, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36694, + "make_id": 36478, + "model_id": 36693, + "year_id": 36693, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36695, + "make_id": 36478, + "model_id": 36693, + "year_id": 36693, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36696, + "make_id": 36478, + "model_id": 36693, + "year_id": 36696, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36697, + "make_id": 36478, + "model_id": 36693, + "year_id": 36696, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36698, + "make_id": 36478, + "model_id": 36693, + "year_id": 36696, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36699, + "make_id": 36478, + "model_id": 36693, + "year_id": 36696, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36700, + "make_id": 36478, + "model_id": 36693, + "year_id": 36696, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36701, + "make_id": 36478, + "model_id": 36693, + "year_id": 36701, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36702, + "make_id": 36478, + "model_id": 36693, + "year_id": 36701, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36703, + "make_id": 36478, + "model_id": 36693, + "year_id": 36701, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36704, + "make_id": 36478, + "model_id": 36693, + "year_id": 36704, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36705, + "make_id": 36478, + "model_id": 36693, + "year_id": 36704, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36706, + "make_id": 36478, + "model_id": 36693, + "year_id": 36704, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36707, + "make_id": 36478, + "model_id": 36693, + "year_id": 36704, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36708, + "make_id": 36478, + "model_id": 36708, + "year_id": 36708, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36709, + "make_id": 36478, + "model_id": 36709, + "year_id": 36709, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36710, + "make_id": 36478, + "model_id": 36710, + "year_id": 36710, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36711, + "make_id": 36478, + "model_id": 36711, + "year_id": 36711, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36712, + "make_id": 36478, + "model_id": 36712, + "year_id": 36712, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36713, + "make_id": 36478, + "model_id": 36713, + "year_id": 36713, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36714, + "make_id": 36478, + "model_id": 36714, + "year_id": 36714, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36715, + "make_id": 36478, + "model_id": 36714, + "year_id": 36715, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36716, + "make_id": 36478, + "model_id": 36714, + "year_id": 36715, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36717, + "make_id": 36478, + "model_id": 36714, + "year_id": 36717, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36718, + "make_id": 36478, + "model_id": 36714, + "year_id": 36717, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36719, + "make_id": 36478, + "model_id": 36714, + "year_id": 36719, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36720, + "make_id": 36478, + "model_id": 36714, + "year_id": 36719, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36721, + "make_id": 36478, + "model_id": 36721, + "year_id": 36721, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36722, + "make_id": 36478, + "model_id": 36721, + "year_id": 36722, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36723, + "make_id": 36478, + "model_id": 36721, + "year_id": 36723, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36724, + "make_id": 36478, + "model_id": 36721, + "year_id": 36724, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36725, + "make_id": 36478, + "model_id": 36721, + "year_id": 36725, + "cylinders": 6, + "displacement": 2.5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36726, + "make_id": 36478, + "model_id": 36721, + "year_id": 36725, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36727, + "make_id": 36478, + "model_id": 36727, + "year_id": 36727, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36728, + "make_id": 36478, + "model_id": 36728, + "year_id": 36728, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36729, + "make_id": 36478, + "model_id": 36729, + "year_id": 36729, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36730, + "make_id": 36478, + "model_id": 36729, + "year_id": 36729, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36731, + "make_id": 36478, + "model_id": 36729, + "year_id": 36729, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36732, + "make_id": 36478, + "model_id": 36729, + "year_id": 36729, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36733, + "make_id": 36478, + "model_id": 36729, + "year_id": 36733, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36734, + "make_id": 36478, + "model_id": 36729, + "year_id": 36733, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36735, + "make_id": 36478, + "model_id": 36729, + "year_id": 36733, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36736, + "make_id": 36478, + "model_id": 36729, + "year_id": 36733, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36737, + "make_id": 36478, + "model_id": 36729, + "year_id": 36737, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36738, + "make_id": 36478, + "model_id": 36729, + "year_id": 36737, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36739, + "make_id": 36478, + "model_id": 36729, + "year_id": 36737, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36740, + "make_id": 36478, + "model_id": 36729, + "year_id": 36737, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36741, + "make_id": 36478, + "model_id": 36729, + "year_id": 36741, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36742, + "make_id": 36478, + "model_id": 36729, + "year_id": 36741, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36743, + "make_id": 36478, + "model_id": 36729, + "year_id": 36743, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36744, + "make_id": 36478, + "model_id": 36729, + "year_id": 36743, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36745, + "make_id": 36478, + "model_id": 36729, + "year_id": 36745, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36746, + "make_id": 36478, + "model_id": 36729, + "year_id": 36745, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36747, + "make_id": 36478, + "model_id": 36747, + "year_id": 36747, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36748, + "make_id": 36478, + "model_id": 36747, + "year_id": 36747, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36749, + "make_id": 36478, + "model_id": 36747, + "year_id": 36747, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36750, + "make_id": 36478, + "model_id": 36747, + "year_id": 36750, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36751, + "make_id": 36478, + "model_id": 36747, + "year_id": 36750, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36752, + "make_id": 36478, + "model_id": 36747, + "year_id": 36750, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36753, + "make_id": 36478, + "model_id": 36747, + "year_id": 36753, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36754, + "make_id": 36478, + "model_id": 36747, + "year_id": 36753, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36755, + "make_id": 36478, + "model_id": 36747, + "year_id": 36755, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36756, + "make_id": 36478, + "model_id": 36747, + "year_id": 36755, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36757, + "make_id": 36478, + "model_id": 36747, + "year_id": 36757, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36758, + "make_id": 36478, + "model_id": 36747, + "year_id": 36758, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36759, + "make_id": 36478, + "model_id": 36759, + "year_id": 36759, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36760, + "make_id": 36478, + "model_id": 36759, + "year_id": 36759, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36761, + "make_id": 36478, + "model_id": 36759, + "year_id": 36759, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36762, + "make_id": 36478, + "model_id": 36759, + "year_id": 36762, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36763, + "make_id": 36478, + "model_id": 36759, + "year_id": 36762, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36764, + "make_id": 36478, + "model_id": 36759, + "year_id": 36762, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36765, + "make_id": 36478, + "model_id": 36759, + "year_id": 36765, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36766, + "make_id": 36478, + "model_id": 36759, + "year_id": 36765, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36767, + "make_id": 36478, + "model_id": 36759, + "year_id": 36765, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36768, + "make_id": 36478, + "model_id": 36759, + "year_id": 36768, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36769, + "make_id": 36478, + "model_id": 36759, + "year_id": 36768, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36770, + "make_id": 36478, + "model_id": 36759, + "year_id": 36768, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36771, + "make_id": 36478, + "model_id": 36759, + "year_id": 36771, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36772, + "make_id": 36478, + "model_id": 36759, + "year_id": 36771, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36773, + "make_id": 36478, + "model_id": 36759, + "year_id": 36771, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36774, + "make_id": 36478, + "model_id": 36759, + "year_id": 36774, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36775, + "make_id": 36478, + "model_id": 36759, + "year_id": 36774, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36776, + "make_id": 36478, + "model_id": 36759, + "year_id": 36774, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36777, + "make_id": 36478, + "model_id": 36759, + "year_id": 36777, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36778, + "make_id": 36478, + "model_id": 36759, + "year_id": 36777, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36779, + "make_id": 36478, + "model_id": 36759, + "year_id": 36777, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36780, + "make_id": 36478, + "model_id": 36759, + "year_id": 36780, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36781, + "make_id": 36478, + "model_id": 36759, + "year_id": 36781, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36782, + "make_id": 36478, + "model_id": 36759, + "year_id": 36781, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36783, + "make_id": 36478, + "model_id": 36759, + "year_id": 36783, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36784, + "make_id": 36478, + "model_id": 36759, + "year_id": 36783, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36785, + "make_id": 36478, + "model_id": 36759, + "year_id": 36785, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36786, + "make_id": 36478, + "model_id": 36759, + "year_id": 36785, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36787, + "make_id": 36478, + "model_id": 36787, + "year_id": 36787, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36788, + "make_id": 36478, + "model_id": 36787, + "year_id": 36787, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36789, + "make_id": 36478, + "model_id": 36787, + "year_id": 36787, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36790, + "make_id": 36478, + "model_id": 36787, + "year_id": 36790, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36791, + "make_id": 36478, + "model_id": 36787, + "year_id": 36790, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36792, + "make_id": 36478, + "model_id": 36787, + "year_id": 36790, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36793, + "make_id": 36478, + "model_id": 36787, + "year_id": 36793, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36794, + "make_id": 36478, + "model_id": 36787, + "year_id": 36793, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36795, + "make_id": 36478, + "model_id": 36795, + "year_id": 36795, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36796, + "make_id": 36478, + "model_id": 36796, + "year_id": 36796, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36797, + "make_id": 36478, + "model_id": 36797, + "year_id": 36797, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36798, + "make_id": 36478, + "model_id": 36797, + "year_id": 36798, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36799, + "make_id": 36478, + "model_id": 36797, + "year_id": 36799, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36800, + "make_id": 36478, + "model_id": 36797, + "year_id": 36800, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36801, + "make_id": 36478, + "model_id": 36797, + "year_id": 36801, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36802, + "make_id": 36478, + "model_id": 36797, + "year_id": 36801, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36803, + "make_id": 36478, + "model_id": 36797, + "year_id": 36801, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36804, + "make_id": 36478, + "model_id": 36797, + "year_id": 36804, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36805, + "make_id": 36478, + "model_id": 36797, + "year_id": 36804, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36806, + "make_id": 36478, + "model_id": 36797, + "year_id": 36804, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36807, + "make_id": 36478, + "model_id": 36797, + "year_id": 36804, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36808, + "make_id": 36478, + "model_id": 36797, + "year_id": 36804, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36809, + "make_id": 36478, + "model_id": 36797, + "year_id": 36804, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36810, + "make_id": 36478, + "model_id": 36797, + "year_id": 36810, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36811, + "make_id": 36478, + "model_id": 36797, + "year_id": 36810, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36812, + "make_id": 36478, + "model_id": 36797, + "year_id": 36810, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36813, + "make_id": 36478, + "model_id": 36797, + "year_id": 36810, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36814, + "make_id": 36478, + "model_id": 36797, + "year_id": 36810, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36815, + "make_id": 36478, + "model_id": 36797, + "year_id": 36810, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36816, + "make_id": 36478, + "model_id": 36797, + "year_id": 36816, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36817, + "make_id": 36478, + "model_id": 36797, + "year_id": 36816, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36818, + "make_id": 36478, + "model_id": 36797, + "year_id": 36816, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36819, + "make_id": 36478, + "model_id": 36797, + "year_id": 36816, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36820, + "make_id": 36478, + "model_id": 36797, + "year_id": 36816, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36821, + "make_id": 36478, + "model_id": 36797, + "year_id": 36816, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36822, + "make_id": 36478, + "model_id": 36797, + "year_id": 36822, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36823, + "make_id": 36478, + "model_id": 36797, + "year_id": 36822, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36824, + "make_id": 36478, + "model_id": 36797, + "year_id": 36822, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36825, + "make_id": 36478, + "model_id": 36797, + "year_id": 36822, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36826, + "make_id": 36478, + "model_id": 36797, + "year_id": 36822, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36827, + "make_id": 36478, + "model_id": 36797, + "year_id": 36822, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36828, + "make_id": 36478, + "model_id": 36797, + "year_id": 36828, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36829, + "make_id": 36478, + "model_id": 36797, + "year_id": 36828, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36830, + "make_id": 36478, + "model_id": 36797, + "year_id": 36828, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36831, + "make_id": 36478, + "model_id": 36797, + "year_id": 36828, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36832, + "make_id": 36478, + "model_id": 36797, + "year_id": 36828, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36833, + "make_id": 36478, + "model_id": 36797, + "year_id": 36828, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36834, + "make_id": 36478, + "model_id": 36797, + "year_id": 36834, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36835, + "make_id": 36478, + "model_id": 36797, + "year_id": 36834, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36836, + "make_id": 36478, + "model_id": 36797, + "year_id": 36834, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36837, + "make_id": 36478, + "model_id": 36797, + "year_id": 36834, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36838, + "make_id": 36478, + "model_id": 36797, + "year_id": 36834, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36839, + "make_id": 36478, + "model_id": 36797, + "year_id": 36834, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36840, + "make_id": 36478, + "model_id": 36797, + "year_id": 36840, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36841, + "make_id": 36478, + "model_id": 36841, + "year_id": 36841, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36842, + "make_id": 36478, + "model_id": 36841, + "year_id": 36841, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36843, + "make_id": 36478, + "model_id": 36841, + "year_id": 36841, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36844, + "make_id": 36478, + "model_id": 36841, + "year_id": 36841, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36845, + "make_id": 36478, + "model_id": 36841, + "year_id": 36841, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36846, + "make_id": 36478, + "model_id": 36841, + "year_id": 36841, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36847, + "make_id": 36478, + "model_id": 36841, + "year_id": 36847, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36848, + "make_id": 36478, + "model_id": 36841, + "year_id": 36847, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36849, + "make_id": 36478, + "model_id": 36841, + "year_id": 36847, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36850, + "make_id": 36478, + "model_id": 36841, + "year_id": 36847, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36851, + "make_id": 36478, + "model_id": 36841, + "year_id": 36847, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36852, + "make_id": 36478, + "model_id": 36841, + "year_id": 36847, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36853, + "make_id": 36478, + "model_id": 36841, + "year_id": 36853, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36854, + "make_id": 36478, + "model_id": 36841, + "year_id": 36853, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36855, + "make_id": 36478, + "model_id": 36841, + "year_id": 36853, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36856, + "make_id": 36478, + "model_id": 36841, + "year_id": 36853, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36857, + "make_id": 36478, + "model_id": 36841, + "year_id": 36853, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36858, + "make_id": 36478, + "model_id": 36841, + "year_id": 36853, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36859, + "make_id": 36478, + "model_id": 36841, + "year_id": 36859, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36860, + "make_id": 36478, + "model_id": 36841, + "year_id": 36859, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36861, + "make_id": 36478, + "model_id": 36841, + "year_id": 36859, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36862, + "make_id": 36478, + "model_id": 36841, + "year_id": 36859, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36863, + "make_id": 36478, + "model_id": 36841, + "year_id": 36859, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36864, + "make_id": 36478, + "model_id": 36841, + "year_id": 36859, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36865, + "make_id": 36478, + "model_id": 36841, + "year_id": 36865, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36866, + "make_id": 36478, + "model_id": 36841, + "year_id": 36865, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36867, + "make_id": 36478, + "model_id": 36841, + "year_id": 36865, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36868, + "make_id": 36478, + "model_id": 36841, + "year_id": 36865, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36869, + "make_id": 36478, + "model_id": 36841, + "year_id": 36865, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36870, + "make_id": 36478, + "model_id": 36841, + "year_id": 36865, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36871, + "make_id": 36478, + "model_id": 36841, + "year_id": 36871, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36872, + "make_id": 36478, + "model_id": 36841, + "year_id": 36871, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36873, + "make_id": 36478, + "model_id": 36841, + "year_id": 36871, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36874, + "make_id": 36478, + "model_id": 36841, + "year_id": 36871, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36875, + "make_id": 36478, + "model_id": 36841, + "year_id": 36871, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36876, + "make_id": 36478, + "model_id": 36841, + "year_id": 36871, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36877, + "make_id": 36478, + "model_id": 36841, + "year_id": 36871, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36878, + "make_id": 36478, + "model_id": 36841, + "year_id": 36871, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36879, + "make_id": 36478, + "model_id": 36841, + "year_id": 36879, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36880, + "make_id": 36478, + "model_id": 36841, + "year_id": 36879, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36881, + "make_id": 36478, + "model_id": 36841, + "year_id": 36879, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36882, + "make_id": 36478, + "model_id": 36841, + "year_id": 36879, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36883, + "make_id": 36478, + "model_id": 36841, + "year_id": 36879, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36884, + "make_id": 36478, + "model_id": 36841, + "year_id": 36879, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36885, + "make_id": 36478, + "model_id": 36841, + "year_id": 36885, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36886, + "make_id": 36478, + "model_id": 36841, + "year_id": 36885, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36887, + "make_id": 36478, + "model_id": 36841, + "year_id": 36885, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36888, + "make_id": 36478, + "model_id": 36841, + "year_id": 36885, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36889, + "make_id": 36478, + "model_id": 36841, + "year_id": 36885, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36890, + "make_id": 36478, + "model_id": 36841, + "year_id": 36885, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36891, + "make_id": 36478, + "model_id": 36841, + "year_id": 36891, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36892, + "make_id": 36478, + "model_id": 36841, + "year_id": 36891, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36893, + "make_id": 36478, + "model_id": 36841, + "year_id": 36891, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36894, + "make_id": 36478, + "model_id": 36841, + "year_id": 36891, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36895, + "make_id": 36478, + "model_id": 36841, + "year_id": 36891, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36896, + "make_id": 36478, + "model_id": 36841, + "year_id": 36896, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36897, + "make_id": 36478, + "model_id": 36841, + "year_id": 36897, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36898, + "make_id": 36478, + "model_id": 36841, + "year_id": 36897, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36899, + "make_id": 36478, + "model_id": 36841, + "year_id": 36899, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36900, + "make_id": 36478, + "model_id": 36841, + "year_id": 36899, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36901, + "make_id": 36478, + "model_id": 36841, + "year_id": 36899, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36902, + "make_id": 36478, + "model_id": 36841, + "year_id": 36902, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36903, + "make_id": 36478, + "model_id": 36841, + "year_id": 36902, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36904, + "make_id": 36478, + "model_id": 36841, + "year_id": 36902, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36905, + "make_id": 36478, + "model_id": 36841, + "year_id": 36905, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36906, + "make_id": 36478, + "model_id": 36841, + "year_id": 36905, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36907, + "make_id": 36478, + "model_id": 36841, + "year_id": 36905, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36908, + "make_id": 36478, + "model_id": 36841, + "year_id": 36905, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36909, + "make_id": 36478, + "model_id": 36841, + "year_id": 36909, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36910, + "make_id": 36478, + "model_id": 36841, + "year_id": 36909, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36911, + "make_id": 36478, + "model_id": 36841, + "year_id": 36909, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36912, + "make_id": 36478, + "model_id": 36841, + "year_id": 36909, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36913, + "make_id": 36478, + "model_id": 36841, + "year_id": 36909, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36914, + "make_id": 36478, + "model_id": 36841, + "year_id": 36914, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36915, + "make_id": 36478, + "model_id": 36841, + "year_id": 36914, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36916, + "make_id": 36478, + "model_id": 36841, + "year_id": 36914, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36917, + "make_id": 36478, + "model_id": 36917, + "year_id": 36917, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36918, + "make_id": 36478, + "model_id": 36917, + "year_id": 36918, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36919, + "make_id": 36478, + "model_id": 36919, + "year_id": 36919, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36920, + "make_id": 36478, + "model_id": 36919, + "year_id": 36919, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36921, + "make_id": 36478, + "model_id": 36919, + "year_id": 36921, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36922, + "make_id": 36478, + "model_id": 36919, + "year_id": 36921, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36923, + "make_id": 36478, + "model_id": 36923, + "year_id": 36923, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36924, + "make_id": 36478, + "model_id": 36923, + "year_id": 36924, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36925, + "make_id": 36478, + "model_id": 36925, + "year_id": 36925, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36926, + "make_id": 36478, + "model_id": 36925, + "year_id": 36925, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36927, + "make_id": 36478, + "model_id": 36925, + "year_id": 36927, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36928, + "make_id": 36478, + "model_id": 36925, + "year_id": 36927, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36929, + "make_id": 36478, + "model_id": 36925, + "year_id": 36929, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36930, + "make_id": 36478, + "model_id": 36925, + "year_id": 36929, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36931, + "make_id": 36478, + "model_id": 36925, + "year_id": 36931, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 36932, + "make_id": 36478, + "model_id": 36925, + "year_id": 36931, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36933, + "make_id": 36478, + "model_id": 36933, + "year_id": 36933, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36934, + "make_id": 36478, + "model_id": 36933, + "year_id": 36933, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36935, + "make_id": 36478, + "model_id": 36933, + "year_id": 36933, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36936, + "make_id": 36478, + "model_id": 36933, + "year_id": 36933, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36937, + "make_id": 36478, + "model_id": 36933, + "year_id": 36933, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36938, + "make_id": 36478, + "model_id": 36933, + "year_id": 36938, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36939, + "make_id": 36478, + "model_id": 36933, + "year_id": 36938, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36940, + "make_id": 36478, + "model_id": 36933, + "year_id": 36938, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36941, + "make_id": 36478, + "model_id": 36933, + "year_id": 36938, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36942, + "make_id": 36478, + "model_id": 36933, + "year_id": 36938, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36943, + "make_id": 36478, + "model_id": 36933, + "year_id": 36938, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36944, + "make_id": 36478, + "model_id": 36933, + "year_id": 36938, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36945, + "make_id": 36478, + "model_id": 36933, + "year_id": 36945, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36946, + "make_id": 36478, + "model_id": 36933, + "year_id": 36945, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36947, + "make_id": 36478, + "model_id": 36933, + "year_id": 36945, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36948, + "make_id": 36478, + "model_id": 36933, + "year_id": 36945, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36949, + "make_id": 36478, + "model_id": 36933, + "year_id": 36945, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 36950, + "make_id": 36478, + "model_id": 36933, + "year_id": 36945, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36951, + "make_id": 36478, + "model_id": 36951, + "year_id": 36951, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36952, + "make_id": 36478, + "model_id": 36951, + "year_id": 36951, + "cylinders": 6, + "displacement": 2.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36953, + "make_id": 36478, + "model_id": 36951, + "year_id": 36953, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36954, + "make_id": 36478, + "model_id": 36951, + "year_id": 36953, + "cylinders": 6, + "displacement": 2.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36955, + "make_id": 36478, + "model_id": 36951, + "year_id": 36955, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36956, + "make_id": 36478, + "model_id": 36951, + "year_id": 36956, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36957, + "make_id": 36478, + "model_id": 36951, + "year_id": 36956, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36958, + "make_id": 36478, + "model_id": 36951, + "year_id": 36956, + "cylinders": 6, + "displacement": 2.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36959, + "make_id": 36478, + "model_id": 36951, + "year_id": 36959, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36960, + "make_id": 36478, + "model_id": 36951, + "year_id": 36959, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36961, + "make_id": 36478, + "model_id": 36951, + "year_id": 36961, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36962, + "make_id": 36478, + "model_id": 36951, + "year_id": 36961, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36963, + "make_id": 36478, + "model_id": 36951, + "year_id": 36961, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36964, + "make_id": 36478, + "model_id": 36951, + "year_id": 36964, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36965, + "make_id": 36478, + "model_id": 36951, + "year_id": 36964, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36966, + "make_id": 36478, + "model_id": 36951, + "year_id": 36964, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36967, + "make_id": 36478, + "model_id": 36951, + "year_id": 36964, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36968, + "make_id": 36478, + "model_id": 36951, + "year_id": 36968, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36969, + "make_id": 36478, + "model_id": 36951, + "year_id": 36968, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36970, + "make_id": 36478, + "model_id": 36951, + "year_id": 36968, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36971, + "make_id": 36478, + "model_id": 36951, + "year_id": 36971, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36972, + "make_id": 36478, + "model_id": 36951, + "year_id": 36971, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36973, + "make_id": 36478, + "model_id": 36951, + "year_id": 36971, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36974, + "make_id": 36478, + "model_id": 36951, + "year_id": 36974, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36975, + "make_id": 36478, + "model_id": 36951, + "year_id": 36974, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36976, + "make_id": 36478, + "model_id": 36951, + "year_id": 36976, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36977, + "make_id": 36478, + "model_id": 36951, + "year_id": 36976, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36978, + "make_id": 36478, + "model_id": 36951, + "year_id": 36978, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36979, + "make_id": 36478, + "model_id": 36951, + "year_id": 36978, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36980, + "make_id": 36478, + "model_id": 36951, + "year_id": 36980, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36981, + "make_id": 36478, + "model_id": 36951, + "year_id": 36980, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36982, + "make_id": 36478, + "model_id": 36951, + "year_id": 36982, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 36983, + "make_id": 36478, + "model_id": 36951, + "year_id": 36982, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36984, + "make_id": 36478, + "model_id": 36951, + "year_id": 36984, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36985, + "make_id": 36478, + "model_id": 36985, + "year_id": 36985, + "cylinders": 6, + "displacement": 2.8, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36986, + "make_id": 36478, + "model_id": 36985, + "year_id": 36985, + "cylinders": 6, + "displacement": 2.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36987, + "make_id": 36478, + "model_id": 36985, + "year_id": 36987, + "cylinders": 6, + "displacement": 2.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36988, + "make_id": 36478, + "model_id": 36985, + "year_id": 36987, + "cylinders": 6, + "displacement": 2.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36989, + "make_id": 36478, + "model_id": 36985, + "year_id": 36989, + "cylinders": 6, + "displacement": 2.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36990, + "make_id": 36478, + "model_id": 36985, + "year_id": 36989, + "cylinders": 6, + "displacement": 2.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36991, + "make_id": 36478, + "model_id": 36991, + "year_id": 36991, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36992, + "make_id": 36478, + "model_id": 36991, + "year_id": 36991, + "cylinders": 6, + "displacement": 2.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36993, + "make_id": 36478, + "model_id": 36991, + "year_id": 36991, + "cylinders": 6, + "displacement": 2.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36994, + "make_id": 36478, + "model_id": 36994, + "year_id": 36994, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36995, + "make_id": 36478, + "model_id": 36994, + "year_id": 36995, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36996, + "make_id": 36478, + "model_id": 36994, + "year_id": 36995, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 36997, + "make_id": 36478, + "model_id": 36997, + "year_id": 36997, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 36998, + "make_id": 36478, + "model_id": 36997, + "year_id": 36998, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 36999, + "make_id": 36478, + "model_id": 36997, + "year_id": 36999, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37000, + "make_id": 36478, + "model_id": 36997, + "year_id": 37000, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37001, + "make_id": 36478, + "model_id": 36997, + "year_id": 37001, + "cylinders": 4, + "displacement": 1.9, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37002, + "make_id": 36478, + "model_id": 37002, + "year_id": 37002, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37003, + "make_id": 36478, + "model_id": 37002, + "year_id": 37002, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37004, + "make_id": 36478, + "model_id": 37002, + "year_id": 37002, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37005, + "make_id": 36478, + "model_id": 37002, + "year_id": 37002, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37006, + "make_id": 36478, + "model_id": 37002, + "year_id": 37002, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37007, + "make_id": 36478, + "model_id": 37002, + "year_id": 37002, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37008, + "make_id": 36478, + "model_id": 37002, + "year_id": 37008, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37009, + "make_id": 36478, + "model_id": 37002, + "year_id": 37008, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37010, + "make_id": 36478, + "model_id": 37002, + "year_id": 37008, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37011, + "make_id": 36478, + "model_id": 37002, + "year_id": 37008, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37012, + "make_id": 36478, + "model_id": 37002, + "year_id": 37008, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37013, + "make_id": 36478, + "model_id": 37002, + "year_id": 37008, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37014, + "make_id": 36478, + "model_id": 37002, + "year_id": 37014, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37015, + "make_id": 36478, + "model_id": 37002, + "year_id": 37014, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37016, + "make_id": 36478, + "model_id": 37002, + "year_id": 37014, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37017, + "make_id": 36478, + "model_id": 37002, + "year_id": 37014, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37018, + "make_id": 36478, + "model_id": 37002, + "year_id": 37014, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37019, + "make_id": 36478, + "model_id": 37002, + "year_id": 37014, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37020, + "make_id": 36478, + "model_id": 37002, + "year_id": 37020, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37021, + "make_id": 36478, + "model_id": 37002, + "year_id": 37020, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37022, + "make_id": 36478, + "model_id": 37002, + "year_id": 37020, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37023, + "make_id": 36478, + "model_id": 37002, + "year_id": 37020, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37024, + "make_id": 36478, + "model_id": 37002, + "year_id": 37020, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37025, + "make_id": 36478, + "model_id": 37002, + "year_id": 37020, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37026, + "make_id": 36478, + "model_id": 37002, + "year_id": 37026, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37027, + "make_id": 36478, + "model_id": 37002, + "year_id": 37026, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37028, + "make_id": 36478, + "model_id": 37002, + "year_id": 37026, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37029, + "make_id": 36478, + "model_id": 37002, + "year_id": 37026, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37030, + "make_id": 36478, + "model_id": 37002, + "year_id": 37026, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37031, + "make_id": 36478, + "model_id": 37002, + "year_id": 37026, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37032, + "make_id": 36478, + "model_id": 37002, + "year_id": 37032, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37033, + "make_id": 36478, + "model_id": 37002, + "year_id": 37032, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37034, + "make_id": 36478, + "model_id": 37002, + "year_id": 37032, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37035, + "make_id": 36478, + "model_id": 37002, + "year_id": 37032, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37036, + "make_id": 36478, + "model_id": 37002, + "year_id": 37032, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37037, + "make_id": 36478, + "model_id": 37002, + "year_id": 37037, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37038, + "make_id": 36478, + "model_id": 37038, + "year_id": 37038, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37039, + "make_id": 36478, + "model_id": 37038, + "year_id": 37038, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37040, + "make_id": 36478, + "model_id": 37038, + "year_id": 37038, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37041, + "make_id": 36478, + "model_id": 37038, + "year_id": 37041, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37042, + "make_id": 36478, + "model_id": 37038, + "year_id": 37041, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37043, + "make_id": 36478, + "model_id": 37038, + "year_id": 37041, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37044, + "make_id": 36478, + "model_id": 37038, + "year_id": 37041, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37045, + "make_id": 36478, + "model_id": 37038, + "year_id": 37045, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37046, + "make_id": 36478, + "model_id": 37038, + "year_id": 37045, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37047, + "make_id": 36478, + "model_id": 37038, + "year_id": 37045, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37048, + "make_id": 36478, + "model_id": 37048, + "year_id": 37048, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37049, + "make_id": 36478, + "model_id": 37048, + "year_id": 37048, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37050, + "make_id": 36478, + "model_id": 37048, + "year_id": 37050, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37051, + "make_id": 36478, + "model_id": 37048, + "year_id": 37051, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37052, + "make_id": 36478, + "model_id": 37052, + "year_id": 37052, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37053, + "make_id": 36478, + "model_id": 37052, + "year_id": 37053, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37054, + "make_id": 36478, + "model_id": 37054, + "year_id": 37054, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37055, + "make_id": 36478, + "model_id": 37054, + "year_id": 37054, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37056, + "make_id": 36478, + "model_id": 37054, + "year_id": 37054, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37057, + "make_id": 36478, + "model_id": 37054, + "year_id": 37054, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37058, + "make_id": 36478, + "model_id": 37054, + "year_id": 37054, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37059, + "make_id": 36478, + "model_id": 37054, + "year_id": 37054, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37060, + "make_id": 36478, + "model_id": 37054, + "year_id": 37054, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37061, + "make_id": 36478, + "model_id": 37054, + "year_id": 37061, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37062, + "make_id": 36478, + "model_id": 37054, + "year_id": 37061, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37063, + "make_id": 36478, + "model_id": 37054, + "year_id": 37061, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37064, + "make_id": 36478, + "model_id": 37054, + "year_id": 37061, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37065, + "make_id": 36478, + "model_id": 37054, + "year_id": 37061, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37066, + "make_id": 36478, + "model_id": 37054, + "year_id": 37061, + "cylinders": 5, + "displacement": 2.3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37067, + "make_id": 36478, + "model_id": 37054, + "year_id": 37061, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37068, + "make_id": 36478, + "model_id": 37054, + "year_id": 37068, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37069, + "make_id": 36478, + "model_id": 37054, + "year_id": 37068, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37070, + "make_id": 36478, + "model_id": 37054, + "year_id": 37068, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37071, + "make_id": 36478, + "model_id": 37054, + "year_id": 37068, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37072, + "make_id": 36478, + "model_id": 37054, + "year_id": 37068, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37073, + "make_id": 36478, + "model_id": 37054, + "year_id": 37068, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37074, + "make_id": 36478, + "model_id": 37054, + "year_id": 37068, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37075, + "make_id": 36478, + "model_id": 37054, + "year_id": 37075, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37076, + "make_id": 36478, + "model_id": 37054, + "year_id": 37075, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37077, + "make_id": 36478, + "model_id": 37054, + "year_id": 37075, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37078, + "make_id": 36478, + "model_id": 37054, + "year_id": 37075, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37079, + "make_id": 36478, + "model_id": 37054, + "year_id": 37075, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37080, + "make_id": 36478, + "model_id": 37054, + "year_id": 37075, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37081, + "make_id": 36478, + "model_id": 37054, + "year_id": 37075, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37082, + "make_id": 36478, + "model_id": 37054, + "year_id": 37082, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37083, + "make_id": 36478, + "model_id": 37054, + "year_id": 37082, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37084, + "make_id": 36478, + "model_id": 37054, + "year_id": 37082, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37085, + "make_id": 36478, + "model_id": 37054, + "year_id": 37082, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37086, + "make_id": 36478, + "model_id": 37054, + "year_id": 37082, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37087, + "make_id": 36478, + "model_id": 37054, + "year_id": 37082, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37088, + "make_id": 36478, + "model_id": 37054, + "year_id": 37088, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37089, + "make_id": 36478, + "model_id": 37054, + "year_id": 37088, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37090, + "make_id": 36478, + "model_id": 37054, + "year_id": 37088, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37091, + "make_id": 36478, + "model_id": 37054, + "year_id": 37088, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37092, + "make_id": 36478, + "model_id": 37054, + "year_id": 37088, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37093, + "make_id": 36478, + "model_id": 37054, + "year_id": 37088, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37094, + "make_id": 36478, + "model_id": 37054, + "year_id": 37094, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37095, + "make_id": 36478, + "model_id": 37054, + "year_id": 37094, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37096, + "make_id": 36478, + "model_id": 37054, + "year_id": 37094, + "cylinders": 5, + "displacement": 2.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37097, + "make_id": 36478, + "model_id": 37054, + "year_id": 37094, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37098, + "make_id": 36478, + "model_id": 37054, + "year_id": 37094, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37099, + "make_id": 36478, + "model_id": 37054, + "year_id": 37094, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37100, + "make_id": 36478, + "model_id": 37054, + "year_id": 37100, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37101, + "make_id": 36478, + "model_id": 37054, + "year_id": 37100, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37102, + "make_id": 36478, + "model_id": 37054, + "year_id": 37100, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37103, + "make_id": 36478, + "model_id": 37054, + "year_id": 37100, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37104, + "make_id": 36478, + "model_id": 37054, + "year_id": 37100, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37105, + "make_id": 36478, + "model_id": 37054, + "year_id": 37100, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37106, + "make_id": 36478, + "model_id": 37054, + "year_id": 37106, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37107, + "make_id": 36478, + "model_id": 37054, + "year_id": 37106, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37108, + "make_id": 36478, + "model_id": 37054, + "year_id": 37106, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37109, + "make_id": 36478, + "model_id": 37054, + "year_id": 37106, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37110, + "make_id": 36478, + "model_id": 37054, + "year_id": 37106, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37111, + "make_id": 36478, + "model_id": 37054, + "year_id": 37106, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37112, + "make_id": 36478, + "model_id": 37054, + "year_id": 37106, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37113, + "make_id": 36478, + "model_id": 37054, + "year_id": 37113, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37114, + "make_id": 36478, + "model_id": 37054, + "year_id": 37113, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37115, + "make_id": 36478, + "model_id": 37054, + "year_id": 37113, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37116, + "make_id": 36478, + "model_id": 37054, + "year_id": 37113, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37117, + "make_id": 36478, + "model_id": 37054, + "year_id": 37113, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37118, + "make_id": 36478, + "model_id": 37054, + "year_id": 37113, + "cylinders": 5, + "displacement": 2.4, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37119, + "make_id": 36478, + "model_id": 37054, + "year_id": 37113, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37120, + "make_id": 36478, + "model_id": 37054, + "year_id": 37120, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37121, + "make_id": 36478, + "model_id": 37054, + "year_id": 37121, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37122, + "make_id": 36478, + "model_id": 37054, + "year_id": 37122, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37123, + "make_id": 36478, + "model_id": 37123, + "year_id": 37123, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37124, + "make_id": 36478, + "model_id": 37123, + "year_id": 37123, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37125, + "make_id": 36478, + "model_id": 37123, + "year_id": 37125, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37126, + "make_id": 36478, + "model_id": 37123, + "year_id": 37125, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37127, + "make_id": 36478, + "model_id": 37123, + "year_id": 37127, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37128, + "make_id": 36478, + "model_id": 37123, + "year_id": 37127, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37129, + "make_id": 36478, + "model_id": 37123, + "year_id": 37129, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37130, + "make_id": 36478, + "model_id": 37123, + "year_id": 37129, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37131, + "make_id": 36478, + "model_id": 37131, + "year_id": 37131, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37132, + "make_id": 36478, + "model_id": 37131, + "year_id": 37132, + "cylinders": 5, + "displacement": 2.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37133, + "make_id": 36478, + "model_id": 37133, + "year_id": 37133, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37134, + "make_id": 36478, + "model_id": 37134, + "year_id": 37134, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37135, + "make_id": 36478, + "model_id": 37134, + "year_id": 37135, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37136, + "make_id": 36478, + "model_id": 37134, + "year_id": 37135, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37137, + "make_id": 36478, + "model_id": 37134, + "year_id": 37135, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37138, + "make_id": 36478, + "model_id": 37138, + "year_id": 37138, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37139, + "make_id": 36478, + "model_id": 37138, + "year_id": 37139, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37140, + "make_id": 36478, + "model_id": 37138, + "year_id": 37140, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37141, + "make_id": 36478, + "model_id": 37138, + "year_id": 37141, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37142, + "make_id": 36478, + "model_id": 37138, + "year_id": 37142, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37143, + "make_id": 36478, + "model_id": 37138, + "year_id": 37143, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37144, + "make_id": 36478, + "model_id": 37138, + "year_id": 37144, + "cylinders": 6, + "displacement": 3, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37145, + "make_id": 36478, + "model_id": 37138, + "year_id": 37144, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37146, + "make_id": 36478, + "model_id": 37138, + "year_id": 37146, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37147, + "make_id": 36478, + "model_id": 37138, + "year_id": 37146, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37148, + "make_id": 36478, + "model_id": 37148, + "year_id": 37148, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37149, + "make_id": 36478, + "model_id": 37148, + "year_id": 37148, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37150, + "make_id": 36478, + "model_id": 37148, + "year_id": 37148, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37151, + "make_id": 36478, + "model_id": 37148, + "year_id": 37151, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37152, + "make_id": 36478, + "model_id": 37148, + "year_id": 37151, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37153, + "make_id": 36478, + "model_id": 37148, + "year_id": 37151, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37154, + "make_id": 36478, + "model_id": 37148, + "year_id": 37154, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37155, + "make_id": 36478, + "model_id": 37148, + "year_id": 37154, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37156, + "make_id": 36478, + "model_id": 37148, + "year_id": 37154, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37157, + "make_id": 36478, + "model_id": 37148, + "year_id": 37154, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37158, + "make_id": 36478, + "model_id": 37148, + "year_id": 37158, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37159, + "make_id": 36478, + "model_id": 37148, + "year_id": 37158, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37160, + "make_id": 36478, + "model_id": 37148, + "year_id": 37158, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37161, + "make_id": 36478, + "model_id": 37148, + "year_id": 37161, + "cylinders": 5, + "displacement": 2.5, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37162, + "make_id": 36478, + "model_id": 37148, + "year_id": 37161, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37163, + "make_id": 36478, + "model_id": 37148, + "year_id": 37161, + "cylinders": 5, + "displacement": 2.5, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "5-Speed Automatic" + }, + { + "id": 37164, + "make_id": 36478, + "model_id": 37148, + "year_id": 37161, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37165, + "make_id": 36478, + "model_id": 37148, + "year_id": 37161, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37166, + "make_id": 36478, + "model_id": 37148, + "year_id": 37166, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37167, + "make_id": 36478, + "model_id": 37148, + "year_id": 37166, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37168, + "make_id": 36478, + "model_id": 37148, + "year_id": 37166, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37169, + "make_id": 36478, + "model_id": 37148, + "year_id": 37169, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37170, + "make_id": 36478, + "model_id": 37148, + "year_id": 37169, + "cylinders": 6, + "displacement": 3.2, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37171, + "make_id": 36478, + "model_id": 37148, + "year_id": 37169, + "cylinders": 8, + "displacement": 4.4, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37172, + "make_id": 36478, + "model_id": 37148, + "year_id": 37172, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37173, + "make_id": 36478, + "model_id": 37148, + "year_id": 37172, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37174, + "make_id": 36478, + "model_id": 37148, + "year_id": 37172, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37175, + "make_id": 36478, + "model_id": 37175, + "year_id": 37175, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37176, + "make_id": 36478, + "model_id": 37175, + "year_id": 37175, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37177, + "make_id": 36478, + "model_id": 37175, + "year_id": 37175, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37178, + "make_id": 36478, + "model_id": 37175, + "year_id": 37178, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37179, + "make_id": 36478, + "model_id": 37175, + "year_id": 37178, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37180, + "make_id": 36478, + "model_id": 37175, + "year_id": 37178, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37181, + "make_id": 36478, + "model_id": 37175, + "year_id": 37181, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37182, + "make_id": 36478, + "model_id": 37175, + "year_id": 37181, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37183, + "make_id": 36478, + "model_id": 37175, + "year_id": 37181, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37184, + "make_id": 36478, + "model_id": 37175, + "year_id": 37184, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37185, + "make_id": 36478, + "model_id": 37175, + "year_id": 37184, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37186, + "make_id": 36478, + "model_id": 37175, + "year_id": 37184, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37187, + "make_id": 36478, + "model_id": 37175, + "year_id": 37187, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37188, + "make_id": 36478, + "model_id": 37175, + "year_id": 37187, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37189, + "make_id": 36478, + "model_id": 37175, + "year_id": 37187, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37190, + "make_id": 36478, + "model_id": 37175, + "year_id": 37187, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37191, + "make_id": 36478, + "model_id": 37175, + "year_id": 37187, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37192, + "make_id": 36478, + "model_id": 37175, + "year_id": 37192, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37193, + "make_id": 36478, + "model_id": 37175, + "year_id": 37192, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37194, + "make_id": 36478, + "model_id": 37175, + "year_id": 37192, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37195, + "make_id": 36478, + "model_id": 37175, + "year_id": 37192, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37196, + "make_id": 36478, + "model_id": 37175, + "year_id": 37192, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37197, + "make_id": 36478, + "model_id": 37175, + "year_id": 37197, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37198, + "make_id": 36478, + "model_id": 37175, + "year_id": 37197, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37199, + "make_id": 36478, + "model_id": 37175, + "year_id": 37197, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37200, + "make_id": 36478, + "model_id": 37200, + "year_id": 37200, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37201, + "make_id": 36478, + "model_id": 37200, + "year_id": 37200, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37202, + "make_id": 36478, + "model_id": 37200, + "year_id": 37200, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37203, + "make_id": 36478, + "model_id": 37200, + "year_id": 37203, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37204, + "make_id": 36478, + "model_id": 37200, + "year_id": 37203, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37205, + "make_id": 36478, + "model_id": 37200, + "year_id": 37203, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37206, + "make_id": 36478, + "model_id": 37200, + "year_id": 37206, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37207, + "make_id": 36478, + "model_id": 37200, + "year_id": 37206, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37208, + "make_id": 36478, + "model_id": 37200, + "year_id": 37206, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37209, + "make_id": 36478, + "model_id": 37200, + "year_id": 37209, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37210, + "make_id": 36478, + "model_id": 37200, + "year_id": 37209, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37211, + "make_id": 36478, + "model_id": 37200, + "year_id": 37209, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37212, + "make_id": 36478, + "model_id": 37200, + "year_id": 37212, + "cylinders": 6, + "displacement": 3, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37213, + "make_id": 36478, + "model_id": 37200, + "year_id": 37212, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37214, + "make_id": 36478, + "model_id": 37200, + "year_id": 37212, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37215, + "make_id": 36478, + "model_id": 37200, + "year_id": 37215, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37216, + "make_id": 36478, + "model_id": 37200, + "year_id": 37215, + "cylinders": 5, + "displacement": 2.5, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37217, + "make_id": 36478, + "model_id": 37217, + "year_id": 37217, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37218, + "make_id": 36478, + "model_id": 37217, + "year_id": 37217, + "cylinders": 8, + "displacement": 4.4, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37219, + "make_id": 36478, + "model_id": 37217, + "year_id": 37217, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37220, + "make_id": 36478, + "model_id": 37217, + "year_id": 37220, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37221, + "make_id": 36478, + "model_id": 37217, + "year_id": 37220, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37222, + "make_id": 36478, + "model_id": 37217, + "year_id": 37222, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37223, + "make_id": 36478, + "model_id": 37217, + "year_id": 37222, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37224, + "make_id": 36478, + "model_id": 37217, + "year_id": 37224, + "cylinders": 6, + "displacement": 3.2, + "drive": "Front-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37225, + "make_id": 36478, + "model_id": 37217, + "year_id": 37224, + "cylinders": 6, + "displacement": 3.2, + "drive": "All-Wheel Drive", + "transmission": "6-Speed Automatic" + }, + { + "id": 37226, + "make_id": 36478, + "model_id": 37217, + "year_id": 37226, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37227, + "make_id": 36478, + "model_id": 37217, + "year_id": 37226, + "cylinders": 4, + "displacement": 2, + "drive": "Front-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37228, + "make_id": 36478, + "model_id": 37217, + "year_id": 37226, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37229, + "make_id": 36478, + "model_id": 37217, + "year_id": 37229, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37230, + "make_id": 36478, + "model_id": 37217, + "year_id": 37229, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37231, + "make_id": 36478, + "model_id": 37231, + "year_id": 37231, + "cylinders": 4, + "displacement": 2, + "drive": "All-Wheel Drive", + "transmission": "8-Speed Automatic" + }, + { + "id": 37232, + "make_id": 37232, + "model_id": 37232, + "year_id": 37232, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37233, + "make_id": 37232, + "model_id": 37232, + "year_id": 37233, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37234, + "make_id": 37232, + "model_id": 37232, + "year_id": 37234, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37235, + "make_id": 37232, + "model_id": 37235, + "year_id": 37235, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37236, + "make_id": 37232, + "model_id": 37235, + "year_id": 37236, + "cylinders": 8, + "displacement": 4.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37237, + "make_id": 37237, + "model_id": 37237, + "year_id": 37237, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37238, + "make_id": 37237, + "model_id": 37237, + "year_id": 37238, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37239, + "make_id": 37237, + "model_id": 37239, + "year_id": 37239, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37240, + "make_id": 37237, + "model_id": 37239, + "year_id": 37240, + "cylinders": 4, + "displacement": 2.3, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37241, + "make_id": 37237, + "model_id": 37241, + "year_id": 37241, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37242, + "make_id": 37237, + "model_id": 37241, + "year_id": 37242, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37243, + "make_id": 37237, + "model_id": 37243, + "year_id": 37243, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37244, + "make_id": 37237, + "model_id": 37243, + "year_id": 37244, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37245, + "make_id": 37237, + "model_id": 37245, + "year_id": 37245, + "cylinders": 6, + "displacement": 2.9, + "drive": "4-Wheel or All-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37246, + "make_id": 37237, + "model_id": 37246, + "year_id": 37246, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37247, + "make_id": 37237, + "model_id": 37246, + "year_id": 37247, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37248, + "make_id": 37237, + "model_id": 37248, + "year_id": 37248, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37249, + "make_id": 37237, + "model_id": 37248, + "year_id": 37249, + "cylinders": 6, + "displacement": 2.9, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37250, + "make_id": 37237, + "model_id": 37250, + "year_id": 37250, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37251, + "make_id": 37237, + "model_id": 37250, + "year_id": 37251, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37252, + "make_id": 37237, + "model_id": 37252, + "year_id": 37252, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37253, + "make_id": 37237, + "model_id": 37252, + "year_id": 37253, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37254, + "make_id": 37237, + "model_id": 37254, + "year_id": 37254, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37255, + "make_id": 37237, + "model_id": 37254, + "year_id": 37255, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37256, + "make_id": 37237, + "model_id": 37256, + "year_id": 37256, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37257, + "make_id": 37237, + "model_id": 37256, + "year_id": 37257, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37258, + "make_id": 37237, + "model_id": 37258, + "year_id": 37258, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37259, + "make_id": 37237, + "model_id": 37259, + "year_id": 37259, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37260, + "make_id": 37237, + "model_id": 37259, + "year_id": 37260, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37261, + "make_id": 37237, + "model_id": 37261, + "year_id": 37261, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37262, + "make_id": 37237, + "model_id": 37261, + "year_id": 37262, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37263, + "make_id": 37237, + "model_id": 37263, + "year_id": 37263, + "cylinders": 8, + "displacement": 5.6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37264, + "make_id": 37237, + "model_id": 37264, + "year_id": 37264, + "cylinders": 12, + "displacement": 6, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37265, + "make_id": 37237, + "model_id": 37265, + "year_id": 37265, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "4-Speed Automatic" + }, + { + "id": 37266, + "make_id": 37237, + "model_id": 37265, + "year_id": 37265, + "cylinders": 12, + "displacement": 5, + "drive": "Rear-Wheel Drive", + "transmission": "6-Speed Manual" + }, + { + "id": 37267, + "make_id": 37237, + "model_id": 37267, + "year_id": 37267, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37268, + "make_id": 37237, + "model_id": 37267, + "year_id": 37268, + "cylinders": 12, + "displacement": 4.9, + "drive": "Rear-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37269, + "make_id": 37269, + "model_id": 37269, + "year_id": 37269, + "cylinders": 4, + "displacement": 1.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 37270, + "make_id": 37269, + "model_id": 37269, + "year_id": 37269, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37271, + "make_id": 37269, + "model_id": 37271, + "year_id": 37271, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37272, + "make_id": 37269, + "model_id": 37271, + "year_id": 37271, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 37273, + "make_id": 37269, + "model_id": 37273, + "year_id": 37273, + "cylinders": 4, + "displacement": 1.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 37274, + "make_id": 37269, + "model_id": 37273, + "year_id": 37274, + "cylinders": 4, + "displacement": 1.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + }, + { + "id": 37275, + "make_id": 37269, + "model_id": 37273, + "year_id": 37274, + "cylinders": 4, + "displacement": 1.3, + "drive": "Front-Wheel Drive", + "transmission": "5-Speed Manual" + }, + { + "id": 37276, + "make_id": 37269, + "model_id": 37276, + "year_id": 37276, + "cylinders": 4, + "displacement": 1.1, + "drive": "Front-Wheel Drive", + "transmission": "4-Speed Manual" + } +] \ No newline at end of file diff --git a/src/Vehicle/Data/vehicles.csv b/src/Vehicle/Data/vehicles.csv new file mode 100644 index 0000000..514bfe4 --- /dev/null +++ b/src/Vehicle/Data/vehicles.csv @@ -0,0 +1,37277 @@ +make,model,year,cylinders,displacement,drive,transmission,class +Acura,2.2CL/3.0CL,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,2.2CL/3.0CL,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,2.2CL/3.0CL,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,2.3CL/3.0CL,1998,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,2.3CL/3.0CL,1998,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,2.3CL/3.0CL,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,2.3CL/3.0CL,1999,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,2.3CL/3.0CL,1999,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,2.3CL/3.0CL,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,2.5TL,1995,5,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,2.5TL/3.2TL,1996,5,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,2.5TL/3.2TL,1996,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,2.5TL/3.2TL,1997,5,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,2.5TL/3.2TL,1997,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,2.5TL/3.2TL,1998,5,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,2.5TL/3.2TL,1998,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,3.2CL,2001,6,3.2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,3.2CL,2002,6,3.2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,3.2CL,2003,6,3.2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,3.2CL,2003,6,3.2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,3.2TL,1999,6,3.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Acura,3.2TL,2000,6,3.2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,3.2TL,2001,6,3.2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,3.2TL,2002,6,3.2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,3.2TL,2003,6,3.2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,3.5RL,1996,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Acura,3.5RL,1997,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Acura,3.5RL,1998,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Acura,3.5RL,1999,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Acura,3.5RL,2000,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Acura,3.5RL,2001,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Acura,3.5RL,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Acura,3.5RL,2003,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Acura,3.5RL,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Acura,ILX,2013,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,ILX,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,ILX,2014,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,ILX,2014,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,ILX,2015,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,ILX,2015,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,ILX,2016,4,2.4,Front-Wheel Drive,8-Speed Automated Manual,Compact Cars +Acura,ILX,2017,4,2.4,Front-Wheel Drive,8-Speed Automated Manual,Compact Cars +Acura,ILX Hybrid,2013,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Acura,ILX Hybrid,2014,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Acura,Integra,1986,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1987,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1988,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1989,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1990,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1991,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1992,4,1.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1993,4,1.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1998,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1999,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Acura,Integra,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Integra,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,Legend,1986,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1986,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1987,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1987,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1987,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1987,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1988,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1988,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1989,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1989,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1990,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1990,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1991,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1991,6,3.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1992,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1992,6,3.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1993,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1993,6,3.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1993,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1993,6,3.2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,Legend,1994,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1994,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1994,6,3.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1994,6,3.2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,Legend,1995,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1995,6,3.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Legend,1995,6,3.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Legend,1995,6,3.2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,MDX,2001,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2002,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2003,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2004,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2007,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2008,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2009,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2010,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2011,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2012,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Acura,MDX,2013,6,3.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2016,6,3.5,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2016,6,3.5,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2016,6,3.5,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2016,6,3.5,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2017,6,3.5,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2017,6,3.5,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2017,6,3.5,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Acura,MDX,2017,6,3.5,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Acura,NSX,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Acura,NSX,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Acura,NSX,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Acura,NSX,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Acura,NSX,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Acura,NSX,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,1996,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Acura,NSX,1998,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,1998,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Acura,NSX,1999,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,1999,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Acura,NSX,2000,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,2000,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Acura,NSX,2001,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,2001,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Acura,NSX,2002,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,2002,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Acura,NSX,2003,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,2003,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Acura,NSX,2004,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,2004,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Acura,NSX,2005,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Acura,NSX,2005,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Acura,NSX Hybrid,2017,6,3.5,All-Wheel Drive,9-Speed Automated Manual,Two Seaters +Acura,RDX,2007,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,RDX,2008,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,RDX,2009,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,RDX,2010,4,2.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,RDX,2010,4,2.3,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,RDX,2011,4,2.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,RDX,2011,4,2.3,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,RDX,2012,4,2.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,RDX,2012,4,2.3,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Acura,RDX,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,RDX,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,RDX,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,RDX,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,RDX,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,RDX,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,RDX,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,RDX,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,RDX,2017,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,RDX,2017,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Acura,RL,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,RL,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,RL,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,RL,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,RL,2009,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,RL,2010,6,3.7,All-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,RL,2011,6,3.7,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,RL,2012,6,3.7,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,RLX,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,RLX,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,RLX,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,RLX Hybrid,2014,6,3.5,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Acura,RLX Hybrid,2016,6,3.5,All-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Acura,RSX,2002,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,RSX,2002,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Acura,RSX,2002,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Acura,RSX,2003,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,RSX,2003,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Acura,RSX,2003,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Acura,RSX,2004,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,RSX,2004,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Acura,RSX,2004,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Acura,RSX,2005,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,RSX,2005,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Acura,RSX,2005,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Acura,RSX,2006,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Acura,RSX,2006,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Acura,RSX,2006,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Acura,SLX,1996,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Acura,SLX,1996,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Acura,SLX,1997,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Acura,SLX,1997,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Acura,SLX,1998,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Acura,SLX,1999,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Acura,TL,2004,6,3.2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Acura,TL,2004,6,3.2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2005,6,3.2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Acura,TL,2005,6,3.2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2006,6,3.2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Acura,TL,2006,6,3.2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2007,6,3.2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2007,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Acura,TL,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2008,6,3.2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2008,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Acura,TL,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2009,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2010,6,3.7,All-Wheel Drive,6-Speed Manual,Midsize Cars +Acura,TL,2010,6,3.7,All-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2011,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2011,6,3.7,All-Wheel Drive,6-Speed Manual,Midsize Cars +Acura,TL,2011,6,3.7,All-Wheel Drive,5-Speed Automatic,Midsize Cars +Acura,TL,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,TL,2012,6,3.7,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,TL,2012,6,3.7,All-Wheel Drive,6-Speed Manual,Midsize Cars +Acura,TL,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,TL,2013,6,3.7,All-Wheel Drive,6-Speed Manual,Midsize Cars +Acura,TL,2013,6,3.7,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,TL,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,TL,2014,6,3.7,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Acura,TL,2014,6,3.7,All-Wheel Drive,6-Speed Manual,Midsize Cars +Acura,TLX,2015,4,2.4,Front-Wheel Drive,8-Speed Automated Manual,Compact Cars +Acura,TLX,2015,6,3.5,Front-Wheel Drive,9-Speed Automatic,Compact Cars +Acura,TLX,2015,6,3.5,All-Wheel Drive,9-Speed Automatic,Compact Cars +Acura,TLX,2016,4,2.4,Front-Wheel Drive,8-Speed Automated Manual,Compact Cars +Acura,TLX,2016,6,3.5,Front-Wheel Drive,9-Speed Automatic,Compact Cars +Acura,TLX,2016,6,3.5,All-Wheel Drive,9-Speed Automatic,Compact Cars +Acura,TSX,2004,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2004,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2005,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2005,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2006,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2006,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2007,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2007,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2008,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2008,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2009,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2010,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2011,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2011,6,3.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2012,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2012,6,3.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2013,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2013,6,3.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2014,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX,2014,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Acura,TSX,2014,6,3.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Acura,TSX Wagon,2011,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Acura,TSX Wagon,2012,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Acura,TSX Wagon,2013,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Acura,TSX Wagon,2014,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Acura,Vigor,1992,5,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Vigor,1992,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Vigor,1993,5,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Vigor,1993,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,Vigor,1994,5,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Acura,Vigor,1994,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Acura,ZDX,2010,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Acura,ZDX,2011,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Acura,ZDX,2012,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Acura,ZDX,2013,6,3.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Alfa Romeo,164,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Alfa Romeo,164,1991,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Alfa Romeo,164,1991,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Alfa Romeo,164,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Alfa Romeo,164,1992,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Alfa Romeo,164,1992,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Alfa Romeo,164,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Alfa Romeo,164,1993,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Alfa Romeo,164,1993,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Alfa Romeo,164,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Alfa Romeo,164,1994,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Alfa Romeo,164,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Alfa Romeo,164,1995,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Alfa Romeo,4C,2015,4,1.8,Rear-Wheel Drive,6-Speed Automated Manual,Two Seaters +Alfa Romeo,4C,2016,4,1.8,Rear-Wheel Drive,6-Speed Automated Manual,Two Seaters +Alfa Romeo,8 C Spider,2009,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Alfa Romeo,GT V6 2.5,1984,6,2.5,,5-Speed Manual,Minicompact Cars +Alfa Romeo,GT V6 2.5,1984,6,2.5,,5-Speed Manual,Minicompact Cars +Alfa Romeo,GT V6 2.5,1985,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Alfa Romeo,GTV,1986,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Alfa Romeo,GTV,1987,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Alfa Romeo,Milano,1987,6,2.5,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Alfa Romeo,Milano,1987,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Alfa Romeo,Milano,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Alfa Romeo,Milano,1988,6,2.5,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Alfa Romeo,Milano,1988,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Alfa Romeo,Milano,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Alfa Romeo,Milano,1989,6,2.5,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Alfa Romeo,Milano,1989,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Alfa Romeo,Milano,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Alfa Romeo,Spider,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Alfa Romeo,Spider,1987,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Alfa Romeo,Spider,1988,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Alfa Romeo,Spider,1989,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Alfa Romeo,Spider,1990,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Alfa Romeo,Spider,1991,4,2,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Alfa Romeo,Spider,1991,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Alfa Romeo,Spider,1992,4,2,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Alfa Romeo,Spider,1992,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Alfa Romeo,Spider,1993,4,2,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Alfa Romeo,Spider,1993,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Alfa Romeo,Spider,1994,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Alfa Romeo,Spider Veloce 2000,1984,4,2,,5-Speed Manual,Two Seaters +Alfa Romeo,Spider Veloce 2000,1984,4,2,,5-Speed Manual,Two Seaters +Alfa Romeo,Spider Veloce 2000,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +AM General,DJ Po Vehicle,1984,4,2.5,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +AM General,DJ Po Vehicle,1984,4,2.5,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +AM General,FJ8c Post Office,1984,6,4.2,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +AM General,FJ8c Post Office,1984,6,4.2,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +AM General,Post Office DJ5,1985,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +AM General,Post Office DJ8,1985,6,4.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +American Motors Corporation,Eagle,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle,1984,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +American Motors Corporation,Eagle,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle,1984,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +American Motors Corporation,Eagle,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle,1984,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle,1986,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +American Motors Corporation,Eagle,1986,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle,1987,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +American Motors Corporation,Eagle,1987,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle 4DR Wagon,1985,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +American Motors Corporation,Eagle 4DR Wagon,1985,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle 4DR Wagon,1985,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +American Motors Corporation,Eagle SX/4,1984,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +ASC Incorporated,GNX,1987,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Aston Martin,DB AR1,2003,12,5.9,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Aston Martin,DB AR1,2003,12,5.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,DB-7 GT Coupe,2003,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB-7 GT Volante,2003,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB-7 Vantage Coupe,2000,12,5.9,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Aston Martin,DB-7 Vantage Coupe,2000,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB-7 Vantage Coupe,2003,12,5.9,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Aston Martin,DB-7 Vantage Coupe,2003,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB-7 Vantage Volante,2000,12,5.9,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Aston Martin,DB-7 Vantage Volante,2000,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB-7 Vantage Volante,2003,12,5.9,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Aston Martin,DB-7 Vantage Volante,2003,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB7 Coupe,1997,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Aston Martin,DB7 Coupe,1997,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Aston Martin,DB7 Coupe,1998,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Aston Martin,DB7 Coupe,1998,6,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Aston Martin,DB7 Volante,1997,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Aston Martin,DB7 Volante,1997,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Aston Martin,DB7 Volante,1998,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Aston Martin,DB7 Volante,1998,6,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Aston Martin,DB9,2005,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9,2009,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9,2009,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9,2010,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9,2010,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9,2011,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9,2011,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9,2012,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9,2012,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9,2013,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9,2014,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9,2015,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9,2016,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9 Coupe,2006,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9 Coupe,2007,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9 Coupe,2008,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9 Coupe,2008,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9 Coupe Manual,2005,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9 Coupe Manual,2006,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9 Coupe Manual,2007,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9 Volante,2005,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9 Volante,2006,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9 Volante,2007,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9 Volante,2008,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9 Volante,2008,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DB9 Volante Manual,2005,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9 Volante Manual,2006,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DB9 Volante Manual,2007,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DBS,2010,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DBS,2010,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DBS,2011,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DBS,2011,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DBS,2012,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,DBS,2012,12,5.9,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Aston Martin,DBS Coupe,2009,12,5.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,DBS Coupe,2009,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Aston Martin,Lagonda,1984,8,5.3,,3-Speed Automatic,Subcompact Cars +Aston Martin,Lagonda,1984,8,5.3,,3-Speed Automatic,Subcompact Cars +Aston Martin,Lagonda,1985,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Lagonda,1985,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Lagonda,1987,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Lagonda,1988,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Lagonda,1989,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Rapide,2010,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Aston Martin,Rapide,2011,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Aston Martin,Rapide,2012,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Aston Martin,Rapide S,2014,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Aston Martin,Rapide S,2015,12,6,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Aston Martin,Rapide S,2016,12,6,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Aston Martin,Saloon/vantage/volante,1984,8,5.3,,3-Speed Automatic,Subcompact Cars +Aston Martin,Saloon/vantage/volante,1984,8,5.3,,5-Speed Manual,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1984,8,5.3,,3-Speed Automatic,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1984,8,5.3,,5-Speed Manual,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1985,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1985,8,5.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1985,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1985,8,5.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1987,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1987,8,5.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1988,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1988,8,5.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1989,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Saloon/Vantage/Volante,1989,8,5.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Aston Martin,V12 Vanquish,2004,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,V12 Vanquish S,2005,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,V12 Vanquish S,2006,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,V12 Vantage,2011,12,5.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V12 Vantage,2012,12,5.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V12 Vantage S,2015,12,6,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V12 Vantage S,2016,12,6,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage,2006,8,4.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2007,8,4.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2008,8,4.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2008,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Aston Martin,V8 Vantage,2009,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Aston Martin,V8 Vantage,2009,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2010,8,4.7,Rear-Wheel Drive,6-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage,2010,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2011,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2011,8,4.7,Rear-Wheel Drive,6-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage,2012,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2012,8,4.7,Rear-Wheel Drive,6-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage,2012,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage,2013,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2013,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage,2014,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2014,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage,2015,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2015,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage,2016,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage,2016,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage ASM,2007,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Aston Martin,V8 Vantage S,2011,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage S,2012,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage S,2013,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage S,2013,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage S,2014,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage S,2014,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage S,2015,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage S,2015,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,V8 Vantage S,2016,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,V8 Vantage S,2016,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,Vanquish,2002,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Aston Martin,Vanquish,2003,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,Vanquish,2014,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,Vanquish,2015,12,6,Rear-Wheel Drive,8-Speed Automatic,Minicompact Cars +Aston Martin,Vanquish,2016,12,6,Rear-Wheel Drive,8-Speed Automatic,Minicompact Cars +Aston Martin,Vantage GT,2015,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,Vantage GT,2015,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,Vantage GT,2016,8,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Aston Martin,Vantage GT,2016,8,4.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Aston Martin,Virage,2012,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Aston Martin,Virage Saloon,1991,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Virage Saloon,1991,8,5.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Aston Martin,Virage Saloon,1992,8,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Aston Martin,Virage Saloon,1992,8,5.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Aston Martin,Virage/Volante,1993,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Aston Martin,Virage/Volante,1993,8,5.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,80,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80,1992,5,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Audi,80,1992,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,90,1990,5,2.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,90,1990,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,90,1993,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,90,1993,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,90,1994,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,90,1994,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,90,1995,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,90,1995,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,90,1995,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,100,1989,5,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,100,1989,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,100,1990,5,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,100,1990,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Audi,100,1991,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Audi,100,1992,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Audi,100,1992,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Audi,100,1992,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,100,1993,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Audi,100,1993,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,100,1994,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,100,1994,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,200,1989,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,200,1989,5,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,200,1990,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,200,1991,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,4000,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Audi,4000,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Audi,4000,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Audi,4000,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Audi,4000,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,4000,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,100 quattro,1989,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,100 quattro,1990,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,100 quattro,1991,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,100 quattro,1992,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Cars +Audi,100 quattro,1992,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,100 quattro,1993,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,100 quattro,1993,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,100 quattro,1994,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,100 quattro,1994,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,100 quattro Wagon,1992,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,100 quattro Wagon,1993,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,100 quattro Wagon,1994,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,100 Wagon,1989,5,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Audi,100 Wagon,1989,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,100 Wagon,1994,6,2.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,200 quattro,1989,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,200 quattro,1990,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,200 quattro 20v,1991,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,200 quattro 20v Wagon,1991,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,200 quattro Wagon,1989,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,200 quattro Wagon,1990,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,4000 CS quattro,1986,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,4000 CS quattro,1987,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,4000 S,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,4000 S,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,4000 S quattro,1984,5,2.2,,5-Speed Manual,Subcompact Cars +Audi,4000 S quattro,1984,5,2.2,,5-Speed Manual,Subcompact Cars +Audi,4000s,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,4000s,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,4000s quattro,1985,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,4000s quattro,1985,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,5000 CS quattro,1986,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 CS quattro,1987,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 CS quattro,1988,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 CS quattro Wagon,1986,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,5000 CS quattro Wagon,1987,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,5000 CS quattro Wagon,1988,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,5000 CS Turbo,1987,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,5000 CS Turbo,1987,5,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 CS Turbo,1988,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,5000 CS Turbo,1988,5,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 S,1986,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,5000 S,1986,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,5000 S,1986,5,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 S,1986,5,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 S,1987,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,5000 S,1987,5,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 S,1987,5,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,5000 S,1987,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 S,1988,5,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,5000 S,1988,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 S quattro,1987,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000 S quattro,1988,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000S,1984,5,2.1,,3-Speed Automatic,Midsize Cars +Audi,5000S,1984,5,2.1,,3-Speed Automatic,Midsize Cars +Audi,5000S,1984,5,2.1,,5-Speed Manual,Midsize Cars +Audi,5000S,1984,5,2.1,,3-Speed Automatic,Midsize Cars +Audi,5000S,1984,5,2.1,,3-Speed Automatic,Midsize Cars +Audi,5000S,1984,5,2.1,,5-Speed Manual,Midsize Cars +Audi,5000S,1985,5,2.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,5000S,1985,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,5000S,1985,5,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,5000S,1985,5,2.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Audi,5000S Wagon,1984,5,2.1,,3-Speed Automatic,Midsize Station Wagons +Audi,5000S Wagon,1984,5,2.1,,5-Speed Manual,Midsize Station Wagons +Audi,5000S Wagon,1984,5,2.1,,3-Speed Automatic,Midsize Station Wagons +Audi,5000S Wagon,1984,5,2.1,,5-Speed Manual,Midsize Station Wagons +Audi,5000S Wagon,1985,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Audi,5000S Wagon,1985,5,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,5000S Wagon,1986,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Audi,5000S Wagon,1986,5,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,5000S Wagon,1987,5,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Audi,5000S Wagon,1987,5,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,5000S Wagon,1987,5,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Audi,5000S Wagon,1987,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,5000S Wagon,1988,5,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Audi,5000S Wagon,1988,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Audi,80 quattro,1990,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80 quattro,1991,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80 quattro,1992,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80/90,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,80/90,1988,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80/90,1988,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80/90,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,80/90,1989,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80/90,1989,5,2.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,80/90,1989,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80/90,1991,5,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Audi,80/90,1991,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80/90 quattro,1988,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,80/90 quattro,1989,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,90 quattro,1993,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,90 quattro,1994,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,90 quattro,1995,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,90 quattro 20v,1990,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,90 quattro 20v,1991,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,A3,2006,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A3,2006,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3,2007,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A3,2007,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3,2008,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3,2008,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A3,2009,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A3,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3,2010,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A3,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3,2011,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A3,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3,2012,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A3,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3,2013,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A3,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Small Station Wagons +Audi,A3,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Small Station Wagons +Audi,A3,2015,4,1.8,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,A3,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,A3,2016,4,1.8,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,A3 Cabriolet,2015,4,1.8,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,A3 Cabriolet,2016,4,1.8,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,A3 Cabriolet quattro,2015,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,A3 Cabriolet quattro,2016,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,A3 e-tron,2016,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Audi,A3 e-tron ultra,2016,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Audi,A3 quattro,2006,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3 quattro,2007,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3 quattro,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3 quattro,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3 quattro,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3 quattro,2010,4,2,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3 quattro,2011,4,2,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3 quattro,2012,4,2,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A3 quattro,2013,4,2,All-Wheel Drive,6-Speed Automated Manual,Small Station Wagons +Audi,A3 quattro,2015,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,A3 quattro,2016,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,A4,1996,6,2.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,1996,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,1997,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,1997,6,2.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,1997,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,1998,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,1998,6,2.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,1998,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,1999,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,1999,6,2.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,1999,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,2000,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,2000,6,2.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,2000,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,2001,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,2001,6,2.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4,2002,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,2002,6,3,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2003,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,2003,6,3,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2004,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,2004,6,3,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2005,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4,2005,6,3,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2005,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2005,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4,2006,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2006,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4,2006,6,3.1,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2007,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2007,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4,2007,6,3.1,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2008,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2008,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4,2008,6,3.1,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2009,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2010,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2011,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2012,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2013,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2014,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2015,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2016,4,2,Front-Wheel Drive,CVT,Compact Cars +Audi,A4,2017,4,2,Front-Wheel Drive,7-Speed Automated Manual,Compact Cars +Audi,A4 Avant,1998,6,2.8,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant,2000,6,2.8,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,1998,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,1998,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,1999,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,1999,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,1999,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,1999,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2000,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2000,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2000,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2000,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2001,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2001,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2001,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2001,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2002,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2002,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2002,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2003,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2003,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2003,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2004,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2004,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2004,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2005,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2005,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2005,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2005,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2005,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2005,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2006,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2006,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2006,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2006,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2007,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2007,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2007,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2007,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2008,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2008,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2008,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,A4 Avant quattro,2008,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2010,4,2,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2011,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Audi,A4 Avant quattro,2012,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Audi,A4 Cabriolet,2003,4,1.8,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A4 Cabriolet,2003,6,3,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A4 Cabriolet,2004,4,1.8,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A4 Cabriolet,2004,6,3,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A4 Cabriolet,2005,4,1.8,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A4 Cabriolet,2005,6,3,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A4 Cabriolet,2006,4,1.8,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A4 Cabriolet,2007,4,2,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A4 Cabriolet,2008,4,2,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A4 Cabriolet,2009,4,2,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A4 Cabriolet quattro,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Subcompact Cars +Audi,A4 Cabriolet quattro,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Subcompact Cars +Audi,A4 Cabriolet quattro,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Subcompact Cars +Audi,A4 Cabriolet quattro,2007,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A4 Cabriolet quattro,2007,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A4 Cabriolet quattro,2008,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A4 Cabriolet quattro,2008,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A4 Cabriolet quattro,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A4 Cabriolet quattro,2009,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A4 quattro,1996,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,1996,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,1997,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,1997,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,1997,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,1998,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,1998,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,1998,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,1998,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,1999,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,1999,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,1999,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,1999,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,2000,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2000,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,2000,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2000,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,2001,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,2001,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2001,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,2001,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2002,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2002,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2002,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2003,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A4 quattro,2003,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2003,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2004,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2004,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2004,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2005,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2005,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2005,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,A4 quattro,2005,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2005,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2005,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2006,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2006,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2006,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2006,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2007,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2007,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2007,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2007,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2008,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2008,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2008,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2008,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2010,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2010,4,2,All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,A4 quattro,2011,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Audi,A4 quattro,2011,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2012,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Audi,A4 quattro,2012,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2013,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2013,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Audi,A4 quattro,2013,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Audi,A4 quattro,2014,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Audi,A4 quattro,2014,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2015,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2015,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Audi,A4 quattro,2016,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Audi,A4 quattro,2016,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,A4 quattro,2017,4,2,All-Wheel Drive,7-Speed Automated Manual,Compact Cars +Audi,A5 Cabriolet,2010,4,2,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A5 Cabriolet,2011,4,2,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A5 Cabriolet,2012,4,2,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A5 Cabriolet,2013,4,2,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A5 Cabriolet,2014,4,2,Front-Wheel Drive,CVT,Subcompact Cars +Audi,A5 Cabriolet quattro,2010,4,2,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A5 Cabriolet quattro,2011,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 Cabriolet quattro,2012,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 Cabriolet quattro,2013,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 Cabriolet quattro,2013,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 Cabriolet quattro,2014,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 Cabriolet quattro,2015,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 Cabriolet quattro,2016,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,A5 quattro,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,A5 quattro,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2010,4,2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,A5 quattro,2010,4,2,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2010,6,3.2,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2011,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2011,4,2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,A5 quattro,2012,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2012,4,2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,A5 quattro,2013,4,2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,A5 quattro,2013,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2013,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2014,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2014,4,2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,A5 quattro,2015,4,2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,A5 quattro,2015,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2016,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Audi,A5 quattro,2016,4,2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,A6,1995,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,A6,1995,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A6,1996,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,A6,1997,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,A6,1998,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6,1999,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6,2000,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6,2001,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6,2002,6,3,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2003,6,3,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2004,6,3,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2006,6,3.1,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2007,6,3.1,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2008,6,3.1,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2009,6,3.1,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2010,6,3.2,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2011,6,3.2,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2012,4,2,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2013,4,2,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2014,4,2,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2015,4,2,Front-Wheel Drive,CVT,Midsize Cars +Audi,A6,2016,4,2,Front-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Audi,A6 Avant quattro,1999,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2000,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2001,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2006,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2007,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2008,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2009,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2010,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Audi,A6 Avant quattro,2011,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Audi,A6 quattro,1995,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,A6 quattro,1995,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,A6 quattro,1996,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,A6 quattro,1997,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,A6 quattro,1998,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,1999,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2000,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2000,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +Audi,A6 quattro,2000,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2000,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,A6 quattro,2000,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2001,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +Audi,A6 quattro,2001,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2001,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2001,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2002,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +Audi,A6 quattro,2002,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2002,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2003,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +Audi,A6 quattro,2003,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2003,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2004,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +Audi,A6 quattro,2004,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2004,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A6 quattro,2005,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2006,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2007,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2008,6,3.1,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2009,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2010,8,4.2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2010,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2011,8,4.2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2011,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A6 quattro,2012,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2013,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2013,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2014,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2014,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2014,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2015,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2015,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2015,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2016,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2016,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro,2016,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A6 quattro Wagon,1995,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,A6 quattro Wagon,1996,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,A6 quattro Wagon,1997,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,A6 Wagon,1995,6,2.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,A6 Wagon,1996,6,2.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,A6 Wagon,1997,6,2.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,A6 Wagon quattro,1998,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Audi,A7 quattro,2012,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A7 quattro,2013,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A7 quattro,2014,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A7 quattro,2014,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A7 quattro,2015,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A7 quattro,2015,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A7 quattro,2016,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A7 quattro,2016,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A8,1997,8,3.7,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A8,1997,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A8,1998,8,3.7,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A8,1998,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A8,1999,8,3.7,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A8,2003,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A8,2005,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A8,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A8,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A8,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A8,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A8,2010,8,4.2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,A8,2011,8,4.2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A8,2012,8,4.2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A8,2013,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A8,2013,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A8,2014,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A8,2014,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A8,2015,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A8,2015,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,A8 L,2000,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Audi,A8 L,2001,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Audi,A8 L,2002,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Audi,A8 L,2003,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Audi,A8 L,2004,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2005,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2005,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2006,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2007,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2008,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2009,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2010,8,4.2,All-Wheel Drive,6-Speed Automatic,Large Cars +Audi,A8 L,2011,8,4.2,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2012,12,6.3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2012,8,4.2,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2013,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2013,8,4,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2013,12,6.3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2014,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2014,8,4,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2014,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2014,12,6.3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2015,8,4,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2015,12,6.3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2015,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2015,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2016,8,4,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2016,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2016,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 L,2016,12,6.3,All-Wheel Drive,8-Speed Automatic,Large Cars +Audi,A8 quattro,1999,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A8 quattro,2000,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A8 quattro,2001,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,A8 quattro,2002,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,Allroad,2001,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Audi,Allroad,2001,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Audi,Allroad,2002,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Audi,Allroad,2002,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Audi,Allroad quattro,2003,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Audi,Allroad quattro,2003,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Audi,Allroad quattro,2004,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Audi,Allroad quattro,2004,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Audi,Allroad quattro,2004,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Audi,Allroad quattro,2005,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Audi,Allroad quattro,2005,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Audi,Allroad quattro,2005,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Audi,allroad quattro,2013,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Audi,allroad quattro,2013,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Audi,allroad quattro,2014,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Audi,allroad quattro,2015,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Audi,allroad quattro,2016,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Audi,Cabriolet,1994,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Audi,Cabriolet,1995,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Audi,Cabriolet,1995,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Audi,Cabriolet,1996,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Audi,Cabriolet,1997,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Audi,Cabriolet,1998,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Audi,Coupe GT,1984,5,2.1,,3-Speed Automatic,Subcompact Cars +Audi,Coupe GT,1984,5,2.1,,5-Speed Manual,Subcompact Cars +Audi,Coupe GT,1984,5,2.2,,3-Speed Automatic,Subcompact Cars +Audi,Coupe GT,1984,5,2.2,,5-Speed Manual,Subcompact Cars +Audi,Coupe GT,1984,5,2.1,,3-Speed Automatic,Subcompact Cars +Audi,Coupe GT,1984,5,2.1,,5-Speed Manual,Subcompact Cars +Audi,Coupe GT,1984,5,2.2,,3-Speed Automatic,Subcompact Cars +Audi,Coupe GT,1984,5,2.2,,5-Speed Manual,Subcompact Cars +Audi,Coupe GT,1985,5,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,Coupe GT,1985,5,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,Coupe GT,1986,5,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,Coupe GT,1986,5,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,Coupe GT,1987,5,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,Coupe GT,1987,5,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,Coupe GT,1987,5,2.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Audi,Coupe GT,1987,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,Coupe quattro,1990,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,Coupe quattro,1991,5,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,Q3,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,Q3,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Compact Cars +Audi,Q3 quattro,2015,4,2,All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,Q3 quattro,2016,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Audi,Q5,2009,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q5,2010,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q5,2011,4,2,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Audi,Q5,2011,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q5,2012,4,2,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Audi,Q5,2012,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q5,2013,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2013,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2013,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2014,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2014,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2014,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2015,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2015,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2015,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2016,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2016,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5,2016,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5 Hybrid,2013,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5 Hybrid,2014,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5 Hybrid,2015,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q5 Hybrid,2016,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,Q7,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2009,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2010,8,4.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2011,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2011,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2012,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2012,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Audi,Q7,2013,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Audi,Q7,2013,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Audi,Q7,2014,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Audi,Q7,2014,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Audi,Q7,2015,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Audi,Q7,2015,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Audi,Q7,2017,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Audi,Quattro,1984,5,2.1,,5-Speed Manual,Subcompact Cars +Audi,Quattro,1984,5,2.1,,5-Speed Manual,Subcompact Cars +Audi,Quattro,1985,5,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Audi,R8,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,R8,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,R8,2010,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2010,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,R8,2010,8,4.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2010,8,4.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,R8,2011,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,R8,2011,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2011,8,4.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2011,8,4.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,R8,2012,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,R8,2012,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2012,8,4.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,R8,2012,8,4.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2014,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Audi,R8,2014,8,4.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Audi,R8,2014,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2014,8,4.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2015,8,4.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Audi,R8,2015,8,4.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2015,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8,2015,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Audi,R8,2017,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Audi,R8 Spyder,2011,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,R8 Spyder,2011,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8 Spyder,2011,8,4.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8 Spyder,2011,8,4.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,R8 Spyder,2012,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,R8 Spyder,2012,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8 Spyder,2012,8,4.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,R8 Spyder,2012,8,4.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8 Spyder,2014,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Audi,R8 Spyder,2014,8,4.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Audi,R8 Spyder,2014,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8 Spyder,2014,8,4.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8 Spyder,2015,8,4.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Audi,R8 Spyder,2015,8,4.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8 Spyder,2015,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,R8 Spyder,2015,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Audi,R8 Spyder,2017,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Audi,RS 5,2013,8,4.2,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,RS 5,2014,8,4.2,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,RS 5,2015,8,4.2,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,RS 5 Cabriolet,2013,8,4.2,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,RS 5 Cabriolet,2014,8,4.2,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,RS 5 Cabriolet,2015,8,4.2,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,RS 7,2014,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,RS 7,2015,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,RS 7,2016,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,RS4,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,RS4,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,RS4 Cabriolet,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,RS6,2003,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,S3,2015,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,S3,2016,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,S4,1992,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,S4,1993,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,S4,1994,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,S4,2000,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,S4,2000,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2001,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2001,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,S4,2002,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2002,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Audi,S4,2004,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2004,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,S4,2005,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2005,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,S4,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,S4,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,S4,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Audi,S4,2010,6,3,All-Wheel Drive,7-Speed Automatic,Compact Cars +Audi,S4,2010,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2011,6,3,All-Wheel Drive,7-Speed Automatic,Compact Cars +Audi,S4,2011,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2012,6,3,All-Wheel Drive,7-Speed Automatic,Compact Cars +Audi,S4,2012,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2013,6,3,All-Wheel Drive,7-Speed Automated Manual,Compact Cars +Audi,S4,2013,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2014,6,3,All-Wheel Drive,7-Speed Automated Manual,Compact Cars +Audi,S4,2014,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2015,6,3,All-Wheel Drive,7-Speed Automated Manual,Compact Cars +Audi,S4,2015,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4,2016,6,3,All-Wheel Drive,7-Speed Automated Manual,Compact Cars +Audi,S4,2016,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +Audi,S4 Avant,2001,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,S4 Avant,2001,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,S4 Avant,2002,6,2.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,S4 Avant,2002,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Audi,S4 Avant,2004,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,S4 Avant,2004,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,S4 Avant,2005,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,S4 Avant,2005,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,S4 Avant,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,S4 Avant,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,S4 Avant,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,S4 Avant,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,S4 Avant,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Audi,S4 Avant,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Audi,S4 Cabriolet,2004,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S4 Cabriolet,2004,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S4 Cabriolet,2005,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S4 Cabriolet,2005,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S4 Cabriolet,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S4 Cabriolet,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S4 Cabriolet,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S4 Cabriolet,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S4 Cabriolet,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S4 Cabriolet,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S4 Cabriolet,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S4 Cabriolet,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S5,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S5,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S5,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S5,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S5,2010,8,4.2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S5,2010,8,4.2,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S5,2011,8,4.2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S5,2011,8,4.2,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S5,2012,8,4.2,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,S5,2012,8,4.2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S5,2013,6,3,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,S5,2013,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S5,2014,6,3,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,S5,2014,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S5,2015,6,3,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,S5,2015,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S5,2016,6,3,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,S5,2016,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,S5 Cabriolet,2010,6,3,All-Wheel Drive,7-Speed Automatic,Subcompact Cars +Audi,S5 Cabriolet,2011,6,3,All-Wheel Drive,7-Speed Automatic,Subcompact Cars +Audi,S5 Cabriolet,2012,6,3,All-Wheel Drive,7-Speed Automatic,Subcompact Cars +Audi,S5 Cabriolet,2013,6,3,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,S5 Cabriolet,2014,6,3,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,S5 Cabriolet,2015,6,3,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,S5 Cabriolet,2016,6,3,All-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +Audi,S6,1995,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Audi,S6,2007,10,5.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,S6,2008,10,5.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,S6,2009,10,5.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,S6,2010,10,5.2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,S6,2011,10,5.2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,S6,2013,8,4,All-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Audi,S6,2014,8,4,All-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Audi,S6,2015,8,4,All-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Audi,S6,2016,8,4,All-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Audi,S6 Avant,2002,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Audi,S6 Avant,2003,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Audi,S6 Wagon,1995,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Audi,S7,2013,8,4,All-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Audi,S7,2014,8,4,All-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Audi,S7,2015,8,4,All-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Audi,S7,2016,8,4,All-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Audi,S8,2003,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,S8,2007,10,5.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,S8,2008,10,5.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,S8,2009,10,5.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Audi,S8,2013,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,S8,2014,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,S8,2015,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,S8,2016,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Audi,S8 quattro,2001,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,S8 quattro,2002,8,4.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Audi,SQ5,2014,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,SQ5,2015,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,SQ5,2016,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Audi,TT Coupe,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Audi,TT Coupe,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Audi,TT Coupe,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Audi,TT Coupe,2003,4,1.8,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Audi,TT Coupe,2004,4,1.8,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Audi,TT Coupe,2005,4,1.8,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Audi,TT Coupe,2006,4,1.8,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Audi,TT Coupe,2008,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,TT Coupe,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,TT Coupe quattro,2000,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Minicompact Cars +Audi,TT Coupe quattro,2001,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Minicompact Cars +Audi,TT Coupe quattro,2001,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Audi,TT Coupe quattro,2002,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Minicompact Cars +Audi,TT Coupe quattro,2002,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Audi,TT Coupe quattro,2003,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Audi,TT Coupe quattro,2004,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Audi,TT Coupe quattro,2004,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Minicompact Cars +Audi,TT Coupe quattro,2005,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Audi,TT Coupe quattro,2005,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Minicompact Cars +Audi,TT Coupe quattro,2006,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Audi,TT Coupe quattro,2006,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Minicompact Cars +Audi,TT Coupe quattro,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,TT Coupe quattro,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,TT Coupe quattro,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,TT Coupe quattro,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,TT Coupe quattro,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,TT Coupe quattro,2010,4,2,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,TT Coupe quattro,2011,4,2,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,TT Coupe quattro,2012,4,2,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Audi,TT Coupe quattro,2013,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,TT Coupe quattro,2014,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,TT Coupe quattro,2015,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,TT Coupe quattro,2016,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,TT Roadster,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Two Seaters +Audi,TT Roadster,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Two Seaters +Audi,TT Roadster,2003,4,1.8,Front-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster,2004,4,1.8,Front-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster,2005,4,1.8,Front-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster,2006,4,1.8,Front-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster,2008,4,2,Front-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster quattro,2001,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,TT Roadster quattro,2002,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,TT Roadster quattro,2003,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,TT Roadster quattro,2004,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,TT Roadster quattro,2004,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster quattro,2005,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,TT Roadster quattro,2005,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster quattro,2006,4,1.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,TT Roadster quattro,2006,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster quattro,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,TT Roadster quattro,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster quattro,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster quattro,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Audi,TT Roadster quattro,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster quattro,2010,4,2,All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster quattro,2011,4,2,All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster quattro,2012,4,2,All-Wheel Drive,6-Speed Automatic,Two Seaters +Audi,TT Roadster quattro,2013,4,2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,TT Roadster quattro,2014,4,2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,TT Roadster quattro,2015,4,2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,TT Roadster quattro,2016,4,2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Audi,TT RS Coupe,2012,5,2.5,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,TT RS Coupe,2013,5,2.5,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Audi,TTS Coupe,2016,4,2,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Audi,V8,1990,8,3.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Cars +Audi,V8,1990,8,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,V8,1991,8,3.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Cars +Audi,V8,1991,8,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Audi,V8,1992,8,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Cars +Audi,V8,1993,8,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Audi,V8,1994,8,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Aurora Cars Ltd,Aurora,1988,8,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Autokraft Limited,A.C.MARK IV,1992,8,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Autokraft Limited,A.C.MARK IV,1993,8,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Autokraft Limited,A.C.Mkiv,1986,8,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Autokraft Limited,A.C.Mkiv,1987,8,5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Avanti Motor Corporation,Avanti II,1984,8,5,,4-Speed Automatic,Minicompact Cars +Avanti Motor Corporation,Avanti II,1984,8,5,,4-Speed Automatic,Minicompact Cars +Azure Dynamics,Transit Connect Electric Van,2012,,,Front-Wheel Drive,1-Speed Direct Drive,Special Purpose Vehicle +Azure Dynamics,Transit Connect Electric Wagon,2012,,,Front-Wheel Drive,1-Speed Direct Drive,Special Purpose Vehicle +Bentley,Arnage,1999,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Bentley,Arnage,2000,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Bentley,Arnage,2000,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Bentley,Arnage,2001,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Bentley,Arnage,2002,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Bentley,Arnage,2003,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Bentley,Arnage,2004,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Bentley,Arnage,2005,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Bentley,Arnage,2006,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Bentley,Arnage,2007,8,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Arnage,2008,8,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Arnage,2009,8,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Arnage LWB,2003,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Bentley,Arnage LWB,2004,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Bentley,Arnage LWB,2005,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Bentley,Arnage LWB,2006,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Bentley,Arnage LWB,2007,8,6.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Bentley,Arnage RL,2008,8,6.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Bentley,Arnage RL,2009,8,6.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Bentley,Azure,1998,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Azure,1999,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Azure,2000,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Azure,2001,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Azure,2003,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Azure,2007,8,6.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Azure,2008,8,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Azure,2009,8,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Azure,2010,8,6.8,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Brooklands,2009,8,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Brooklands,2010,8,6.8,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Brooklands R,1998,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Bentley,Brooklands R Limo,1998,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Bentley,Brooklands R Limo,1999,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Bentley,Continental Flying Spur,2006,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Continental Flying Spur,2007,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Continental Flying Spur,2008,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Continental Flying Spur,2009,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Continental Flying Spur,2010,12,6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Continental Flying Spur,2011,12,6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Continental Flying Spur,2012,12,6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Continental Flying Spur,2013,12,6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Bentley,Continental GT,2004,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Continental GT,2005,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Continental GT,2006,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Continental GT,2007,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Continental GT,2008,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Continental GT,2009,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Continental GT,2010,12,6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Continental GT,2012,12,6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Continental GT,2013,8,4,All-Wheel Drive,8-Speed Automatic,Compact Cars +Bentley,Continental GT,2013,12,6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Bentley,Continental GT,2013,12,6,All-Wheel Drive,8-Speed Automatic,Compact Cars +Bentley,Continental GT,2014,12,6,All-Wheel Drive,8-Speed Automatic,Compact Cars +Bentley,Continental GT,2014,8,4,All-Wheel Drive,8-Speed Automatic,Compact Cars +Bentley,Continental GT,2015,8,4,All-Wheel Drive,8-Speed Automatic,Compact Cars +Bentley,Continental GT,2015,12,6,All-Wheel Drive,8-Speed Automatic,Compact Cars +Bentley,Continental GT,2016,8,4,All-Wheel Drive,8-Speed Automatic,Compact Cars +Bentley,Continental GT,2016,12,6,All-Wheel Drive,8-Speed Automatic,Compact Cars +Bentley,Continental GT Convertible,2015,8,4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Bentley,Continental GT Convertible,2015,12,6,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Bentley,Continental GT Convertible,2016,8,4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Bentley,Continental GT Convertible,2016,12,6,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Bentley,Continental GT Speed Convertible,2014,12,6,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Bentley,Continental GT3-R,2015,8,4,All-Wheel Drive,8-Speed Automatic,Two Seaters +Bentley,Continental GTC,2007,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Continental GTC,2008,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Continental GTC,2009,12,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Continental GTC,2010,12,6,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Continental GTC,2011,12,6,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Continental GTC,2012,12,6,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Continental GTC,2013,8,4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Bentley,Continental GTC,2013,12,6,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Continental GTC,2013,12,6,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Bentley,Continental GTC,2014,12,6,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Bentley,Continental GTC,2014,8,4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +Bentley,Continental R,1998,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Bentley,Continental R,1999,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Bentley,Continental R,2000,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Bentley,Continental R,2001,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Bentley,Continental R,2003,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Bentley,Continental SC,1998,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Continental SC,1999,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Continental SC,2000,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Continental SC,2001,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Continental Supersports,2010,12,6,All-Wheel Drive,6-Speed Automatic,Two Seaters +Bentley,Continental Supersports,2011,12,6,All-Wheel Drive,6-Speed Automatic,Two Seaters +Bentley,Continental Supersports,2012,12,6,All-Wheel Drive,6-Speed Automatic,Two Seaters +Bentley,Continental Supersports Convertible,2011,12,6,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Continental Supersports Convertible,2012,12,6,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Continental Supersports Convertible,2013,12,6,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Bentley,Continental T,1998,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Continental T,1999,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Continental T,2000,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Continental T,2001,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Continental T,2003,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Bentley,Flying Spur,2014,12,6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Flying Spur,2015,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Flying Spur,2015,12,6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Flying Spur,2016,8,4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Flying Spur,2016,12,6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Mulsanne,2011,8,6.8,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Mulsanne,2012,8,6.8,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Mulsanne,2013,8,6.8,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Mulsanne,2014,8,6.8,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Mulsanne,2015,8,6.8,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Mulsanne,2016,8,6.8,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Bentley,Turbo RT,1998,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Bentley,Turbo RT,1999,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Bertone,X1/9,1984,4,1.5,,5-Speed Manual,Two Seaters +Bertone,X1/9,1984,4,1.5,,5-Speed Manual,Two Seaters +Bertone,X1/9,1985,4,1.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Bertone,X1/9,1986,4,1.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Bertone,X1/9,1987,4,1.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Bertone,X1/9,1988,4,1.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Bertone,X1/9,1989,4,1.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Bill Dovell Motor Car Company,Dovell 230CE,1984,4,2.3,,4-Speed Automatic,Compact Cars +Bill Dovell Motor Car Company,Dovell 230CE,1985,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Bill Dovell Motor Car Company,Dovell 230E,1984,4,2.3,,4-Speed Automatic,Compact Cars +Bill Dovell Motor Car Company,Dovell 230E,1985,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Bitter Gmbh and Co. Kg,Bitter SC,1986,6,3.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Bitter Gmbh and Co. Kg,Bitter SC,1987,6,3,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Bitter Gmbh and Co. Kg,Bitter SC,1987,6,3.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Bitter Gmbh and Co. Kg,SC,1984,6,3,,3-Speed Automatic,Midsize Cars +Bitter Gmbh and Co. Kg,SC,1984,6,3,,5-Speed Manual,Midsize Cars +BMW,128ci Convertible,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128ci Convertible,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128ci Convertible,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128ci Convertible,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128ci Convertible,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128ci Convertible,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128ci Convertible,2013,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128ci Convertible,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128i,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128i,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128i,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128i,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128i,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128i,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128i,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128i,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128i,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128i,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128i,2013,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128i,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128i Convertible,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128i Convertible,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,128i Convertible,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,128i Convertible,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,135i,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,135i,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,135i,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,135i,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i,2011,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,135i,2012,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,135i,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i,2013,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,135i,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i Convertible,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i Convertible,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,135i Convertible,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i Convertible,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,135i Convertible,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,135i Convertible,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i Convertible,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i Convertible,2011,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,135i Convertible,2012,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,135i Convertible,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,135i Convertible,2013,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,135i Convertible,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,228i,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,228i,2014,4,2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,228i,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,228i,2015,4,2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,228i,2016,4,2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,228i,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,228i Convertible,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,228i Convertible,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,228i xDrive,2015,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,228i xDrive,2016,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,228i xDrive Convertible,2015,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,228i xDrive Convertible,2016,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,3 Series,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +BMW,3 Series,1984,4,1.8,,5-Speed Manual,Subcompact Cars +BMW,3 Series,1984,6,2.7,,4-Speed Automatic,Subcompact Cars +BMW,3 Series,1984,6,2.7,,5-Speed Manual,Subcompact Cars +BMW,3 Series,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +BMW,3 Series,1984,4,1.8,,5-Speed Manual,Subcompact Cars +BMW,3 Series,1984,6,2.7,,4-Speed Automatic,Subcompact Cars +BMW,3 Series,1984,6,2.7,,5-Speed Manual,Subcompact Cars +BMW,3 Series,1985,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,3 Series,1985,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,3 Series,1985,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,3 Series,1985,6,2.7,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,3 Series,1986,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,3 Series,1986,6,2.7,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,3 Series,1987,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,3 Series,1987,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,3 Series,1987,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,3 Series,1987,6,2.7,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,3 Series,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,3 Series,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,3 Series,1988,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,3 Series,1988,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,3 Series,1988,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,3 Series,1988,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,3 Series,1988,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,3 Series,1988,6,2.7,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i,1991,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i Convertible,1992,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i Convertible,1994,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,318i Convertible,1994,4,1.8,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,318i Convertible,1995,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,318i Convertible,1995,4,1.8,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,318i Convertible,1996,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,318i Convertible,1996,4,1.9,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,318i Convertible,1997,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,318i Convertible,1997,4,1.9,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,318i Convertible,1997,4,1.9,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,318i/318iS,1992,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i/318is,1993,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,318i/318is,1993,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i/318is,1994,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,318i/318is,1994,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,318i/318is,1994,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i/318is,1994,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i/318is,1995,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,318i/318is,1995,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i/318is,1996,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,318i/318is,1996,4,1.9,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i/318is,1997,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,318i/318is,1997,4,1.9,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i/318is,1997,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,318i/318is,1997,4,1.9,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318i/318is,1998,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,318i/318is,1998,4,1.9,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318is,1991,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318is,1991,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318is,1991,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318is Convertible,1991,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,318ti,1995,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,318ti,1995,4,1.8,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,318ti,1996,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,318ti,1996,4,1.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,318ti,1997,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,318ti,1997,4,1.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,318ti,1997,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,318ti,1997,4,1.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,318ti,1998,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,318ti,1998,4,1.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,318ti,1999,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,318ti,1999,4,1.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,320i,2013,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,320i,2013,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,320i,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,320i,2014,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,320i,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,320i,2015,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,320i,2016,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,320i,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,320i xDrive,2013,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,320i xDrive,2013,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,320i xDrive,2014,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,320i xDrive,2015,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,320i xDrive,2016,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,323ci,2000,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,323ci,2000,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,323i,1999,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,323i,1999,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,323i,2000,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,323i,2000,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,323i,2000,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,323i Convertible,1998,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,323i Convertible,1998,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,323i Convertible,1999,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,323i Convertible,1999,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,323i Convertible,2000,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,323i Convertible,2000,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,323i Touring,2000,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,323i Touring,2000,6,2.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,323is,1998,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,323is,1998,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,323is,1999,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,323is,1999,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325ci,2001,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,325ci,2001,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325ci,2002,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325ci,2002,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,325ci,2003,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,325ci,2003,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325ci,2004,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325ci,2004,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,325ci,2004,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,325ci,2005,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325ci,2005,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,325ci,2006,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325ci,2006,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,325ci Convertible,2001,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,325ci Convertible,2001,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,325ci Convertible,2002,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,325ci Convertible,2002,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,325ci Convertible,2003,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,325ci Convertible,2003,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,325ci Convertible,2004,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,325ci Convertible,2004,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,325ci Convertible,2004,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +BMW,325ci Convertible,2005,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,325ci Convertible,2005,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,325ci Convertible,2006,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,325ci Convertible,2006,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,325i,1991,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,325i,2001,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,325i,2001,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,325i,2002,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,325i,2002,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,325i,2003,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,325i,2003,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,325i,2004,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,325i,2004,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,325i,2004,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,325i,2005,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,325i,2005,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,325i,2005,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,325i,2006,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,325i,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,325i Convertible,1989,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i Convertible,1989,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i Convertible,1990,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i Convertible,1990,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i Convertible,1991,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i Convertible,1991,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i Convertible,1992,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i Convertible,1992,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i Convertible,1993,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i Convertible,1994,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,325i Convertible,1994,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,325i Convertible,1995,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,325i Convertible,1995,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,325i Sport Wagon,2001,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,325i Sport Wagon,2001,6,2.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,325i Sport Wagon,2002,6,2.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,325i Sport Wagon,2002,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,325i Sport Wagon,2003,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,325i Sport Wagon,2003,6,2.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,325i Sport Wagon,2004,6,2.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,325i Sport Wagon,2004,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,325i Sport Wagon,2004,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,325i Sport Wagon,2005,6,2.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,325i Sport Wagon,2005,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,325i/325is,1989,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i/325is,1989,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i/325is,1990,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i/325is,1990,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i/325is,1991,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i/325is,1991,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i/325iS,1992,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i/325iS,1992,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i/325is,1993,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i/325is,1993,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i/325is,1994,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i/325is,1994,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325i/325is,1995,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325i/325is,1995,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325ic,1991,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,325is,1991,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,325ix,1989,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325ix,1989,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325ix,1990,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325ix,1990,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325ix,1991,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,325ix,1991,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,325xi,2001,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,325xi,2001,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +BMW,325xi,2002,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +BMW,325xi,2002,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,325xi,2003,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,325xi,2003,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +BMW,325xi,2004,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +BMW,325xi,2004,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,325xi,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +BMW,325xi,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,325xi,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,325xi,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,325xi Sport Wagon,2001,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,325xi Sport Wagon,2001,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,325xi Sport Wagon,2002,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,325xi Sport Wagon,2002,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,325xi Sport Wagon,2003,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,325xi Sport Wagon,2003,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,325xi Sport Wagon,2004,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,325xi Sport Wagon,2004,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,325xi Sport Wagon,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,325xi Sport Wagon,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,325xi Sport Wagon,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,325xi Sport Wagon,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328ci,2000,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,328ci,2000,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,328ci,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci Convertible,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci Convertible,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci Convertible,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci Convertible,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci Convertible,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci Convertible,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci Convertible,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci Convertible,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci Convertible,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci Convertible,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci Convertible,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci Convertible,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci xDrive,2010,6,3,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328ci xDrive,2010,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci xDrive,2011,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328ci xDrive,2011,6,3,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328cxi,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328cxi,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328cxi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328cxi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328d,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328d,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328d,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328d xDrive,2014,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328d xDrive,2015,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328d xDrive,2016,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328d xDrive Sports Wagon,2014,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +BMW,328d xDrive Sports Wagon,2015,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +BMW,328d xDrive Sports Wagon,2016,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +BMW,328i,1999,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,328i,1999,6,2.8,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,328i,2000,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,328i,2000,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,328i,2000,6,2.8,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,328i,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,328i,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,328i,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,328i,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,328i,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,328i,2012,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328i,2012,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i,2013,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328i,2013,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328i,2014,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328i,2015,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i,2016,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328i Convertible,1996,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,328i Convertible,1996,6,2.8,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,328i Convertible,1998,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,328i Convertible,1998,6,2.8,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,328i Convertible,1999,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,328i Convertible,1999,6,2.8,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,328i Convertible,2013,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328i Convertible,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328i Coupe,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328i Coupe,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328i Coupe,2013,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328i Coupe,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328i Coupe xDrive,2012,6,3,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328i Coupe xDrive,2012,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328i Coupe xDrive,2013,6,3,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,328i Coupe xDrive,2013,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,328i Sport Wagon,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328i Sport Wagon,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328i Sport Wagon,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328i Sport Wagon,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328i Sport Wagon,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328i Sport Wagon,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328i Sport Wagon,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328i Sport Wagon,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328i Sport Wagon,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328i Sport Wagon,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328i Sport Wagon xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328i Sport Wagon xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328i Sport Wagon xDrive,2010,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328i Sport Wagon xDrive,2010,6,3,All-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328i Sports Wagon,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328i Sports Wagon,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328i xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,328i xDrive,2010,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,328i xDrive,2010,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i xDrive,2011,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328i xDrive,2011,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,328i xDrive,2013,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328i xDrive,2014,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328i xDrive,2015,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328i xDrive,2016,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,328i xDrive Gran Turismo,2014,4,2,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,328i xDrive Gran Turismo,2015,4,2,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,328i xDrive Gran Turismo,2016,4,2,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,328i xDrive Sport Wagon,2012,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328i xDrive Sport Wagon,2012,6,3,All-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328i xDrive Sports Wagon,2011,6,3,All-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328i xDrive Sports Wagon,2011,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328i xDrive Sports Wagon,2014,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +BMW,328i xDrive Sports Wagon,2015,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +BMW,328i xDrive Sports Wagon,2016,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +BMW,328i/328is,1996,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,328i/328is,1996,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,328i/328is,1997,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,328i/328is,1997,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,328i/328is,1998,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,328i/328is,1998,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,328ic,1997,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +BMW,328ic,1997,6,2.8,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,328is,1999,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,328is,1999,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,328xi,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328xi,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,328xi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,328xi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,328xi Sport Wagon,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328xi Sport Wagon,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,328xi Sport Wagon,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +BMW,328xi Sport Wagon,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +BMW,330ci,2001,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,330ci,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,330ci,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,330ci,2002,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,330ci,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,330ci,2003,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,330ci,2004,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,330ci,2004,6,3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,330ci,2004,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,330ci,2005,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,330ci,2005,6,3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,330ci,2005,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,330ci,2006,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,330ci,2006,6,3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,330ci Convertible,2001,6,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,330ci Convertible,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,330ci Convertible,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,330ci Convertible,2002,6,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,330ci Convertible,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,330ci Convertible,2003,6,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,330ci Convertible,2004,6,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +BMW,330ci Convertible,2004,6,3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,330ci Convertible,2004,6,3,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +BMW,330ci Convertible,2005,6,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +BMW,330ci Convertible,2005,6,3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,330ci Convertible,2005,6,3,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +BMW,330ci Convertible,2006,6,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +BMW,330ci Convertible,2006,6,3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,330e,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,330i,2001,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,330i,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,330i,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,330i,2002,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,330i,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,330i,2003,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,330i,2003,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,330i,2004,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,330i,2004,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,330i,2004,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,330i,2005,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,330i,2005,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,330i,2005,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,330i,2006,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,330i,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,330i,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,330xi,2001,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,330xi,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,330xi,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,330xi,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +BMW,330xi,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,330xi,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +BMW,330xi,2003,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,330xi,2004,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,330xi,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,330xi,2005,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,330xi,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,330xi,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,330xi,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335ci,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci Convertible,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci Convertible,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci Convertible,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci Convertible,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci Convertible,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci Convertible,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci Convertible,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci Convertible,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci Convertible,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci Convertible,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci Convertible,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci Convertible,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci xDrive,2010,6,3,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335ci xDrive,2010,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci xDrive,2011,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335ci xDrive,2011,6,3,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335cxi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335cxi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335d,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335d,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335d,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335i,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335i,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335i,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335i,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335i,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335i,2012,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,335i,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,335i,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,335i,2014,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,335i,2015,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i Convertible,2013,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335i Convertible,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335i Coupe,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335i Coupe,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335i Coupe,2013,6,3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335i Coupe,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335i Coupe xDrive,2012,6,3,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335i Coupe xDrive,2012,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335i Coupe xDrive,2013,6,3,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,335i Coupe xDrive,2013,6,3,All-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335i xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335i xDrive,2010,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335i xDrive,2010,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i xDrive,2011,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i xDrive,2011,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335i xDrive,2013,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,335i xDrive,2013,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i xDrive,2014,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,335i xDrive,2014,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i xDrive,2015,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,335i xDrive,2015,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335i xDrive Gran Turismo,2014,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,335i xDrive Gran Turismo,2015,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,335i xDrive Gran Turismo,2016,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,335is Convertible,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335is Convertible,2011,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,335is Convertible,2012,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,335is Convertible,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335is Convertible,2013,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,335is Convertible,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335is Coupe,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335is Coupe,2011,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,335is Coupe,2012,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,335is Coupe,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335is Coupe,2013,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,335is Coupe,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,335xi,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335xi,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,335xi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,335xi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +BMW,340i,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,340i,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,340i xDrive,2016,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,340i xDrive,2016,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,428i Convertible,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,428i Convertible,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,428i Convertible,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,428i Coupe,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,428i Coupe,2014,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,428i Coupe,2015,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,428i Coupe,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,428i Coupe,2016,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,428i Coupe,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,428i Gran Coupe,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,428i Gran Coupe,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,428i xDrive Convertible,2014,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,428i xDrive Convertible,2015,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,428i xDrive Convertible,2016,4,2,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,428i xDrive Coupe,2014,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,428i xDrive Coupe,2015,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,428i xDrive Coupe,2016,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,428i xDrive Gran Coupe,2015,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,428i xDrive Gran Coupe,2016,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,435i Convertible,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,435i Convertible,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,435i Convertible,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,435i Coupe,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,435i Coupe,2014,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,435i Coupe,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,435i Coupe,2015,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,435i Coupe,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,435i Coupe,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,435i Gran Coupe,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,435i Gran Coupe,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,435i xDrive Convertible,2015,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,435i xDrive Convertible,2016,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,435i xDrive Coupe,2014,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,435i xDrive Coupe,2014,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,435i xDrive Coupe,2015,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,435i xDrive Coupe,2015,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,435i xDrive Coupe,2016,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,435i xDrive Coupe,2016,6,3,All-Wheel Drive,6-Speed Manual,Compact Cars +BMW,435i xDrive Gran Coupe,2015,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,435i xDrive Gran Coupe,2016,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,5 Series,1984,6,2.7,,4-Speed Automatic,Compact Cars +BMW,5 Series,1984,6,3.2,,4-Speed Automatic,Compact Cars +BMW,5 Series,1984,6,2.7,,4-Speed Automatic,Compact Cars +BMW,5 Series,1984,6,3.2,,4-Speed Automatic,Compact Cars +BMW,5 Series,1985,6,2.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,5 Series,1985,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,5 Series,1985,6,2.7,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,5 Series,1985,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,5 Series,1985,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,5 Series,1986,6,2.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,5 Series,1986,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,5 Series,1986,6,2.7,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,5 Series,1986,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,5 Series,1986,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,5 Series,1987,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,5 Series,1987,6,2.7,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,5 Series,1987,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,5 Series,1987,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,5 Series,1988,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,5 Series,1988,6,2.7,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,5 Series,1988,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,5 Series,1988,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,5 Series,1988,6,3.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,1989,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,525i,1989,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,1990,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,525i,1990,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,1991,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,525i,1991,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,1991,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,525i,1992,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,525i,1992,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,1993,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,525i,1993,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,1994,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,525i,1994,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,1995,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,525i,1995,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,2001,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,525i,2001,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,2002,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,2002,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,525i,2003,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,525i,2003,6,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,525i,2004,6,2.5,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,525i,2004,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,525i,2004,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,525i,2005,6,2.5,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,525i,2005,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,525i,2006,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,525i,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,525i,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,525i,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,525i Sport Wagon,2001,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,525i Sport Wagon,2001,6,2.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,525i Sport Wagon,2002,6,2.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,525i Sport Wagon,2002,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,525i Sport Wagon,2003,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,525i Sport Wagon,2003,6,2.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,525i Touring,1992,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +BMW,525i Touring,1993,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +BMW,525i Touring,1994,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +BMW,525i Touring,1995,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +BMW,525xi,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,525xi,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,525xi,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,525xi,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,528i,1997,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,528i,1997,6,2.8,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,528i,1998,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,528i,1998,6,2.8,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,528i,1999,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,528i,1999,6,2.8,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,528i,2000,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,528i,2000,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,528i,2000,6,2.8,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,528i,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,528i,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,528i,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,528i,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,528i,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,528i,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,528i,2011,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528i,2012,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528i,2013,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528i,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528i,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528i,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528i Sport Wagon,2000,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +BMW,528i Sport Wagon,2000,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,528i Sport Wagon,2000,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,528i Touring,1999,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +BMW,528i Touring,1999,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +BMW,528i xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,528i xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,528i xDrive,2010,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,528i xDrive,2010,6,3,All-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,528i xDrive,2012,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528i xDrive,2013,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528i xDrive,2014,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528i xDrive,2015,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528i xDrive,2016,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,528xi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,528xi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530i,1994,8,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,530i,1994,8,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,530i,1994,8,3.1,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,530i,1994,8,3.1,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,530i,1995,8,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,530i,1995,8,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,530i,2001,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,530i,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,530i,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,530i,2002,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,530i,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,530i,2003,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,530i,2004,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,530i,2004,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530i,2004,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530i,2005,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,530i,2005,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530i,2005,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530i,2006,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,530i,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530i,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530i,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,530i,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530i,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530i Touring,1994,8,3,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,530i Touring,1994,8,3.1,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,530i Touring,1995,8,3,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,530xi,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,530xi,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530xi,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,530xi,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,530xi Sport Wagon,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +BMW,530xi Sport Wagon,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +BMW,530xi Sport Wagon,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +BMW,530xi Sport Wagon,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +BMW,535d,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535d,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535d,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535d xDrive,2014,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535d xDrive,2015,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535d xDrive,2016,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i,1989,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,535i,1989,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,535i,1989,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,535i,1990,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,535i,1990,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,535i,1991,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,535i,1991,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,535i,1992,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,535i,1992,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,535i,1993,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,535i,1993,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,535i,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,535i,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,535i,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,535i,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,535i,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,535i,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,535i,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,535i,2011,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i,2012,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,535i,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,535i,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i,2014,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,535i,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i Gran Turismo,2010,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i Gran Turismo,2011,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i Gran Turismo,2012,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i Gran Turismo,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i Gran Turismo,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i Gran Turismo,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i Gran Turismo,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i Sport Wagon xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +BMW,535i Sport Wagon xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +BMW,535i Sport Wagon xDrive,2010,6,3,All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +BMW,535i Sport Wagon xDrive,2010,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +BMW,535i xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,535i xDrive,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,535i xDrive,2010,6,3,All-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,535i xDrive,2010,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,535i xDrive,2011,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i xDrive,2012,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i xDrive,2013,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i xDrive,2014,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i xDrive,2015,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i xDrive,2016,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,535i xDrive Gran Turismo,2011,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i xDrive Gran Turismo,2012,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i xDrive Gran Turismo,2013,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i xDrive Gran Turismo,2014,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i xDrive Gran Turismo,2015,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535i xDrive Gran Turismo,2016,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,535xi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,535xi,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,535xi Sport Wagon,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +BMW,535xi Sport Wagon,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +BMW,540i,1994,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,1995,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,1995,8,4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,540i,1997,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,1997,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,540i,1998,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,1998,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,540i,1999,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,1999,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,1999,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,540i,2000,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,2000,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,2000,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,540i,2001,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,2001,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,540i,2001,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,2002,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,2002,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,540i,2002,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,2003,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i,2003,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,540i,2003,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +BMW,540i Sport Wagon,2000,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,540i Sport Wagon,2001,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,540i Sport Wagon,2002,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,540i Sport Wagon,2003,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,540i Touring,1999,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +BMW,545i,2004,8,4.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,545i,2004,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,545i,2004,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,545i,2005,8,4.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,545i,2005,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,545i,2005,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,550 GT,2010,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i,2006,8,4.8,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,550i,2006,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,550i,2006,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,550i,2007,8,4.8,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,550i,2007,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,550i,2007,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,550i,2008,8,4.8,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,550i,2008,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,550i,2009,8,4.8,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,550i,2009,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,550i,2010,8,4.8,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,550i,2010,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +BMW,550i,2011,8,4.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,550i,2011,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i,2012,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i,2012,8,4.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,550i,2013,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i,2013,8,4.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,550i,2014,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i,2015,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i,2016,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i Gran Turismo,2011,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i Gran Turismo,2012,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i Gran Turismo,2013,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i Gran Turismo,2014,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i Gran Turismo,2015,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i xDrive,2011,8,4.4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i xDrive,2012,8,4.4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i xDrive,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i xDrive,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i xDrive,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i xDrive,2016,8,4.4,All-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,550i xDrive Gran Turismo,2011,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i xDrive Gran Turismo,2012,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i xDrive Gran Turismo,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i xDrive Gran Turismo,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i xDrive Gran Turismo,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i xDrive Gran Turismo,2017,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,550i xDrive GT,2010,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,6 Series,1984,6,3.2,,4-Speed Automatic,Subcompact Cars +BMW,6 Series,1984,6,3.2,,4-Speed Automatic,Subcompact Cars +BMW,6 Series,1985,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,6 Series,1985,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,6 Series,1986,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,6 Series,1986,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,6 Series,1987,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,6 Series,1987,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,6 Series,1987,6,3.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,6 Series,1988,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,6 Series,1988,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,6 Series,1988,6,3.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,635csi,1989,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,635csi,1989,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,640i Convertible,2012,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,640i Convertible,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i Convertible,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i Convertible,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i Convertible,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i Convertible,2017,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i Coupe,2012,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,640i Coupe,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i Coupe,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i Coupe,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i Coupe,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i Coupe,2017,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i Gran Coupe,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,640i Gran Coupe,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,640i Gran Coupe,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,640i Gran Coupe,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,640i Gran Coupe,2017,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,640i xDrive Convertible,2014,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i xDrive Convertible,2015,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i xDrive Convertible,2016,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i xDrive Convertible,2017,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i xDrive Coupe,2014,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i xDrive Coupe,2015,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i xDrive Coupe,2016,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i xDrive Coupe,2017,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,640i xDrive Gran Coupe,2014,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,640i xDrive Gran Coupe,2015,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,640i xDrive Gran Coupe,2016,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,640i xDrive Gran Coupe,2017,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,645ci,2004,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,645ci,2004,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,645ci,2004,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,645ci,2005,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,645ci,2005,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,645ci,2005,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,645ci Convertible,2004,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,645ci Convertible,2004,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,645ci Convertible,2004,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,645ci Convertible,2005,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,645ci Convertible,2005,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,645ci Convertible,2005,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci,2006,8,4.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,650ci,2006,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci,2006,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci,2007,8,4.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,650ci,2007,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci,2007,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci,2008,8,4.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,650ci,2008,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci,2009,8,4.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,650ci,2009,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci,2010,8,4.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,650ci,2010,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci Convertible,2006,8,4.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,650ci Convertible,2006,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci Convertible,2006,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci Convertible,2007,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci Convertible,2007,8,4.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,650ci Convertible,2007,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci Convertible,2008,8,4.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,650ci Convertible,2008,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci Convertible,2009,8,4.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,650ci Convertible,2009,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650ci Convertible,2010,8,4.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,650ci Convertible,2010,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,650i Convertible,2012,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i Convertible,2012,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,650i Convertible,2013,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i Convertible,2014,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i Convertible,2015,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i Convertible,2016,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i Convertible xDrive,2012,8,4.4,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i Convertible xDrive,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i Coupe,2012,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i Coupe,2012,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,650i Coupe,2013,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i Coupe,2014,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i Coupe,2015,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i Coupe,2016,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i Coupe xDrive,2012,8,4.4,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i Coupe xDrive,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i Gran Coupe,2013,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i Gran Coupe,2014,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i Gran Coupe,2015,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i Gran Coupe,2016,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i xDrive Convertible,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i xDrive Convertible,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i xDrive Convertible,2016,8,4.4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i xDrive Convertible,2017,8,4.4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i xDrive Coupe,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i xDrive Coupe,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i xDrive Coupe,2016,8,4.4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i xDrive Coupe,2017,8,4.4,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,650i xDrive Gran Coupe,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i xDrive Gran Coupe,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i xDrive Gran Coupe,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i xDrive Gran Coupe,2016,8,4.4,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,650i xDrive Gran Coupe,2017,8,4.4,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,7 Series,1984,6,3.2,,4-Speed Automatic,Compact Cars +BMW,7 Series,1984,6,3.2,,4-Speed Automatic,Compact Cars +BMW,7 Series,1985,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,7 Series,1985,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,7 Series,1986,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,7 Series,1986,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,7 Series,1987,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +BMW,7 Series,1987,6,3.4,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,7 Series,1988,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,7 Series,1988,6,3.4,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +BMW,735i,1989,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735i,1989,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735i,1989,6,3.4,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +BMW,735i,1990,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735i,1990,6,3.4,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +BMW,735i,1991,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735i,1991,6,3.4,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +BMW,735i,1992,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735i Luxury,1991,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735il,1989,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735il,1989,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735il,1990,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735il,1991,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735il,1991,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735il,1992,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,735il,1992,6,3.4,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +BMW,740i,1993,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740i,1994,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740i,1995,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740i,1998,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740i,1999,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740i,1999,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740i,2001,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740i,2001,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740i,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,740i,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,740i,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740i,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740i,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740i,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740i xDrive,2017,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740i/740i Sport,2000,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740i/740i Sport,2000,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740il,1993,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740il,1994,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740il,1995,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,740il,1996,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,740il,1997,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,740il,1998,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,740il,1999,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,740il,2001,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,740il/740il Protection,2000,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,740Ld xDrive,2015,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740Li,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,740Li,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,740Li,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740Li,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740Li,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740Li xDrive,2013,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740Li xDrive,2014,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,740Li xDrive,2015,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,745i,2002,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,745i,2003,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,745i,2004,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,745i,2005,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,745li,2002,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,745li,2003,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,745li,2004,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,745li,2005,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750 Series,1988,12,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +BMW,750i,1991,12,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +BMW,750i,2006,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750i,2007,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750i,2008,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750i,2009,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750i,2010,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750i,2011,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750i,2012,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750i,2013,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750i,2014,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750i,2015,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750i,2016,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750i xDrive,2010,8,4.4,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750i xDrive,2011,8,4.4,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750i xDrive,2012,8,4.4,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750i xDrive,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750i xDrive,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750i xDrive,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750i xDrive,2016,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750il,1989,12,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,750il,1989,12,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,750il,1990,12,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,750il,1991,12,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,750il,1991,12,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +BMW,750il,1992,12,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,750il,1993,12,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,750il,1994,12,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +BMW,750il,1995,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +BMW,750il,1996,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,750il,1997,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,750il,1998,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,750il,1999,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,750il,2001,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,750il/750il Protection,2000,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +BMW,750li,2006,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750li,2007,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750li,2008,8,4.8,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750li,2009,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750Li,2010,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750Li,2011,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750Li,2012,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750Li,2013,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750Li,2014,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750Li,2015,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750Li xDrive,2010,8,4.4,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750Li xDrive,2011,8,4.4,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750Li xDrive,2012,8,4.4,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,750Li xDrive,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750Li xDrive,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,750Li xDrive,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,760i,2004,12,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,760i,2005,12,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,760i,2006,12,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,760li,2003,12,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,760li,2004,12,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,760li,2005,12,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,760li,2006,12,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,760li,2007,12,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,760li,2008,12,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,760Li,2010,12,6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,760Li,2011,12,6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,760Li,2012,12,6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,760Li,2013,12,6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,760Li,2014,12,6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,760Li,2015,12,6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,840ci,1994,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,840ci,1995,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,840ci,1996,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,840ci,1997,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,850ci,1993,12,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,850ci,1993,12,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,850ci,1994,12,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,850ci,1995,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,850ci,1996,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,850ci,1997,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,850csi,1994,12,5.6,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,850csi,1995,12,5.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,850i,1991,12,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,850i,1991,12,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,850i,1992,12,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +BMW,850i,1992,12,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,Active E,2011,,,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +BMW,ActiveHybrid 3,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,ActiveHybrid 3,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,ActiveHybrid 3,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,ActiveHybrid 5,2012,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,ActiveHybrid 5,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,ActiveHybrid 5,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,ActiveHybrid 5,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,ActiveHybrid 5,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,ActiveHybrid 7,2012,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,ActiveHybrid 7i,2011,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +BMW,ActiveHybrid 7L,2012,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,ActiveHybrid 7L,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,ActiveHybrid 7L,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,ActiveHybrid 7L,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,ActiveHybrid 7Li,2011,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,ActiveHybrid X6,2010,8,4.4,All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +BMW,ActiveHybrid X6,2011,8,4.4,All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +BMW,Alpina B6 Gran Coupe xDrive,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,Alpina B6 Gran Coupe xDrive,2016,8,4.4,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,Alpina B6 xDrive Gran Coupe,2017,8,4.4,All-Wheel Drive,8-Speed Automatic,Compact Cars +BMW,Alpina B7 LWB,2011,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,Alpina B7 LWB,2012,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,Alpina B7 LWB,2013,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 LWB,2014,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 LWB,2015,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 LWB xDrive,2011,8,4.4,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,Alpina B7 LWB xDrive,2012,8,4.4,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,Alpina B7 LWB xDrive,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 LWB xDrive,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 LWB xDrive,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 SWB,2011,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,Alpina B7 SWB,2012,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW,Alpina B7 SWB,2013,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 SWB,2014,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 SWB,2015,8,4.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 SWB xDrive,2011,8,4.4,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,Alpina B7 SWB xDrive,2012,8,4.4,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,Alpina B7 SWB xDrive,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 SWB xDrive,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,Alpina B7 SWB xDrive,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,i3 BEV,2014,,,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +BMW,i3 BEV,2015,,,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +BMW,i3 BEV,2016,,,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +BMW,i3 REX,2014,2,0.6,Rear-Wheel Drive,Auto(A1),Subcompact Cars +BMW,i3 REX,2015,2,0.6,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +BMW,i3 REX,2016,2,0.6,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +BMW,i8,2014,3,1.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,i8,2015,3,1.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,i8,2016,3,1.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,M Coupe,1999,6,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,M Coupe,2000,6,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,M Coupe,2001,6,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,M Roadster,1998,6,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,M Roadster,1999,6,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,M Roadster,2000,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,M Roadster,2001,6,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,M1 Coupe,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M2,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M2,2016,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M235i,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,M235i,2014,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M235i,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,M235i,2015,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M235i,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,M235i,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M235i Convertible,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,M235i Convertible,2015,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M235i Convertible,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,M235i Convertible,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M235i xDrive,2015,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,M235i xDrive,2016,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,M235i xDrive Convertible,2016,6,3,All-Wheel Drive,8-Speed Automatic,Subcompact Cars +BMW,M3,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,M3,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,M3,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,M3,1995,6,3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,M3,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,M3,1996,6,3.2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,M3,1997,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,M3,1997,6,3.2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,M3,1998,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +BMW,M3,1998,6,3.2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,M3,1999,6,3.2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,M3,2001,6,3.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3,2002,6,3.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,M3,2003,6,3.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3,2003,6,3.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,M3,2004,6,3.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3,2004,6,3.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,M3,2005,6,3.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3,2005,6,3.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,M3,2006,6,3.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3,2006,6,3.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +BMW,M3,2008,8,4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M3,2008,8,4,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +BMW,M3,2009,8,4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M3,2009,8,4,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +BMW,M3,2010,8,4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M3,2010,8,4,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +BMW,M3,2015,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M3,2015,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Compact Cars +BMW,M3,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M3,2016,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Compact Cars +BMW,M3 Convertible,1998,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,M3 Convertible,1998,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,M3 Convertible,1999,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +BMW,M3 Convertible,1999,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +BMW,M3 Convertible,2001,6,3.2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +BMW,M3 Convertible,2002,6,3.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +BMW,M3 Convertible,2003,6,3.2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +BMW,M3 Convertible,2003,6,3.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +BMW,M3 Convertible,2004,6,3.2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +BMW,M3 Convertible,2004,6,3.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +BMW,M3 Convertible,2005,6,3.2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +BMW,M3 Convertible,2005,6,3.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +BMW,M3 Convertible,2006,6,3.2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +BMW,M3 Convertible,2006,6,3.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +BMW,M3 Convertible,2008,8,4,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M3 Convertible,2008,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Convertible,2009,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Convertible,2009,8,4,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M3 Convertible,2010,8,4,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M3 Convertible,2010,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Convertible,2011,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Convertible,2011,8,4,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M3 Convertible,2012,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Convertible,2012,8,4,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M3 Convertible,2013,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Convertible,2013,8,4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M3 Coupe,2008,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Coupe,2008,8,4,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M3 Coupe,2009,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Coupe,2009,8,4,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M3 Coupe,2010,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Coupe,2010,8,4,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M3 Coupe,2011,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Coupe,2011,8,4,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M3 Coupe,2012,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Coupe,2012,8,4,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M3 Coupe,2013,8,4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M3 Coupe,2013,8,4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M3 Sedan,2011,8,4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M3 Sedan,2011,8,4,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +BMW,M4 Convertible,2015,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M4 Convertible,2015,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M4 Convertible,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M4 Convertible,2016,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M4 Coupe,2015,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M4 Coupe,2015,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Compact Cars +BMW,M4 Coupe,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M4 Coupe,2016,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Compact Cars +BMW,M4 GTS,2016,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +BMW,M5,1991,6,3.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,M5,1992,6,3.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,M5,1993,6,3.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +BMW,M5,2000,8,4.9,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M5,2001,8,4.9,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M5,2002,8,4.9,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M5,2003,8,4.9,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M5,2006,10,5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +BMW,M5,2007,10,5,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,M5,2007,10,5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +BMW,M5,2008,10,5,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,M5,2008,10,5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +BMW,M5,2009,10,5,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,M5,2009,10,5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +BMW,M5,2010,10,5,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,M5,2010,10,5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +BMW,M5,2013,8,4.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,M5,2013,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Midsize Cars +BMW,M5,2014,8,4.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,M5,2014,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Midsize Cars +BMW,M5,2015,8,4.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,M5,2015,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Midsize Cars +BMW,M5,2016,8,4.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +BMW,M5,2016,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Midsize Cars +BMW,M6,1989,6,3.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +BMW,M6,2006,10,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M6,2007,10,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M6,2007,10,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6,2008,10,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6,2008,10,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M6,2009,10,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6,2009,10,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M6,2010,10,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6,2010,10,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M6 Convertible,2007,10,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M6 Convertible,2007,10,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Convertible,2008,10,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Convertible,2008,10,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M6 Convertible,2009,10,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Convertible,2009,10,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M6 Convertible,2010,10,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Convertible,2010,10,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +BMW,M6 Convertible,2012,8,4.4,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +BMW,M6 Convertible,2013,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Convertible,2013,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M6 Convertible,2014,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Convertible,2014,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M6 Convertible,2015,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Convertible,2015,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M6 Convertible,2016,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Convertible,2016,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M6 Convertible,2017,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Convertible,2017,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M6 Coupe,2013,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Coupe,2013,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M6 Coupe,2014,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Coupe,2014,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M6 Coupe,2015,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Coupe,2015,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M6 Coupe,2016,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Coupe,2016,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M6 Coupe,2017,8,4.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +BMW,M6 Coupe,2017,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Subcompact Cars +BMW,M6 Gran Coupe,2013,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M6 Gran Coupe,2013,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Compact Cars +BMW,M6 Gran Coupe,2014,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M6 Gran Coupe,2014,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Compact Cars +BMW,M6 Gran Coupe,2015,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M6 Gran Coupe,2015,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Compact Cars +BMW,M6 Gran Coupe,2016,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M6 Gran Coupe,2016,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Compact Cars +BMW,M6 Gran Coupe,2017,8,4.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +BMW,M6 Gran Coupe,2017,8,4.4,Rear-Wheel Drive,7-Speed Automated Manual,Compact Cars +BMW,X1 sDrive28i,2013,4,2,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,X1 sDrive28i,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,X1 sDrive28i,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Large Cars +BMW,X1 xDrive28i,2013,4,2,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,X1 xDrive28i,2014,4,2,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,X1 xDrive28i,2015,4,2,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,X1 xDrive28i,2016,4,2,All-Wheel Drive,8-Speed Automatic,Large Cars +BMW,X1 xDrive35i,2013,6,3,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,X1 xDrive35i,2014,6,3,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,X1 xDrive35i,2015,6,3,All-Wheel Drive,6-Speed Automatic,Large Cars +BMW,X3,2004,6,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X3,2004,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X3,2004,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X3,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X3,2005,6,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X3,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X3,2005,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X3,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X3,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X3,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X3 3.0i,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X3 3.0i,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X3 3.0si,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X3 3.0si,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X3 3.0si,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X3 3.0si,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X3 sDrive 28i,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 sDrive 28i,2017,4,2,Rear-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 sDrive28i,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive28d,2015,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive28d,2016,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive28i,2011,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X3 xDrive28i,2012,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X3 xDrive28i,2013,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive28i,2014,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive28i,2015,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive28i,2016,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive28i,2017,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive30i,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X3 xDrive30i,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X3 xDrive30i,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X3 xDrive30i,2010,6,3,All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X3 xDrive35i,2011,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X3 xDrive35i,2012,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X3 xDrive35i,2013,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive35i,2014,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive35i,2015,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive35i,2016,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X3 xDrive35i,2017,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X4 M40i,2016,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X4 M40i,2017,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X4 xDrive28i,2015,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X4 xDrive28i,2016,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X4 xDrive35i,2015,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X4 xDrive35i,2016,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +BMW,X5,2000,8,4.4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2001,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +BMW,X5,2001,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +BMW,X5,2001,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2001,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2001,8,4.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +BMW,X5,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2002,8,4.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +BMW,X5,2003,8,4.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2004,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X5,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2004,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5,2005,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X5,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2005,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +BMW,X5,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5,2006,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 3.0si,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 3.0si,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 4.6is,2002,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5 4.6is,2003,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +BMW,X5 4.8i,2007,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 4.8i,2008,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 4.8IS,2004,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 4.8is,2005,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 4.8is,2006,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 M,2013,8,4.4,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 M,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 M,2016,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 sDrive35i,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 sDrive35i,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 sDrive35i,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive30i,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive30i,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive35d,2009,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive35d,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive35d,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive35d,2012,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive35d,2013,6,3,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive35d,2014,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive35d,2015,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive35d,2016,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive35i,2011,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive35i,2012,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive35i,2013,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive35i,2014,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive35i,2015,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive35i,2016,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive40e,2016,4,2,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive48i,2009,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive48i,2010,8,4.8,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive50i,2011,8,4.4,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive50i,2012,8,4.4,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDrive50i,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive50i,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive50i,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDrive50i,2016,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X5 xDriveM,2010,8,4.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDriveM,2011,8,4.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X5 xDriveM,2012,8,4.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X6 M,2013,8,4.4,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 M,2014,8,4.4,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 M,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 M,2016,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 sDrive35i,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 sDrive35i,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 xDrive35i,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDrive35i,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDrive35i,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDrive35i,2011,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDrive35i,2012,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDrive35i,2013,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 xDrive35i,2014,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 xDrive35i,2015,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 xDrive35i,2016,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 xDrive50i,2008,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDrive50i,2009,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDrive50i,2010,8,4.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDrive50i,2011,8,4.4,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDrive50i,2012,8,4.4,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDrive50i,2013,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 xDrive50i,2014,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 xDrive50i,2015,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 xDrive50i,2016,8,4.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +BMW,X6 xDriveM,2010,8,4.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDriveM,2011,8,4.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,X6 xDriveM,2012,8,4.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +BMW,Z3 Coupe,1999,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Coupe,1999,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Coupe,2000,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Coupe,2000,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Coupe,2001,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Coupe,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z3 Coupe,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z3 Coupe,2002,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,1996,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Roadster,1996,4,1.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,1997,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Roadster,1997,4,1.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,1997,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Roadster,1997,4,1.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,1997,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Roadster,1997,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,1998,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Roadster,1998,4,1.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,1998,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Roadster,1998,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,1999,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Roadster,1999,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,1999,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Roadster,1999,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,2000,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Roadster,2000,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,2000,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +BMW,Z3 Roadster,2000,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,2001,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z3 Roadster,2001,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,2001,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z3 Roadster,2002,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z3 Roadster,2002,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z3 Roadster,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z3 Roadster,2002,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z4 3.0i,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 3.0i,2006,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 3.0i,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 3.0i,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 3.0i,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 3.0i,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 3.0si,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 3.0si,2006,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 3.0si,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 3.0si,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 3.0si,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 3.0si,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 3.0si Coupe,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 3.0si Coupe,2006,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 Coupe,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 Coupe,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 Coupe,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 Coupe,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 M Coupe,2006,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 M Coupe,2007,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 M Coupe,2008,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 M Roadster,2006,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 M Roadster,2007,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 M Roadster,2008,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 Roadster,2003,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z4 Roadster,2003,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z4 Roadster,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z4 Roadster,2003,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 Roadster,2003,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 Roadster,2003,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 Roadster,2004,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z4 Roadster,2004,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z4 Roadster,2004,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 Roadster,2004,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 Roadster,2004,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z4 Roadster,2004,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 Roadster,2005,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +BMW,Z4 Roadster,2005,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z4 Roadster,2005,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 Roadster,2005,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +BMW,Z4 Roadster,2005,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 sDrive28i,2012,4,2,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +BMW,Z4 sDrive28i,2012,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive28i,2013,4,2,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +BMW,Z4 sDrive28i,2013,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive28i,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +BMW,Z4 sDrive28i,2014,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive28i,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +BMW,Z4 sDrive28i,2015,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive28i,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +BMW,Z4 sDrive28i,2016,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive30i,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive30i,2009,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 sDrive30i,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 sDrive30i,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive30i,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive30i,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +BMW,Z4 sDrive35i,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive35i,2009,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +BMW,Z4 sDrive35i,2010,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +BMW,Z4 sDrive35i,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive35i,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive35i,2011,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +BMW,Z4 sDrive35i,2012,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive35i,2012,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +BMW,Z4 sDrive35i,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive35i,2013,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +BMW,Z4 sDrive35i,2014,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z4 sDrive35i,2014,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +BMW,Z4 sDrive35i,2015,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +BMW,Z4 sDrive35i,2016,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +BMW,Z4 sDrive35is,2011,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +BMW,Z4 sDrive35is,2012,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +BMW,Z4 sDrive35is,2013,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +BMW,Z4 sDrive35is,2014,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +BMW,Z4 sDrive35is,2015,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +BMW,Z4 sDrive35is,2016,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +BMW,Z8,2000,8,4.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z8,2001,8,4.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z8,2002,8,4.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW,Z8,2003,8,4.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +BMW Alpina,B7,2007,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW Alpina,B7,2008,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Large Cars +BMW Alpina,Roadster V8,2003,8,4.8,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Bugatti,Veyron,2006,16,8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Bugatti,Veyron,2008,16,8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Bugatti,Veyron,2010,16,8,All-Wheel Drive,7-Speed Automatic,Two Seaters +Bugatti,Veyron,2011,16,8,All-Wheel Drive,7-Speed Automatic,Two Seaters +Bugatti,Veyron,2012,16,8,All-Wheel Drive,7-Speed Automatic,Two Seaters +Bugatti,Veyron,2013,16,8,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Bugatti,Veyron,2014,16,8,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Bugatti,Veyron,2015,16,8,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Buick,Cascada,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Buick,Century,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Buick,Century,1984,6,3,,3-Speed Automatic,Midsize Cars +Buick,Century,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Buick,Century,1984,6,4.3,,3-Speed Automatic,Midsize Cars +Buick,Century,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Buick,Century,1984,6,3,,3-Speed Automatic,Midsize Cars +Buick,Century,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Buick,Century,1984,6,4.3,,3-Speed Automatic,Midsize Cars +Buick,Century,1984,6,4.3,,4-Speed Automatic,Midsize Cars +Buick,Century,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1985,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1986,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1987,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1988,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1989,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1989,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1989,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1990,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1990,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1991,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1991,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1992,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1993,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1994,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1996,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Century,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1998,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,1999,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,2000,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,2001,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,2002,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,2003,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,2004,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century,2005,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Century Estate Wagon,1984,4,2.5,,3-Speed Automatic,Midsize Station Wagons +Buick,Century Estate Wagon,1984,6,3,,3-Speed Automatic,Midsize Station Wagons +Buick,Century Estate Wagon,1984,6,3.8,,4-Speed Automatic,Midsize Station Wagons +Buick,Century Estate Wagon,1984,6,4.3,,3-Speed Automatic,Midsize Station Wagons +Buick,Century Estate Wagon,1984,4,2.5,,3-Speed Automatic,Midsize Station Wagons +Buick,Century Estate Wagon,1984,6,3,,3-Speed Automatic,Midsize Station Wagons +Buick,Century Estate Wagon,1984,6,3.8,,4-Speed Automatic,Midsize Station Wagons +Buick,Century Estate Wagon,1984,6,4.3,,3-Speed Automatic,Midsize Station Wagons +Buick,Century Estate Wagon,1984,6,4.3,,4-Speed Automatic,Midsize Station Wagons +Buick,Century Wagon,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1985,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1985,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1986,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1987,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1989,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1989,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1990,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1990,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1991,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1991,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1992,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1993,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1994,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Century Wagon,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Coachbuilder Wagon,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Buick,Coachbuilder Wagon,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Buick,Coachbuilder Wagon,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Buick,Coachbuilder Wagon,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Buick,Coachbuilder Wagon,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Buick,Coachbuilder Wagon,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Buick,Coachbuilder Wagon,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Buick,Electra Estate Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Electra Estate Wagon,1984,8,5.7,,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Electra Estate Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Electra/Park Avenue,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1984,8,5,2-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1984,6,4.1,,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1984,8,5,,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1984,6,4.3,,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1985,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1985,6,4.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1985,6,4.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1986,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Electra/Park Avenue,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Enclave,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Buick,Enclave,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Buick,Enclave,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Buick,Enclave,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Buick,Enclave,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Buick,Enclave,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Buick,Enclave,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Buick,Enclave,2011,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Buick,Enclave,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Buick,Enclave,2012,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Buick,Enclave,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Buick,Enclave,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Buick,Enclave,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Buick,Enclave,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Buick,Enclave,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Buick,Enclave,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Buick,Enclave,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Buick,Enclave,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Buick,Enclave,2017,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Buick,Enclave,2017,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Buick,Encore,2013,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Encore,2013,4,1.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Encore,2014,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Encore,2014,4,1.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Encore,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Encore,2015,4,1.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Encore,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Encore,2016,4,1.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Encore,2016,4,1.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Encore,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Envision,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Buick,Estate Wagon,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Funeral Coach/Hearse,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Buick,LaCrosse,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2011,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2012,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse eAssist,2012,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Buick,LaCrosse eAssist,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse eAssist,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse eAssist,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LaCrosse eAssist,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2005,6,3.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2006,6,3.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2006,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2007,6,3.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2007,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2008,8,5.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2008,6,3.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2008,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2009,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2009,8,5.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2010,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2010,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Lacrosse/Allure,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,LeSabre,1984,6,3.8,,3-Speed Automatic,Large Cars +Buick,LeSabre,1984,6,4.1,,4-Speed Automatic,Large Cars +Buick,LeSabre,1984,8,5,,3-Speed Automatic,Large Cars +Buick,LeSabre,1984,8,5,,4-Speed Automatic,Large Cars +Buick,LeSabre,1984,8,5.7,,4-Speed Automatic,Large Cars +Buick,LeSabre,1984,6,3.8,,3-Speed Automatic,Large Cars +Buick,LeSabre,1984,6,4.1,,4-Speed Automatic,Large Cars +Buick,LeSabre,1984,8,5,,3-Speed Automatic,Large Cars +Buick,LeSabre,1984,8,5,,4-Speed Automatic,Large Cars +Buick,LeSabre,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Buick,LeSabre,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Buick,LeSabre,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1986,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1986,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,LeSabre/Electra Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,LeSabre/Electra Wagon,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,LeSabre/Electra Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,LeSabre/Electra Wagon,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,LeSabre/Electra Wagon,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,LeSabre/Electra Wagon,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,LeSabre/Electra Wagon,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Lucerne,2006,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2006,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2007,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2007,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2008,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2008,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2008,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2009,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2009,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2009,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2010,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2010,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2010,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2011,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Lucerne,2011,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Park Avenue,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Rainier,2004,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2004,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2005,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2005,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2006,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2006,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2007,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2007,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rainier,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Reatta,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Buick,Reatta,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Buick,Reatta,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Buick,Reatta,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Buick,Regal,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Buick,Regal,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Buick,Regal,1984,6,4.1,,4-Speed Automatic,Midsize Cars +Buick,Regal,1984,6,4.3,,4-Speed Automatic,Midsize Cars +Buick,Regal,1984,8,5.7,,4-Speed Automatic,Midsize Cars +Buick,Regal,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Buick,Regal,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Buick,Regal,1984,6,4.1,,4-Speed Automatic,Midsize Cars +Buick,Regal,1984,6,4.3,,4-Speed Automatic,Midsize Cars +Buick,Regal,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1985,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1985,8,5.7,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1986,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1987,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1987,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1989,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1990,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1991,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1992,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Buick,Regal,1993,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2011,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Buick,Regal,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2012,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Buick,Regal,2012,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Buick,Regal,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2013,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Buick,Regal,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2013,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Buick,Regal,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2014,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Buick,Regal,2014,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2015,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2015,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Buick,Regal,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2016,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2016,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Buick,Regal,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal eAssist,2012,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Buick,Regal eAssist,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal eAssist,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal eAssist,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal eAssist,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Buick,Regal/Century,1997,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal/Century,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Regal/Century,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Rendezvous,2002,6,3.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2002,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2003,6,3.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2003,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2004,6,3.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2004,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2004,6,3.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2005,6,3.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2005,6,3.6,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2005,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2005,6,3.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2006,6,3.6,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2006,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2006,6,3.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2007,6,3.5,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Rendezvous,2007,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Buick,Riviera,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Buick,Riviera,1984,6,4.1,,4-Speed Automatic,Midsize Cars +Buick,Riviera,1984,8,5,,4-Speed Automatic,Midsize Cars +Buick,Riviera,1984,8,5.7,,4-Speed Automatic,Midsize Cars +Buick,Riviera,1984,6,4.1,,4-Speed Automatic,Midsize Cars +Buick,Riviera,1984,8,5,,4-Speed Automatic,Midsize Cars +Buick,Riviera,1985,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1985,8,5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1985,8,5.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1985,8,5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1986,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Buick,Riviera Convertible,1984,6,3.8,,4-Speed Automatic,Compact Cars +Buick,Riviera Convertible,1984,6,4.1,,4-Speed Automatic,Compact Cars +Buick,Riviera Convertible,1984,8,5,,4-Speed Automatic,Compact Cars +Buick,Riviera Convertible,1984,6,4.1,,4-Speed Automatic,Compact Cars +Buick,Riviera Convertible,1984,8,5,,4-Speed Automatic,Compact Cars +Buick,Riviera Convertible,1985,6,3.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Riviera Convertible,1985,8,5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Riviera Convertible,1985,8,5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Roadmaster,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Roadmaster,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Roadmaster,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Roadmaster,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Roadmaster,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Buick,Roadmaster Wagon,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Roadmaster Wagon,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Roadmaster Wagon,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Roadmaster Wagon,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Roadmaster Wagon,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Roadmaster Wagon,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Roadmaster Wagon,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Buick,Skyhawk,1984,4,1.8,,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1984,4,1.8,,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1984,4,1.8,,4-Speed Manual,Compact Cars +Buick,Skyhawk,1984,4,1.8,,5-Speed Manual,Compact Cars +Buick,Skyhawk,1984,4,2,,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1984,4,2,,4-Speed Manual,Compact Cars +Buick,Skyhawk,1984,4,1.8,,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1984,4,1.8,,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1984,4,1.8,,4-Speed Manual,Compact Cars +Buick,Skyhawk,1984,4,1.8,,5-Speed Manual,Compact Cars +Buick,Skyhawk,1984,4,2,,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1984,4,2,,4-Speed Manual,Compact Cars +Buick,Skyhawk,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1985,4,1.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skyhawk,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Skyhawk,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1985,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skyhawk,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1985,4,1.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skyhawk,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1985,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skyhawk,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1986,4,1.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skyhawk,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Skyhawk,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1986,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skyhawk,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1987,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skyhawk,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Skyhawk,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Skyhawk,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Skyhawk,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Skyhawk,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skyhawk,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Skyhawk Wagon,1984,4,1.8,,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1984,4,1.8,,5-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1984,4,2,,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1984,4,2,,4-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1984,4,1.8,,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1984,4,1.8,,5-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1984,4,2,,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1984,4,2,,4-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1985,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1985,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1986,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1987,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1987,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1988,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1988,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Buick,Skyhawk Wagon,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Buick,Skyhawk Wagon,1989,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Buick,Skylark,1984,4,2.5,,3-Speed Automatic,Compact Cars +Buick,Skylark,1984,4,2.5,,4-Speed Manual,Compact Cars +Buick,Skylark,1984,6,2.8,,3-Speed Automatic,Compact Cars +Buick,Skylark,1984,6,2.8,,4-Speed Manual,Compact Cars +Buick,Skylark,1984,4,2.5,,3-Speed Automatic,Compact Cars +Buick,Skylark,1984,4,2.5,,4-Speed Manual,Compact Cars +Buick,Skylark,1984,6,2.8,,3-Speed Automatic,Compact Cars +Buick,Skylark,1984,6,2.8,,4-Speed Manual,Compact Cars +Buick,Skylark,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1985,4,2.5,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skylark,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skylark,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skylark,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Buick,Skylark,1988,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Skylark,1988,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1989,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1989,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1990,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1990,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1991,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1991,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1992,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1992,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1993,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1993,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1994,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1994,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Skylark,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Skylark,1995,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Skylark,1995,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Skylark,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Skylark,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Skylark,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Skylark,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Skylark,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Skylark,1997,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Skylark,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Skylark,1998,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Buick,Somerset Regal,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Somerset Regal,1985,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Somerset Regal,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Somerset Regal,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Somerset/Skylark,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Somerset/Skylark,1986,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Somerset/Skylark,1986,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Somerset/Skylark,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Somerset/Skylark,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Buick,Somerset/Skylark,1987,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Buick,Terraza,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Buick,Terraza,2005,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Buick,Terraza,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Buick,Terraza,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Buick,Terraza,2006,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Buick,Terraza,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Buick,Terraza,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Buick,Terraza,2008,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Buick,Verano,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Buick,Verano,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Buick,Verano,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Buick,Verano,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Buick,Verano,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Buick,Verano,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Buick,Verano,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Buick,Verano,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Buick,Verano,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Buick,Verano,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Buick,Verano,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Buick,Verano,2016,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Buick,Verano,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +BYD,e6,2012,,,Front-Wheel Drive,1-Speed Direct Drive,Sport Utility Vehicle +BYD,e6,2013,,,Front-Wheel Drive,1-Speed Direct Drive,Small Sport Utility Vehicle +BYD,e6,2014,,,Front-Wheel Drive,1-Speed Direct Drive,Small Sport Utility Vehicle +BYD,e6,2015,,0,Front-Wheel Drive,1-Speed Direct Drive,Small Sport Utility Vehicle +Cadillac,Allante,1987,8,4.1,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Cadillac,Allante,1988,8,4.1,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Cadillac,Allante,1989,8,4.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Cadillac,Allante,1990,8,4.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Cadillac,Allante,1991,8,4.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Cadillac,Allante,1992,8,4.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Cadillac,Allante,1993,8,4.6,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Cadillac,Armored Deville,2004,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Armored Deville,2005,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Armored DTS,2006,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,ATS,2013,4,2.5,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2013,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2013,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2013,4,2,All-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2013,4,2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2013,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Cadillac,ATS,2014,4,2.5,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2014,4,2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2014,4,2,All-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2014,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Cadillac,ATS,2014,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2015,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2015,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Cadillac,ATS,2015,4,2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2015,4,2,All-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2015,4,2.5,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Cadillac,ATS,2016,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Cadillac,ATS,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Cadillac,ATS,2016,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Cadillac,ATS,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Cadillac,ATS,2016,4,2.5,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Cadillac,ATS,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Compact Cars +Cadillac,ATS-V,2016,6,3.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Cadillac,ATS-V,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Cadillac,Brougham,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham/DeVille,1984,8,4.1,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham/DeVille,1984,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Brougham/DeVille,1984,8,4.1,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Catera,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Catera,1998,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Catera,1999,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Catera,2000,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Catera,2001,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Cimarron,1984,4,2,,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1984,4,2,,5-Speed Manual,Compact Cars +Cadillac,Cimarron,1984,4,2,,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1984,4,2,,5-Speed Manual,Compact Cars +Cadillac,Cimarron,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Cadillac,Cimarron,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Cadillac,Cimarron,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Cadillac,Cimarron,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Cadillac,Cimarron,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Cadillac,Cimarron,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1986,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Cadillac,Cimarron,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Cadillac,Cimarron,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Cadillac,Cimarron,1988,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Cadillac,Cimarron,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Cadillac,Commercial Chassis,1988,8,4.5,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Cadillac,Commercial Chassis,1989,8,4.5,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Cadillac,Commercial Chassis,1990,8,4.5,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Cadillac,Commercial Chassis,1991,8,4.9,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Cadillac,Commercial Chassis,1992,8,4.9,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Cadillac,Commercial Chassis,1993,8,4.9,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Cadillac,CT6,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Cadillac,CT6,2016,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Cadillac,CT6,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Cadillac,CTS,2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,CTS,2003,6,3.2,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Cadillac,CTS,2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,CTS,2004,6,3.2,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Cadillac,CTS,2004,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,CTS,2005,6,2.8,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,CTS,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2005,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,CTS,2006,6,2.8,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2006,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,CTS,2006,6,3.6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2006,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,CTS,2007,6,2.8,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2007,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,CTS,2007,6,3.6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2007,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,CTS,2008,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2008,6,3.6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2008,6,3.6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2008,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2009,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2009,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2009,6,3.6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2009,6,3.6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2010,6,3.6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2010,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2010,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2011,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2011,8,6.2,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2011,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2011,6,3.6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2011,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2012,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2012,8,6.2,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2012,6,3.6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2012,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2012,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2013,8,6.2,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2013,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2013,6,3,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2013,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2013,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2014,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2014,8,6.2,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS,2015,8,6.2,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS,2015,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2014,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2014,4,2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2015,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2015,4,2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2016,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Cadillac,CTS Sedan,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Cadillac,CTS V,2014,8,6.2,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS V,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS Wagon,2010,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2010,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2010,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2011,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2011,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2011,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2011,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2011,8,6.2,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +Cadillac,CTS Wagon,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2012,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2012,8,6.2,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +Cadillac,CTS Wagon,2012,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2012,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2012,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2013,8,6.2,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +Cadillac,CTS Wagon,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2013,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2013,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2013,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2014,6,3,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2014,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2014,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS Wagon,2014,8,6.2,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +Cadillac,CTS Wagon,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Small Station Wagons +Cadillac,CTS-V,2004,8,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS-V,2005,8,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS-V,2006,8,6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS-V,2007,8,6,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS-V,2010,8,6.2,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Cadillac,CTS-V,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,CTS-V,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Cadillac,DeVille,1988,8,4.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,1996,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,1997,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,1998,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,1999,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,2000,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,2001,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,2002,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,2003,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,2004,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,2004,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,2005,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille,2005,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille/60 Special,1993,8,4.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille/Concourse,1994,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille/Concourse,1994,8,4.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille/Concourse,1995,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DeVille/Concourse,1995,8,4.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2006,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2006,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2007,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2007,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2008,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2008,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2009,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2009,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2010,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2010,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,DTS,2011,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Eldorado,1984,8,4.1,,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1984,8,5.7,,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1984,8,4.1,,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1985,8,4.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1985,8,5.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1985,8,4.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1986,8,4.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1987,8,4.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1988,8,4.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1989,8,4.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1990,8,4.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1991,8,4.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1992,8,4.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1993,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1993,8,4.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1994,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1995,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1996,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1997,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1998,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,1999,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,2000,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,2001,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado,2002,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Eldorado Convertible,1984,8,4.1,,4-Speed Automatic,Compact Cars +Cadillac,Eldorado Convertible,1984,8,4.1,,4-Speed Automatic,Compact Cars +Cadillac,Eldorado Convertible,1985,8,4.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Cadillac,ELR,2014,4,1.4,Front-Wheel Drive,CVT,Subcompact Cars +Cadillac,ELR,2015,4,1.4,Front-Wheel Drive,CVT,Subcompact Cars +Cadillac,ELR,2016,4,1.4,Front-Wheel Drive,CVT,Subcompact Cars +Cadillac,ELR Sport,2016,4,1.4,Front-Wheel Drive,CVT,Subcompact Cars +Cadillac,Escalade,1999,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2000,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2002,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2003,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2004,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2005,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2005,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2006,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2006,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2007,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2007,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2008,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2008,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2009,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2009,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2010,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2011,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2012,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade,2013,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade,2014,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade,2015,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade,2015,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade,2015,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade,2015,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade,2016,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade ESV,2003,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2004,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2005,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2006,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2008,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2009,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2011,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2012,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade ESV,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade ESV,2013,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade ESV,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade ESV,2014,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade ESV,2015,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade ESV,2015,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade ESV,2015,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade ESV,2015,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade Ext,2002,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade Ext,2003,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade Ext,2004,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade Ext,2005,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade Ext,2006,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade Ext,2011,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade Ext,2012,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,Escalade Ext,2013,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,Escalade Hybrid,2009,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +Cadillac,Escalade Hybrid,2010,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +Cadillac,Escalade Hybrid,2011,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +Cadillac,Escalade Hybrid,2011,8,6,4-Wheel Drive,CVT,Sport Utility Vehicle +Cadillac,Escalade Hybrid,2012,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +Cadillac,Escalade Hybrid,2012,8,6,4-Wheel Drive,CVT,Sport Utility Vehicle +Cadillac,Escalade Hybrid,2013,8,6,Rear-Wheel Drive,CVT,Standard Sport Utility Vehicle +Cadillac,Escalade Hybrid,2013,8,6,4-Wheel Drive,CVT,Standard Sport Utility Vehicle +Cadillac,Fleetwood,1988,8,4.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood Brougham,1985,8,4.1,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood Brougham,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood Brougham,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1984,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1985,8,4.1,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1985,6,4.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1985,8,4.1,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1985,6,4.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1986,8,4.1,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1987,8,4.1,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1989,8,4.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1990,8,4.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1991,8,4.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Fleetwood/DeVille,1992,8,4.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach / Hearse,2003,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach / Hearse,2004,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach / Hearse,2005,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach / Hearse,2006,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach / Hearse,2007,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach / Hearse,2008,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach / Hearse,2009,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach / Hearse,2010,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach / Hearse,2011,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach/Hearse,1998,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Funeral Coach/Hearse,1999,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,1984,8,6,,3-Speed Automatic,Large Cars +Cadillac,Limousine,1985,8,4.1,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,1986,8,4.1,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,1987,8,4.1,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,1998,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,1999,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,2002,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,2003,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,2004,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,2005,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,2006,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,2007,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,2008,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,2009,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,2010,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Limousine,2011,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Seville,1984,8,4.1,,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1984,8,5.7,,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1984,8,4.1,,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1985,8,4.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1985,8,5.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1985,8,4.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1986,8,4.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1987,8,4.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1988,8,4.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1989,8,4.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1990,8,4.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1991,8,4.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1992,8,4.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1993,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1993,8,4.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1994,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1995,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Seville,1996,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Cadillac,Seville,1997,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1998,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,1999,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,2000,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,2001,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,2002,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,2003,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,2004,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,Seville,2004,8,4.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Cadillac,SRX,2004,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2004,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2004,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2004,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2005,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2005,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2006,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2006,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2006,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2006,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2007,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2007,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2007,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2007,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2008,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2008,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2008,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2008,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2009,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2009,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2009,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2009,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2010,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2010,6,2.8,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2011,6,2.8,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2012,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Cadillac,SRX,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,SRX,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,SRX,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,SRX,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,SRX,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,SRX,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,SRX,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,SRX,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Cadillac,STS,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,STS,2005,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,STS,2005,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,STS,2006,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,STS,2006,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,STS,2006,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,STS,2006,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,STS,2007,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,STS,2007,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2007,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Cadillac,STS,2007,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2008,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2008,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2008,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2009,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2009,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2009,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2010,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2010,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2010,8,4.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2011,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS,2011,6,3.6,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS-V,2006,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS-V,2007,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS-V,2008,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,STS-V,2009,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Cadillac,XLR,2004,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Cadillac,XLR,2005,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Cadillac,XLR,2006,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Cadillac,XLR,2007,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Cadillac,XLR,2008,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Cadillac,XLR,2009,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Cadillac,XLR-V,2006,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Cadillac,XLR-V,2007,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Cadillac,XLR-V,2008,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Cadillac,XLR-V,2009,8,4.4,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Cadillac,XT5,2017,6,3.6,Front-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Cadillac,XT5,2017,6,3.6,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Cadillac,XTS,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2017,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS,2017,6,3.6,All-Wheel Drive,6-Speed Automatic,Large Cars +Cadillac,XTS Hearse,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Cadillac,XTS Hearse,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Cadillac,XTS Hearse,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Cadillac,XTS Hearse,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Cadillac,XTS Limo,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Cadillac,XTS Limo,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Cadillac,XTS Limo,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Cadillac,XTS Limo,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Cadillac,XTS Limo,2017,6,3.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +CCC Engineering,Duntov GT,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +CCC Engineering,Duntov GT,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Astro (cargo),1985,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (cargo),1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (cargo),1985,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (cargo),1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (cargo),1985,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1986,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (cargo),1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (cargo),1986,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1987,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1987,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (cargo),1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1987,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1988,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1988,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1989,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1989,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1989,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1990,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1990,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (cargo),1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (cargo),1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2002,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2004,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo),2005,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo) Conversion,2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo) Conversion,2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo) Conversion,2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo) Conversion,2004,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo) Conversion,2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (cargo) Conversion,2005,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Astro (passenger),1985,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (passenger),1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (passenger),1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (passenger),1985,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (passenger),1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (passenger),1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (passenger),1985,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (passenger),1986,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (passenger),1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (passenger),1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,Astro (passenger),1986,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (passenger),1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1987,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (passenger),1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1988,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (passenger),1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1989,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +Chevrolet,Astro (passenger),1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Astro (passenger),1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2002,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2004,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Astro (passenger),2005,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Avalanche 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2007,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2007,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2008,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2008,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2009,8,6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2010,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2011,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2011,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2012,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2012,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Avalanche 1500,2013,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Avalanche 1500,2013,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Aveo,2004,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Aveo,2004,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Aveo,2005,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Aveo,2005,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Aveo,2007,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Aveo,2007,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Aveo,2008,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Aveo,2008,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Aveo,2009,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Aveo,2009,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Aveo,2010,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Aveo,2010,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Aveo,2011,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Aveo,2011,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Aveo 5,2005,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Aveo 5,2005,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Aveo 5,2006,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Aveo 5,2006,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Aveo 5,2007,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Aveo 5,2007,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Aveo 5,2008,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Aveo 5,2008,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Aveo 5,2009,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Aveo 5,2009,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Aveo 5,2010,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Aveo 5,2010,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Aveo 5,2011,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Aveo 5,2011,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Beretta,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1988,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1989,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1989,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1990,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1990,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1990,6,3.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1990,6,3.1,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1991,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1991,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1991,6,3.1,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1992,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1992,6,3.1,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1993,6,3.1,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1994,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1994,6,3.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Beretta,1994,6,3.1,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Beretta,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Beretta,1996,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Beretta,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Beretta,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Blazer,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer,1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1995,6,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer,1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1996,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer,1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1996,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer,1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1997,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer,1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1997,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer,1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1998,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer,1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1998,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer,1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer,1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,1999,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,1999,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2000,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2000,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2001,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2001,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2002,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2002,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2002,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2003,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2003,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2004,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2004,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2004,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2005,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer,2005,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Blazer,2005,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Blazer 1500,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer 1500,1992,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer 1500,1993,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer 1500,1993,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer 1500,1994,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer 1500,1994,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer 1500,1994,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer V1500,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer V1500,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer V1500,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer V1500,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer V1500,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Blazer V1500,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Blazer V1500,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,C10 Pickup,1984,6,4.1,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,6,4.1,2-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,5,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,5,2-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,5,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,6,4.1,2-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1984,8,5,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,8,5,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,8,5,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C10 Pickup,1988,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1989,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1990,8,7.4,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1991,8,7.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,8,7.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1992,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,8,7.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1993,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1994,8,6.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,8,6.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1996,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1996,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1996,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1996,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1997,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1997,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1997,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1997,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1998,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1998,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1998,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1998,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1999,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C1500 Pickup,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1984,8,5,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1986,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1986,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C20 Pickup,1988,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1989,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1990,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1991,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1992,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1992,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1992,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1992,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1993,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,C2500 Pickup,1993,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Camaro,1984,4,2.5,,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1984,4,2.5,,4-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1984,4,2.5,,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1984,6,2.8,,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1984,6,2.8,,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1984,8,5,,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1984,8,5,,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1984,4,2.5,,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1984,4,2.5,,4-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1984,4,2.5,,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1984,6,2.8,,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1984,6,2.8,,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1984,8,5,,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1984,8,5,,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1985,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1986,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1987,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1987,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1987,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1987,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1988,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1989,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1990,6,3.1,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1990,6,3.1,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1991,6,3.1,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1991,6,3.1,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1992,6,3.1,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1992,6,3.1,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1993,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1993,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1993,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1994,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1994,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1994,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1995,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1995,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1995,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1995,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1996,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1996,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1996,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1997,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1997,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1997,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1998,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1998,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1998,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1999,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1999,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,1999,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Chevrolet,Camaro,2000,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,2000,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,2000,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Chevrolet,Camaro,2001,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,2001,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,2001,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,2001,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Chevrolet,Camaro,2002,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,2002,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Camaro,2002,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Camaro,2002,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Chevrolet,Camaro,2010,6,3.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2010,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2010,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2011,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2011,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2011,6,3.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2011,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2012,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2012,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2012,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2012,6,3.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2012,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2013,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2013,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2013,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2013,6,3.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2013,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2014,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2014,6,3.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2014,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2014,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2014,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2014,8,7,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2015,8,7,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2015,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2015,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2015,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2015,6,3.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2015,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2015,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Camaro,2015,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2016,6,3.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Chevrolet,Camaro,2016,8,6.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Camaro,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Chevrolet,Camaro,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Chevrolet,Camaro,2016,4,2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Caprice,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Chevrolet,Caprice,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Chevrolet,Caprice,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1984,8,5.7,,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice Wagon,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice/Impala,1994,8,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice/Impala,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice/Impala,1995,8,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice/Impala,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice/Impala,1996,8,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice/Impala,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Caprice/Impala Wagon,1994,8,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice/Impala Wagon,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice/Impala Wagon,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Caprice/Impala Wagon,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Captiva,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Captiva,2012,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Captiva,2012,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Captiva,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Captiva,2013,6,3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Captiva,2013,6,3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Captiva,2014,6,3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Captiva,2014,6,3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Captiva,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Captiva,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Cavalier,1984,4,2,,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1984,4,2,,4-Speed Manual,Compact Cars +Chevrolet,Cavalier,1984,4,2,,4-Speed Manual,Compact Cars +Chevrolet,Cavalier,1984,4,2,,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1984,4,2,,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1984,4,2,,4-Speed Manual,Compact Cars +Chevrolet,Cavalier,1984,4,2,,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1985,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Chevrolet,Cavalier,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Chevrolet,Cavalier,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1985,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Chevrolet,Cavalier,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Chevrolet,Cavalier,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1986,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Chevrolet,Cavalier,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1986,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Chevrolet,Cavalier,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1987,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Chevrolet,Cavalier,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1988,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1989,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1989,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1990,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1990,6,3.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1990,6,3.1,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1991,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1991,6,3.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1992,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1992,6,3.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1993,6,3.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1994,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1994,6,3.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1994,6,3.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1995,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1995,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1996,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1996,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1997,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,1997,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,1998,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1998,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1998,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1998,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1999,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1999,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1999,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,1999,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,2000,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,2000,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,2000,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier,2000,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier,2001,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Cavalier,2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,2001,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,2002,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,2002,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,2002,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,2002,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,2003,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,2003,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,2004,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,2004,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier,2005,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cavalier,2005,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cavalier (Bi-fuel CNG),2000,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier (Bi-fuel CNG),2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1984,4,2,,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1984,4,2,,4-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1984,4,2,,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1984,4,2,,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1984,4,2,,4-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1984,4,2,,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1985,4,2,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1985,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1985,4,2,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1985,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1986,4,2,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1986,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1986,6,2.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1987,4,2,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1987,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1988,6,2.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1989,6,2.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1989,6,2.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Convertible,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Convertible,1991,6,3.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cavalier Dual-fuel,2002,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Dual-fuel,2003,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Dual-fuel,2004,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cavalier Wagon,1984,4,2,,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1984,4,2,,4-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1984,4,2,,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1984,4,2,,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1984,4,2,,4-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1984,4,2,,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1985,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1985,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1985,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1985,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1986,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1986,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1986,6,2.8,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1987,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1987,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1988,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1988,6,2.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1989,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1989,6,2.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1989,6,2.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1990,4,2.2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1990,6,3.1,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1990,6,3.1,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1991,4,2.2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Cavalier Wagon,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1992,4,2.2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1994,4,2.2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Cavalier Wagon,1994,6,3.1,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Chevrolet,Celebrity,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1984,4,2.5,,4-Speed Manual,Midsize Cars +Chevrolet,Celebrity,1984,6,2.8,,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1984,6,4.3,,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1984,4,2.5,,4-Speed Manual,Midsize Cars +Chevrolet,Celebrity,1984,6,2.8,,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1984,6,4.3,,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1984,6,4.3,,4-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1985,4,2.5,Front-Wheel Drive,4-Speed Manual,Midsize Cars +Chevrolet,Celebrity,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1985,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1985,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1986,4,2.5,Front-Wheel Drive,4-Speed Manual,Midsize Cars +Chevrolet,Celebrity,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1987,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Celebrity,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1988,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Celebrity,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1989,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Celebrity,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Celebrity Wagon,1984,4,2.5,,3-Speed Automatic,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1984,4,2.5,,4-Speed Manual,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1984,6,2.8,,3-Speed Automatic,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1984,6,2.8,,4-Speed Automatic,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1984,6,4.3,,3-Speed Automatic,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1984,4,2.5,,3-Speed Automatic,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1984,4,2.5,,4-Speed Manual,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1984,6,2.8,,3-Speed Automatic,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1984,6,2.8,,4-Speed Automatic,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1984,6,4.3,,3-Speed Automatic,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1984,6,4.3,,4-Speed Automatic,Midsize Station Wagons +Chevrolet,Celebrity Wagon,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1985,4,2.5,Front-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1985,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1985,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1986,4,2.5,Front-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1987,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Celebrity Wagon,1990,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Chevrolet,Chevette,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Chevrolet,Chevette,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Chevrolet,Chevette,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Chevrolet,Chevette,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Chevrolet,Chevette,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Chevrolet,Chevette,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Chevrolet,Chevette,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Chevrolet,Chevette,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Chevrolet,Chevette,1985,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Chevette,1985,4,1.6,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Chevette,1985,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Chevette,1985,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Chevette,1985,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Chevette,1985,4,1.6,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Chevette,1985,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Chevette CS,1986,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Chevette CS,1986,4,1.6,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Chevette CS,1986,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Chevette CS,1986,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Chevette CS,1987,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Chevette CS,1987,4,1.6,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Chevrolet,Chevette CS,1987,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Citation II,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Chevrolet,Citation II,1984,4,2.5,,4-Speed Manual,Midsize Cars +Chevrolet,Citation II,1984,6,2.8,,3-Speed Automatic,Midsize Cars +Chevrolet,Citation II,1984,6,2.8,,4-Speed Manual,Midsize Cars +Chevrolet,Citation II,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Chevrolet,Citation II,1984,4,2.5,,4-Speed Manual,Midsize Cars +Chevrolet,Citation II,1984,6,2.8,,3-Speed Automatic,Midsize Cars +Chevrolet,Citation II,1984,6,2.8,,4-Speed Manual,Midsize Cars +Chevrolet,Citation II,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Citation II,1985,4,2.5,Front-Wheel Drive,4-Speed Manual,Midsize Cars +Chevrolet,Citation II,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Citation II,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Midsize Cars +Chevrolet,Citation II,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Citation II,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Midsize Cars +Chevrolet,Citation II,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Citation II,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Midsize Cars +Chevrolet,City Express Cargo Van,2015,4,2,Front-Wheel Drive,CVT,Special Purpose Vehicle +Chevrolet,City Express Cargo Van,2016,4,2,Front-Wheel Drive,CVT,Special Purpose Vehicle +Chevrolet,Classic,2004,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Classic,2005,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Classic,2008,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Classic,2008,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Coachbuilder Wagon,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Coachbuilder Wagon,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Coachbuilder Wagon,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Coachbuilder Wagon,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Cobalt,2005,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2005,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cobalt,2005,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2006,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2006,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cobalt,2006,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cobalt,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cobalt,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2007,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cobalt,2007,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2007,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2008,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cobalt,2008,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cobalt,2008,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2009,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt,2009,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cobalt,2009,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt Coupe,2010,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Cobalt Coupe,2010,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt Sedan,2010,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Cobalt Sedan,2010,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Cobalt SS Coupe,2010,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt XFE,2008,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt XFE,2009,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt XFE Coupe,2010,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Cobalt XFE Sedan,2010,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Colorado,2004,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2004,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2004,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2004,5,3.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2004,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2004,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2004,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2004,5,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2005,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2005,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2005,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2005,5,3.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2005,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2005,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2005,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2005,5,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2006,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2006,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2006,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2006,5,3.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2006,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2006,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2006,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2006,5,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2007,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2007,4,2.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2007,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2007,4,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2007,4,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado,2007,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado,2008,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2008,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2008,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2008,4,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2008,4,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2008,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2009,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2009,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2009,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2009,4,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2009,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2009,4,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2010,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2010,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2010,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2010,4,2.9,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2010,4,2.9,4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2010,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2010,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2010,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2011,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2011,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2011,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2011,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2011,4,2.9,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2011,4,2.9,4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2011,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2011,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2012,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2012,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2012,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2012,4,2.9,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2012,4,2.9,4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2012,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2012,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2012,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2015,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2015,6,3.6,4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2015,4,2.5,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2015,4,2.5,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2015,4,2.5,4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2016,4,2.5,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado,2016,4,2.5,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2016,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2016,4,2.5,4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2016,6,3.6,4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2016,4,2.8,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado,2016,4,2.8,4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Cab Chassis,2015,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Chevrolet,Colorado Cab Chassis,2016,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Chevrolet,Colorado Cab Chassis inc,2006,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2006,5,3.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2007,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2007,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2008,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2008,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2009,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2009,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2010,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2010,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2011,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2011,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2012,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Cab Chassis inc,2012,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2004,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2004,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2004,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2004,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2004,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2004,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2005,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2005,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2005,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2005,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2005,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2005,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2006,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2006,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2006,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2006,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2006,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2006,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2007,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2007,4,2.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2007,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2007,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Colorado Crew Cab,2008,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2008,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2008,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2008,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2009,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2009,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2009,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2009,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2010,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2010,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2010,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2010,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2010,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2010,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2011,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2011,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2011,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2011,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2011,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2011,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2012,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2012,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2012,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2012,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2012,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Colorado Crew Cab,2012,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,Corsica,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Corsica,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Corsica,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Corsica,1988,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Corsica,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Corsica,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Corsica,1989,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Corsica,1989,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Corsica,1989,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Corsica,1990,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Corsica,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Corsica,1990,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Corsica,1990,6,3.1,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Corsica,1991,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Corsica,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Corsica,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Corsica,1991,6,3.1,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Corsica,1992,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Corsica,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1992,6,3.1,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Corsica,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Corsica,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1994,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1994,6,3.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Corsica,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Corsica,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Corsica,1996,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Corsica,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Corvette,1984,8,5.7,,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1984,8,5.7,,4-Speed Manual,Two Seaters +Chevrolet,Corvette,1984,8,5.7,,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1984,8,5.7,,4-Speed Manual,Two Seaters +Chevrolet,Corvette,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1985,8,5.7,Rear-Wheel Drive,4-Speed Manual,Two Seaters +Chevrolet,Corvette,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1986,8,5.7,Rear-Wheel Drive,4-Speed Manual,Two Seaters +Chevrolet,Corvette,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1988,8,5.7,Rear-Wheel Drive,4-Speed Manual,Two Seaters +Chevrolet,Corvette,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1989,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1990,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1990,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1991,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1991,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1992,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1992,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1993,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1993,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1994,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1994,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1995,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1995,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1996,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1997,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1998,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,1999,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,2000,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2001,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,2001,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2002,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,2002,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2003,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,2003,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2004,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,2004,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2005,8,6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette,2005,8,6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2006,8,6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2006,8,6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Chevrolet,Corvette,2006,8,7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2007,8,7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2007,8,6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2007,8,6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Chevrolet,Corvette,2008,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2008,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Chevrolet,Corvette,2008,8,7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2009,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Chevrolet,Corvette,2009,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2009,8,7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2009,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2010,8,7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2010,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2010,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Chevrolet,Corvette,2011,8,7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2011,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2011,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Chevrolet,Corvette,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Chevrolet,Corvette,2012,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2012,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2012,8,7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2013,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2013,8,7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2013,8,6.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Corvette,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Chevrolet,Corvette,2014,8,6.2,Rear-Wheel Drive,7-Speed Manual,Two Seaters +Chevrolet,Corvette,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Chevrolet,Corvette,2015,8,6.2,Rear-Wheel Drive,7-Speed Manual,Two Seaters +Chevrolet,Corvette,2015,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Chevrolet,Corvette,2015,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Chevrolet,Corvette,2015,8,6.2,Rear-Wheel Drive,7-Speed Manual,Two Seaters +Chevrolet,Corvette,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Chevrolet,Corvette,2016,8,6.2,Rear-Wheel Drive,7-Speed Manual,Two Seaters +Chevrolet,Corvette,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Chevrolet,Corvette,2016,8,6.2,Rear-Wheel Drive,7-Speed Manual,Two Seaters +Chevrolet,Corvette Convertible,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette Convertible,1986,8,5.7,Rear-Wheel Drive,4-Speed Manual,Two Seaters +Chevrolet,Corvette Convertible,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette Convertible,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette Convertible,1988,8,5.7,Rear-Wheel Drive,4-Speed Manual,Two Seaters +Chevrolet,Corvette Convertible,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chevrolet,Corvette Convertible,1989,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Cruze,2011,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze,2011,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2011,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2012,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2012,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2012,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze,2012,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze,2013,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze,2013,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2013,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze,2013,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2014,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2014,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2014,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2015,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2015,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Cruze,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Cruze Eco,2011,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze Eco,2011,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze Eco,2012,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze Eco,2012,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze Eco,2013,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze Eco,2013,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze Eco,2014,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze Eco,2014,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze Eco,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze Eco,2015,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze Limited,2016,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze Limited,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze Limited,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze Limited,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze Limited Eco,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Cruze Limited Eco,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Cruze Premier,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,El Camino Pickup,1984,6,3.8,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1984,6,3.8,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1984,8,5,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1984,8,5.7,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1984,6,3.8,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1984,8,5,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,El Camino Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Epica,2004,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Epica,2005,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Epica,2006,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Equinox,2005,6,3.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2005,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2006,6,3.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2006,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2007,6,3.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2007,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2008,6,3.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2008,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2009,6,3.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2009,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2010,4,2.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2010,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2011,4,2.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2012,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2012,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2012,4,2.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2012,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2012,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2012,4,2.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Equinox,2013,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2013,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2014,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2014,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2015,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2015,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2016,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2016,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2017,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2017,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2017,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Equinox,2017,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Express 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Cargo,2010,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2010,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2010,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2011,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2011,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2011,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2012,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2012,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2012,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2013,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2013,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2013,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2014,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2014,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Cargo,2014,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Conversion Cargo,2010,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Conversion Cargo,2010,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Conversion Cargo,2011,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Conversion Cargo,2011,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Conversion Cargo,2012,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Conversion Cargo,2012,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Conversion Cargo,2013,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Conversion Cargo,2013,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Conversion Cargo,2014,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Conversion Cargo,2014,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 1500 Passenger,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2010,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2010,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2011,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2011,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2012,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2012,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2013,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2013,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2014,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500 Passenger,2014,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Express 1500/2500,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Express 1500/2500,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Express 1500/2500,1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Express 1500/2500,1997,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Express 1500/2500,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Express 1500/2500,1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,1998,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,1999,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2000,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2001,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2001,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2002,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2002,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2006,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 1500/2500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Cargo,2011,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 2500 Cargo,2012,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 2500 Conversion Cargo,2011,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 2500 Conversion Cargo,2012,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 2500 Conversion Cargo,2013,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 2500 Conversion Cargo,2014,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 2500 Conversion Cargo,2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 2500 Conversion Cargo,2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 2500 Passenger,2011,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2011,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2012,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2012,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2013,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2013,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2014,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2014,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2015,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 2500 Passenger,2016,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Cargo,2011,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 3500 Cargo,2012,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express 3500 Passenger,2011,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Passenger,2012,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Passenger,2012,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Passenger,2013,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Passenger,2013,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Passenger,2014,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Passenger,2014,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Passenger,2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Passenger,2015,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Passenger,2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express 3500 Passenger,2016,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express Cargo (Bi-fuel),2004,8,6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express Cargo (dedicated CNG),2004,8,6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Express Passenger (Bi-fuel),2004,8,6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,Express Passenger (dedicated CNG),2004,8,6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,6,4.1,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,6,4.1,2-Wheel Drive,3-Speed Manual,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,8,5,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,8,6.2,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1984,8,6.2,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Chevrolet,G10/20 Sport Van,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1986,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1986,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1987,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1987,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1987,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1988,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1988,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1988,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1989,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1989,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1989,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Sport Van,1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1990,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1991,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1992,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Sport Van,1993,8,6.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G10/20 Van,1984,6,4.1,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,6,4.1,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,6,4.1,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,8,5,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,8,5,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,8,5,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,8,6.2,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,6,4.1,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,6,4.1,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1984,8,6.2,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Van,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1985,8,5,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Van,1985,8,5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Van,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Van,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Van,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1986,8,5,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Van,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1986,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1986,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1987,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Van,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1987,8,5,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G10/20 Van,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1987,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1987,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1988,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1988,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1988,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1988,8,5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1988,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1988,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1989,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1989,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1989,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1989,8,5,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1989,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1989,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +Chevrolet,G10/20 Van,1990,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1990,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G10/20 Van,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1990,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1991,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1992,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1993,8,6.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,G10/20 Van,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G10/20 Van (cargo),1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Sport Van,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G30 Sport Van,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Chevrolet,G30 Sport Van,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Sport Van,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Sport Van,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Sport Van,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Sport Van,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Sport Van,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Sport Van,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Sport Van,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Sport Van,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Sport Van,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,G30 Van,1984,6,4.1,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +Chevrolet,G30 Van,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G30 Van,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +Chevrolet,G30 Van,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1989,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G30 Van,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1990,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +Chevrolet,G30 Van,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,G30 Van (cargo),1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,HHR,2006,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2006,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2007,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2007,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2008,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2008,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2008,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2009,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2009,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2009,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2010,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2010,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2010,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2010,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2011,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR,2011,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2007,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2007,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2008,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2008,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2009,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2009,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2009,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2010,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2010,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2011,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,HHR Panel,2011,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,HHR Panel,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Impala,2000,6,3.4,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2001,6,3.4,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2002,6,3.4,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2003,6,3.4,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2004,6,3.4,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2005,6,3.4,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2006,8,5.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2007,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2007,8,5.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2007,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2008,8,5.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2008,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2008,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2008,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2009,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2009,8,5.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2009,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2009,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2010,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2010,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2010,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2011,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2011,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2017,4,2.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala,2017,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala Bi-Fuel ,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Impala Bi-Fuel ,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Impala eAssist,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala Limited,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala Limited,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala Limited,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,Impala Police,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala Police,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala Police,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala Police,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1984,6,3.8,,3-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1984,8,5,,3-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1984,8,5,,4-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1984,8,5.7,,4-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1984,8,5.7,,3-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1984,8,5.7,,4-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1984,6,3.8,,3-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1984,8,5,,3-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1984,8,5,,4-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1985,8,5.7,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Impala/Caprice,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,K10 Blazer,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,K10 Blazer,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,K10 Blazer,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,K10 Blazer,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,K10 Blazer,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,K10 Blazer,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,K10 Blazer,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,K10 Blazer,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,K10 Blazer,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,K10 Pickup,1984,6,4.1,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,6,4.1,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,6,4.1,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K10 Pickup,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1991,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1992,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1992,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1992,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1992,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1992,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1993,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1993,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1993,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1993,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1993,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1993,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1994,8,6.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1995,8,6.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1996,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1996,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1996,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1996,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1996,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1996,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1997,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1997,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1997,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1997,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1997,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1997,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1998,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1998,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1998,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1998,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1998,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1998,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1999,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K1500 Pickup,1999,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K20 Pickup,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1991,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1992,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1992,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1992,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1992,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1992,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1993,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K2500 Pickup,1993,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,K5/K10 Blazer,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,K5/K10 Blazer,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,K5/K10 Blazer,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,K5/K10 Blazer,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,K5/K10 Blazer,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1990,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1990,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1991,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1991,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1991,6,3.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Lumina,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1992,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1992,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1992,6,3.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Lumina,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1993,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1993,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1993,6,3.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Lumina,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina,1994,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina,2001,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina Minivan,1994,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina Minivan,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina Minivan,1995,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina Minivan,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina Minivan,1996,6,3.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina/APV Minivan,1990,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina/APV Minivan,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina/APV Minivan,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina/APV Minivan,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina/APV Minivan,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina/APV Minivan,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Lumina/Monte Carlo,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1995,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1996,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1997,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1997,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1998,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1999,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,2000,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,2000,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Lumina/Monte Carlo,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,1997,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,1998,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,1999,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2000,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2001,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2002,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2003,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2004,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2005,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2006,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2007,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2007,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2008,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2008,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2009,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2009,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2009,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2010,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2010,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2013,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Midsize Cars +Chevrolet,Malibu,2016,4,1.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu eAssist,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu eAssist,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu Hybrid,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu Hybrid,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu Hybrid,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Malibu Hybrid,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Chevrolet,Malibu Limited,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Malibu Maxx,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Malibu Maxx,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Malibu Maxx,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Malibu Maxx,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Malibu Maxx,2007,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Malibu Maxx,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chevrolet,Metro,1998,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Metro,1998,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Metro,1998,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Metro,1999,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Metro,1999,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Metro,1999,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Metro,2000,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Metro,2000,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Metro,2000,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Metro,2001,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Monte Carlo,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1984,8,5,,3-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1984,8,5,,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1984,8,5.7,,3-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1984,8,5.7,,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1984,8,5,,3-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1984,8,5,,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2001,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2002,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2003,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2004,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2005,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2006,8,5.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2007,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2007,8,5.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Monte Carlo,2007,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chevrolet,Nova,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Nova,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Nova,1986,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Nova,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Nova,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Nova,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Nova,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Nova,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Nova,1988,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Nova,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Optra,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Optra,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Optra,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Optra,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Optra,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Optra,2006,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Optra,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Optra,2007,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Optra 5,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Optra 5,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Optra 5,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Optra 5,2006,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Optra 5,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Optra 5,2007,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Optra Wagon,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Chevrolet,Optra Wagon,2005,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Optra Wagon,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Chevrolet,Optra Wagon,2006,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Optra Wagon,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Chevrolet,Optra Wagon,2007,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Pickup 2500,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1993,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,6.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1994,8,6.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,6.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,6.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1996,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1996,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1996,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1997,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1997,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1997,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1997,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1998,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1998,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Pickup 2500,1998,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Pickup 2500,1998,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Postal Cab Chassis,1991,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Postal Cab Chassis,1992,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Postal Cab Chassis,1993,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Postal Cab Chassis,1994,4,2.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Prizm,1998,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Prizm,1998,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Prizm,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Prizm,1999,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Prizm,1999,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Prizm,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Prizm,2000,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Prizm,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Prizm,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Prizm,2001,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Prizm,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Prizm,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Prizm,2002,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chevrolet,Prizm,2002,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chevrolet,Prizm,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,R10 Pickup,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,6,4.3,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,R10 Pickup,1987,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,R10 Suburban,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R10 Suburban,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R10 Suburban,1987,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R10 Suburban,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R10 Suburban,1988,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R1500 Suburban,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R1500 Suburban,1989,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R1500 Suburban,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R1500 Suburban,1990,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R1500 Suburban,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R1500 Suburban,1991,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,R20 (C20) Pickup,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,R20 (C20) Pickup,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,R20 (C20) Pickup,1987,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,R20 (C20) Pickup,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,R20 (C20) Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,R20 (C20) Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,R20 (C20) Pickup,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,R20 (C20) Pickup,1987,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,R20 (C20) Pickup,1987,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,R20 (C20) Pickup,1987,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Blazer,1984,4,2,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1984,4,2,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1984,6,2.8,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1984,4,2,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1984,4,2,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1984,4,2,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1984,6,2.8,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1985,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1986,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1986,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1987,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1987,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1987,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1987,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1987,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1987,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1988,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1988,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1988,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1989,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1990,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1990,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Blazer,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Blazer,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1984,4,2,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1986,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1987,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1987,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1988,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1989,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1990,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Cab Chassis,1991,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Electric,1998,,,2-Wheel Drive,1-Speed Direct Drive,Small Pickup Trucks +Chevrolet,S10 Electric,1998,,,2-Wheel Drive,1-Speed Direct Drive,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2,2-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2.2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,6,2.8,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2.2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1984,6,2.8,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,4,1.9,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,4,2.2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,4,2.2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1986,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1986,6,2.8,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1987,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1987,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1987,4,2.5,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1987,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1987,6,2.8,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1987,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1988,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1988,6,2.8,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1988,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1989,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1989,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1989,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1990,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1990,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1990,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1990,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1991,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1991,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1991,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1992,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1992,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1992,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1993,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1993,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1993,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1994,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1994,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1995,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1995,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1995,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1995,6,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1996,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1996,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1996,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1996,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1997,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1997,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1997,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1997,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1998,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1998,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1998,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1998,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,1999,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1999,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,1999,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,1999,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,2000,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,2000,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,2000,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,2000,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,2000,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,2000,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,2001,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,2001,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,2001,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,2001,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,2002,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,2002,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,2002,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,2002,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,2002,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,2003,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,2003,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Chevrolet,S10 Pickup,2003,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Chevrolet,S10 Pickup,2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Pickup,2003,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,S10 Pickup,2004,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,S10 Utility Body,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,S10 Utility Body,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Silverado 15 Hybrid,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2009,8,6,Rear-Wheel Drive,CVT,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2009,8,6,4-Wheel or All-Wheel Drive,CVT,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2010,8,6,Rear-Wheel Drive,CVT,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2010,8,6,4-Wheel Drive,CVT,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2011,8,6,Rear-Wheel Drive,CVT,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2011,8,6,4-Wheel Drive,CVT,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2012,8,6,Rear-Wheel Drive,CVT,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2012,8,6,4-Wheel Drive,CVT,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2013,8,6,Rear-Wheel Drive,CVT,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2013,8,6,4-Wheel Drive,CVT,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2016,8,5.3,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 15 Hybrid,2016,8,5.3,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,1999,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,1999,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,1999,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,1999,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,1999,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,1999,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,1999,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,1999,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2000,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2000,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2000,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2000,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2000,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2000,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2000,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2000,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2001,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2001,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2001,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2001,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2001,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2001,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2001,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2001,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500,1999,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500,1999,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500,2000,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500,2000,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500,2002,8,6,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500,2002,8,6,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500 (Bifuel),2003,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500 HD,2005,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500 HD CNG,2004,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500 HD CNG,2005,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado 2500 HD CNG,2005,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2007,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2007,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2007,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2008,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2008,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2008,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2009,8,6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2009,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2009,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2009,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2010,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2010,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2010,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2011,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2011,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2011,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2012,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2012,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2012,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2013,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2013,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2013,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2014,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2014,6,4.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2015,6,4.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2015,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2016,6,4.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2016,8,5.3,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15 Cab Chassis,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Chevrolet,Silverado C15 Cab Chassis,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Chevrolet,Silverado C15 Cab Chassis,2015,6,4.3,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Chevrolet,Silverado C15 Cab Chassis,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Chevrolet,Silverado C15 XFE,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15 XFE,2010,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15 XFE,2011,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15 XFE,2012,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado C15 XFE,2013,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 15 Hybrid,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 15 Hybrid,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado Classic 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2007,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2007,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2007,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2008,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2008,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2008,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2009,8,5.3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2009,8,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2009,8,5.3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2009,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2009,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2009,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2010,6,4.3,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2010,8,4.8,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2010,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2010,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2011,6,4.3,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2011,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2011,8,4.8,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2011,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2012,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2012,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2012,6,4.3,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2012,8,4.8,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2013,6,4.3,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2013,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2013,8,4.8,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2013,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2014,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2014,6,4.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2014,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2015,6,4.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2015,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2016,6,4.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2016,8,5.3,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15,2016,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Chevrolet,Silverado K15 Cab Chassis,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Chevrolet,Silverado K15 Cab Chassis,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Chevrolet,Silverado K15 Cab Chassis,2015,6,4.3,4-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Chevrolet,Silverado K15 Cab Chassis,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Chevrolet,Silverado SS 1500,2003,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Sonic,2012,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic,2012,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Sonic,2012,4,1.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Sonic,2012,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic,2013,4,1.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Sonic,2013,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic,2013,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Sonic,2013,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic,2014,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Sonic,2014,4,1.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Sonic,2014,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic,2015,4,1.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Sonic,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic,2015,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Sonic,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Sonic,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic,2016,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chevrolet,Sonic 5,2012,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic 5,2012,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Sonic 5,2012,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Sonic 5,2012,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic 5,2013,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Sonic 5,2013,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic 5,2013,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Sonic 5,2013,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic 5,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic 5,2014,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Sonic 5,2014,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Sonic 5,2014,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic 5,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic 5,2015,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Sonic 5,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic 5,2015,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chevrolet,Sonic 5,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Chevrolet,Sonic 5,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Chevrolet,Sonic 5,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Chevrolet,Sonic 5,2016,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Chevrolet,Sonic 5 RS,2014,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Sonic 5 RS,2014,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic 5 RS,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic 5 RS,2015,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Sonic 5 RS,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Sonic 5 RS,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic RS,2013,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Chevrolet,Sonic RS,2013,4,1.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chevrolet,Sonic RS,2014,4,1.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Sonic RS,2014,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic RS,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Sonic RS,2015,4,1.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Sonic RS,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Chevrolet,Sonic RS,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chevrolet,Spark,2013,4,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Spark,2013,4,1.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chevrolet,Spark,2014,4,1.2,Front-Wheel Drive,CVT,Subcompact Cars +Chevrolet,Spark,2014,4,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Spark,2015,4,1.2,Front-Wheel Drive,CVT,Subcompact Cars +Chevrolet,Spark,2015,4,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Spark,2016,4,1.4,Front-Wheel Drive,CVT,Subcompact Cars +Chevrolet,Spark,2016,4,1.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Spark EV,2014,,,Front-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +Chevrolet,Spark EV,2015,,,Front-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +Chevrolet,Spark EV,2016,,,Front-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +Chevrolet,Spectrum,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Spectrum,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Spectrum,1986,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Spectrum,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Spectrum,1987,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Spectrum,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Spectrum,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Spectrum,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Spectrum Turbo,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Spectrum Turbo,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Sport Van G10/20,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G10/20,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G10/20,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G10/20,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G10/20,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G10/20,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G10/20,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G10/20,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G10/20,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G10/20,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G10/20 (passenger),1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G30,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G30 ,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Sport Van G30 (cargo),1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Sprint,1985,3,1,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Chevrolet,Sprint,1985,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Chevrolet,Sprint,1986,3,1,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Chevrolet,Sprint,1986,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Chevrolet,Sprint,1987,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Sprint,1987,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Sprint,1988,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Sprint,1988,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Sprint,1989,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Sprint,1989,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Sprint,1990,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Sprint,1990,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Sprint,1991,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Sprint,1991,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Sprint,1992,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Sprint,1992,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Sprint,1993,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Sprint,1993,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Sprint,1994,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Sprint,1994,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Sprint ER,1986,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Chevrolet,Sprint ER,1987,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Chevrolet,Sprint Metro,1988,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Chevrolet,Sprint Plus,1986,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chevrolet,Sprint Plus,1986,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,SS,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,SS,2015,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,SS,2015,8,6.2,Rear-Wheel Drive,6-Speed Manual,Large Cars +Chevrolet,SS,2016,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Chevrolet,SS,2016,8,6.2,Rear-Wheel Drive,6-Speed Manual,Large Cars +Chevrolet,SSR Pickup,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,SSR Pickup,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,SSR Pickup,2005,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,SSR Pickup,2005,8,6,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Chevrolet,SSR Pickup,2006,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,SSR Pickup,2006,8,6,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Chevrolet,Suburban 1500,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1993,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1994,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1995,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1996,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1997,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban 1500,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2000,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2001,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2001,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2006,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2007,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2007,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2008,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2008,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2009,8,6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2010,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2011,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2011,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2012,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2012,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 1500,2013,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban 1500,2013,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban 2500,2011,8,6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 2500,2011,8,6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 2500,2012,8,6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 2500,2012,8,6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Suburban 2500,2013,8,6,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban 2500,2013,8,6,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban C10,1984,8,5,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,1986,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban C10,2014,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban C1500,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban C1500,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban C1500,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban C1500,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban K10,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Suburban K10,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Suburban K10,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Suburban K10,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban K10,2014,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban K1500,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban K1500,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban K1500,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban K1500,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Suburban V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Suburban V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Suburban V1500,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban V1500,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban V1500,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,Suburban V1500,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban V1500,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Suburban V1500,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1984,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1984,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1985,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1986,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1986,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1986,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1986,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1987,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1987,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1987,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1987,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1988,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1988,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1988,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,T10 (S10) Blazer,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,T10 (S10) Pickup,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1984,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1984,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1985,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1986,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1986,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1986,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1986,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1987,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1987,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1987,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1987,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1988,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1988,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1988,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1988,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1988,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Chevrolet,T10 (S10) Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,Tahoe 1500,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1995,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1995,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1995,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1996,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1996,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1997,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1997,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1998,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1998,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tahoe 1500,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,1999,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,1999,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,1999,8,5.7,2-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2000,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2000,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2000,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2000,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2000,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2000,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2001,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2001,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2001,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2001,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2002,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2002,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2003,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2003,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2004,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2004,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2005,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2005,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2006,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2006,8,5.3,2-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2007,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2008,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2008,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2009,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2009,8,5.3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2009,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2009,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2010,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2010,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2011,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2011,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2012,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2012,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe 1500,2013,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe 1500,2013,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe 1500 XFE,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tahoe C10,2014,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe C1500,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe C1500,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe C1500,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe C1500,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2008,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2008,8,6,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2009,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2009,8,6,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2010,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2010,8,6,4-Wheel Drive,CVT,Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2011,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2011,8,6,4-Wheel Drive,CVT,Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2012,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2012,8,6,4-Wheel Drive,CVT,Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2013,8,6,Rear-Wheel Drive,CVT,Standard Sport Utility Vehicle +Chevrolet,Tahoe Hybrid,2013,8,6,4-Wheel Drive,CVT,Standard Sport Utility Vehicle +Chevrolet,Tahoe K10,2014,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe K1500,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe K1500,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe K1500,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tahoe K1500,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Tracker Convertible,1998,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tracker Convertible,1998,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Tracker Convertible,1998,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tracker Convertible,1998,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Tracker Convertible,1999,4,1.6,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,1999,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Convertible,1999,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,1999,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,1999,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Convertible,1999,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2000,4,1.6,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2000,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2000,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2000,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2000,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2000,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2001,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2001,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2001,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2002,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2002,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2002,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2003,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2003,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2003,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Convertible,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,1998,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tracker Hardtop,1998,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Tracker Hardtop,1998,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Tracker Hardtop,1998,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Chevrolet,Tracker Hardtop,1999,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,1999,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,1999,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,1999,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2000,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2000,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2000,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2000,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2001,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2001,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2001,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2002,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2002,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2002,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2003,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2003,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2003,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2003,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2003,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2004,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker Hardtop,2004,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker LT,2001,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker LT,2001,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker LT,2002,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker LT,2002,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker LT,2003,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker LT,2003,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker LT,2004,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker LT,2004,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker ZR2,2001,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker ZR2,2002,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker ZR2,2003,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker ZR2,2004,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker ZR2 Convertible,2001,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker ZR2 Convertible,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker ZR2 Convertible,2002,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker ZR2 Convertible,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,Tracker ZR2 Convertible,2003,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Tracker ZR2 Convertible,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chevrolet,TrailBlazer,2002,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2002,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2003,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2003,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2004,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2004,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2005,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2005,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2006,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2006,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2006,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2006,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2007,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2007,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2007,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2007,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2008,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2008,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2008,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2008,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2009,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2009,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2009,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer,2009,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2002,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2002,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2003,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2003,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2004,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2004,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2005,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2005,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2006,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2006,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,TrailBlazer Ext,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chevrolet,Traverse,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Traverse,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Traverse,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Traverse,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Traverse,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Traverse,2011,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Traverse,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Traverse,2012,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chevrolet,Traverse,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Traverse,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Traverse,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Traverse,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Traverse,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Traverse,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Traverse,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Traverse,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Traverse,2017,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Traverse,2017,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Chevrolet,Trax,2015,4,1.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Trax,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Trax,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Trax,2016,4,1.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Chevrolet,Turbo Sprint,1987,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Chevrolet,Turbo Sprint,1988,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Chevrolet,Turbo Sprint,1989,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Turbo Sprint,1990,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chevrolet,Twin-Turbo Corvette,1990,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Twin-Turbo Corvette,1991,8,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chevrolet,Uplander,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Uplander,2005,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Uplander,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Uplander,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Uplander,2006,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Uplander,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Uplander,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Uplander,2008,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Uplander,2008,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,V10 (K10) Blazer,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,V10 (K10) Blazer,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,V10 (K10) Blazer,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,V10 (K10) Blazer,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,V10 (K10) Blazer,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,V10 (K10) Pickup,1987,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,V10 (K10) Pickup,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,V10 (K10) Suburban,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,V10 (K10) Suburban,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,V10 (K10) Suburban,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,V10 (K10) Suburban,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,V10 Blazer,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,V10 Blazer,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,V10 Blazer,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,V10 Suburban,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,V10 Suburban,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Chevrolet,V10 Suburban,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,V20 Pickup,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,V20 Pickup,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,V20 Pickup,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Chevrolet,V20 Pickup,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Chevrolet,Van 15/25 Conversion,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2006,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 15/25 Conversion,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Cargo,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Cargo,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Cargo,2009,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Cargo,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Cargo,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion Cargo,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion Cargo,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion Cargo,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500 Conversion Cargo,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Van 1500/2500,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Van 1500/2500,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Van 1500/2500,1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Van 1500/2500,1997,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Van 1500/2500,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +Chevrolet,Van 1500/2500,1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,1998,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,1999,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2000,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2001,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2001,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2002,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2002,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2006,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2007,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2008,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Van 1500/2500,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Chevrolet,Venture,1997,6,3.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Venture,1998,6,3.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chevrolet,Venture,1999,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Venture,2000,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Venture,2001,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Venture,2002,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Venture,2002,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Venture,2003,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Venture,2003,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Venture,2004,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Venture,2004,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Venture,2005,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Chevrolet,Volt,2011,4,1.4,Front-Wheel Drive,1-Speed Automatic,Compact Cars +Chevrolet,Volt,2012,4,1.4,Front-Wheel Drive,1-Speed Automatic,Compact Cars +Chevrolet,Volt,2013,4,1.4,Front-Wheel Drive,CVT,Compact Cars +Chevrolet,Volt,2014,4,1.4,Front-Wheel Drive,CVT,Compact Cars +Chevrolet,Volt,2015,4,1.4,Front-Wheel Drive,CVT,Compact Cars +Chevrolet,Volt,2016,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Chevrolet,Volt,2017,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Chrysler,200,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,200,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,200,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,200,2012,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,200,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,200,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,200,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,200,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,200,2013,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,200,2014,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,200,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,200,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,200,2015,6,3.6,All-Wheel Drive,9-Speed Automatic,Midsize Cars +Chrysler,200,2015,4,2.4,Front-Wheel Drive,9-Speed Automatic,Midsize Cars +Chrysler,200,2015,6,3.6,Front-Wheel Drive,9-Speed Automatic,Midsize Cars +Chrysler,200,2015,4,2.4,Front-Wheel Drive,9-Speed Automatic,Midsize Cars +Chrysler,200,2015,6,3.6,Front-Wheel Drive,9-Speed Automatic,Midsize Cars +Chrysler,200,2015,6,3.6,All-Wheel Drive,9-Speed Automatic,Midsize Cars +Chrysler,200,2016,4,2.4,Front-Wheel Drive,9-Speed Automatic,Midsize Cars +Chrysler,200,2016,4,2.4,Front-Wheel Drive,9-Speed Automatic,Midsize Cars +Chrysler,200,2016,6,3.6,All-Wheel Drive,9-Speed Automatic,Midsize Cars +Chrysler,200,2016,6,3.6,Front-Wheel Drive,9-Speed Automatic,Midsize Cars +Chrysler,300,2006,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300,2006,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300,2006,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2006,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2007,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2008,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2009,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2010,8,5.7,All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2010,6,3.5,All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2011,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2011,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2011,8,5.7,All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2011,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2012,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2012,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2012,8,5.7,All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2012,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2012,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2013,8,5.7,All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2013,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2013,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2013,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2013,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2013,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2014,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2014,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2014,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2014,8,5.7,All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2015,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2015,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2015,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2016,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,300,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Chrysler,200 Convertible,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,200 Convertible,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chrysler,200 Convertible,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chrysler,200 Convertible,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chrysler,200 Convertible,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chrysler,200 Convertible,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chrysler,200 Convertible,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chrysler,200 Convertible,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chrysler,200 Convertible,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chrysler,300 M,1999,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300 M,2000,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300 M,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300 M,2003,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300 M,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300 SRT8,2012,8,6.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300 SRT8,2013,8,6.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300 SRT8,2014,8,6.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2007,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2007,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2007,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2007,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2008,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2008,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2008,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2008,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2008,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2009,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2009,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2009,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2009,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2010,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2010,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2010,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300/SRT-8,2010,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300C,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300C,2005,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300C,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300C,2006,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300C/SRT-8,2005,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300C/SRT-8,2005,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,300C/SRT-8,2005,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300C/SRT-8,2005,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300C/SRT-8,2006,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Chrysler,300M,2001,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Aspen,2007,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2007,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2007,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2008,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2008,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2009,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2009,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Chrysler,Aspen HEV,2009,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Cirrus,1995,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Cirrus,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Concorde,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1993,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1994,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1995,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1996,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1996,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1997,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1997,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1998,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1998,6,3.2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1999,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,1999,6,3.2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,2000,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,2000,6,3.2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,2001,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,2001,6,3.2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde/LHS,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde/LHS,2003,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde/LHS,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Concorde/LHS,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Conquest,1987,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,Conquest,1987,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,Conquest,1988,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,Conquest,1988,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,Conquest,1989,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,Conquest,1989,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,Crossfire,2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire,2004,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chrysler,Crossfire Coupe,2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Coupe,2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Coupe,2005,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chrysler,Crossfire Coupe,2006,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Coupe,2006,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Coupe,2006,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chrysler,Crossfire Coupe,2007,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Coupe,2007,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chrysler,Crossfire Coupe,2008,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Coupe,2008,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chrysler,Crossfire Roadster,2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Roadster,2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Roadster,2005,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chrysler,Crossfire Roadster,2006,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Roadster,2006,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Roadster,2006,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chrysler,Crossfire Roadster,2007,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Roadster,2007,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chrysler,Crossfire Roadster,2008,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Chrysler,Crossfire Roadster,2008,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Chrysler,E Class/New Yorker,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Chrysler,E Class/New Yorker,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Chrysler,E Class/New Yorker,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Chrysler,E Class/New Yorker,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Chrysler,E Class/New Yorker,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Chrysler,E Class/New Yorker,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Chrysler,Executive Sedan/Limousine,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Chrysler,Executive Sedan/Limousine,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Chrysler,Executive Sedan/Limousine,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,Fifth Avenue/Imperial,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Fifth Avenue/Imperial,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Imperial/New Yorker Fifth Avenue,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Imperial/New Yorker Fifth Avenue,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,JX/JXI/Limited Convertible,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,JX/JXI/Limited Convertible,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,JX/JXI/Limited Convertible,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Laser,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,Laser,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,Laser,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,Laser,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,Laser,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,Laser,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,Laser,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,Laser,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,Laser/Daytona,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Chrysler,Laser/Daytona,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Chrysler,Laser/Daytona,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Chrysler,Laser/Daytona,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Chrysler,Laser/Daytona,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Chrysler,Laser/Daytona,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Chrysler,Laser/Daytona,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Chrysler,Laser/Daytona,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Chrysler,Laser/Daytona,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,Laser/Daytona,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,Laser/Daytona,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,Laser/Daytona,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,Laser/Daytona,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,Laser/Daytona,1986,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,Laser/Daytona,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,Laser/Daytona,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1984,4,2.2,,5-Speed Manual,Midsize Cars +Chrysler,LeBaron,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1984,4,2.2,,5-Speed Manual,Midsize Cars +Chrysler,LeBaron,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1984,4,2.2,,5-Speed Manual,Midsize Cars +Chrysler,LeBaron,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1984,4,2.2,,5-Speed Manual,Midsize Cars +Chrysler,LeBaron,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,LeBaron,1990,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,LeBaron,1991,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1992,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,LeBaron,1992,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1993,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,LeBaron,1993,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,LeBaron,1994,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1994,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Chrysler,LeBaron,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,LeBaron Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1984,4,2.6,,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1984,4,2.6,,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1990,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1991,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1992,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1993,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Chrysler,LeBaron Convertible,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,LeBaron Convertible,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,LeBaron GTS,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1986,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,LeBaron GTS,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron GTS,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Chrysler,LeBaron Landau,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,LHS,1999,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,LHS,2000,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,LHS,2001,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Limousine,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1990,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1991,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,New Yorker,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,New Yorker Fifth Avenue/Imperial,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,New Yorker Fifth Avenue/Imperial,1990,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,New Yorker Fifth Avenue/Imperial,1991,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,New Yorker Fifth Avenue/Imperial,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,New Yorker Turbo,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker/5th Avenue,1988,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,New Yorker/LHS,1994,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,New Yorker/LHS,1995,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,New Yorker/LHS,1996,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,New Yorker/LHS,1997,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Chrysler,Newport/Fifth Avenue,1984,8,5.2,,3-Speed Automatic,Midsize Cars +Chrysler,Newport/Fifth Avenue,1984,8,5.2,,3-Speed Automatic,Midsize Cars +Chrysler,Newport/Fifth Avenue,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,Newport/Fifth Avenue,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,Newport/Fifth Avenue,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,Newport/Fifth Avenue,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,Newport/Fifth Avenue,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,Newport/Fifth Avenue,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Chrysler,Pacifica,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2004,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2005,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2006,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2006,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2007,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2007,6,4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2007,6,4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2008,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2008,6,4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2008,6,4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Chrysler,Pacifica,2017,6,3.6,Front-Wheel Drive,9-Speed Automatic,Minivan +Chrysler,Prowler,2002,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Chrysler,PT Cruiser,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser Convertible,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser Convertible,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser Convertible,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser Convertible,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser Convertible,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser Convertible,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Chrysler,PT Cruiser Convertible,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser Convertible,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Chrysler,PT Cruiser Convertible,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,PT Cruiser Convertible,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,PT Cruiser Convertible,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,PT Cruiser Convertible,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,PT Cruiser Convertible,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,PT Cruiser Convertible,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,PT Cruiser Convertible,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,PT Cruiser Convertible,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,QC Car,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Chrysler,Sebring,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1996,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1997,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2001,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2002,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2002,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2003,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2004,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2005,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring,2007,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring,2007,4,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,Sebring,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,Sebring,2008,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,Sebring,2008,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring,2008,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,Sebring,2009,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Chrysler,Sebring,2010,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2001,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2001,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring 4 Door,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring Convertible,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring Convertible,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Chrysler,Sebring Convertible,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2001,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2001,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2002,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring Convertible,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2003,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring Convertible,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2004,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Chrysler,Sebring Convertible,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,Sebring Convertible,2008,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,Sebring Convertible,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Chrysler,Sebring Convertible,2008,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Chrysler,Sebring Convertible,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2009,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Chrysler,Sebring Convertible,2010,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Chrysler,TC By,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Chrysler,TC By,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Two Seaters +Chrysler,TC By,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Chrysler,TC By,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Chrysler,TC By Convertible,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Two Seaters +Chrysler,TC By Convertible,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Chrysler,TC by Maserati,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Chrysler,Town and Country,1988,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1990,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1991,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1992,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1993,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1994,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1995,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1996,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1996,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1997,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1997,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1998,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1998,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1998,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Chrysler,Town and Country,1999,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country,1999,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country,1999,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country,2006,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country,2006,6,3.3,2-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country,2009,6,3.8,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2009,6,4,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2009,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country,2010,6,4,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2010,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country,2010,6,3.8,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country Wagon,1984,4,2.2,,3-Speed Automatic,Midsize Station Wagons +Chrysler,Town and Country Wagon,1984,4,2.6,,3-Speed Automatic,Midsize Station Wagons +Chrysler,Town and Country Wagon,1984,4,2.2,,3-Speed Automatic,Midsize Station Wagons +Chrysler,Town and Country Wagon,1984,4,2.6,,3-Speed Automatic,Midsize Station Wagons +Chrysler,Town and Country Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chrysler,Town and Country Wagon,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chrysler,Town and Country Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chrysler,Town and Country Wagon,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chrysler,Town and Country Wagon,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chrysler,Town and Country Wagon,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chrysler,Town and Country Wagon,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chrysler,Town and Country Wagon,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chrysler,Town and Country Wagon,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chrysler,Town and Country Wagon,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Chrysler,Town and Country/Voyager/Grand Voy.,2000,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2000,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2000,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2001,4,2.4,Front-Wheel Drive,3-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2001,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2001,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2001,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2002,4,2.4,Front-Wheel Drive,3-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2002,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2002,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2002,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2003,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2003,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2003,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2004,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2004,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2007,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2007,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2008,6,3.8,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2008,6,4,Front-Wheel Drive,6-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2008,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Town and Country/Voyager/Grand Voy.,2008,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Voyager/Town and Country,2005,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Voyager/Town and Country,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Chrysler,Voyager/Town and Country,2005,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +CODA Automotive,CODA,2012,,,Front-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +CODA Automotive,CODA,2013,,,Front-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +Consulier Industries Inc,Consulier GTP,1990,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Consulier Industries Inc,Consulier GTP,1991,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Consulier Industries Inc,Consulier GTP,1992,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +CX Automotive,CX 25 GTI,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +CX Automotive,CX 25 GTI,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +CX Automotive,CX 25 Prestige,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Large Cars +CX Automotive,CX 25Tri,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +CX Automotive,CX 25Tri,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +CX Automotive,Cxestate,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +CX Automotive,Cxestate,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +CX Automotive,Cxestate,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +CX Automotive,XM v6,1991,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +CX Automotive,XM v6,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +CX Automotive,XM v6,1992,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +CX Automotive,XM v6,1992,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +CX Automotive,XM v6,1993,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +CX Automotive,XM v6 Break,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +CX Automotive,XM v6 Break,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +CX Automotive,XM v6a,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +CX Automotive,XM v6a,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dabryan Coach Builders Inc,WB,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dabryan Coach Builders Inc,WB,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dabryan Coach Builders Inc,WB,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dabryan Coach Builders Inc,WB,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dabryan Coach Builders Inc,WB,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dabryan Coach Builders Inc,WB,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dabryan Coach Builders Inc,WB,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dabryan Coach Builders Inc,WB,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dabryan Coach Builders Inc,WB,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dacia,Coupe,1988,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Dacia,Sedan,1988,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Dacia,Station Wagon,1988,4,1.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Daewoo,Kalos,2004,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Kalos,2004,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lacetti,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lacetti,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,1998,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,1998,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,1998,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,1998,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,1999,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,1999,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,1999,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,1999,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,2000,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,2000,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,2000,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,2000,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,2001,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,2001,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,2001,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,2001,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,2002,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,2002,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,2002,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,2002,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Lanos,2003,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Lanos,2003,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Leganza,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Daewoo,Leganza,1998,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Daewoo,Leganza,1998,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Daewoo,Leganza,1998,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Daewoo,Leganza,1999,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Daewoo,Leganza,1999,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Daewoo,Leganza,2000,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Daewoo,Leganza,2000,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Daewoo,Leganza,2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Daewoo,Leganza,2001,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Daewoo,Leganza,2002,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Daewoo,Leganza,2002,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Daewoo,Magnus,2004,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Daewoo,Nubira,1998,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Nubira,1998,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Nubira,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Nubira,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Nubira,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Nubira,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Nubira,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Nubira,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Nubira,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Nubira,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Nubira,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Nubira,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Nubira,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Daewoo,Nubira,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Daewoo,Nubira Station Wagon,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Daewoo,Nubira Station Wagon,1999,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Daewoo,Nubira Station Wagon,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Daewoo,Nubira Station Wagon,2000,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Daewoo,Nubira Station Wagon,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Daewoo,Nubira Station Wagon,2001,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Daewoo,Nubira Station Wagon,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Daewoo,Nubira Station Wagon,2002,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Daewoo,Nubira Station Wagon,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Daewoo,Nubira Station Wagon,2003,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Daewoo,Nubira Wagon,1998,4,1.6,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Daewoo,Nubira Wagon,1998,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Daewoo,Nubira Wagon,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Daewoo,Nubira Wagon,1998,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Daihatsu,Charade,1988,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Daihatsu,Charade,1989,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Daihatsu,Charade,1989,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Daihatsu,Charade,1989,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Daihatsu,Charade,1990,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Daihatsu,Charade,1990,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Daihatsu,Charade,1990,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Daihatsu,Charade,1991,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Daihatsu,Charade,1991,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Daihatsu,Charade,1991,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Daihatsu,Charade,1992,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Daihatsu,Charade,1992,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Daihatsu,Charade,1992,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Daihatsu,Charade E,1989,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Daihatsu,Rocky,1990,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Daihatsu,Rocky,1991,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Daihatsu,Rocky,1992,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,600,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Dodge,600,1984,4,2.2,,5-Speed Manual,Midsize Cars +Dodge,600,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Dodge,600,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Dodge,600,1984,4,2.2,,5-Speed Manual,Midsize Cars +Dodge,600,1984,4,2.2,,5-Speed Manual,Midsize Cars +Dodge,600,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Dodge,600,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Dodge,600,1984,4,2.2,,5-Speed Manual,Midsize Cars +Dodge,600,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Dodge,600,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Dodge,600,1984,4,2.2,,5-Speed Manual,Midsize Cars +Dodge,600,1984,4,2.2,,5-Speed Manual,Midsize Cars +Dodge,600,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Dodge,600,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,600 Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1984,4,2.6,,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1984,4,2.6,,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,600 Convertible,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,600 Convertible,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,AD100/AD150 Ramcharger,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1984,8,5.9,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1984,8,5.9,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1985,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1986,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1987,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1988,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1989,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1989,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1990,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,AD100/AD150 Ramcharger,1991,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Aries,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Dodge,Aries,1984,4,2.2,,4-Speed Manual,Midsize Cars +Dodge,Aries,1984,4,2.2,,5-Speed Manual,Midsize Cars +Dodge,Aries,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Dodge,Aries,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Dodge,Aries,1984,4,2.2,,4-Speed Manual,Midsize Cars +Dodge,Aries,1984,4,2.2,,5-Speed Manual,Midsize Cars +Dodge,Aries,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Dodge,Aries,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Midsize Cars +Dodge,Aries,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Aries,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Midsize Cars +Dodge,Aries,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Aries,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Aries,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Aries,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Aries,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Aries,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Aries,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Aries Wagon,1984,4,2.2,,3-Speed Automatic,Midsize Station Wagons +Dodge,Aries Wagon,1984,4,2.2,,4-Speed Manual,Midsize Station Wagons +Dodge,Aries Wagon,1984,4,2.2,,5-Speed Manual,Midsize Station Wagons +Dodge,Aries Wagon,1984,4,2.6,,3-Speed Automatic,Midsize Station Wagons +Dodge,Aries Wagon,1984,4,2.2,,3-Speed Automatic,Midsize Station Wagons +Dodge,Aries Wagon,1984,4,2.2,,4-Speed Manual,Midsize Station Wagons +Dodge,Aries Wagon,1984,4,2.2,,5-Speed Manual,Midsize Station Wagons +Dodge,Aries Wagon,1984,4,2.6,,3-Speed Automatic,Midsize Station Wagons +Dodge,Aries Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Dodge,Aries Wagon,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Dodge,Aries Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Dodge,Aries Wagon,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Dodge,Aries Wagon,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Dodge,Aries Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Dodge,Aries Wagon,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Dodge,Aries Wagon,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Aries Wagon,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Dodge,Aries Wagon,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Dodge,Avenger,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Avenger,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Avenger,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1996,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Avenger,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1997,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Avenger,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Avenger,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Avenger,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Avenger,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Avenger,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2008,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2008,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2008,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2009,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2010,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2012,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2013,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2014,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Avenger,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Avenger,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,AW100/AW150 Ramcharger,1984,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1984,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1984,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1984,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1984,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1985,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1985,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1985,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1985,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1986,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1986,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1986,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1986,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1986,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1987,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1987,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1987,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1987,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1987,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1988,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1988,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1988,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1988,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1989,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1989,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1989,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1989,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1990,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1990,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1990,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1990,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1991,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1991,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1991,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,AW100/AW150 Ramcharger,1991,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,B150/B250 Van,1984,6,3.7,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B150/B250 Van,1984,6,3.7,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Dodge,B150/B250 Van,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B150/B250 Van,1984,8,5.2,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Dodge,B150/B250 Van,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B150/B250 Van,1984,8,5.9,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B150/B250 Van,1984,6,3.7,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B150/B250 Van,1984,6,3.7,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Dodge,B150/B250 Van,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B150/B250 Van,1984,8,5.2,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Dodge,B150/B250 Van,1985,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1985,6,3.7,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1985,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1985,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1985,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1985,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1985,6,3.7,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1986,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1986,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1986,6,3.7,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1986,6,3.7,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1986,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1986,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1986,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1987,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1987,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1987,6,3.7,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1987,6,3.7,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1987,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1987,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Van,1987,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1988,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1988,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1988,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Van,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1988,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1988,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1989,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1989,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1989,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1989,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Van,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1989,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1989,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1990,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1990,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1990,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Van,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1990,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1990,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1991,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1991,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1991,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Van,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1991,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1991,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1992,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1992,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Van,1992,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1992,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1992,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1993,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1993,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1993,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Van,1993,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1993,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1993,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1994,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1994,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Van,1994,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Van,1994,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1984,6,3.7,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B150/B250 Wagon,1984,6,3.7,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Dodge,B150/B250 Wagon,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B150/B250 Wagon,1984,8,5.2,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Dodge,B150/B250 Wagon,1984,8,5.9,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B150/B250 Wagon,1984,6,3.7,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B150/B250 Wagon,1984,6,3.7,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Dodge,B150/B250 Wagon,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B150/B250 Wagon,1984,8,5.2,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Dodge,B150/B250 Wagon,1985,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1985,6,3.7,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Wagon,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1985,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Wagon,1985,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Wagon,1985,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1985,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1986,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1986,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1986,6,3.7,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Wagon,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1986,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Wagon,1986,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Wagon,1986,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1987,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1987,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1987,6,3.7,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Wagon,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1987,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Wagon,1987,8,5.2,Rear-Wheel Drive,4-Speed Manual,Vans +Dodge,B150/B250 Wagon,1987,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1988,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1988,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1988,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Wagon,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1988,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1988,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1989,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1989,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1989,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1989,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Wagon,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1989,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1989,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1990,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1990,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1990,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Wagon,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1990,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1990,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1991,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1991,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1991,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Wagon,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1991,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1991,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1992,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1992,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Wagon,1992,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1992,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1992,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1993,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1993,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1993,6,3.9,Rear-Wheel Drive,5-Speed Manual,Vans +Dodge,B150/B250 Wagon,1993,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1993,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1993,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1994,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1994,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1994,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B150/B250 Wagon,1994,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500 Van,1998,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B1500 Van,1998,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B1500 Van,1998,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B1500 Van,1999,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B1500 Van,1999,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B1500 Van,1999,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B1500 Van,2000,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B1500 Van,2000,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B1500 Van,2000,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B1500 Wagon,1998,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B1500 Wagon,1998,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,B1500 Wagon,1999,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B1500 Wagon,1999,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,B1500 Wagon,2000,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B1500 Wagon,2000,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,B1500/B2500 Van,1995,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1995,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1995,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1995,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1996,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1996,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1996,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1996,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1997,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1997,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1997,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Van,1997,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1995,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1995,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1995,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1995,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1996,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1996,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1996,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1996,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1997,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1997,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B1500/B2500 Wagon,1997,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B2500 Van,1998,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B2500 Van,1998,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B2500 Van,1999,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B2500 Van,1999,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B2500 Van,2000,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B2500 Van,2000,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,B2500 Wagon,1998,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,B2500 Wagon,1998,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,B2500 Wagon,1999,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,B2500 Wagon,1999,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,B2500 Wagon,2000,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,B2500 Wagon,2000,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,B350 Van,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B350 Van,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B350 Van,1984,8,5.9,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B350 Van,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,B350 Van,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1985,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1986,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1987,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1988,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1988,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1989,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1989,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1990,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1990,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1991,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1991,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1992,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1992,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1992,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1993,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Van,1993,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1993,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1994,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Van,1994,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B350 Wagon,1984,8,5.9,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B350 Wagon,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,B350 Wagon,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1985,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1986,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1987,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1988,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1988,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1989,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1989,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Dodge,B350 Wagon,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1990,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1991,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1992,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1992,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1993,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1993,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1994,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B350 Wagon,1994,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Van,1995,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Van,1995,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Van,1996,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Van,1996,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Van,1997,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Van,1997,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Wagon,1995,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Wagon,1995,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Wagon,1996,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Wagon,1996,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Wagon,1997,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,B3500 Wagon,1997,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Dodge,Caliber,2007,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2007,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2007,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2007,4,2.4,4-Wheel or All-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2008,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2008,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2008,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2008,4,2.4,4-Wheel or All-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2008,4,2.4,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Dodge,Caliber,2009,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2009,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2009,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2009,4,2.4,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Dodge,Caliber,2010,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2010,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2010,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2011,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2011,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2011,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2012,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caliber,2012,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Caliber,2012,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Dodge,Caravan C/V/Grand Caravan,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1992,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1992,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1993,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1993,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1994,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1994,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1994,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1995,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1995,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan C/V/Grand Caravan,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1991,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1991,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1991,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1992,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1992,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1993,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1993,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1993,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1994,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1994,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1994,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1994,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1994,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1995,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1995,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1995,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1995,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1995,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1996,4,2.4,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1996,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1996,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1996,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1997,4,2.4,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1997,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1997,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1997,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1998,4,2.4,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1998,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1998,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1998,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1998,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan,1999,4,2.4,Front-Wheel Drive,3-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,1999,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,1999,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,1999,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,1999,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,1999,,,2-Wheel Drive,1-Speed Direct Drive,Minivan +Dodge,Caravan/Grand Caravan,2000,4,2.4,Front-Wheel Drive,3-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2000,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2000,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2000,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2000,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2001,4,2.4,Front-Wheel Drive,3-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2001,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2001,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2001,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2001,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2002,4,2.4,Front-Wheel Drive,3-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2002,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2002,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2002,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2003,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2003,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2004,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2004,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2005,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2005,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2006,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2006,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2007,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2007,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2008,6,3.8,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2008,6,4,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2008,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2008,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2009,6,3.8,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2009,6,4,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan,2009,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Caravan/Grand Caravan/Ram Van,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1987,4,2.6,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1987,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1988,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1989,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1990,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Grand Caravan/Ram Van,1990,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1984,4,2.2,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1984,4,2.2,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1984,4,2.6,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1984,4,2.2,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1984,4,2.2,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1986,4,2.2,Front-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1986,4,2.2,Front-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Caravan/Ram Van,1986,4,2.6,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Challenger,2008,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Dodge,Challenger,2009,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Dodge,Challenger,2009,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Challenger,2009,8,5.7,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Dodge,Challenger,2009,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Dodge,Challenger,2009,8,6.1,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Dodge,Challenger,2009,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Dodge,Challenger,2010,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Dodge,Challenger,2010,8,6.1,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Dodge,Challenger,2010,8,5.7,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Dodge,Challenger,2010,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Dodge,Challenger,2010,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Dodge,Challenger,2011,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Dodge,Challenger,2011,8,5.7,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Dodge,Challenger,2011,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Dodge,Challenger,2012,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Dodge,Challenger,2012,8,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger,2012,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Dodge,Challenger,2013,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Dodge,Challenger,2013,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Dodge,Challenger,2013,8,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger,2014,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Dodge,Challenger,2014,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Dodge,Challenger,2014,8,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger,2015,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Dodge,Challenger,2015,8,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Dodge,Challenger,2015,8,6.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger,2015,8,6.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Dodge,Challenger,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Dodge,Challenger,2016,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Dodge,Challenger,2016,8,6.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Dodge,Challenger,2016,8,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger,2016,8,6.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger SRT8,2011,8,6.4,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Dodge,Challenger SRT8,2011,8,6.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Dodge,Challenger SRT8,2012,8,6.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger SRT8,2012,8,6.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Dodge,Challenger SRT8,2013,8,6.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Dodge,Challenger SRT8,2013,8,6.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger SRT8,2014,8,6.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Dodge,Challenger SRT8,2014,8,6.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger SRT8,2015,8,6.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Dodge,Challenger SRT8,2015,8,6.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger SRT8,2015,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Dodge,Challenger SRT8,2015,8,6.2,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger SRT8,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Dodge,Challenger SRT8,2016,8,6.2,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Challenger SRT8,2016,8,6.4,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Dodge,Challenger SRT8,2016,8,6.4,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Charger,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Dodge,Charger,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,Charger,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Dodge,Charger,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Dodge,Charger,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,Charger,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Dodge,Charger,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Charger,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Charger,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Charger,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Charger,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Charger,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Charger,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Charger,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger,2006,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Charger,2006,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2006,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2006,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2007,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Charger,2007,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2007,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2007,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2007,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2008,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Charger,2008,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Charger,2008,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2008,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2008,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2008,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2009,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2009,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Charger,2009,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Charger,2009,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2009,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2009,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2010,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2010,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2010,8,5.7,All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2010,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Charger,2010,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Charger,2010,6,3.5,All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2011,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2011,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2011,8,5.7,All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2011,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2012,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2012,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2012,8,5.7,All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2012,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2012,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2013,8,5.7,All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2013,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2013,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2013,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2013,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2013,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2013,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2013,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2014,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2014,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2014,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2014,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2014,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2014,8,5.7,All-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2015,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2015,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2015,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2016,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2016,8,6.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger GLH-S,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger GLH-S,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Charger SRT8,2012,8,6.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger SRT8,2013,8,6.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger SRT8,2014,8,6.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Dodge,Charger SRT8,2015,8,6.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger SRT8,2015,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger SRT8,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Charger SRT8,2016,8,6.4,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Dodge,Colt,1984,4,1.4,,4-Speed Manual,Subcompact Cars +Dodge,Colt,1984,4,1.4,,4-Speed Manual Doubled,Subcompact Cars +Dodge,Colt,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1984,4,1.6,,4-Speed Manual Doubled,Subcompact Cars +Dodge,Colt,1984,4,1.4,,4-Speed Manual,Subcompact Cars +Dodge,Colt,1984,4,1.4,,4-Speed Manual Doubled,Subcompact Cars +Dodge,Colt,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1984,4,1.6,,4-Speed Manual Doubled,Subcompact Cars +Dodge,Colt,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1985,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Colt,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1985,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Colt,1986,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1986,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Colt,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1986,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1987,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1987,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Colt,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1988,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Colt,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1989,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Colt,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1990,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1990,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Colt,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Colt,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1991,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1991,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Colt,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1992,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1992,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Dodge,Colt,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1993,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Colt,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1994,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Colt,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Colt,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Colt Vista,1984,4,2,,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1984,4,2,,4-Speed Manual Doubled,Small Station Wagons +Dodge,Colt Vista,1984,4,2,,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1984,4,2,,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1984,4,2,,4-Speed Manual Doubled,Small Station Wagons +Dodge,Colt Vista,1984,4,2,,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1985,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1985,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Colt Vista,1985,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Colt Vista,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1985,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1986,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1986,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Colt Vista,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1987,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1987,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1987,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Colt Vista,1987,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Colt Vista,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1988,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1988,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Colt Vista,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1989,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1989,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Colt Vista,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1990,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1990,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Colt Vista,1991,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Vista,1991,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Vista,1991,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Colt Wagon,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Wagon,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Wagon,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Wagon,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Wagon,1989,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Colt Wagon,1990,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Dodge,Colt Wagon,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Dodge,Colt Wagon,1990,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Conquest,1984,4,2.6,,4-Speed Automatic,Subcompact Cars +Dodge,Conquest,1984,4,2.6,,4-Speed Automatic,Subcompact Cars +Dodge,Conquest,1984,4,2.6,,5-Speed Manual,Subcompact Cars +Dodge,Conquest,1984,4,2.6,,5-Speed Manual,Subcompact Cars +Dodge,Conquest,1984,4,2.6,,4-Speed Automatic,Subcompact Cars +Dodge,Conquest,1984,4,2.6,,5-Speed Manual,Subcompact Cars +Dodge,Conquest,1985,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Conquest,1985,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Conquest,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Conquest,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Conquest,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Conquest,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Conquest,1986,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Conquest,1986,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,CSX,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,D100/D150 Pickup,1984,6,3.7,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,6,3.7,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,6,3.7,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,8,5.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,8,5.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,8,5.9,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,6,3.7,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,6,3.7,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,8,5.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,8,5.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1984,8,5.9,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1985,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1986,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1987,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1988,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1988,6,3.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1988,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1988,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1988,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1988,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1988,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,6,3.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1989,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,6,3.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1990,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1991,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1991,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1991,6,3.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1991,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1991,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1991,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1991,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1991,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1992,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1992,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1992,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1992,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1992,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1992,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1992,8,5.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1993,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1993,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1993,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1993,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1993,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1993,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D100/D150 Pickup,1993,8,5.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D250 Cab Chassis,1985,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,D250 Cab Chassis,1986,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,D250 Cab Chassis,1987,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,D250 Cab Chassis,1988,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,D250 Cab Chassis,1989,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,D250 Cab Chassis,1990,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,D250 Cab Chassis,1991,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,D250 Cab Chassis,1992,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,D250 Cab Chassis,1993,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,D250 Pickup,1984,6,3.7,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1984,6,3.7,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1984,8,5.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1984,8,5.9,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1984,8,5.2,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1984,8,5.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1985,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1985,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1985,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1985,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1985,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1985,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1986,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1986,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1986,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1986,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1986,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1986,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1987,6,3.7,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1987,6,3.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1987,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1987,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1987,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1987,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1988,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1988,6,3.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1988,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1988,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1988,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1988,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1989,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1989,6,3.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1989,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1989,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1989,8,5.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1989,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1990,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1990,6,3.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1990,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1990,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1990,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1990,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1991,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1991,6,3.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1991,8,5.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1991,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1991,8,5.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1992,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1992,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1992,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1992,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1992,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1992,8,5.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1993,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1993,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1993,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1993,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup,1993,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,D250 Pickup,1993,8,5.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,D250 Pickup Cab Chassis,1984,8,5.9,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1987,6,3.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1988,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1988,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1988,6,3.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1989,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1989,6,3.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1990,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1990,6,3.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1991,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1991,6,3.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1992,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1992,6,3.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1992,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1993,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1993,6,3.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1993,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1994,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1994,6,3.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1994,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1994,8,5.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1995,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Cab Chassis,1995,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Dakota Pickup,1987,4,2.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1987,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1987,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1987,6,3.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1987,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1988,4,2.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1988,6,3.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1988,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1988,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1988,6,3.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1988,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1988,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1989,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1989,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1989,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1989,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1989,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1989,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1989,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1990,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1990,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1990,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1990,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1990,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1991,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1991,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1991,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1991,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1991,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1991,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1991,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1992,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1992,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1992,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1992,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1992,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1992,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1992,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1993,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1993,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1993,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1993,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1993,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1993,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1993,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1994,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1994,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1994,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1994,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1994,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1994,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1994,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1994,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1994,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1995,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1995,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1995,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1995,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1995,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1995,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1995,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1995,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1995,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1996,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1996,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1996,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1996,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1996,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1996,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1996,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1996,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1996,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1997,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1997,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1997,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1997,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1997,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1997,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1997,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1997,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1997,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1998,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1998,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1998,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1998,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1998,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1998,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1998,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1998,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1998,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1998,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1999,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1999,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1999,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1999,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1999,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1999,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1999,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1999,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,1999,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,1999,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,8,4.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2000,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,8,4.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2001,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,8,4.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2002,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2003,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2003,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2003,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2003,8,4.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2003,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2003,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2003,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2003,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2003,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2003,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2004,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2004,6,3.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2004,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2004,8,4.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2004,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2004,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2005,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2005,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2005,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2005,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2005,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2005,8,4.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2005,8,4.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2006,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2006,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2006,8,4.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2006,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2006,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2006,8,4.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2007,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2007,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2007,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2007,8,4.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2007,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2007,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2007,8,4.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2008,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2008,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2008,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2008,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2009,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2009,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2009,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Dakota Pickup,2009,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2010,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2010,6,3.7,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2010,8,4.7,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2010,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2011,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2011,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2011,6,3.7,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Dakota Pickup,2011,8,4.7,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Dart,2013,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart,2013,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart,2013,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Dodge,Dart,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart,2014,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart,2014,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart,2014,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Dodge,Dart,2015,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Dodge,Dart,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart,2015,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart,2015,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart,2016,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Dodge,Dart,2016,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart,2016,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart Aero,2013,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Dodge,Dart Aero,2013,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart Aero,2014,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Dodge,Dart Aero,2014,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart Aero,2015,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Dodge,Dart Aero,2015,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart Aero,2016,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Dodge,Dart Aero,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart GT,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart GT,2014,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart GT,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Dart GT,2015,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart GT,2016,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Dodge,Dart GT,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Dodge,Daytona,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1986,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Daytona,1990,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Daytona,1991,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Daytona,1992,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Daytona,1993,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Daytona,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Daytona,1993,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Diplomat,1984,8,5.2,,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1984,8,5.2,,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1984,8,5.2,,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Diplomat,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Durango,1998,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Durango,1998,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Durango,1999,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,1999,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,1999,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,1999,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,1999,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,1999,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2000,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2000,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2000,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2000,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2000,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2001,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2001,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2001,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2001,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2002,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2002,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2002,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2002,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2002,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2002,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2003,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2003,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2003,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2003,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2004,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2004,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2004,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2004,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2005,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2005,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2005,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2005,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2006,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2006,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2006,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2007,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2007,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2007,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2007,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2008,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2008,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2008,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2009,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2009,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2009,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2011,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2011,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2011,6,3.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2011,8,5.7,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2012,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2012,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2012,6,3.6,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2012,8,5.7,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Dodge,Durango,2013,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango,2013,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango,2013,6,3.6,4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango,2013,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango,2014,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango,2014,8,5.7,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango,2015,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango,2015,8,5.7,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango,2016,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango,2016,8,5.7,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango HEV,2009,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Durango RWD,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango RWD,2014,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango RWD,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango RWD,2015,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango RWD,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Durango RWD,2016,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Dodge,Dynasty,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Dynasty,1988,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Dynasty,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Dynasty,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Dynasty,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Dynasty,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Dynasty,1990,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Dynasty,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Dynasty,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Dynasty,1991,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Dynasty,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Dynasty,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Dynasty,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Dynasty,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Dynasty,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Dynasty,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,GLH-S,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Grand Caravan,2010,6,4,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2010,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Dodge,Grand Caravan,2010,6,3.8,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Grand Caravan,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Dodge,Intrepid,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1993,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1994,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1995,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1996,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1996,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1996,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1997,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1997,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1997,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1998,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1998,6,3.2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1999,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,1999,6,3.2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2000,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2000,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2000,6,3.2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2000,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2001,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2001,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2001,6,3.2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2001,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2003,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2003,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Intrepid,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Journey,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Journey,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Dodge,Journey,2011,6,3.6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Dodge,Journey,2012,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Journey,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Dodge,Journey,2012,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Dodge,Journey,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2013,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2014,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2015,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2016,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Dodge,Journey ,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Journey ,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Dodge,Journey ,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Dodge,Journey ,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Journey ,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Dodge,Journey ,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Dodge,Lancer,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1986,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Lancer,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Lancer Convertible,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Lancer Convertible,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Magnum,2005,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2005,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2005,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2005,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2006,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2006,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2006,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2006,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2006,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2006,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2007,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2007,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2007,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2007,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2007,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2008,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2008,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2008,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2008,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2008,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Magnum,2008,8,6.1,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Monaco,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Monaco,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Monaco,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Dodge,Neon,1995,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Neon,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon,1996,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Neon,1996,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon,1997,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Neon,1997,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon,1998,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Neon,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon,1999,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Neon,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon,2000,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Neon,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon,2001,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Neon,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Neon,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon/SRT-4/SX 2.0,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Neon/SRT-4/SX 2.0,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon/SRT-4/SX 2.0,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon/SRT-4/SX 2.0,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Neon/SRT-4/SX 2.0,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon/SRT-4/SX 2.0,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon/SRT-4/SX 2.0,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Neon/SRT-4/SX 2.0,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Neon/SRT-4/SX 2.0,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Nitro,2007,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2007,6,3.7,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Dodge,Nitro,2007,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2007,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Dodge,Nitro,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2008,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2008,6,3.7,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Dodge,Nitro,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2008,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2008,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Dodge,Nitro,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2009,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2009,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2010,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2010,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2010,6,3.7,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2011,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2011,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2011,6,3.7,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Dodge,Nitro,2011,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Dodge,Omni,1984,4,1.6,,4-Speed Manual,Compact Cars +Dodge,Omni,1984,4,2.2,,3-Speed Automatic,Compact Cars +Dodge,Omni,1984,4,2.2,,5-Speed Manual,Compact Cars +Dodge,Omni,1984,4,1.6,,4-Speed Manual,Compact Cars +Dodge,Omni,1984,4,2.2,,3-Speed Automatic,Compact Cars +Dodge,Omni,1984,4,2.2,,5-Speed Manual,Compact Cars +Dodge,Omni,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Dodge,Omni,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Dodge,Omni,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Dodge,Omni,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Omni,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Dodge,Omni,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Omni,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Dodge,Omni,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Dodge,Omni,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Omni,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Omni,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Omni,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Omni,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Omni,1990,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Omni,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Power Ram 50,1990,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Power Ram 50,1990,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Power Ram 50,1990,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Power Ram 50,1990,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Power Ram 50,1991,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Power Ram 50,1991,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Power Ram 50,1991,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Power Ram 50,1991,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Power Ram 50,1992,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Power Ram 50,1992,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Power Ram 50,1992,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Power Ram 50,1992,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Power Ram 50,1993,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Power Ram 50,1993,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1984,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1985,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1985,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1985,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1985,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1985,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Power Ram 50 Pickup,1985,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Power Ram50,1986,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Power Ram50,1986,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Power Ram50,1987,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Power Ram50,1987,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Power Ram50,1988,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Power Ram50,1988,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Power Ram50,1989,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Power Ram50,1989,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Raider,1987,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Raider,1987,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Raider,1988,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Raider,1988,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Raider,1989,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Raider,1989,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Raider,1989,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Raider,1990,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Raider,1990,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Raider,1990,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Ram 1500 Pickup,1994,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1994,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1994,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1994,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1994,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1994,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1994,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1994,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1995,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1995,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1995,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1995,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1995,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1995,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1995,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1995,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1996,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1996,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1996,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1996,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1996,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1996,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1996,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1996,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1997,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1997,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1997,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1997,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1997,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1997,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1997,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1997,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1998,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1998,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1998,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1998,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1998,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1998,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1998,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1998,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1998,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1999,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1999,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1999,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1999,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1999,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1999,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1999,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,1999,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2000,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2000,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2000,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2000,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2000,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2000,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2000,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2000,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2001,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2001,6,3.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2001,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2001,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2001,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2001,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2001,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2001,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2002,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2002,6,3.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2002,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2002,8,4.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2002,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2002,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2002,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2002,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2003,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2003,6,3.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2003,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2003,8,4.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2003,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2003,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2003,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2003,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2003,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2003,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,6,3.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,8,4.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,10,8.3,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,10,8.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,10,8.3,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,8,4.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2005,8,4.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,8,4.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,10,8.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,10,8.3,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,8,4.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2007,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2007,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2007,8,4.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2007,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2007,8,4.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2007,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2007,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,8,4.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,8,4.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,8,4.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2008,8,4.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2009,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2009,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2009,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2010,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2010,8,5.7,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2010,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2010,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2010,8,4.7,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2011,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2011,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2011,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2011,8,4.7,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2011,8,5.7,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2012,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2012,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2012,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2012,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 1500 Pickup,2012,8,4.7,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1994,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1994,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1994,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1994,8,5.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1994,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1994,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1994,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1994,8,5.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1995,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1995,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1995,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1995,8,5.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1995,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1995,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1995,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1995,8,5.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1996,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1996,8,5.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1996,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1996,8,5.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1996,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1996,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1996,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,Ram 2500 Pickup,1996,8,5.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2.3,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2.6,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2.6,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2.6,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2.6,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2.3,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2.6,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1984,4,2.6,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1985,4,2,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1985,4,2,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1985,4,2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1985,4,2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1986,4,2,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1986,4,2.6,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1986,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1987,4,2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1987,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1987,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1987,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1988,4,2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1988,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1988,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1988,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1989,4,2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1989,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1989,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1989,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1990,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1990,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1991,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1991,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1992,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1992,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram 50 Pickup,1993,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Dodge,Ram 50 Pickup,1993,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Ram Van 1500,2001,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 1500,2001,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 1500,2001,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 1500,2002,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 1500,2002,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 1500,2002,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 1500,2003,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 1500,2003,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 1500,2003,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500,2001,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500,2001,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500,2001,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500,2002,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500,2002,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500,2002,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500,2003,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500,2003,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500,2003,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500 CNG,2001,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500 CNG,2002,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Van 2500 CNG,2003,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Dodge,Ram Wagon 1500,2001,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,Ram Wagon 1500,2001,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,Ram Wagon 1500,2002,6,3.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Dodge,Ram Wagon 2500,2001,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,Ram Wagon 2500,2001,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,Ram Wagon 2500,2002,8,5.9,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,Ram Wagon 2500 CNG,2001,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,Ram Wagon 2500 CNG,2002,8,5.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Dodge,Ramcharger,1992,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Ramcharger,1992,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Ramcharger,1992,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Ramcharger,1992,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Ramcharger,1992,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Ramcharger,1992,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Ramcharger,1992,8,5.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Dodge,Ramcharger,1993,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Ramcharger,1993,8,5.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Ramcharger,1993,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Ramcharger,1993,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Dodge,Rampage Pickup,1984,4,2.2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Rampage Pickup,1984,4,2.2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Dodge,Rampage Pickup,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Rampage Pickup,1984,4,2.2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Dodge,Rampage Pickup,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Dodge,Shadow,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1990,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1991,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1992,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Shadow,1992,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1993,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Shadow,1993,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1994,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1994,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Dodge,Shadow,1994,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Shadow,1994,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Shadow Convertible,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Shadow Convertible,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Shadow Convertible,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Shadow Convertible,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Shadow Convertible,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Shadow Convertible,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Shadow Convertible,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Shadow Convertible,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Shadow Convertible,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Shadow Convertible,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Shadow Convertible,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Shadow Convertible,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Shadow Convertible,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Shadow Convertible,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Shadow Convertible,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Shadow Convertible,1992,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Shadow Convertible,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Dodge,Shadow Convertible,1993,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Shadow Convertible,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Shadow Convertible,1993,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Spirit,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Spirit,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Spirit,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Spirit,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1992,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Spirit,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1993,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1993,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Spirit,1994,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1994,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1994,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Spirit,1994,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Spirit,1995,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Spirit,1995,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Dodge,Stealth,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1991,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1991,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1991,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1992,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1992,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1992,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1993,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1993,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1993,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1994,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1994,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1994,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Dodge,Stealth,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1995,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1995,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1995,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Dodge,Stealth,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Dodge,Stealth,1996,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1996,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Dodge,Stealth,1996,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Dodge,Stratus,1995,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1996,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Stratus,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1997,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Stratus,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1998,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Stratus,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1999,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Stratus,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2001,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2002,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2002,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2003,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2004,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus,2005,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Dodge,Stratus,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Dodge,Stratus 4 Door,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2001,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2001,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2002,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Stratus 4 Door,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2003,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Stratus 4 Door,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2004,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Dodge,Stratus 4 Door,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Stratus 4 Door,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Dodge,Viper,1992,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper,1993,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper,1994,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper,1995,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper,1996,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,1998,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,1999,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,2000,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,2001,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,2002,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,2003,10,8.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,2004,10,8.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,2005,10,8.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,2006,10,8.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,2008,10,8.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,2009,10,8.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Convertible,2010,10,8.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Coupe,1998,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Coupe,1999,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Coupe,2000,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Coupe,2001,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Coupe,2002,10,8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Coupe,2008,10,8.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Coupe,2009,10,8.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper Coupe,2010,10,8.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper SRT,2015,10,8.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,Viper SRT,2016,10,8.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Dodge,W100/W150 Pickup,1984,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1984,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1984,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1984,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1984,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1984,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1984,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1984,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1985,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1985,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1985,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1985,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1985,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1985,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1985,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1986,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1986,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1986,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1986,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1986,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1986,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1986,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1987,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1987,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1987,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1987,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1987,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1987,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1987,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1988,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1988,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1988,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1988,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1989,6,3.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1989,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1989,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1989,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1989,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1989,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1990,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1990,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1990,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1990,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1990,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1990,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1991,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1991,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1991,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1991,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1991,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1991,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1992,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1992,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1992,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1992,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1992,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1992,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1992,8,5.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1993,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1993,6,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1993,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1993,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1993,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W100/W150 Pickup,1993,8,5.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1984,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1984,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1984,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1985,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1985,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1985,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1985,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1985,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1986,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1986,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1986,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1986,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1987,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1987,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1987,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1987,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1988,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1988,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1988,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1988,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1989,8,5.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1989,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1989,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1989,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1990,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1990,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1990,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1990,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1991,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1991,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1991,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1991,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1992,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1992,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1992,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1992,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1992,8,5.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1993,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1993,8,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Dodge,W250 Pickup,1993,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Dodge,W250 Pickup,1993,8,5.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +"E. P. Dutton, Inc.",Funeral Coach,1985,8,4.1,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Eagle,Medallion Sedan,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Eagle,Medallion Sedan,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Eagle,Medallion Wagon,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Eagle,Medallion Wagon,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Premier,1988,4,2.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Premier,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Large Cars +Eagle,Premier,1988,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Premier,1989,4,2.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Premier,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Premier,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Premier,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Premier,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Renault Medallion Sedan,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Eagle,Renault Medallion Sedan,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Eagle,Renault Medallion Wagon,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Eagle,Renault Medallion Wagon,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Eagle,Summit,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Eagle,Summit,1989,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Eagle,Summit,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Eagle,Summit,1990,4,1.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Eagle,Summit,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Eagle,Summit,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Eagle,Summit,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Eagle,Summit,1991,4,1.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Eagle,Summit,1991,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Eagle,Summit,1991,4,1.5,Front-Wheel Drive,4-Speed Manual,Compact Cars +Eagle,Summit,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Eagle,Summit,1992,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Eagle,Summit,1992,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Summit,1992,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Eagle,Summit,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Summit,1993,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Eagle,Summit,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Summit,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Summit,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Summit,1994,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Eagle,Summit,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Summit,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Summit,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Summit,1995,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Eagle,Summit,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Summit,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Summit,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Summit,1996,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Eagle,Summit,1996,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Summit,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Summit,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Summit Wagon,1992,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1992,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1992,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1992,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1992,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1992,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1993,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1993,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1993,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1993,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1993,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1993,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1994,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1994,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1994,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1994,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1995,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1995,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1995,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1995,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1996,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Eagle,Summit Wagon,1996,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Summit Wagon,1996,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Eagle,Talon,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1990,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1991,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1991,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1992,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1992,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1992,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1992,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1993,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1993,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1994,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1994,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1995,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1995,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1996,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1996,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1996,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1996,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1997,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1997,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1997,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1997,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1998,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1998,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Eagle,Talon,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1998,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Talon,1998,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Eagle,Vision,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1993,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1994,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1995,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1996,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1996,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1996,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1997,6,3.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1997,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Vision,1997,6,3.5,Front-Wheel Drive,4-Speed Automatic,Large Cars +Eagle,Wagon,1988,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Environmental Rsch and Devp Corp,ERD 1,1989,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Evans Automobiles,Series 1,1990,8,5.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Evans Automobiles,Series 1,1991,8,5.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Evans Automobiles,Series I,1989,8,5.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Excalibur Autos,Phaeton,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Federal Coach,24E,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Federal Coach,85J,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Federal Coach,Eagle,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Federal Coach,Formal,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Federal Coach,Heritage,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Federal Coach,Lincoln 100J,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Federal Coach,Lincoln 24E,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Federal Coach,Lincoln 85J,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Federal Coach,Lincoln Eagle/Windsor,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Federal Coach,Lincoln Eaton,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Federal Coach,Lincoln Stratford,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Federal Coach,Renaissance,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Federal Coach,Six Door,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Federal Coach,Windsor,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ferrari,308,1985,8,2.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,575,2002,12,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,575,2002,12,5.7,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,3.2 Mondial/Cabriolet,1987,8,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Ferrari,3.2 Mondial/Cabriolet,1988,8,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Ferrari,3.2 Mondial/Cabriolet,1989,8,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Ferrari,328 GTS/GTB,1986,8,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,328 GTS/GTB,1987,8,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,328 GTS/GTB,1988,8,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,328 GTS/GTB,1989,8,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,348 TB/TS,1989,8,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,348 TB/TS,1990,8,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,348 TB/TS,1991,8,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,348 TB/TS,1992,8,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,348 TB/TS,1993,8,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,360 Modena/Modena F1,1999,8,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,360 Modena/Modena F1,1999,8,3.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,360 Modena/Spider,2000,8,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,360 Modena/Spider,2000,8,3.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,360 Modena/Spider,2001,8,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,360 Modena/Spider,2001,8,3.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,360 Modena/Spider,2002,8,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,360 Modena/Spider,2002,8,3.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,360 Modena/Spider,2003,8,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,360 Modena/Spider,2003,8,3.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,360 Modena/Spider,2003,8,3.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,360 Modena/Spider/Challenge,2004,8,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,360 Modena/Spider/Challenge,2004,8,3.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,360 Modena/Spider/Challenge,2004,8,3.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,360 Modena/Spider/Challenge,2005,8,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,360 Modena/Spider/Challenge,2005,8,3.6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,456 MGT/MGA,1999,12,5.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ferrari,456 MGT/MGA,1999,12,5.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ferrari,456 MGT/MGA,2000,12,5.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ferrari,456 MGT/MGA,2000,12,5.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ferrari,456 MGT/MGA,2001,12,5.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ferrari,456 MGT/MGA,2001,12,5.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ferrari,456 MGT/MGA,2002,12,5.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ferrari,456 MGT/MGA,2002,12,5.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ferrari,456 MGT/MGA,2003,12,5.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ferrari,456 MGT/MGA,2003,12,5.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ferrari,458 Italia,2010,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia,2011,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia,2013,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia,2013,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia,2014,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia,2014,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia,2015,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia,2015,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia Coupe,2012,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia Coupe,2012,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia Spider,2012,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Italia Spider,2012,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Speciale,2014,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Speciale,2014,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Speciale,2015,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Speciale,2015,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Speciale Spider,2015,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Speciale Spider,2015,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Spider,2013,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Spider,2013,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Spider,2014,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Spider,2014,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Spider,2015,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,458 Spider,2015,8,4.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,488 GTB,2016,8,3.9,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,488 GTB,2016,8,3.9,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,550 Maranello,1999,12,5.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,550 Maranello,2000,12,5.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,550 Maranello/Barchetta,2001,12,5.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,575 M Maranello,2003,12,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,575 M Maranello,2003,12,5.7,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,575 M Maranello,2004,12,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,575 M Maranello,2004,12,5.7,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,575 M Maranello and Superamerica,2005,12,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,575 M Maranello and Superamerica,2005,12,5.7,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,599 GTB,2007,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,599 GTB,2007,12,5.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,599 GTB Fiorano,2008,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,599 GTB Fiorano,2008,12,5.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,599 GTB Fiorano,2009,12,5.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,599 GTB Fiorano,2009,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,599 GTB Fiorano,2010,12,5.7,Rear-Wheel Drive,6-Speed Automated Manual,Two Seaters +Ferrari,599 GTB Fiorano,2010,12,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,599 GTB Fiorano,2011,12,5.9,Rear-Wheel Drive,6-Speed Automated Manual,Two Seaters +Ferrari,599 GTB Fiorano,2011,12,5.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,599 GTO,2011,12,5.9,Rear-Wheel Drive,6-Speed Automated Manual,Two Seaters +Ferrari,599 SA Aperta,2011,12,5.9,Rear-Wheel Drive,6-Speed Automated Manual,Two Seaters +Ferrari,612 Scaglietti,2005,12,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Ferrari,612 Scaglietti,2005,12,5.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Ferrari,612 Scaglietti,2006,12,5.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Ferrari,612 Scaglietti,2006,12,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Ferrari,612 Scaglietti,2007,12,5.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Ferrari,612 Scaglietti,2007,12,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Ferrari,612 Scaglietti,2008,12,5.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Ferrari,612 Scaglietti,2008,12,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Ferrari,612 Scaglietti,2009,12,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Ferrari,612 Scaglietti,2009,12,5.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Ferrari,612 Scaglietti,2010,12,5.7,Rear-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Ferrari,612 Scaglietti,2010,12,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Ferrari,612 Scaglietti,2011,12,5.7,Rear-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Ferrari,612 Scaglietti,2011,12,5.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Ferrari,California,2009,8,4.3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California,2010,8,4.3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California,2011,8,4.3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California,2011,8,4.3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California,2012,8,4.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,California,2012,8,4.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,California,2013,8,4.3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California,2013,8,4.3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California,2014,8,4.3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California,2014,8,4.3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California T,2015,8,3.9,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California T,2015,8,3.9,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California T,2016,8,3.9,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,California T,2016,8,3.9,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Ferrari,Enzo Ferrari,2003,12,6,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,F 40,1990,8,2.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,F12,2013,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F12,2013,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F12,2014,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F12,2014,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F12,2015,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F12,2015,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F12,2016,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F12,2016,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F12 tdf,2016,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F12 tdf,2016,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F141,2006,12,5.9,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,F141,2006,12,5.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,F355/355 F1,1999,8,3.5,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,F355/355 F1,1999,8,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,F40,1991,8,2.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,F40,1992,8,2.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,F430,2005,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,F430,2005,8,4.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,F430,2006,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,F430,2006,8,4.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,F430,2007,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,F430,2007,8,4.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,F430,2008,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,F430,2008,8,4.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,F430,2009,8,4.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,F430,2009,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,F60 America,2016,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,F60 America,2016,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,Ferrari 348 TB/TS,1993,8,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Ferrari 348 TB/TS/Spider,1994,8,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Ferrari 348 TB/TS/Spider,1994,8,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Ferrari 348 TB/TS/Spider,1995,8,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Ferrari 456,1997,12,5.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ferrari,Ferrari 456,1997,12,5.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ferrari,Ferrari 456 GT,1995,12,5.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ferrari,Ferrari 456 GT/GTA,1998,12,5.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ferrari,Ferrari 456 GT/GTA,1998,12,5.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ferrari,Ferrari 512 TR,1993,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Ferrari 512 TR,1994,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Ferrari 550 Maranello,1998,12,5.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,Ferrari F355,1997,8,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,Ferrari F355 Berlinetta/GTS,1995,8,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,Ferrari F355 Berlinetta/GTS,1996,8,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,Ferrari F355/355 F1,1998,8,3.5,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Ferrari,Ferrari F355/355 F1,1998,8,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,Ferrari F50,1995,12,4.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ferrari,Ferrari F512M,1995,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Ferrari Mondial T/Cabriolet,1993,8,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ferrari,Ferrari Mondial T/Cabriolet,1993,8,3.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ferrari,Ferrari Mondial T/Cabriolet,1994,8,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ferrari,Ferrari Mondial T/Cabriolet,1994,8,3.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ferrari,FF,2012,12,6.3,Part-time 4-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Ferrari,FF,2012,12,6.3,Part-time 4-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Ferrari,FF,2013,12,6.3,Part-time 4-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Ferrari,FF,2013,12,6.3,Part-time 4-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Ferrari,FF,2014,12,6.3,Part-time 4-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Ferrari,FF,2014,12,6.3,Part-time 4-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Ferrari,FF,2015,12,6.3,Part-time 4-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Ferrari,FF,2015,12,6.3,Part-time 4-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Ferrari,FF,2016,12,6.3,Part-time 4-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Ferrari,FF,2016,12,6.3,Part-time 4-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Ferrari,LaFerrari Hybrid,2014,12,6.3,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Ferrari,Mondial,1985,8,2.9,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Ferrari,Mondial T/Cabriolet,1989,8,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ferrari,Mondial T/Cabriolet,1990,8,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ferrari,Mondial T/Cabriolet,1991,8,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ferrari,Mondial T/Cabriolet,1992,8,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ferrari,Mondial T/Cabriolet,1992,8,3.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ferrari,Mondial/Cabriolet,1986,8,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Ferrari,Testarossa,1985,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Testarossa,1986,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Testarossa,1987,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Testarossa,1988,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Testarossa,1989,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Testarossa,1990,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Testarossa,1991,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Testarossa,1992,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ferrari,Testerossa,1991,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Fiat,500,2012,4,1.4,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Fiat,500,2012,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500,2013,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500,2013,4,1.4,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Fiat,500,2013,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500,2014,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500,2014,4,1.4,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Fiat,500,2014,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Fiat,500,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Fiat,500,2015,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500,2015,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Fiat,500,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Fiat,500,2016,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500,2016,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,124 Spider,2017,4,1.4,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Fiat,124 Spider,2017,4,1.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Fiat,500 Abarth,2012,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500 Abarth,2013,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500 Abarth,2014,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500 Abarth,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Fiat,500 Abarth,2015,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500 Abarth,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Fiat,500 Abarth,2016,4,1.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Fiat,500 Cabrio,2012,4,1.4,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Fiat,500 L,2014,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Fiat,500 L,2014,4,1.4,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Fiat,500 L,2015,4,1.4,Front-Wheel Drive,6-Speed Automated Manual,Small Station Wagons +Fiat,500 L,2015,4,1.4,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Fiat,500 L,2015,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Fiat,500 L,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Fiat,500 L,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Fiat,500 X,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Fiat,500 X,2016,4,2.4,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Fiat,500 X,2016,4,2.4,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Fiat,500e,2013,,,Front-Wheel Drive,1-Speed Direct Drive,Minicompact Cars +Fiat,500e,2014,,,Front-Wheel Drive,1-Speed Direct Drive,Minicompact Cars +Fiat,500e,2015,,,Front-Wheel Drive,1-Speed Direct Drive,Minicompact Cars +Fiat,500e,2016,,,Front-Wheel Drive,1-Speed Direct Drive,Minicompact Cars +Fisker,Karma,2012,4,2,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +Ford,Aerostar Van,1986,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1986,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1990,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1990,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1991,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1991,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1992,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1992,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1993,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Van,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1994,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Van,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1986,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1990,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1990,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1991,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1991,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1992,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1992,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1993,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,Aerostar Wagon,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1994,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1995,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1995,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1996,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1996,6,4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1997,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Vans +Ford,Aerostar Wagon,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,Aerostar Wagon,1997,6,4,Rear-Wheel Drive,5-Speed Automatic,Vans +Ford,Aspire,1994,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Aspire,1994,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Aspire,1995,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Aspire,1995,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Aspire,1996,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Aspire,1996,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Aspire,1997,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Aspire,1997,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Bronco,1984,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1984,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1984,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1984,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1984,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1984,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1984,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1984,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1984,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1984,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1984,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1984,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1984,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1985,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1985,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1985,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1985,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1985,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1985,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1985,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1986,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1986,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1986,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1986,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1987,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1987,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1987,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1987,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1987,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1987,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1988,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1988,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1988,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1988,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1988,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1988,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1988,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1988,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1988,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1989,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1989,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1989,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1989,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1989,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1989,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1989,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1989,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1989,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1990,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1990,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1990,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1990,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1990,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1991,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1991,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1991,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1991,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1991,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1992,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1992,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1992,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1992,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1992,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1993,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1993,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1993,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1994,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1994,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1994,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1995,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1995,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1995,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1996,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco,1996,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco,1996,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1984,6,2.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1984,6,2.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1985,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1986,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1986,6,2.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1986,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1986,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1987,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1987,6,2.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1987,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1987,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1988,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1988,6,2.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1988,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1988,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1989,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1989,6,2.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1989,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1989,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1989,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1990,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1990,6,2.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Bronco II,1990,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Bronco II,1990,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,C-MAX Energi Plug-in Hybrid,2013,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,C-MAX Energi Plug-in Hybrid,2014,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,C-MAX Energi Plug-in Hybrid,2015,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,C-MAX Energi Plug-in Hybrid,2016,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,C-MAX Hybrid,2013,4,2,Front-Wheel Drive,CVT,Large Cars +Ford,C-MAX Hybrid,2014,4,2,Front-Wheel Drive,CVT,Large Cars +Ford,C-MAX Hybrid,2015,4,2,Front-Wheel Drive,CVT,Large Cars +Ford,C-MAX Hybrid,2016,4,2,Front-Wheel Drive,CVT,Large Cars +Ford,Contour,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,1995,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,1996,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,1996,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,1997,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,1997,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,1998,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,1999,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Contour,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Contour,2000,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Courier,1987,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Courier,1987,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Courier,1987,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Courier,1988,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Courier,1988,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Courier,1989,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Courier,1989,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Courier Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Courier Pickup,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Courier Pickup,1987,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Courier Pickup,1988,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Crown Victoria,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,1996,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2000,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2005,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2006,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2006,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2007,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2007,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2008,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2009,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2010,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria,2011,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria CNG,1996,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria CNG,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria CNG,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria CNG,2000,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria CNG,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria CNG,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria CNG,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria CNG,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,1993,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,1994,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,1996,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,2000,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,2005,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Crown Victoria Police,2006,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,E150 Club Wagon,1984,6,4.9,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,6,4.9,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,6,4.9,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,8,5,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,6,4.9,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,6,4.9,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,6,4.9,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1985,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1985,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1985,6,4.9,Rear-Wheel Drive,4-Speed Manual,Vans +Ford,E150 Club Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1985,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1985,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1985,6,4.9,Rear-Wheel Drive,4-Speed Manual,Vans +Ford,E150 Club Wagon,1985,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1986,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1986,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1986,6,4.9,Rear-Wheel Drive,4-Speed Manual,Vans +Ford,E150 Club Wagon,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1986,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1987,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1987,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1987,6,4.9,Rear-Wheel Drive,4-Speed Manual,Vans +Ford,E150 Club Wagon,1987,6,4.9,Rear-Wheel Drive,4-Speed Manual,Vans +Ford,E150 Club Wagon,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1987,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1987,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1988,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1988,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1988,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1989,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1989,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1989,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Club Wagon,1990,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1990,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1991,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1991,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1992,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1992,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1993,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1993,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1994,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1994,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1995,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1995,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1996,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1996,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1997,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1997,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Club Wagon,1998,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1998,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1999,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,1999,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2000,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2000,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2000,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2001,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2002,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2003,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2004,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2005,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2005,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2006,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Club Wagon,2006,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Econoline,1984,6,4.9,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1984,6,4.9,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1984,6,4.9,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +Ford,E150 Econoline,1984,6,4.9,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Ford,E150 Econoline,1984,6,4.9,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Ford,E150 Econoline,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1984,8,5,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Ford,E150 Econoline,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1984,6,4.9,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1984,6,4.9,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1984,6,4.9,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +Ford,E150 Econoline,1984,6,4.9,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +Ford,E150 Econoline,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1985,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1985,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1985,6,4.9,Rear-Wheel Drive,3-Speed Manual,Vans +Ford,E150 Econoline,1985,6,4.9,Rear-Wheel Drive,4-Speed Manual,Vans +Ford,E150 Econoline,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1985,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1985,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1985,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1985,6,4.9,Rear-Wheel Drive,3-Speed Manual,Vans +Ford,E150 Econoline,1985,6,4.9,Rear-Wheel Drive,4-Speed Manual,Vans +Ford,E150 Econoline,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1985,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1986,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1986,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1986,6,4.9,Rear-Wheel Drive,3-Speed Manual,Vans +Ford,E150 Econoline,1986,6,4.9,Rear-Wheel Drive,4-Speed Manual,Vans +Ford,E150 Econoline,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1986,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1987,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1987,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1987,6,4.9,Rear-Wheel Drive,4-Speed Manual,Vans +Ford,E150 Econoline,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1987,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1987,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1988,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1988,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1988,6,4.9,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,E150 Econoline,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1988,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1989,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1989,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1989,6,4.9,Rear-Wheel Drive,5-Speed Manual,Vans +Ford,E150 Econoline,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1989,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1990,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1990,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1990,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1991,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1991,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1991,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1992,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1992,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1992,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1993,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1993,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1993,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1994,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1994,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1994,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1995,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1995,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1995,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1996,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E150 Econoline,1996,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1996,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1997,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1997,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E150 Econoline,1998,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1998,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1999,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,1999,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2000,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2000,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2000,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2001,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2002,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2003,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2004,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2005,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2005,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2006,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Econoline,2006,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Van,2011,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Van,2011,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Van,2012,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Van,2012,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Van,2013,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Van,2013,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Van,2014,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Van,2014,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E150 Wagon,2011,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Wagon,2011,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Wagon,2012,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Wagon,2012,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Wagon,2013,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Wagon,2013,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Wagon,2014,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E150 Wagon,2014,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E250 CNG,2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1984,6,4.9,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1984,6,4.9,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1984,6,4.9,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +Ford,E250 Econoline,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1984,6,4.9,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1984,6,4.9,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1984,6,4.9,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +Ford,E250 Econoline,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1985,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1985,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1985,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1985,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1985,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1986,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1986,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1987,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1987,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1987,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1988,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1988,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1989,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1989,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1990,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1990,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1990,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1990,6,4.9,Rear-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1991,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1991,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1991,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1992,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1992,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1992,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1993,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1993,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1993,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1994,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1994,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1994,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1995,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1995,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1995,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1996,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Ford,E250 Econoline,1996,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1996,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1997,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1997,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Ford,E250 Econoline,1998,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1998,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1999,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,1999,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2000,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2000,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2001,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2002,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2003,6,4.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline,2005,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline CNG,1998,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline CNG,1999,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Econoline CNG,2000,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Van,2011,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Van,2011,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Van,2012,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Van,2012,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Van,2013,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Van,2013,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Van,2014,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E250 Van,2014,8,4.6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E350 Van,2011,10,6.8,Rear-Wheel Drive,5-Speed Automatic,"Vans, Cargo Type" +Ford,E350 Van,2011,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E350 Van,2012,10,6.8,Rear-Wheel Drive,5-Speed Automatic,"Vans, Cargo Type" +Ford,E350 Van,2012,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E350 Van,2013,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E350 Van,2013,10,6.8,Rear-Wheel Drive,5-Speed Automatic,"Vans, Cargo Type" +Ford,E350 Van,2014,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Ford,E350 Van,2014,10,6.8,Rear-Wheel Drive,5-Speed Automatic,"Vans, Cargo Type" +Ford,E350 Wagon,2011,10,6.8,Rear-Wheel Drive,5-Speed Automatic,"Vans, Passenger Type" +Ford,E350 Wagon,2011,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E350 Wagon,2012,10,6.8,Rear-Wheel Drive,5-Speed Automatic,"Vans, Passenger Type" +Ford,E350 Wagon,2012,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E350 Wagon,2013,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E350 Wagon,2013,10,6.8,Rear-Wheel Drive,5-Speed Automatic,"Vans, Passenger Type" +Ford,E350 Wagon,2014,8,5.4,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Ford,E350 Wagon,2014,10,6.8,Rear-Wheel Drive,5-Speed Automatic,"Vans, Passenger Type" +Ford,Edge,2007,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2007,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2008,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2011,6,3.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2011,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2012,6,3.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2012,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Edge,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2013,6,3.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2013,6,3.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2014,6,3.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2014,6,3.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2015,6,2.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2015,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2015,6,2.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2016,6,2.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Edge,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2001,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2001,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2002,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2002,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2003,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2003,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2004,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2004,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2005,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2005,4,2.3,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2005,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2005,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2005,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2006,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2006,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2006,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2006,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2006,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2007,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2007,4,2.3,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2007,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2007,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2007,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2007,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2008,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2008,4,2.3,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2008,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2008,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2008,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2009,4,2.5,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2009,4,2.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2009,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2009,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2010,4,2.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2010,4,2.5,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2010,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2010,4,2.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2010,6,3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2011,4,2.5,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2011,4,2.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2011,4,2.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2012,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2012,4,2.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2012,4,2.5,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Escape,2012,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2012,4,2.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Escape,2013,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2013,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2013,4,1.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2014,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2014,4,1.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2015,4,1.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2015,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2016,4,1.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2017,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2017,4,1.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2017,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2017,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape,2017,4,1.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Ford,Escape Hybrid,2005,4,2.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2005,4,2.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2006,4,2.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2006,4,2.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2007,4,2.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2007,4,2.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2008,4,2.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2008,4,2.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2009,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2009,4,2.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2010,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2010,4,2.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2011,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2011,4,2.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2012,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escape Hybrid,2012,4,2.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Escort,1984,4,1.6,,3-Speed Automatic,Compact Cars +Ford,Escort,1984,4,1.6,,4-Speed Manual,Compact Cars +Ford,Escort,1984,4,1.6,,4-Speed Manual,Compact Cars +Ford,Escort,1984,4,1.6,,5-Speed Manual,Compact Cars +Ford,Escort,1984,4,1.6,,3-Speed Automatic,Compact Cars +Ford,Escort,1984,4,1.6,,5-Speed Manual,Compact Cars +Ford,Escort,1984,4,1.6,,5-Speed Manual,Compact Cars +Ford,Escort,1984,4,2,,5-Speed Manual,Compact Cars +Ford,Escort,1984,4,2,,5-Speed Manual,Compact Cars +Ford,Escort,1984,4,1.6,,3-Speed Automatic,Compact Cars +Ford,Escort,1984,4,1.6,,4-Speed Manual,Compact Cars +Ford,Escort,1984,4,1.6,,5-Speed Manual,Compact Cars +Ford,Escort,1984,4,1.6,,3-Speed Automatic,Compact Cars +Ford,Escort,1984,4,1.6,,5-Speed Manual,Compact Cars +Ford,Escort,1984,4,1.6,,5-Speed Manual,Compact Cars +Ford,Escort,1984,4,2,,5-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Escort,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Escort,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Escort,1985,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Escort,1985,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1986,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Escort,1986,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Escort,1986,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1986,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Escort,1986,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1987,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Escort,1987,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Escort,1987,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1987,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1988,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Escort,1988,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Escort,1988,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1988,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1989,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Escort,1989,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Escort,1989,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1989,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1990,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Escort,1990,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Escort,1990,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1990,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1991,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1991,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1992,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1993,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1994,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1994,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1995,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1995,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1996,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1997,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Escort FS,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort FS,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort FS,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort FS,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Escort Wagon,1984,4,1.6,,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1984,4,1.6,,4-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1984,4,1.6,,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1984,4,2,,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1984,4,1.6,,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1984,4,1.6,,4-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1984,4,1.6,,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1984,4,2,,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1985,4,1.9,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1985,4,1.9,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1985,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1985,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1985,4,1.9,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1985,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1985,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1986,4,1.9,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1986,4,1.9,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1986,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1986,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1987,4,1.9,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1987,4,1.9,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1987,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1988,4,1.9,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1988,4,1.9,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1988,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1989,4,1.9,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1989,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1990,4,1.9,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1990,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1991,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1992,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1993,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1994,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1994,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1995,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1995,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1996,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1997,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1998,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort Wagon,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Ford,Escort Wagon,1999,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Ford,Escort ZX2,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Escort ZX2,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Escort ZX2,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Escort ZX2,1999,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Escort ZX2,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Escort ZX2,2000,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Escort ZX2,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Escort ZX2,2001,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Escort ZX2,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Escort ZX2,2002,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Escort ZX2,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Escort ZX2,2003,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,EXP,1984,4,1.6,,3-Speed Automatic,Two Seaters +Ford,EXP,1984,4,1.6,,5-Speed Manual,Two Seaters +Ford,EXP,1984,4,1.6,,5-Speed Manual,Two Seaters +Ford,EXP,1984,4,1.6,,3-Speed Automatic,Two Seaters +Ford,EXP,1984,4,1.6,,5-Speed Manual,Two Seaters +Ford,EXP,1984,4,1.6,,5-Speed Manual,Two Seaters +Ford,EXP,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Ford,EXP,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Ford,EXP,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Ford,EXP,1986,4,1.9,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Ford,EXP,1986,4,1.9,Front-Wheel Drive,5-Speed Manual,Two Seaters +Ford,EXP,1986,4,1.9,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Ford,EXP,1986,4,1.9,Front-Wheel Drive,5-Speed Manual,Two Seaters +Ford,EXP,1987,4,1.9,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Ford,EXP,1987,4,1.9,Front-Wheel Drive,5-Speed Manual,Two Seaters +Ford,EXP,1987,4,1.9,Front-Wheel Drive,5-Speed Manual,Two Seaters +Ford,EXP,1988,4,1.9,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Ford,EXP,1988,4,1.9,Front-Wheel Drive,5-Speed Manual,Two Seaters +Ford,EXP,1988,4,1.9,Front-Wheel Drive,5-Speed Manual,Two Seaters +Ford,Expedition,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Expedition,1997,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Expedition,1997,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Expedition,1997,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Expedition,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Expedition,1998,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Expedition,1998,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Expedition,1998,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Expedition,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,1999,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,1999,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,1999,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2000,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2000,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2000,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2000,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2001,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2001,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2002,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2002,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2003,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2003,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2004,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2004,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2004,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2005,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2005,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2006,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2006,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2007,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2008,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2009,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2010,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2010,8,5.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2011,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2011,8,5.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2012,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2012,8,5.4,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Expedition,2013,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition,2013,8,5.4,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition,2014,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition,2014,8,5.4,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition,2015,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition,2015,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition,2016,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition,2016,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition,2017,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition,2017,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition EL,2015,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition EL,2015,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition EL,2016,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition EL,2016,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition EL,2017,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition EL,2017,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Expedition Limo.,2011,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,1991,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1991,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1991,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1991,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1992,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1992,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1992,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1992,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1993,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1993,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1993,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1994,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1994,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1994,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1995,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1995,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1995,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1995,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1996,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1996,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1996,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1996,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1996,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1997,6,4,Rear-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1997,6,4,Rear-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1997,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1997,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1997,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1997,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1997,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1997,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1998,6,4,Rear-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1998,6,4,Rear-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1998,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1998,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1998,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1998,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1998,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Explorer,1998,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Explorer,1999,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,1999,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,1999,6,4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer,1999,8,5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,1999,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,1999,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,1999,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer,1999,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2000,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2000,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2000,6,4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer,2000,8,5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2000,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2000,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2000,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer,2000,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2000,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2001,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2001,8,5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2001,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2002,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2002,6,4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer,2002,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer,2002,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2002,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2003,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2003,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2003,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2004,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2004,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2004,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2004,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2004,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2004,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2005,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2005,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2006,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2006,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2007,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2007,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2008,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2008,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2009,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2009,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2010,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2010,8,4.6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2010,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2011,6,3.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2011,6,3.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Explorer,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2016,4,2.3,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2016,4,2.3,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2017,4,2.3,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2017,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2017,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2017,4,2.3,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2017,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2017,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer,2017,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Explorer Sport,2001,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer Sport,2001,6,4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer Sport,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer Sport,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer Sport,2001,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer Sport,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer Sport,2002,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer Sport,2002,6,4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer Sport,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer Sport,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer Sport,2003,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer Sport,2003,6,4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer Sport,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer Sport,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Ford,Explorer Sport Trac,2001,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2001,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Explorer Sport Trac,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Explorer Sport Trac,2002,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2002,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Explorer Sport Trac,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Explorer Sport Trac,2003,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2003,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Explorer Sport Trac,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Explorer Sport Trac,2004,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2004,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2007,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2007,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2008,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2008,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2009,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2009,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2010,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2010,8,4.6,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,Explorer Sport Trac,2010,6,4,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Explorer USPS,2001,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer USPS,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer USPS,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer USPS,2001,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Ford,Explorer USPS Electric,2001,,,2-Wheel Drive,,Sport Utility Vehicle +Ford,Explorer USPS Electric,2002,,,2-Wheel Drive,,Sport Utility Vehicle +Ford,F150 2.7L GVWR>6649 LBS PAYLOAD PACKAGE,2016,6,2.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 2.7L GVWR>6799 LBS PAYLOAD PACKAGE,2016,6,2.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 3.5L GVWR>7599 LBS PAYLOAD PACKAGE,2016,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 3.5L GVWR>7599 LBS PAYLOAD PACKAGE,2016,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 5.0L GVWR>7599 LBS PAYLOAD PACKAGE,2016,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 5.0L GVWR>7599 LBS PAYLOAD PACKAGE,2016,8,5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 CNG,2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 CNG,2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 CNG,2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 CNG,2004,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel,2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel,2001,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel,2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel,2002,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel,2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel,2003,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel,2004,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel,2004,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel (LPG),2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel (LPG),2001,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel (LPG),2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel (LPG),2002,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel (LPG),2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel (LPG),2003,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel (LPG),2004,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Dual-fuel (LPG),2004,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,2-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5,2-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5.8,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5.8,2-Wheel Drive,,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,2-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1984,6,4.9,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1985,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1986,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1986,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1986,6,4.9,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1986,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1986,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1986,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1986,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1986,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1986,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1986,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1987,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1987,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1987,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1987,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1987,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1987,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1987,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1988,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1988,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1988,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1988,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1989,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1989,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1989,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1989,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1989,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1990,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1990,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1990,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1990,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1991,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1991,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1991,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1991,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1991,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1991,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1991,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1991,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1991,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1992,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1992,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1992,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1992,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1992,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1992,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1992,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1992,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1992,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1992,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1992,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1992,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1992,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1993,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1993,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1993,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1993,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1993,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1993,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1993,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1993,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1993,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1993,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1993,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1993,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1993,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1993,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1994,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1994,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1994,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1994,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1994,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1994,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1994,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1994,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1994,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1995,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1995,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1995,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1995,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1995,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1995,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1995,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1995,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1995,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1995,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1996,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1996,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1996,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1996,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1996,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1996,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1996,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1996,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1996,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1997,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1997,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1997,8,4.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1997,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1997,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1997,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1997,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1997,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1997,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1998,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1998,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1998,8,4.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1998,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1998,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1998,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1998,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1998,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1998,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1999,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1999,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1999,8,4.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1999,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1999,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1999,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1999,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1999,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,1999,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,1999,8,5.4,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2000,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2000,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2000,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2000,8,4.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2000,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2000,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2000,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2000,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2000,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2000,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2001,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2001,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2001,8,4.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2001,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2001,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2001,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2001,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2001,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2002,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2002,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2002,8,4.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2002,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2002,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2002,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2002,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2002,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2003,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2003,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2003,8,4.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2003,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2003,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2003,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2003,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2003,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2004,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2004,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2004,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2004,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2004,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2004,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2004,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2004,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2004,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2005,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2005,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2005,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2005,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2005,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2005,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2006,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2006,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2006,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2006,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2006,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2006,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2006,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2006,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2007,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2007,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2007,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2007,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2007,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2007,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2007,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2007,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2008,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2008,6,4.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F150 Pickup,2008,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2008,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2008,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2008,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2009,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2009,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2009,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2009,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2009,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2009,8,5.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2010,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2010,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2010,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2010,8,5.4,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2010,8,4.6,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2010,8,4.6,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,8,6.2,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,8,5,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,6,3.5,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,6,3.7,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,8,5,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,6,3.5,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2011,6,3.7,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,8,6.2,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,6,3.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,6,3.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,8,5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2012,8,5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,8,6.2,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,8,5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,8,5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,6,3.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,6,3.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2013,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,8,6.2,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,6,3.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,6,3.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,8,5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2014,8,5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2015,6,2.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2015,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2015,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2015,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2015,6,2.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2015,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2015,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2015,8,5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2016,6,2.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2016,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2016,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2016,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2016,6,2.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2016,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2016,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup,2016,8,5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Pickup CNG,2000,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 Raptor Pickup,2011,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Raptor Pickup,2012,8,6.2,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Raptor Pickup,2013,8,6.2,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 Raptor Pickup,2014,8,6.2,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 SFE,2009,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ford,F150 STX SE,2007,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 STX SE,2007,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 STX SE,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F150 STX SE,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250,1996,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250,1996,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250,1996,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250,1996,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,6,4.9,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,6,4.9,2-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5.8,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,6,4.9,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,6,4.9,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5.8,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1984,6,4.9,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,6,4.9,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5.8,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,6,4.9,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,6,4.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1985,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,8,5.8,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1985,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1986,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1986,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1986,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1986,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1986,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1987,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1987,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1987,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1987,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1987,6,4.9,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1987,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1987,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1988,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1988,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1988,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1988,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1988,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1988,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1988,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1988,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1989,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1989,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1989,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1989,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1989,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1989,8,5.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1989,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1989,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1989,8,5.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1990,6,4.9,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1990,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1990,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1990,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1990,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1990,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1990,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1990,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1990,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1990,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1990,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1991,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1991,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1991,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1991,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1991,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1991,6,4.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1991,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1991,8,5.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1992,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1992,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1992,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1992,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1992,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1993,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1993,6,4.9,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1993,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1993,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1993,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1993,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1994,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1994,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1994,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1994,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1995,6,4.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1995,6,4.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1995,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1995,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1997,8,4.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1997,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1997,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1997,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1997,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1998,8,4.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1998,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1998,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1998,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1998,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1999,8,4.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1999,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1999,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup,1999,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,F250 Pickup,1999,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup Cab Chassis,1984,8,5,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,F250 Pickup Cab Chassis,1984,8,5,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,F250 Pickup Cab Chassis,1984,8,5,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Ford,F250 Pickup CNG,1998,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,F250 Pickup CNG,1999,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Festiva,1988,4,1.3,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Ford,Festiva,1988,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Festiva,1989,4,1.3,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Ford,Festiva,1989,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Festiva,1989,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Festiva,1990,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Festiva,1990,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Festiva,1991,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Festiva,1991,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Festiva,1992,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Festiva,1992,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Festiva,1993,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Festiva,1993,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Fiesta,2011,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Fiesta,2011,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Ford,Fiesta,2012,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Ford,Fiesta,2012,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Fiesta,2013,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Ford,Fiesta,2013,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Fiesta,2014,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Fiesta,2014,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Ford,Fiesta,2015,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Ford,Fiesta,2015,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Fiesta,2016,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Ford,Fiesta,2016,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Fiesta SFE,2011,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Ford,Fiesta SFE,2012,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Ford,Fiesta SFE,2013,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Ford,Fiesta SFE,2014,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Ford,Fiesta SFE,2014,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Fiesta SFE,2015,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Fiesta SFE,2016,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Fiesta ST,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Fiesta ST,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Fiesta ST,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Five Hundred,2005,6,3,4-Wheel or All-Wheel Drive,CVT,Large Cars +Ford,Five Hundred,2005,6,3,Front-Wheel Drive,CVT,Large Cars +Ford,Five Hundred,2005,6,3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Five Hundred,2006,6,3,4-Wheel or All-Wheel Drive,CVT,Large Cars +Ford,Five Hundred,2006,6,3,Front-Wheel Drive,CVT,Large Cars +Ford,Five Hundred,2006,6,3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Five Hundred,2007,6,3,4-Wheel or All-Wheel Drive,CVT,Large Cars +Ford,Five Hundred,2007,6,3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Flex,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2010,6,3.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Flex,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Flex,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Ford,Focus,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2002,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Focus,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2003,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Focus,2003,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2003,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2004,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Focus,2004,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2005,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2006,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2007,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2007,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2008,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2009,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2010,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2010,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2011,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Focus,2011,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2012,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2012,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2012,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2012,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2012,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2012,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Ford,Focus,2013,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Focus,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Ford,Focus,2013,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Ford,Focus,2014,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Focus,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Ford,Focus,2014,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2015,3,1,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Focus,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Ford,Focus,2015,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Focus,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Ford,Focus,2015,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2016,3,1,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Focus,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2016,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus,2016,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Focus,2016,3,1,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Ford,Focus Electric,2012,,,Front-Wheel Drive,CVT,Compact Cars +Ford,Focus Electric,2013,,,Front-Wheel Drive,1-Speed Direct Drive,Compact Cars +Ford,Focus Electric,2014,,,Front-Wheel Drive,1-Speed Direct Drive,Compact Cars +Ford,Focus Electric,2015,,,Front-Wheel Drive,1-Speed Direct Drive,Compact Cars +Ford,Focus Electric,2016,,,Front-Wheel Drive,1-Speed Direct Drive,Compact Cars +Ford,Focus RS,2016,4,2.3,All-Wheel Drive,6-Speed Manual,Midsize Cars +Ford,Focus SFE,2012,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus SFE,2012,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus SFE,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus SFE,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Ford,Focus SFE,2015,3,1,Front-Wheel Drive,6-Speed Manual,Compact Cars +Ford,Focus ST,2016,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Ford,Focus Station Wagon,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2001,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2001,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2002,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2002,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2003,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2003,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2003,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2003,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2004,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2004,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2004,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2005,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2006,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Focus Station Wagon,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Focus Station Wagon,2007,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Ford,Freestar Cargo Van,2004,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Cargo Van,2005,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Cargo Van,2005,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Cargo Van,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Cargo Van,2006,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Cargo Van,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Cargo Van,2007,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Wagon,2004,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Wagon,2004,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Wagon,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Wagon,2005,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Wagon,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Wagon,2006,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Wagon,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestar Wagon,2007,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Freestyle,2005,6,3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Freestyle,2005,6,3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Freestyle,2006,6,3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Freestyle,2006,6,3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Freestyle,2007,6,3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Freestyle,2007,6,3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Ford,Fusion,2006,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Ford,Fusion,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Fusion,2006,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2007,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Ford,Fusion,2007,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Fusion,2007,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2008,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Ford,Fusion,2008,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Fusion,2008,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2009,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Fusion,2009,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Ford,Fusion,2009,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2010,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2010,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2010,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Ford,Fusion,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2010,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2011,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2011,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2011,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Ford,Fusion,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2011,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2012,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Ford,Fusion,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2012,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2012,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2012,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2012,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Ford,Fusion,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2013,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2013,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2014,4,1.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Ford,Fusion,2014,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2014,4,1.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2015,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2015,4,1.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2015,4,1.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2016,4,1.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2016,4,1.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2016,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2017,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2017,4,1.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion,2017,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion Energi Plug-in Hybrid,2013,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Energi Plug-in Hybrid,2014,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Energi Plug-in Hybrid,2015,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Energi Plug-in Hybrid,2016,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Energi Plug-in Hybrid,2017,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Hybrid,2010,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Hybrid,2011,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Hybrid,2012,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Hybrid,2013,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Hybrid,2014,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Hybrid,2015,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Hybrid,2016,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion Hybrid,2017,4,2,Front-Wheel Drive,CVT,Midsize Cars +Ford,Fusion S,2010,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Ford,Fusion S,2010,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Ford,Fusion S,2011,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Ford,Fusion S,2012,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Ford,GT,2005,8,5.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ford,GT,2006,8,5.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Ford,Laser,1984,4,1.5,,3-Speed Automatic,Subcompact Cars +Ford,Laser,1984,4,1.5,,4-Speed Manual,Subcompact Cars +Ford,Laser,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Laser,1985,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Ford,Laser,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Laser,1986,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Laser,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Ford,Laser,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Laser,1987,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Laser,1988,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Laser,1988,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Laser,1989,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Laser,1989,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Ford,Lightning F150,1994,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Lightning F150,1995,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Lightning Pickup,2000,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,LTD,1984,4,2.3,,3-Speed Automatic,Midsize Cars +Ford,LTD,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Ford,LTD,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Ford,LTD,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Ford,LTD,1984,8,5,,4-Speed Automatic,Midsize Cars +Ford,LTD,1984,4,2.3,,3-Speed Automatic,Midsize Cars +Ford,LTD,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Ford,LTD,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Ford,LTD,1984,8,5,,4-Speed Automatic,Midsize Cars +Ford,LTD,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,LTD,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,LTD,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,LTD,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,LTD,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,LTD,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,LTD,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,LTD Crown Victoria,1984,8,5,,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1984,8,5.8,,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1984,8,5,,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1985,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1986,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1986,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1987,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1988,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1989,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1990,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1991,8,5.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1992,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1992,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1993,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria,1994,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Ford,LTD Crown Victoria Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Crown Victoria Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Crown Victoria Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Crown Victoria Wagon,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Crown Victoria Wagon,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Crown Victoria Wagon,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Crown Victoria Wagon,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Crown Victoria Wagon,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Crown Victoria/Country Squire Wagon,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Wagon,1984,6,3.8,,3-Speed Automatic,Midsize Station Wagons +Ford,LTD Wagon,1984,6,3.8,,4-Speed Automatic,Midsize Station Wagons +Ford,LTD Wagon,1984,6,3.8,,3-Speed Automatic,Midsize Station Wagons +Ford,LTD Wagon,1984,6,3.8,,3-Speed Automatic,Midsize Station Wagons +Ford,LTD Wagon,1984,6,3.8,,4-Speed Automatic,Midsize Station Wagons +Ford,LTD Wagon,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Wagon,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Ford,LTD Wagon,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Ford,Mustang,1984,4,2.3,,3-Speed Automatic,Subcompact Cars +Ford,Mustang,1984,4,2.3,,4-Speed Manual,Subcompact Cars +Ford,Mustang,1984,4,2.3,,5-Speed Manual,Subcompact Cars +Ford,Mustang,1984,6,3.8,,3-Speed Automatic,Subcompact Cars +Ford,Mustang,1984,8,5,,5-Speed Manual,Subcompact Cars +Ford,Mustang,1984,8,5,,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1984,4,2.3,,3-Speed Automatic,Subcompact Cars +Ford,Mustang,1984,4,2.3,,4-Speed Manual,Subcompact Cars +Ford,Mustang,1984,4,2.3,,5-Speed Manual,Subcompact Cars +Ford,Mustang,1984,6,3.8,,3-Speed Automatic,Subcompact Cars +Ford,Mustang,1984,8,5,,5-Speed Manual,Subcompact Cars +Ford,Mustang,1984,8,5,,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Mustang,1985,4,2.3,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Ford,Mustang,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Mustang,1985,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Mustang,1985,4,2.3,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Ford,Mustang,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Mustang,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Mustang,1986,4,2.3,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Ford,Mustang,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Ford,Mustang,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1986,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1987,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1992,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1993,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1993,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1993,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1994,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1994,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1994,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1995,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1995,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1995,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1995,8,5.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1996,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1996,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1996,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1996,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1996,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1997,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1997,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1997,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1997,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1998,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1998,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1998,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1998,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1999,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1999,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,1999,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,1999,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2000,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2000,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2000,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2000,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2000,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2000,8,5.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2001,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2001,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2001,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2001,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2002,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2002,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2002,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2003,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2003,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2003,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2003,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2003,8,4.6,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2004,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2004,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2004,6,3.9,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2004,6,3.9,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Mustang,2004,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2004,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2004,8,4.6,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2005,6,4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2005,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2005,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2006,6,4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2006,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2006,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2007,6,4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2007,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2007,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2007,8,5.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2008,6,4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2008,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2008,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2008,8,5.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2009,6,4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2009,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2009,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2009,8,5.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2010,6,4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2010,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Ford,Mustang,2010,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Mustang,2010,8,5.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2011,8,5.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2011,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2011,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2011,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2012,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2012,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2012,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2012,8,5.4,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2013,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2013,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2013,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2013,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2013,8,5.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2014,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2014,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2014,8,5.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2014,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2014,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2015,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2015,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2015,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2015,4,2.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2015,4,2.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2015,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2016,4,2.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2016,4,2.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2016,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2016,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2016,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2016,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2017,4,2.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2017,4,2.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2017,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang,2017,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2017,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang,2017,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2011,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2012,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2013,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2014,6,3.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2015,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2015,4,2.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2016,4,2.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2016,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2017,4,2.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2017,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Convertible,2017,4,2.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang Convertible,2017,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang Performance Package,2017,4,2.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Mustang Performance Package,2017,4,2.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Ford,Mustang Performance Package,2017,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Postal Vehicle,2000,6,4,Rear-Wheel Drive,5-Speed Automatic,Minivan +Ford,Probe,1989,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Probe,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1990,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Probe,1990,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Probe,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Probe,1990,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Probe,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Probe,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Probe,1991,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Probe,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Probe,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Probe,1992,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Probe,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Probe,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Probe,1993,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Probe,1993,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Probe,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Probe,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Probe,1994,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Probe,1994,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Probe,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Probe,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Probe,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Probe,1995,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Probe,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Probe,1996,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Probe,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Probe,1996,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Probe,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Probe,1997,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Probe,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Ford,Probe,1997,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Ford,Ranger,1999,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger,1999,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger,1999,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger,2000,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger,2000,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger,2000,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger,2000,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger,2010,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger,2010,6,4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger,2010,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger,2010,6,4,4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger,2010,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger,2011,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger,2011,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger,2011,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger,2011,6,4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger,2011,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger,2011,6,4,4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1985,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1985,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1985,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1985,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1985,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1986,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1986,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1986,6,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1986,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1986,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1986,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1986,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1987,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1987,6,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1987,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1987,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1987,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1987,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1987,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1988,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1988,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1988,6,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1988,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1988,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1988,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1989,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1989,6,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1989,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1989,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1989,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1989,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1989,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1990,6,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1990,6,4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1990,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1990,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1990,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1990,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1990,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1991,6,4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1991,6,4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1991,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1991,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1991,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1991,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1991,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1992,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1992,6,4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1992,6,4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1992,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1992,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1992,6,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1992,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,1992,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,1993,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1993,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1993,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1993,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1993,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1993,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1993,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1994,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1994,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1994,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1994,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1994,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1994,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1994,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1994,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1995,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1995,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1995,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1995,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1995,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1995,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1995,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1995,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1995,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1996,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1996,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1996,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1996,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1996,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1996,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1996,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1996,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1996,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1996,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1997,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1997,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1997,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1997,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1997,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1997,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1997,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1997,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1997,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1998,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1998,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1998,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1998,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1998,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1998,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1998,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1998,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1998,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1998,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1999,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1999,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1999,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1999,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1999,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,1999,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,1999,,,2-Wheel Drive,1-Speed Direct Drive,Standard Pickup Trucks +Ford,Ranger Pickup,1999,,,2-Wheel Drive,1-Speed Direct Drive,Standard Pickup Trucks +Ford,Ranger Pickup,2000,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2000,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2000,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2000,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2000,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2000,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2000,,,2-Wheel Drive,1-Speed Direct Drive,Standard Pickup Trucks +Ford,Ranger Pickup,2000,,,2-Wheel Drive,1-Speed Direct Drive,Standard Pickup Trucks +Ford,Ranger Pickup,2001,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2001,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2001,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2001,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2001,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2001,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2001,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2001,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2001,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2001,,,2-Wheel Drive,1-Speed Direct Drive,Standard Pickup Trucks +Ford,Ranger Pickup,2002,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2002,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2002,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2002,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2002,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2003,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2003,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2003,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2003,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2003,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2004,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2004,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2004,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2004,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2004,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2004,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2004,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2004,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2004,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2005,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2005,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2005,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2005,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2005,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2006,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2006,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2006,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2006,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2006,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2007,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2007,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2007,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2007,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2007,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2007,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2007,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Ford,Ranger Pickup,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Ford,Ranger Pickup,2008,6,4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,2008,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,2008,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,2008,6,3,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,2008,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,2008,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,2008,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,2009,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,2009,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,2009,6,4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Ford,Ranger Pickup,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Ford,Ranger Pickup Cab Chassis,1984,4,2.3,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Ranger Pickup Cab Chassis,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Ranger Pickup Cab Chassis,1984,4,2.3,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Ford,Ranger Pickup Cab Chassis,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Ranger Pickup Cab Chassis,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Ranger Pickup Cab Chassis,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Ranger Pickup Cab Chassis,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Ranger Pickup Cab Chassis,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Ranger Pickup Cab Chassis,1986,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Ranger Pickup Cab Chassis,1986,6,2.9,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Ford,Ranger2WD,1999,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Ford,Shelby GT350 Mustang,2016,8,5.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Shelby GT350 Mustang,2017,8,5.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Ford,Special Service Police,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Special Service Police,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Special Service Police,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,Taurus,1986,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Taurus,1986,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,Taurus,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Taurus,1987,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,Taurus,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Taurus,1988,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,Taurus,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1989,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Taurus,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Ford,Taurus,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2006,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2006,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2007,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Ford,Taurus,2008,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2010,6,3.5,4-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Ford,Taurus SHO,1990,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Taurus SHO,1991,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Taurus SHO,1992,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Taurus SHO,1993,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Taurus SHO,1993,6,3.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus SHO,1994,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Taurus SHO,1994,6,3.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus SHO,1995,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Taurus SHO,1995,6,3.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus SHO,1996,8,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus SHO,1997,8,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus SHO,1998,8,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus SHO,1999,8,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Taurus Wagon,1986,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Ford,Taurus Wagon,1986,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1986,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Ford,Taurus Wagon,1987,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1988,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Ford,Taurus Wagon 3.0 A/C,1987,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon V6 A/C,1988,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon V6 A/C,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon V6 A/C,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon V6 A/C,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon V6 A/C,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus Wagon V6 A/C,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Ford,Taurus X,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Taurus X,2008,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Taurus X,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Taurus X,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Ford,Tempo,1984,4,2,,5-Speed Manual,Compact Cars +Ford,Tempo,1984,4,2.3,,3-Speed Automatic,Compact Cars +Ford,Tempo,1984,4,2.3,,3-Speed Automatic,Compact Cars +Ford,Tempo,1984,4,2.3,,5-Speed Manual,Compact Cars +Ford,Tempo,1984,4,2,,5-Speed Manual,Compact Cars +Ford,Tempo,1984,4,2.3,,3-Speed Automatic,Compact Cars +Ford,Tempo,1984,4,2.3,,5-Speed Manual,Compact Cars +Ford,Tempo,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1985,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1985,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1985,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1985,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1985,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1985,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1986,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1986,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1986,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1987,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1987,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1987,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1987,4,2.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1988,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1988,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1988,4,2.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1988,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1989,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1989,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1989,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1989,4,2.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1990,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1990,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1990,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1990,4,2.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1991,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1991,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1991,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1991,4,2.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1992,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1992,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1992,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1993,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1993,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1993,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1994,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo,1994,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Tempo,1994,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Tempo FS,1992,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Th!nk,2001,,,,,Two Seaters +Ford,Thunderbird,1984,4,2.3,,3-Speed Automatic,Compact Cars +Ford,Thunderbird,1984,4,2.3,,5-Speed Manual,Compact Cars +Ford,Thunderbird,1984,6,3.8,,3-Speed Automatic,Compact Cars +Ford,Thunderbird,1984,6,3.8,,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1984,8,5,,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1984,4,2.3,,3-Speed Automatic,Compact Cars +Ford,Thunderbird,1984,4,2.3,,5-Speed Manual,Compact Cars +Ford,Thunderbird,1984,6,3.8,,3-Speed Automatic,Compact Cars +Ford,Thunderbird,1984,6,3.8,,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1984,8,5,,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Thunderbird,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Thunderbird,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Thunderbird,1985,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Thunderbird,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Thunderbird,1985,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Thunderbird,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Thunderbird,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Ford,Thunderbird,1986,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Thunderbird,1987,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Ford,Thunderbird,1988,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Ford,Thunderbird,1989,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1989,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1989,6,3.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Thunderbird,1990,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1990,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1990,6,3.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Thunderbird,1991,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1991,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1991,6,3.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Thunderbird,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1992,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1992,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1992,6,3.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Thunderbird,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1993,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1993,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1993,6,3.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Thunderbird,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1994,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1994,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1994,6,3.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Thunderbird,1994,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1995,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1995,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1995,6,3.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Ford,Thunderbird,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1996,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1996,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1997,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Ford,Thunderbird,2002,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Ford,Thunderbird,2003,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Ford,Thunderbird,2003,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Ford,Thunderbird,2004,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Ford,Thunderbird,2004,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Ford,Thunderbird,2005,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Ford,Thunderbird,2005,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Ford,Transit Connect,2010,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect,2011,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Van,2012,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Van,2013,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Van,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Van,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Van,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Van,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Van,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Van,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Van,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon,2012,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon,2013,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon LWB,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon LWB,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon LWB,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit Connect Wagon LWB,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Ford,Transit T150 Wagon,2015,6,3.7,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Ford,Transit T150 Wagon,2015,6,3.5,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Ford,Transit T150 Wagon,2016,6,3.7,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Ford,Transit T150 Wagon,2016,6,3.5,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +Ford,Windstar Cargo Van,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Cargo Van,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Cargo Van,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Cargo Van,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Van,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Van,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Van,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Van,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Van,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Van,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Van,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Van,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Van,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Van,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Van,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Wagon,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Wagon,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Wagon,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Wagon,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Wagon,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Wagon,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Wagon,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Wagon,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Ford,Windstar Wagon,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Wagon,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Wagon,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Wagon,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Wagon,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Wagon,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Ford,Windstar Wagon,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +General Motors,Coachbuilder Wagon,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Genesis,G80,2017,6,3.8,All-Wheel Drive,8-Speed Automatic,Large Cars +Genesis,G80 RWD,2017,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Genesis,G80 RWD,2017,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Genesis,G90,2017,6,3.3,All-Wheel Drive,8-Speed Automatic,Large Cars +Genesis,G90,2017,8,5,All-Wheel Drive,8-Speed Automatic,Large Cars +Genesis,G90 RWD,2017,6,3.3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Genesis,G90 RWD,2017,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Geo,Metro,1989,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1990,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro,1990,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1991,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro,1991,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1992,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro,1992,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1993,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro,1993,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1994,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro,1994,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1995,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1995,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro,1995,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1996,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1996,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro,1996,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1997,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro,1997,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro,1997,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro LSI,1989,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro LSI,1989,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro LSI,1990,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro LSI,1990,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro LSI,1991,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro LSI,1991,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro LSI,1992,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro LSI,1992,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro LSI,1993,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Metro LSI,1993,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro LSI Convertible,1990,3,1,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Geo,Metro LSI Convertible,1990,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Geo,Metro LSI Convertible,1991,3,1,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Geo,Metro LSI Convertible,1991,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Geo,Metro LSI Convertible,1992,3,1,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Geo,Metro LSI Convertible,1992,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Geo,Metro LSI Convertible,1993,3,1,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Geo,Metro LSI Convertible,1993,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Geo,Metro XFI,1990,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro XFI,1991,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro XFI,1992,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro XFI,1993,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Metro XFI,1994,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Prizm,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Prizm,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Prizm,1990,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Prizm,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Geo,Prizm,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Prizm,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Prizm,1991,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Prizm,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Geo,Prizm,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Prizm,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Prizm,1992,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Prizm,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Geo,Prizm,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Prizm,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Prizm,1993,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Geo,Prizm,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Geo,Prizm,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Geo,Prizm,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Geo,Prizm,1994,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Geo,Prizm,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Geo,Prizm,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Geo,Prizm,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Geo,Prizm,1995,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Geo,Prizm,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Geo,Prizm,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Geo,Prizm,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Geo,Prizm,1996,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Geo,Prizm,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Geo,Prizm,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Geo,Prizm,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Geo,Prizm,1997,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Prizm,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Prizm,1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Geo,Prizm,1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Spectrum,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Spectrum,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Storm,1990,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Storm,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Geo,Storm,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Storm,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Storm,1991,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Storm,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Geo,Storm,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Storm,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Storm,1992,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Storm,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Storm,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Geo,Storm,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Storm,1993,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Geo,Storm,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Storm,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Geo,Storm,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Geo,Tracker,1990,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker,1990,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker,1991,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker,1991,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1989,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1990,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1990,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1991,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1991,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1991,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1992,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1992,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1992,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1992,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1993,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1993,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1993,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1993,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1994,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1994,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1994,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1994,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1994,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1994,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1994,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1994,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1996,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1996,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible,1997,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible,1997,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible 4x4,1996,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible 4x4,1996,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Convertible 4x4,1997,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Convertible 4x4,1997,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Hardtop,1989,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Hardtop,1989,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Van,1992,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Van,1992,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Van,1993,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Van,1993,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Van,1994,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Van,1994,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Van,1994,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Van,1994,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Van,1996,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Van,1996,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Van,1997,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Van,1997,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Van 4x4,1996,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Van 4x4,1996,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Geo,Tracker Van 4x4,1997,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Geo,Tracker Van 4x4,1997,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Acadia,2007,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2011,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2012,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Acadia,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2017,4,2.5,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2017,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2017,4,2.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia,2017,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia Limited,2017,6,3.6,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Acadia Limited,2017,6,3.6,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,C15 Pickup,1984,6,4.1,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1984,6,4.1,2-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,5,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,5,2-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,5,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1984,6,4.1,2-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1984,8,5,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1985,8,5,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1986,8,5,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1986,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1986,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1986,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1988,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1988,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1988,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1988,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1988,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C15 Pickup,1988,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C15 Pickup,1988,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C15 Suburban,1984,8,5,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C15 Suburban,1986,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,C25 Pickup,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1984,6,4.1,2-Wheel Drive,,Standard Pickup Trucks +GMC,C25 Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1984,8,5,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1984,8,6.2,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1986,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1986,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1988,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1988,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1988,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1988,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1988,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C25 Pickup,1988,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C25 Pickup,1988,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1989,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1989,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1989,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1989,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1989,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1989,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1989,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1989,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1990,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1990,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1990,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1990,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1990,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1990,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1990,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1990,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1991,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1991,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1991,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1991,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1991,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1991,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1991,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1992,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1992,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,C2500 Sierra,1992,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,C2500 Sierra,1992,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Caballero Pickup,1984,6,3.8,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1984,6,3.8,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1984,8,5,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1984,8,5.7,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1984,6,3.8,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1984,8,5,2-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1984,8,5,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Caballero Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2004,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2004,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2004,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2004,5,3.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2004,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2004,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2004,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2004,5,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2005,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2005,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2005,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2005,5,3.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2005,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2005,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2005,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2005,5,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2006,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2006,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2006,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2006,5,3.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2006,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2006,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2006,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2006,5,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2007,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2007,4,2.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2007,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2007,4,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2007,4,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon,2007,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon,2008,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2008,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon,2008,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2008,4,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2008,4,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon,2008,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2009,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2009,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2009,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon,2009,4,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2009,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2009,4,2.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2010,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2010,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon,2010,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2010,4,2.9,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2010,4,2.9,4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon,2010,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2010,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2010,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2011,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2011,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon,2011,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2011,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2011,4,2.9,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2011,4,2.9,4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon,2011,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2011,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2012,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2012,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon,2012,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2012,4,2.9,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2012,4,2.9,4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon,2012,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2012,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2012,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2015,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2015,6,3.6,4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2015,4,2.5,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +GMC,Canyon,2015,4,2.5,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2015,4,2.5,4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2016,4,2.5,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +GMC,Canyon,2016,4,2.5,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2016,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2016,4,2.5,4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2016,6,3.6,4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2016,4,2.8,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +GMC,Canyon,2016,4,2.8,4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +GMC,Canyon Cab Chassis,2015,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +GMC,Canyon Cab Chassis,2016,6,3.6,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +GMC,Canyon Cab Chassis Inc,2006,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Cab Chassis Inc,2006,5,3.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon Cab Chassis Inc,2007,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Cab Chassis Inc,2007,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Cab Chassis Inc,2008,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Cab Chassis Inc,2008,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Cab Chassis Inc,2009,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Cab Chassis Inc,2009,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Cab Chassis Inc,2010,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Cab Chassis Inc,2010,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Cab Chassis Inc,2011,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Cab Chassis Inc,2011,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Cab Chassis Inc,2012,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Cab Chassis Inc,2012,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2004,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2004,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon Crew Cab,2004,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2004,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2004,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon Crew Cab,2004,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2005,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2005,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon Crew Cab,2005,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2005,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2005,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon Crew Cab,2005,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2006,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2006,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon Crew Cab,2006,5,3.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2006,4,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2006,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon Crew Cab,2006,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2007,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2007,4,2.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Canyon Crew Cab,2007,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2007,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Canyon Crew Cab,2008,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2008,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon Crew Cab,2008,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2008,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2009,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2009,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2009,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon Crew Cab,2009,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2010,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2010,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon Crew Cab,2010,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2010,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2010,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2010,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2011,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2011,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon Crew Cab,2011,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2011,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2011,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2011,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2012,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2012,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Canyon Crew Cab,2012,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2012,8,5.3,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2012,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Canyon Crew Cab,2012,5,3.7,4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Envoy,2002,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2002,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2003,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2003,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2004,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2004,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2005,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2005,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2006,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2006,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2007,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2007,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2008,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2008,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2009,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2009,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2002,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2002,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2003,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2003,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2004,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2004,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2005,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2005,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2006,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2006,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XL,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XUV,2005,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XUV,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XUV,2005,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XUV,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XUV,2006,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Envoy XUV,2006,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,EV1,1999,,,,1-Speed Direct Drive,Two Seaters +GMC,EV1,1999,,,,1-Speed Direct Drive,Two Seaters +GMC,G15/25 Rally,1984,6,4.1,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +GMC,G15/25 Rally,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,G15/25 Rally,1984,6,4.1,2-Wheel Drive,3-Speed Manual,"Vans, Passenger Type" +GMC,G15/25 Rally,1984,8,5,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +GMC,G15/25 Rally,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,G15/25 Rally,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,G15/25 Rally,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,G15/25 Rally,1984,8,6.2,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +GMC,G15/25 Rally,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,G15/25 Rally,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,G15/25 Rally,1984,8,6.2,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +GMC,G15/25 Rally,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Rally,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Rally,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Rally,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Rally,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Rally,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Rally,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Rally,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Rally,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Rally,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1986,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1986,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Rally,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1987,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Rally,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1987,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1987,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Rally,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1988,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Rally,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1988,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1988,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Rally,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1989,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Rally,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1989,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1989,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Rally,1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1990,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1991,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Rally,1992,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Vandura,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Vandura,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Vandura,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Vandura,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Vandura,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1986,8,5,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Vandura,1986,8,5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1986,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1986,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Vandura,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1987,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Vandura,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Vandura,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1987,8,5,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G15/25 Vandura,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1987,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1987,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1988,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Vandura,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1988,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1988,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Vandura,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1988,8,5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1988,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1988,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1989,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Vandura,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1989,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1989,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Vandura,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1989,8,5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1989,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1989,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,G15/25 Vandura,1990,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Vandura,1990,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G15/25 Vandura,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1990,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1991,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G15/25 Vandura,1992,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Rally,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,G35 Rally,1984,8,5.7,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,G35 Rally,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Rally,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Rally,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Rally,1986,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Rally,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Rally,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Rally,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Rally,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Rally,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Rally,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Vandura,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Vandura,1986,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,G35 Vandura,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Vandura,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Vandura,1989,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G35 Vandura,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Vandura,1990,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,G35 Vandura,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Vandura,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,G35 Vandura,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Jimmy,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1995,6,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1996,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1996,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1997,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1997,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1998,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1998,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy,1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy,1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Jimmy,1999,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Jimmy,1999,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Jimmy,2000,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Jimmy,2000,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Jimmy,2001,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Jimmy,2001,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,2002,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Jimmy,2002,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Jimmy,2002,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Jimmy,2003,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Jimmy,2003,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,2004,6,4.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy,2004,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +GMC,Jimmy Sonoma,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy Sonoma,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy Sonoma,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy Sonoma,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Jimmy V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,Jimmy V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,Jimmy V1500,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy V1500,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy V1500,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,Jimmy V1500,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy V1500,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Jimmy V1500,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,Jimmy V1500,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,K15 Jimmy,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,K15 Jimmy,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,K15 Jimmy,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Jimmy,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Pickup,1984,6,4.1,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1984,6,4.1,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1984,6,4.1,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1984,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1985,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1985,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1985,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1985,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1985,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1985,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1986,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1986,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1986,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1986,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1986,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1986,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K15 Pickup,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K15 Pickup,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K15 Suburban,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Suburban,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,K15 Suburban,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Suburban,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Suburban,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Suburban,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Suburban,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,K15 Suburban,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Suburban,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Suburban,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Suburban,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Suburban,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K15 Suburban,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,K15 Suburban,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,K25 Pickup,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1984,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1984,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1985,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1985,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1986,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1986,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1988,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1988,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K25 Pickup,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K25 Pickup,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1989,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1989,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1989,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1989,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1989,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1989,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1990,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1990,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1990,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1990,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1990,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1991,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1991,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1991,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1991,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1992,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1992,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1992,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,K2500 Sierra,1992,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,K2500 Sierra,1992,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,R15 Pickup,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,R15 Pickup,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,R15 Pickup,1987,6,4.3,Rear-Wheel Drive,3-Speed Manual,Standard Pickup Trucks +GMC,R15 Pickup,1987,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,R15 Pickup,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,R15 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,R15 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,R15 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,R15 Pickup,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,R15 Pickup,1987,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,R15 Pickup,1987,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,R15 Pickup,1987,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,R15 Pickup,1987,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,R15 Suburban,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R15 Suburban,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R15 Suburban,1987,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R15 Suburban,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R15 Suburban,1988,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R1500 Suburban,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R1500 Suburban,1989,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R1500 Suburban,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R1500 Suburban,1990,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R1500 Suburban,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R1500 Suburban,1991,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,R25 Pickup,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,R25 Pickup,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,R25 Pickup,1987,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,R25 Pickup,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,R25 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,R25 Pickup,1987,8,5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,R25 Pickup,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,R25 Pickup,1987,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,R25 Pickup,1987,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,R25 Pickup,1987,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Rally G15/25,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G15/25,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G15/25,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G15/25,1993,8,6.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Rally G15/25,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G15/25,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G15/25,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G15/25,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G15/25,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G15/25,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G15/25,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G15/25 (passenger),1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans Passenger +GMC,Rally G35,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Rally G35,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,S15 Cab Chassis,1984,4,2,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Cab Chassis,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Cab Chassis,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Cab Chassis,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Cab Chassis,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Cab Chassis,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Cab Chassis,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Cab Chassis,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Cab Chassis,1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Cab Chassis,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Cab Chassis,1986,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Cab Chassis,1987,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Cab Chassis,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Cab Chassis,1987,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Cab Chassis,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Cab Chassis,1988,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1984,4,2,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1984,4,2,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1984,6,2.8,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1984,4,2,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1984,4,2,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1984,4,2,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1984,6,2.8,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1985,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1986,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1986,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1987,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1987,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1987,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1987,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1987,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1987,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1988,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1988,6,2.8,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1988,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1989,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1990,6,4.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Jimmy,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Jimmy,1990,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,S15 Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2,2-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2.2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,6,2.8,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2.2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1984,6,2.8,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,4,1.9,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,4,2.2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,4,2.2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1986,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1986,6,2.8,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1987,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1987,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1987,4,2.5,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1987,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1987,6,2.8,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1987,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1988,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1988,6,2.8,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1988,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1989,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1989,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1989,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,S15 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,S15 Pickup,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,S15 Pickup,1990,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1990,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1990,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,S15 Pickup,1990,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,S15 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,S15 Pickup,1990,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,S15 Utility Body,1984,6,2.8,2-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,S15 Utility Body,1984,6,2.8,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,Safari (cargo),1985,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (cargo),1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (cargo),1985,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (cargo),1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (cargo),1985,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1986,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (cargo),1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (cargo),1986,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1987,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1987,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (cargo),1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1987,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1988,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1988,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1989,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1989,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1989,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1990,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1990,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (cargo),1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (cargo),1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2002,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2004,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (cargo),2005,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari (passenger),1985,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (passenger),1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (passenger),1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (passenger),1985,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (passenger),1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (passenger),1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (passenger),1985,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (passenger),1986,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (passenger),1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (passenger),1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1986,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Safari (passenger),1986,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (passenger),1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1987,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (passenger),1988,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1988,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (passenger),1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1989,6,4.3,Rear-Wheel Drive,5-Speed Manual,Vans +GMC,Safari (passenger),1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1990,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans Passenger +GMC,Safari (passenger),1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Safari (passenger),1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (passenger),1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (passenger),1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (passenger),1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2002,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2004,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari (Passenger),2005,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Safari Conversion (cargo),2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari Conversion (cargo),2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari Conversion (cargo),2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari Conversion (cargo),2004,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari Conversion (cargo),2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Safari Conversion (cargo),2005,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana (cargo) (Bi-fuel),2004,8,6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2006,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 15/25 Conversion (cargo),2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2010,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2011,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2012,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2013,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2014,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2010,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2011,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2012,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2013,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2013,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2014,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2009,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2010,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2010,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2011,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2011,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2012,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2012,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2013,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2013,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2014,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (cargo),2014,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 (Passenger),2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2010,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2010,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2011,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2011,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2011,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2012,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2012,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2013,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2013,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2014,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 (Passenger),2014,8,5.3,All-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500 Conversion (cargo),2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2010,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2011,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2012,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500 Conversion (cargo),2014,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (Passenger),2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2001,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2001,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (cargo),1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (cargo),1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (cargo),1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (cargo),1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (cargo),1997,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (cargo),1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (cargo),1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),1998,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),1999,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2000,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2001,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2001,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2002,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2002,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2006,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2007,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2008,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (cargo),2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 1500/2500 (passenger),1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (passenger),1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (passenger),1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (passenger),1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (passenger),1997,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (passenger),1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Savana 1500/2500 (passenger),1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (passenger),1998,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (passenger),1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (passenger),1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (passenger),1999,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (passenger),1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2000,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2002,8,5,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2002,8,5.7,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2006,6,4.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 1500/2500 (Passenger),2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (cargo),2011,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 2500 (cargo),2012,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 2500 (Passenger),2011,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (Passenger),2012,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (Passenger),2012,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (Passenger),2013,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (Passenger),2013,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (Passenger),2014,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (Passenger),2014,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (Passenger),2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (Passenger),2015,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (Passenger),2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 (Passenger),2016,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 2500 Conversion (cargo),2011,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 2500 Conversion (cargo),2012,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 2500 Conversion (cargo),2013,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 2500 Conversion (cargo),2014,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 2500 Conversion (cargo),2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 2500 Conversion (cargo),2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 3500 (cargo),2011,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 3500 (cargo),2012,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Cargo Type" +GMC,Savana 3500 (Passenger),2011,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 3500 (Passenger),2012,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 3500 (Passenger),2012,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 3500 (Passenger),2013,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 3500 (Passenger),2013,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 3500 (Passenger),2014,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 3500 (Passenger),2014,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 3500 (Passenger),2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 3500 (Passenger),2015,8,4.8,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 3500 (Passenger),2015,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana 3500 (Passenger),2016,8,6,Rear-Wheel Drive,6-Speed Automatic,"Vans, Passenger Type" +GMC,Savana Cargo (dedicated CNG),2004,8,6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Savana Passenger (Bi-fuel),2004,8,6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Savana Passenger (dedicated CNG),2004,8,6,Rear-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +GMC,Sierra 15 Hybrid,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2009,8,6,Rear-Wheel Drive,CVT,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2009,8,6,4-Wheel or All-Wheel Drive,CVT,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2010,8,6,Rear-Wheel Drive,CVT,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2010,8,6,4-Wheel Drive,CVT,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2011,8,6,Rear-Wheel Drive,CVT,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2011,8,6,4-Wheel Drive,CVT,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2012,8,6,Rear-Wheel Drive,CVT,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2012,8,6,4-Wheel Drive,CVT,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2013,8,6,Rear-Wheel Drive,CVT,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2013,8,6,4-Wheel Drive,CVT,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2016,8,5.3,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 15 Hybrid,2016,8,5.3,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,6,4.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1991,6,4.3,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,6.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1991,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,5.7,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1992,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1993,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,6.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1994,8,6.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,6.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1995,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,6.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1996,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1996,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1996,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1996,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1996,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1996,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1996,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1996,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1996,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1996,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1997,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1997,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1997,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1997,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1997,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1997,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1997,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1997,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1997,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1997,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1998,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1998,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1998,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1998,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1998,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1998,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1998,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1998,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1998,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1998,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1999,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1999,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1999,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1999,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1999,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1999,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1999,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1999,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,1999,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1999,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,1999,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2000,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2000,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2000,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2000,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2000,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2000,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2000,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2000,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2001,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2001,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2001,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2001,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2001,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2001,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2001,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2001,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2001,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2002,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2002,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2002,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2002,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2002,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2002,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2002,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2003,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2003,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2003,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2003,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2003,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2003,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2004,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2004,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2004,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2004,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2004,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2004,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2004,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2004,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2004,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2004,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2005,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2005,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2005,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2005,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2005,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2005,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2005,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2005,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2005,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2005,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,4.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,4.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1991,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,6.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1993,8,6.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,6.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,6.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1994,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,6.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,6.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1996,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1996,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1996,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1996,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1997,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1997,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1997,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1997,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1998,8,5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1998,8,5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1998,8,5.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra 2500,1998,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1999,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,1999,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,2000,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500,2000,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500 Hd,2005,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500 HD CNG,2005,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra 2500 HD CNG,2005,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2007,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2007,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2007,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2007,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2008,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2008,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2008,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2008,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2009,8,6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2009,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2009,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2009,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2009,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2010,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2010,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2010,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2011,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2011,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2011,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2012,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2012,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2012,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2013,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2013,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2013,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2014,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2014,6,4.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2015,6,4.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2015,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2016,6,4.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2016,8,5.3,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15 Cab Chassis,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +GMC,Sierra C15 Cab Chassis,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +GMC,Sierra C15 Cab Chassis,2015,6,4.3,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +GMC,Sierra C15 Cab Chassis,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +GMC,Sierra C15 XFE,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15 XFE,2010,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15 XFE,2011,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15 XFE,2012,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra C15 XFE,2013,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 15 Hybrid,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 15 Hybrid,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,6,4.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,8,6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Classic 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Denali 1500,2002,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra Denali 1500,2003,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2007,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2007,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2007,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2007,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2008,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2008,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2008,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2008,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2009,8,5.3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2009,8,6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2009,8,5.3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2009,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2009,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2009,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2009,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2010,6,4.3,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2010,8,4.8,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2010,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2010,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2010,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2011,6,4.3,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2011,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2011,8,4.8,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2011,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2011,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2012,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2012,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2012,6,4.3,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2012,8,4.8,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2012,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2013,6,4.3,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2013,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2013,8,4.8,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2013,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2013,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2014,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2014,6,4.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2014,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2015,6,4.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2015,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2016,6,4.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2016,8,5.3,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15,2016,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +GMC,Sierra K15 Cab Chassis,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +GMC,Sierra K15 Cab Chassis,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +GMC,Sierra K15 Cab Chassis,2015,6,4.3,4-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +GMC,Sierra K15 Cab Chassis,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +GMC,Sonoma,1991,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1991,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1991,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1991,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1991,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1991,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,1992,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1992,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1992,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1992,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1992,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1992,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,1993,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1993,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1993,6,2.8,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1993,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1993,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,1994,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1994,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1994,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,1994,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,1995,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1995,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1995,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1995,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1995,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,1995,6,5.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,1996,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1996,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1996,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1996,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1996,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,1997,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1997,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1997,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1997,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,1998,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1998,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1998,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1998,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,1999,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1999,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,1999,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,1999,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,2000,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,2000,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,2000,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,2000,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,2000,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,2000,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,2001,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,2001,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,2002,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,2002,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,2002,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,2002,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,2003,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,2003,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,2003,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma,2003,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma,2003,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma,2003,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,Sonoma,2004,6,4.3,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Sonoma (FFV),2001,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma (FFV),2001,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Sonoma (FFV),2002,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +GMC,Sonoma (FFV),2002,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +GMC,Suburban 1500,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1993,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1994,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1995,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1996,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1997,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban 1500,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Suburban V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,Suburban V1500,1989,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,Suburban V1500,1989,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban V1500,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban V1500,1990,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,Suburban V1500,1990,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban V1500,1991,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Suburban V1500,1991,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1984,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1984,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1985,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1986,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1986,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1986,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1986,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1987,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1987,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1987,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1987,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1988,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1988,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1988,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,T15 (S15) Jimmy,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,T15 (S15) Pickup,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1984,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1984,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1985,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1986,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1986,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1986,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1986,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1987,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1987,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1987,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1987,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1988,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1988,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1988,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1988,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1988,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +GMC,T15 (S15) Pickup,1988,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,Terrain,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2010,4,2.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2010,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2011,4,2.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2012,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2012,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2012,4,2.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2012,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2012,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2012,4,2.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Terrain,2013,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2013,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2014,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2014,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2015,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2016,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2016,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2017,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2017,6,3.6,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,Terrain,2017,6,3.6,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +GMC,V15 Jimmy,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,V15 Jimmy,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,V15 Jimmy,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,V15 Jimmy,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,V15 Jimmy,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,V15 Jimmy,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,V15 Jimmy,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,V15 Jimmy,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,V15 Pickup,1987,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,V15 Pickup,1987,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,V15 Pickup,1987,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,V15 Pickup,1987,8,5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +GMC,V15 Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,V15 Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,V15 Pickup,1987,8,5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,V15 Pickup,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,V15 Pickup,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,V15 Pickup,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,V15 Pickup,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,V15 Pickup,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,V15 Suburban,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,V15 Suburban,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,V15 Suburban,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,V15 Suburban,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,V15 Suburban,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,V15 Suburban,1988,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +GMC,V15 Suburban,1988,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,V25 Pickup,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,V25 Pickup,1987,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,V25 Pickup,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +GMC,V25 Pickup,1987,8,6.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +GMC,Vandura 2500,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Vandura G15/25,1984,6,4.1,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,6,4.1,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,6,4.1,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,8,5,2-Wheel Drive,3-Speed Automatic,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,8,5,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,8,5,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,8,6.2,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,6,4.1,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,6,4.1,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,8,5,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,8,6.2,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Vandura G15/25,1984,8,6.2,2-Wheel Drive,4-Speed Manual,"Vans, Cargo Type" +GMC,Vandura G15/25,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,Vandura G15/25,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,Vandura G15/25,1985,6,4.3,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Vandura G15/25,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Vans +GMC,Vandura G15/25,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1985,8,5,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,Vandura G15/25,1985,8,5,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Vandura G15/25,1985,8,6.2,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1985,8,6.2,Rear-Wheel Drive,4-Speed Manual,Vans +GMC,Vandura G15/25,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1993,8,6.2,Rear-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Vandura G15/25,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25,1995,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G15/25 (cargo),1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G35,1984,6,4.1,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +GMC,Vandura G35,1984,6,4.1,2-Wheel Drive,3-Speed Manual,"Vans, Cargo Type" +GMC,Vandura G35,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G35,1985,6,4.3,Rear-Wheel Drive,3-Speed Manual,Vans +GMC,Vandura G35,1993,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G35,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G35,1995,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G35 ,1994,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G35 ,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Vandura G35 (cargo),1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Vans +GMC,Yukon 1500,1992,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1992,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Yukon 1500,1993,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1993,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Yukon 1500,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1995,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1995,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Yukon 1500,1995,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1996,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1996,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1997,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1997,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1998,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1998,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon 1500,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,1999,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,1999,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,1999,8,5.7,2-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2000,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2000,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2000,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2000,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2000,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2001,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2001,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2001,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2001,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2001,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2002,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2002,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2003,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2003,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2003,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2004,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2004,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2004,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2005,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2005,8,4.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2005,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2006,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2006,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2007,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2008,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2008,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2009,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2009,8,5.3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2009,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2009,8,4.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2010,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2010,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2011,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2011,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2012,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2012,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon 1500,2013,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon 1500,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon 1500,2013,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2008,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2008,8,6,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2009,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2009,8,6,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2010,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2010,8,6,4-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2011,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2011,8,6,4-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2012,8,6,Rear-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2012,8,6,4-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2013,8,6,Rear-Wheel Drive,CVT,Standard Sport Utility Vehicle +GMC,Yukon 1500 Hybrid,2013,8,6,4-Wheel Drive,CVT,Standard Sport Utility Vehicle +GMC,Yukon 1500 XFE,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon C10,2014,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C10,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500,2015,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500,2015,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500 XL,2015,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500 XL,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500 XL,2015,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500 XL,2015,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500 XL,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500 XL,2016,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon C1500 XL,2016,8,6.2,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon Denali 1500,2002,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon Denali 1500,2007,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon Denali 1500,2008,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon Denali 1500,2009,8,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon Denali 1500,2010,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon Denali 1500,2011,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon Denali 1500,2012,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon Denali 1500,2013,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon Denali 1500 Hybrid,2011,8,6,4-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon Denali 1500 Hybrid,2012,8,6,4-Wheel Drive,CVT,Sport Utility Vehicle +GMC,Yukon Denali 1500 Hybrid,2013,8,6,4-Wheel Drive,CVT,Standard Sport Utility Vehicle +GMC,Yukon Denali K10,2014,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon Denali XL 1500,2002,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon K10,2014,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500,1994,8,5.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon K1500,1994,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +GMC,Yukon K1500,1994,8,6.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +GMC,Yukon K1500,2015,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500,2015,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500,2016,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500 XL,2015,8,6.2,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500 XL,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500 XL,2015,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500 XL,2015,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500 XL,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500 XL,2016,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon K1500 XL,2016,8,6.2,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon XL 1500,2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2000,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2001,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2001,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2001,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2002,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2002,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2003,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2004,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2005,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2006,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2007,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2007,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2007,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2008,8,6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2008,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2008,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2008,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2009,8,6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2009,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2009,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2010,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2010,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2011,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2011,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2011,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2011,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2012,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2012,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2012,8,5.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2012,8,6.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 1500,2013,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon XL 1500,2013,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon XL 1500,2013,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon XL 1500,2013,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon XL 2500,2011,8,6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 2500,2011,8,6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 2500,2012,8,6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 2500,2012,8,6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +GMC,Yukon XL 2500,2013,8,6,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon XL 2500,2013,8,6,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon XL C10,2014,8,5.3,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon XL C10,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon XL K10,2014,8,5.3,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +GMC,Yukon XL K10,2014,8,6.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Goldacre,Goldacre Limited,1991,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Grumman Allied Industries,LLV,1988,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Grumman Olson,Kubvan,1984,4,1.6,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Grumman Olson,Kubvan,1984,4,1.6,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Grumman Olson,Kubvan,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Grumman Olson,Kubvan,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Accord,1984,4,1.8,,4-Speed Automatic,Subcompact Cars +Honda,Accord,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Honda,Accord,1984,4,1.8,,4-Speed Automatic,Subcompact Cars +Honda,Accord,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Honda,Accord,1985,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Accord,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Accord,1985,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Accord,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Accord,1985,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Accord,1985,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Accord,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Accord,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Accord,1985,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Accord,1986,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Accord,1986,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Accord,1986,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Accord,1986,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Accord,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1990,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1993,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1994,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1994,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1995,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1996,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord,1997,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Accord,1998,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,1998,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,1998,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,1998,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,1999,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,1999,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,1999,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,1999,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,2000,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,2000,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,2000,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2000,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,2001,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,2001,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,2001,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2001,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,2002,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,2002,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,2002,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2002,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Honda,Accord,2003,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2003,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord,2003,6,3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2004,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2004,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord,2004,6,3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2005,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2005,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord,2005,6,3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2006,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2006,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord,2006,6,3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2007,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Honda,Accord,2007,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord,2007,6,3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2008,4,2.4,Front-Wheel Drive,5-Speed Automatic,Large Cars +Honda,Accord,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Large Cars +Honda,Accord,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Honda,Accord,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Large Cars +Honda,Accord,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Large Cars +Honda,Accord,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Honda,Accord,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Large Cars +Honda,Accord,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Large Cars +Honda,Accord,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Honda,Accord,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Large Cars +Honda,Accord,2011,4,2.4,Front-Wheel Drive,5-Speed Automatic,Large Cars +Honda,Accord,2011,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Honda,Accord,2012,4,2.4,Front-Wheel Drive,5-Speed Manual,Large Cars +Honda,Accord,2012,4,2.4,Front-Wheel Drive,5-Speed Automatic,Large Cars +Honda,Accord,2012,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Honda,Accord,2013,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Honda,Accord,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Honda,Accord,2013,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2013,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord,2014,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Honda,Accord,2014,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2014,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2014,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Honda,Accord,2015,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Honda,Accord,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Honda,Accord,2015,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2015,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord,2015,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord,2016,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Honda,Accord,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Honda,Accord,2016,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Accord,2016,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord,2016,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord Coupe,2008,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Accord Coupe,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord Coupe,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Accord Coupe,2008,6,3.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Honda,Accord Coupe,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord Coupe,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Accord Coupe,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Accord Coupe,2009,6,3.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Honda,Accord Coupe,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Accord Coupe,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord Coupe,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Accord Coupe,2010,6,3.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Honda,Accord Coupe,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord Coupe,2011,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Accord Coupe,2011,6,3.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Honda,Accord Coupe,2011,6,3.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Accord Coupe,2012,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Accord Coupe,2012,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Accord Coupe,2012,6,3.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Honda,Accord Coupe,2012,6,3.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Accord Crosstour,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Accord Crosstour,2010,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Accord Crosstour,2011,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Accord Crosstour,2011,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Accord Hybrid,2005,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord Hybrid,2006,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord Hybrid,2007,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Honda,Accord Hybrid,2014,4,2,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord Hybrid,2015,4,2,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord Plug-in Hybrid,2014,4,2,Front-Wheel Drive,CVT,Midsize Cars +Honda,Accord Wagon,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Accord Wagon,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Accord Wagon,1993,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Accord Wagon,1994,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1994,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Accord Wagon,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Accord Wagon,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Accord Wagon,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Accord Wagon,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Accord Wagon,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Accord Wagon,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic,1984,4,1.3,,4-Speed Manual,Subcompact Cars +Honda,Civic,1984,4,1.5,,3-Speed Automatic,Subcompact Cars +Honda,Civic,1984,4,1.5,,5-Speed Manual,Subcompact Cars +Honda,Civic,1984,4,1.3,,4-Speed Manual,Subcompact Cars +Honda,Civic,1984,4,1.5,,3-Speed Automatic,Subcompact Cars +Honda,Civic,1984,4,1.5,,5-Speed Manual,Subcompact Cars +Honda,Civic,1985,4,1.3,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Honda,Civic,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Honda,Civic,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1985,4,1.3,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Honda,Civic,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Honda,Civic,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1986,4,1.3,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Honda,Civic,1986,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1987,4,1.3,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Honda,Civic,1987,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1988,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1988,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1988,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1988,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Honda,Civic,1988,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Honda,Civic,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1989,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1989,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Honda,Civic,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1990,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1990,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Honda,Civic,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1991,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1991,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Honda,Civic,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1992,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1993,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1993,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1994,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1994,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1995,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1995,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1996,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1996,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1997,4,1.6,Front-Wheel Drive,CVT,Subcompact Cars +Honda,Civic,1997,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1997,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1998,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1998,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1998,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1998,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1999,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1999,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,1999,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1999,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1999,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,1999,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,2000,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,2000,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic,2000,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,2000,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,2000,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,2001,4,1.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Civic,2001,4,1.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Civic,2001,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2001,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2002,4,1.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Civic,2002,4,1.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Civic,2002,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2002,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2003,4,1.7,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic,2003,4,1.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Civic,2003,4,1.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Civic,2003,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2003,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2003,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2004,4,1.7,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic,2004,4,1.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Civic,2004,4,1.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Civic,2004,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2004,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2004,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2005,4,1.7,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic,2005,4,1.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Civic,2005,4,1.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Honda,Civic,2005,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2005,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2005,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2006,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic,2006,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,2006,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Honda,Civic,2007,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic,2007,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,2007,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Honda,Civic,2008,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic,2008,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,2008,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Honda,Civic,2009,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,2009,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic,2009,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Honda,Civic,2010,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic,2010,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,2010,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Honda,Civic,2011,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic,2011,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic,2011,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Honda,Civic,2012,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Civic,2012,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Honda,Civic,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Honda,Civic,2013,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Civic,2013,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2014,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic,2014,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Honda,Civic,2014,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic,2014,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2015,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic,2015,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic,2015,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic,2015,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Honda,Civic 2Dr,2016,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic 2Dr,2016,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Honda,Civic 2Dr,2016,4,2,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic 4Dr,2016,4,1.5,Front-Wheel Drive,CVT,Midsize Cars +Honda,Civic 4Dr,2016,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Honda,Civic 4Dr,2016,4,2,Front-Wheel Drive,CVT,Midsize Cars +Honda,Civic CNG,1998,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic CNG,2000,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Civic CNG,2001,4,1.7,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic CNG,2002,4,1.7,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic CNG,2003,4,1.7,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic CNG,2004,4,1.7,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic CNG,2005,4,1.7,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic CNG,2006,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic CNG,2007,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic CNG,2008,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic CNG,2009,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic CNG,2010,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic CNG,2011,4,1.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Honda,Civic CRX,1984,4,1.3,,5-Speed Manual,Two Seaters +Honda,Civic CRX,1984,4,1.5,,3-Speed Automatic,Two Seaters +Honda,Civic CRX,1984,4,1.5,,5-Speed Manual,Two Seaters +Honda,Civic CRX,1984,4,1.3,,5-Speed Manual,Two Seaters +Honda,Civic CRX,1984,4,1.5,,3-Speed Automatic,Two Seaters +Honda,Civic CRX,1984,4,1.5,,5-Speed Manual,Two Seaters +Honda,Civic CRX,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Honda,Civic CRX,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Honda,Civic CRX,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1986,4,1.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic CRX,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1987,4,1.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic CRX,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1988,4,1.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic CRX,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1989,4,1.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic CRX,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1990,4,1.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic CRX,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1991,4,1.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic CRX,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic CRX HF,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic Del Sol,1993,4,1.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic Del Sol,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic Del Sol,1993,4,1.6,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic Del Sol,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic Del Sol,1994,4,1.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic Del Sol,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic Del Sol,1994,4,1.6,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic Del Sol,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic Del Sol,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic Del Sol,1995,4,1.5,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic Del Sol,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic Del Sol,1995,4,1.6,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Civic Del Sol,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic Del Sol,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Civic HB VX,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HB VX,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HB VX,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HB VX,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HB VX,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HB VX,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HB VX,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HB VX,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HF,2012,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Civic HF,2013,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Civic HF,2014,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic HF,2015,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic HX,1996,4,1.6,Front-Wheel Drive,CVT,Subcompact Cars +Honda,Civic HX,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HX,1998,4,1.6,Front-Wheel Drive,CVT,Subcompact Cars +Honda,Civic HX,1998,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HX,1999,4,1.6,Front-Wheel Drive,CVT,Subcompact Cars +Honda,Civic HX,1999,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HX,2000,4,1.6,Front-Wheel Drive,CVT,Subcompact Cars +Honda,Civic HX,2000,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HX,2001,4,1.7,Front-Wheel Drive,CVT,Subcompact Cars +Honda,Civic HX,2001,4,1.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic HX,2002,4,1.7,Front-Wheel Drive,CVT,Subcompact Cars +Honda,Civic HX,2002,4,1.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Civic Hybrid,2003,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2003,4,1.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic Hybrid,2003,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2003,4,1.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic Hybrid,2004,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2004,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2004,4,1.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic Hybrid,2004,4,1.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic Hybrid,2005,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2005,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2005,4,1.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic Hybrid,2005,4,1.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Honda,Civic Hybrid,2006,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2007,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2008,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2009,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2010,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2011,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2012,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2013,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2014,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Hybrid,2015,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Honda,Civic Natural Gas,2012,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Civic Natural Gas,2013,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Civic Natural Gas,2014,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Civic Natural Gas,2015,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Honda,Civic Wagon,1984,4,1.5,,3-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1984,4,1.5,,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1984,4,1.5,,3-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1984,4,1.5,,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1985,4,1.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1986,4,1.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1986,4,1.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1987,4,1.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1987,4,1.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1988,4,1.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1988,4,1.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1988,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1989,4,1.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1989,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1989,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1990,4,1.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1990,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1990,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1991,4,1.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Civic Wagon,1991,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Honda,Civic Wagon,1991,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,CR-V,1997,4,2,4-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,CR-V,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,CR-V,1998,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,CR-V,1998,4,2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,CR-V,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,1999,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,1999,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,CR-V,1999,4,2,2-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,1999,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,CR-V,1999,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2000,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2000,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,CR-V,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2001,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,CR-V,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2002,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2002,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,CR-V,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2003,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2003,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,CR-V,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2004,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2004,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,CR-V,2005,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2005,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2005,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,CR-V,2006,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2006,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2006,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,CR-V,2007,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2007,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2008,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2008,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2009,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2010,4,2.4,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2011,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2011,4,2.4,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2012,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2012,4,2.4,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,CR-V,2013,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,CR-V,2013,4,2.4,All-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,CR-V,2014,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,CR-V,2014,4,2.4,All-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,CR-V,2015,4,2.4,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Honda,CR-V,2015,4,2.4,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Honda,CR-V,2016,4,2.4,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Honda,CR-V,2016,4,2.4,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Honda,CR-Z,2011,4,1.5,Front-Wheel Drive,6-Speed Manual,Two Seaters +Honda,CR-Z,2011,4,1.5,Front-Wheel Drive,CVT,Two Seaters +Honda,CR-Z,2012,4,1.5,Front-Wheel Drive,6-Speed Manual,Two Seaters +Honda,CR-Z,2012,4,1.5,Front-Wheel Drive,CVT,Two Seaters +Honda,CR-Z,2013,4,1.5,Front-Wheel Drive,6-Speed Manual,Two Seaters +Honda,CR-Z,2013,4,1.5,Front-Wheel Drive,CVT,Two Seaters +Honda,CR-Z,2014,4,1.5,Front-Wheel Drive,CVT,Two Seaters +Honda,CR-Z,2014,4,1.5,Front-Wheel Drive,6-Speed Manual,Two Seaters +Honda,CR-Z,2015,4,1.5,Front-Wheel Drive,CVT,Two Seaters +Honda,CR-Z,2015,4,1.5,Front-Wheel Drive,6-Speed Manual,Two Seaters +Honda,CR-Z,2016,4,1.5,Front-Wheel Drive,6-Speed Manual,Two Seaters +Honda,CR-Z,2016,4,1.5,Front-Wheel Drive,CVT,Two Seaters +Honda,Crosstour,2012,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Crosstour,2012,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Crosstour,2012,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Crosstour,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Honda,Crosstour,2013,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,Crosstour,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Honda,Crosstour,2014,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,Crosstour,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Honda,Crosstour,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Honda,Crosstour,2015,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,Crosstour,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Honda,Crosstour,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Honda,Del Sol,1996,4,1.6,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Del Sol,1996,4,1.6,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Del Sol,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Del Sol,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Del Sol,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Del Sol,1997,4,1.6,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Del Sol,1997,4,1.6,Front-Wheel Drive,4-Speed Automatic,Two Seaters +Honda,Del Sol,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Del Sol,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Del Sol,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Element,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Element,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2003,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Element,2003,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Element,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2004,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Element,2004,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Element,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2005,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Element,2005,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Element,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2006,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Element,2006,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2007,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Element,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2007,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Element,2007,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2008,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Element,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2008,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Element,2008,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Element,2009,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2009,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Element,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Element,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2010,4,2.4,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Element,2010,4,2.4,All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Element,2011,4,2.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Element,2011,4,2.4,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Element,2011,4,2.4,All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,EV Plus,1998,,,,1-Speed Direct Drive,Compact Cars +Honda,EV Plus,1999,,,,1-Speed Direct Drive,Compact Cars +Honda,Fit,2007,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2007,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Fit,2007,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2008,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2008,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Fit,2008,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2009,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2009,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Fit,2009,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2010,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2010,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Fit,2010,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2011,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2011,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Fit,2011,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2012,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Fit,2012,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2012,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2013,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Honda,Fit,2013,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2013,4,1.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Honda,Fit,2015,4,1.5,Front-Wheel Drive,CVT,Small Station Wagons +Honda,Fit,2015,4,1.5,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Honda,Fit,2015,4,1.5,Front-Wheel Drive,CVT,Small Station Wagons +Honda,Fit,2016,4,1.5,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Honda,Fit,2016,4,1.5,Front-Wheel Drive,CVT,Small Station Wagons +Honda,Fit,2016,4,1.5,Front-Wheel Drive,CVT,Small Station Wagons +Honda,Fit EV,2013,,,Front-Wheel Drive,1-Speed Direct Drive,Small Station Wagons +Honda,Fit EV,2014,,,Front-Wheel Drive,1-Speed Direct Drive,Small Station Wagons +Honda,HR-V,2016,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Honda,HR-V,2016,4,1.8,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Honda,HR-V,2016,4,1.8,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Honda,HR-V,2016,4,1.8,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Honda,HR-V,2016,4,1.8,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Honda,Insight,2000,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Insight,2001,3,1,Front-Wheel Drive,CVT,Two Seaters +Honda,Insight,2001,3,1,Front-Wheel Drive,CVT,Two Seaters +Honda,Insight,2001,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Insight,2002,3,1,Front-Wheel Drive,CVT,Two Seaters +Honda,Insight,2002,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Insight,2003,3,1,Front-Wheel Drive,CVT,Two Seaters +Honda,Insight,2003,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Insight,2004,3,1,Front-Wheel Drive,CVT,Two Seaters +Honda,Insight,2004,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Insight,2005,3,1,Front-Wheel Drive,CVT,Two Seaters +Honda,Insight,2005,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Insight,2006,3,1,Front-Wheel Drive,CVT,Two Seaters +Honda,Insight,2006,3,1,Front-Wheel Drive,5-Speed Manual,Two Seaters +Honda,Insight,2010,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Insight,2010,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Insight,2011,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Insight,2011,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Insight,2012,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Insight,2012,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Insight,2013,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Insight,2013,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Insight,2014,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Insight,2014,4,1.3,Front-Wheel Drive,CVT,Compact Cars +Honda,Odyssey,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Honda,Odyssey,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Honda,Odyssey,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Honda,Odyssey,1998,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Honda,Odyssey,1999,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Honda,Odyssey,2000,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Honda,Odyssey,2001,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Honda,Odyssey,2002,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2003,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2004,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Honda,Odyssey,2011,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2012,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Honda,Odyssey,2013,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Honda,Odyssey,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Honda,Odyssey,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Honda,Odyssey,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Honda,Odyssey,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Honda,Passport,1994,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1994,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,Passport,1994,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1994,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,Passport,1994,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1995,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1995,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,Passport,1995,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1995,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,Passport,1995,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1996,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1996,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,Passport,1996,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1996,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,Passport,1996,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1997,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1997,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,Passport,1997,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1997,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,Passport,1997,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1998,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,Passport,1998,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1998,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Honda,Passport,1998,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Honda,Passport,1999,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Passport,1999,6,3.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Passport,1999,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Passport,1999,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Passport,2000,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Passport,2000,6,3.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Passport,2000,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Passport,2000,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Passport,2001,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Passport,2001,6,3.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Passport,2001,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Passport,2001,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Passport,2002,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Passport,2002,6,3.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Passport,2002,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Honda,Passport,2002,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Honda,Pilot,2003,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2004,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2010,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2011,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2011,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2012,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2012,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Honda,Pilot,2013,6,3.5,Front-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,Pilot,2013,6,3.5,All-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Honda,Pilot,2014,6,3.5,Front-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,Pilot,2014,6,3.5,All-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,Pilot,2015,6,3.5,Front-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,Pilot,2015,6,3.5,All-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Honda,Pilot,2016,6,3.5,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Honda,Pilot,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Honda,Pilot,2016,6,3.5,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Honda,Pilot,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Honda,Prelude,1984,4,1.8,,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Honda,Prelude,1984,4,1.8,,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Honda,Prelude,1985,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1985,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1985,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1986,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1986,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1986,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1987,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1987,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1988,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1988,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1989,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1989,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1990,4,2.1,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1990,4,2.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1991,4,2.1,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1991,4,2.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1992,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1993,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1993,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1993,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1994,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1994,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1995,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1995,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1996,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1996,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1998,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1998,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,1999,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,1999,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,2000,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Prelude,2000,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,2001,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Honda,Prelude,2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Honda,Ridgeline,2017,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Honda,Ridgeline,2017,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Honda,Ridgeline Truck,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Honda,Ridgeline Truck,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Honda,Ridgeline Truck,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Honda,Ridgeline Truck,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Honda,Ridgeline Truck,2010,6,3.5,All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Honda,Ridgeline Truck,2011,6,3.5,All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Honda,Ridgeline Truck,2012,6,3.5,All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Honda,Ridgeline Truck,2013,6,3.5,All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Honda,Ridgeline Truck,2014,6,3.5,All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Honda,S2000,2000,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Honda,S2000,2001,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Honda,S2000,2002,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Honda,S2000,2003,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Honda,S2000,2004,4,2.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Honda,S2000,2005,4,2.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Honda,S2000,2006,4,2.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Honda,S2000,2007,4,2.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Honda,S2000,2008,4,2.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Honda,S2000,2009,4,2.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Hummer,H3,2006,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hummer,H3,2006,5,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hummer,H3,2007,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hummer,H3,2007,5,3.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hummer,H3,2008,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hummer,H3,2008,5,3.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hummer,H3,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hummer,H3,2009,5,3.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hummer,H3,2009,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hummer,H3,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hummer,H3,2010,5,3.7,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hummer,H3,2010,5,3.7,4-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hummer,H3,2010,8,5.3,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hummer,H3T,2009,5,3.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Hummer,H3T,2009,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Hummer,H3T,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Hummer,H3T,2010,5,3.7,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Hummer,H3T,2010,5,3.7,4-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Hummer,H3T,2010,8,5.3,4-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Hyundai,Accent,1995,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent,1996,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent,1996,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent,1996,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent,1996,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent,1998,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent,1998,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent,1999,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Accent,1999,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Accent,2006,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent,2006,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent,2007,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent,2007,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent,2008,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent,2008,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent,2009,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent,2009,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent,2010,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent,2010,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent,2011,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent,2011,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Hyundai,Accent,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Accent,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Hyundai,Accent,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Accent,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Hyundai,Accent,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Accent,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Hyundai,Accent,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Accent,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Hyundai,Accent,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Accent,2017,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Hyundai,Accent,2017,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Accent (SOHC),1997,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent (SOHC),1997,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent (Sporty),1996,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent (Sporty),1996,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent Blue,2010,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent Blue,2011,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2000,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2000,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2001,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2001,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2001,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2001,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2002,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2002,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2002,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2002,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2003,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2003,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2003,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2003,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2004,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2004,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2004,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2004,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2005,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2005,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Accent/Brio,2005,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Accent/Brio,2005,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Azera,2006,6,3.8,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Azera,2007,6,3.8,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Azera,2008,6,3.3,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Azera,2008,6,3.8,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Azera,2009,6,3.8,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Azera,2009,6,3.3,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Azera,2010,6,3.3,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Azera,2010,6,3.8,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Azera,2011,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Azera,2011,6,3.8,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Azera,2012,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Azera,2013,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Azera,2014,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Azera,2015,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Azera,2016,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Azera Limited,2015,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Azera Limited,2016,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Elantra,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,1998,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Elantra,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Elantra,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Elantra,2005,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Elantra,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Elantra,2006,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Elantra,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Elantra,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Elantra,2007,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Elantra,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Elantra,2008,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Elantra,2009,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Elantra,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Elantra,2010,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Elantra,2010,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Elantra,2011,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra,2011,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra,2012,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra,2012,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra,2013,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra,2013,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra,2014,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra,2014,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra,2015,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra,2015,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra,2016,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra,2016,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra,2017,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra,2017,4,1.4,Front-Wheel Drive,7-Speed Automated Manual,Midsize Cars +Hyundai,Elantra Blue,2010,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Elantra Blue,2013,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra Coupe,2013,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra Coupe,2013,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra Coupe,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra Coupe,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra Coupe,2015,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra GT,2013,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra GT,2013,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra GT,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra GT,2014,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra GT,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra GT,2015,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra GT,2016,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra GT,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra GT,2017,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Hyundai,Elantra GT,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra Hatchback,2004,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Elantra Limited,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra Limited,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra Limited,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra SE,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Elantra Touring,2009,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Hyundai,Elantra Touring,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Hyundai,Elantra Touring,2010,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Hyundai,Elantra Touring,2010,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Hyundai,Elantra Touring,2011,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Hyundai,Elantra Touring,2011,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Hyundai,Elantra Touring,2012,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Hyundai,Elantra Touring,2012,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Hyundai,Elantra Wagon,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Hyundai,Elantra Wagon,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Hyundai,Elantra Wagon,1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Hyundai,Elantra Wagon,1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Hyundai,Elantra Wagon,1998,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Hyundai,Elantra Wagon,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Hyundai,Elantra Wagon,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Hyundai,Elantra Wagon,1999,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Hyundai,Elantra Wagon,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Hyundai,Elantra Wagon,2000,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Hyundai,Entourage,2007,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minivan +Hyundai,Entourage,2008,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minivan +Hyundai,Entourage,2009,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minivan +Hyundai,Entourage,2010,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minivan +Hyundai,Entourage,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Hyundai,Equus,2011,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Equus,2012,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Equus,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Equus,2014,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Equus,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Equus,2016,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Excel,1987,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Hyundai,Excel,1987,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Hyundai,Excel,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Excel,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Hyundai,Excel,1988,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Hyundai,Excel,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Excel,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Hyundai,Excel,1989,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Hyundai,Excel,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Excel,1990,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Excel,1990,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Hyundai,Excel,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Excel,1991,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Hyundai,Excel,1991,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Hyundai,Excel,1991,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Excel,1991,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Hyundai,Excel,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Excel,1992,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Hyundai,Excel,1992,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Hyundai,Excel,1992,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Excel,1992,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Hyundai,Excel,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Excel,1993,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Excel,1993,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Hyundai,Excel,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Excel,1994,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Excel,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Genesis,2009,6,3.8,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Genesis,2009,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Genesis,2010,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Genesis,2010,6,3.8,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Genesis,2011,6,3.8,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Genesis,2011,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Genesis,2012,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis,2012,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis,2012,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis,2013,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis,2014,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis,2015,6,3.8,All-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis,2016,6,3.8,All-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis Coupe,2010,4,2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2010,4,2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2010,6,3.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2010,6,3.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2011,4,2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2011,4,2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2011,6,3.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2011,6,3.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2012,4,2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2012,4,2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2012,6,3.8,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2012,6,3.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2013,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2013,4,2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2013,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2013,6,3.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2014,4,2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2014,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2014,6,3.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2015,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2015,6,3.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis Coupe,2016,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Hyundai,Genesis Coupe,2016,6,3.8,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Genesis R Spec,2014,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis R-Spec,2012,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis R-Spec,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis RWD,2015,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis RWD,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis RWD,2016,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,Genesis RWD,2016,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Hyundai,J-Car/Elantra,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,J-Car/Elantra,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Hyundai,Pony Excel,1986,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Hyundai,Pony Excel,1986,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Hyundai,Pony Excel,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Precis,1994,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Hyundai,Santa Fe,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2001,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2001,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2002,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2003,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2003,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2003,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2004,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2004,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2004,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2005,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2006,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2007,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2007,6,2.7,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2007,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2007,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2007,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2007,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2007,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2008,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2008,6,2.7,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2008,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2008,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2008,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2008,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2009,6,2.7,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2009,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2009,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2009,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2009,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2009,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2010,4,2.4,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2010,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2010,6,3.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2011,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2011,6,3.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2012,6,3.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Hyundai,Santa Fe,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2012,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Santa Fe,2013,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe,2013,6,3.3,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe,2014,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe,2014,6,3.3,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe,2015,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe,2015,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe,2016,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe,2016,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe,2017,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe,2017,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2013,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2013,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2014,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2014,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2015,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2015,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2016,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2017,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport,2017,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport Ultimate,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport Ultimate,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport Ultimate,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Sport Ultimate,2017,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Ultimate,2014,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Ultimate,2014,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Ultimate,2015,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Ultimate,2015,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Ultimate,2016,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Ultimate,2016,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Ultimate,2017,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Santa Fe Ultimate,2017,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Scoupe,1991,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Scoupe,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Scoupe,1992,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Scoupe,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Scoupe,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Scoupe,1993,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Scoupe,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Scoupe,1994,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Scoupe,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Scoupe,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Scoupe,1995,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Scoupe,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Scoupe,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Sonata,1989,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1989,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1990,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1990,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1991,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1991,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1992,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1993,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1994,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1995,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1996,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1997,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1998,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1999,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,1999,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2000,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2000,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2001,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2001,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2002,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2003,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2004,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata,2005,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Large Cars +Hyundai,Sonata,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Large Cars +Hyundai,Sonata,2006,6,3.3,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Sonata,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Large Cars +Hyundai,Sonata,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Large Cars +Hyundai,Sonata,2007,6,3.3,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Sonata,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Large Cars +Hyundai,Sonata,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Large Cars +Hyundai,Sonata,2008,6,3.3,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Sonata,2009,6,3.3,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Sonata,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Sonata,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Large Cars +Hyundai,Sonata,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Sonata,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Large Cars +Hyundai,Sonata,2010,6,3.3,Front-Wheel Drive,5-Speed Automatic,Large Cars +Hyundai,Sonata,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Large Cars +Hyundai,Sonata,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Large Cars +Hyundai,Sonata,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Large Cars +Hyundai,Sonata,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2015,4,1.6,Front-Wheel Drive,7-Speed Automated Manual,Large Cars +Hyundai,Sonata,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2016,4,1.6,Front-Wheel Drive,7-Speed Automated Manual,Large Cars +Hyundai,Sonata,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata,2017,4,1.6,Front-Wheel Drive,7-Speed Automated Manual,Large Cars +Hyundai,Sonata,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata (Y-3),1994,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata (Y-3),1994,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Hyundai,Sonata (Y-3),1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Hyundai,Sonata Hybrid,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Sonata Hybrid,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Hyundai,Sonata Hybrid,2013,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Hybrid,2014,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Hybrid,2015,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Hybrid,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Hybrid,2017,4,2,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Hybrid Limited,2013,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Hybrid Limited,2014,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Hybrid Limited,2015,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Hybrid SE,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Hybrid SE,2017,4,2,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Limited,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata Limited,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata Limited,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata Plug-in Hybrid,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Hyundai,Sonata Sport Limited,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata Sport Limited,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Sonata Sport Limited,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Hyundai,Tiburon,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,1999,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2000,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2001,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2002,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2002,6,2.7,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2003,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2003,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2003,6,2.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2003,6,2.7,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2004,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2004,6,2.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2004,6,2.7,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2005,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2005,6,2.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2005,6,2.7,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2006,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2006,6,2.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2006,6,2.7,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2007,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2007,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2007,6,2.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2007,6,2.7,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2008,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2008,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon,2008,6,2.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon,2008,6,2.7,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Hyundai,Tiburon (Coupe),1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon (Coupe),1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tiburon (Coupe),1997,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Hyundai,Tiburon (Coupe),1997,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Hyundai,Tucson,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2005,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2005,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2005,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2006,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2006,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2006,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2007,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2007,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2007,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2007,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2008,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2008,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2008,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2008,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2009,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2009,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2009,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2009,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2010,4,2.4,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2010,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2010,4,2.4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2011,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2011,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2011,4,2.4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2012,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2012,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Tucson,2012,4,2.4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Hyundai,Tucson,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Hyundai,Tucson,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2013,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Hyundai,Tucson,2013,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2013,4,2.4,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Hyundai,Tucson,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2014,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2014,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2015,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2015,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2016,4,1.6,Front-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Hyundai,Tucson,2016,4,1.6,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Hyundai,Tucson,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2017,4,1.6,Front-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Hyundai,Tucson,2017,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Hyundai,Tucson,2017,4,1.6,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Hyundai,Tucson Eco,2016,4,1.6,Front-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Hyundai,Tucson Eco,2016,4,1.6,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Hyundai,Tucson Eco,2017,4,1.6,Front-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Hyundai,Tucson Eco,2017,4,1.6,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Hyundai,Veloster,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Veloster,2012,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Hyundai,Veloster,2013,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Hyundai,Veloster,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Veloster,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Hyundai,Veloster,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Veloster,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Hyundai,Veloster,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Veloster,2014,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Hyundai,Veloster,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Veloster,2015,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Hyundai,Veloster,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Veloster,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Hyundai,Veloster,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Veloster,2016,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Hyundai,Veloster,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Veloster,2016,4,1.6,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Hyundai,Veloster,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Hyundai,Veracruz,2007,6,3.8,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2007,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2008,6,3.8,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2008,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2009,6,3.8,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2009,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2010,6,3.8,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2010,6,3.8,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2011,6,3.8,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2011,6,3.8,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2012,6,3.8,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,Veracruz,2012,6,3.8,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Hyundai,XG300,2001,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Hyundai,XG350,2002,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Hyundai,XG350,2003,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Hyundai,XG350,2004,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Hyundai,XG350,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Import Foreign Auto Sales Inc,1fas 410,1984,4,1,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Import Trade Services,BMW 325i,1992,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Import Trade Services,BMW 325I,1992,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Import Trade Services,ITS 190E,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Import Trade Services,ITS 190E 2.0,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Import Trade Services,ITS 190E 2.3,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Import Trade Services,ITS 200TE,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Import Trade Services,ITS 230CE,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Import Trade Services,ITS 230TE,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Import Trade Services,ITS 320,1991,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Import Trade Services,ITS 520,1991,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Import Trade Services,ITS 520,1991,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Import Trade Services,MB 300E,1991,6,2.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Import Trade Services,MB 300SL,1992,6,2.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Infiniti,EX35,2008,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +Infiniti,EX35,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Infiniti,EX35,2009,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +Infiniti,EX35,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Infiniti,EX35,2010,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +Infiniti,EX35,2010,6,3.5,All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Infiniti,EX35,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,EX35,2011,6,3.5,All-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,EX35,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,EX35,2012,6,3.5,All-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,EX37,2013,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,EX37,2013,6,3.7,All-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,FX35,2003,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35,2003,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35,2004,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35,2009,6,3.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35,2010,6,3.5,All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35,2011,6,3.5,All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35,2012,6,3.5,All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35 RWD,2004,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35 RWD,2005,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35 RWD,2006,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35 RWD,2007,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35 RWD,2008,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35 RWD,2009,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35 RWD,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35 RWD,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX35 RWD,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX37,2013,6,3.7,All-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Infiniti,FX37 RWD,2013,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Infiniti,FX45,2003,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX45,2004,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX45,2005,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX45,2006,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX45,2007,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX45,2008,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,FX50,2009,8,5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX50,2010,8,5,All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX50,2011,8,5,All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX50,2012,8,5,All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,FX50,2013,8,5,All-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Infiniti,G20,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,1991,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G20,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,1992,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G20,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,1993,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G20,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,1994,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G20,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G20,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G20,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,1996,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G20,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G20,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G20,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G20,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Infiniti,G20,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Infiniti,G25,2011,6,2.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G25,2012,6,2.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G25x,2011,6,2.5,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G25x,2012,6,2.5,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G35,2003,6,3.5,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Infiniti,G35,2003,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2003,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2004,6,3.5,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Infiniti,G35,2004,6,3.5,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Infiniti,G35,2004,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2004,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2004,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2005,6,3.5,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Infiniti,G35,2005,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2005,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2006,6,3.5,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Infiniti,G35,2006,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2006,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,G35,2007,6,3.5,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Infiniti,G35,2007,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Infiniti,G35,2008,6,3.5,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Infiniti,G35,2008,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Infiniti,G35 Coupe,2007,6,3.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G35 Coupe,2007,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Infiniti,G35x,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Infiniti,G35x,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Infiniti,G37,2009,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G37,2009,6,3.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Infiniti,G37,2010,6,3.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Infiniti,G37,2010,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G37,2012,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G37,2012,6,3.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Infiniti,G37,2013,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G37,2013,6,3.7,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Infiniti,G37 Convertible,2009,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Convertible,2009,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37 Convertible,2010,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Convertible,2010,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37 Convertible,2011,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37 Convertible,2011,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Convertible,2012,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37 Convertible,2012,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Convertible,2013,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37 Convertible,2013,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Coupe,2008,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Coupe,2008,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Infiniti,G37 Coupe,2009,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37 Coupe,2009,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Coupe,2010,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Coupe,2010,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37 Coupe,2011,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Coupe,2011,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37 Coupe,2012,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Coupe,2012,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37 Coupe,2013,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,G37 Coupe,2013,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37x,2009,6,3.7,4-Wheel or All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G37x,2010,6,3.7,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G37x,2012,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G37x,2013,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,G37x Coupe,2009,6,3.7,4-Wheel or All-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37x Coupe,2010,6,3.7,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37x Coupe,2011,6,3.7,All-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37x Coupe,2012,6,3.7,All-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,G37x Coupe,2013,6,3.7,All-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,I30,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,I30,1996,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Infiniti,I30,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,I30,1997,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Infiniti,I30,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,I30,1998,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Infiniti,I30,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,I30,1999,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Infiniti,I30,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,I30,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,I35,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,I35,2003,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,I35,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,J30,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Infiniti,J30,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Infiniti,J30,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Infiniti,J30,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Infiniti,J30,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Infiniti,JX35,2013,6,3.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Infiniti,JX35,2013,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Infiniti,M30,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Infiniti,M30,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Infiniti,M30,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Infiniti,M35,2006,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M35,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M35,2007,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M35,2008,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M35,2009,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Infiniti,M35,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Infiniti,M35h,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M35h,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M35x,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M35x,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M35x,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M35x,2010,6,3.5,All-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M37,2011,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M37,2012,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M37,2013,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M37x,2011,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M37x,2012,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M37x,2013,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M45,2003,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,M45,2004,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Infiniti,M45,2006,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M45,2007,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M45,2008,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M45,2009,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M45,2010,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M45x,2008,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M45x,2009,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M45x,2010,8,4.5,All-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,M56,2011,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M56,2012,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M56,2013,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M56x,2011,8,5.6,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M56x,2012,8,5.6,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,M56x,2013,8,5.6,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q40,2015,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q40,2015,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q45,1990,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,1991,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,1992,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,1993,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,1994,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,1995,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,1996,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,1997,8,4.1,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,1998,8,4.1,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,1999,8,4.1,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,2000,8,4.1,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,2001,8,4.1,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45,2002,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Infiniti,Q45,2003,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Infiniti,Q45,2004,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Infiniti,Q45,2005,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Infiniti,Q45,2006,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Infiniti,Q45 Full-Active Suspension,1991,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45 Full-Active Suspension,1992,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45 Full-Active Suspension,1993,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45 Full-Active Suspension,1994,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45 Full-Active Suspension,1995,8,4.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Infiniti,Q45 Sport,2006,8,4.5,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Infiniti,Q50,2014,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50,2014,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50,2015,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50,2015,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50,2016,4,2,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50,2016,4,2,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50,2016,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50,2016,6,3,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50 Hybrid,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Infiniti,Q50 Hybrid,2014,6,3.5,All-Wheel Drive,7-Speed Automatic,Compact Cars +Infiniti,Q50 Hybrid,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Infiniti,Q50 Hybrid,2015,6,3.5,All-Wheel Drive,7-Speed Automatic,Compact Cars +Infiniti,Q50 Hybrid,2016,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Infiniti,Q50 Hybrid,2016,6,3.5,All-Wheel Drive,7-Speed Automatic,Compact Cars +Infiniti,Q50a,2014,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50a,2014,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50a,2015,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50a,2015,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50S,2016,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50S,2016,6,3,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50S Hybrid,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Infiniti,Q50S Hybrid,2014,6,3.5,All-Wheel Drive,7-Speed Automatic,Compact Cars +Infiniti,Q50S Hybrid,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Infiniti,Q50S Hybrid,2015,6,3.5,All-Wheel Drive,7-Speed Automatic,Compact Cars +Infiniti,Q50S Red Sport,2016,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q50S Red Sport ,2016,6,3,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q60,2015,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,Q60,2015,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,Q60,2015,6,3.7,All-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,Q60 Convertible,2014,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,Q60 Convertible,2014,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,Q60 Convertible,2015,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,Q60 Convertible,2015,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,Q60 Coupe,2014,6,3.7,All-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,Q60 Coupe,2014,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Infiniti,Q60 Coupe,2014,6,3.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Infiniti,Q70,2014,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2014,8,5.6,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2014,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2014,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2015,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2015,8,5.6,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2015,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2015,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2016,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2016,8,5.6,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2016,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70,2016,6,3.7,All-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70 Hybrid,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70 Hybrid,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,Q70 Hybrid,2016,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Infiniti,QX4,1997,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Infiniti,QX4,1998,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Infiniti,QX4,1999,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Infiniti,QX4,1999,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Infiniti,QX4,2000,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Infiniti,QX4,2001,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Infiniti,QX4,2001,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Infiniti,QX4,2002,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Infiniti,QX4,2002,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Infiniti,QX4,2003,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Infiniti,QX4,2003,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Infiniti,QX50,2014,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,QX50,2014,6,3.7,All-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,QX50,2015,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,QX50,2015,6,3.7,All-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,QX50,2016,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,QX50,2016,6,3.7,All-Wheel Drive,7-Speed Automatic,Small Station Wagons +Infiniti,QX56,2004,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2004,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2005,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2005,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2006,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2006,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2007,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2007,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2008,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2008,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2009,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2009,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2010,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2010,8,5.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2011,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2011,8,5.6,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2012,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2012,8,5.6,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Infiniti,QX56,2013,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Infiniti,QX56,2013,8,5.6,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Infiniti,QX60,2014,6,3.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Infiniti,QX60,2014,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Infiniti,QX60,2015,6,3.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Infiniti,QX60,2015,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Infiniti,QX60,2016,6,3.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Infiniti,QX60,2016,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Infiniti,QX60 Hybrid,2014,4,2.5,Front-Wheel Drive,CVT,Standard Sport Utility Vehicle +Infiniti,QX60 Hybrid,2014,4,2.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Infiniti,QX60 Hybrid,2015,4,2.5,Front-Wheel Drive,CVT,Standard Sport Utility Vehicle +Infiniti,QX60 Hybrid,2015,4,2.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Infiniti,QX60 Hybrid,2016,4,2.5,Front-Wheel Drive,CVT,Standard Sport Utility Vehicle +Infiniti,QX60 Hybrid,2016,4,2.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Infiniti,QX70,2014,8,5,All-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Infiniti,QX70,2014,6,3.7,All-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Infiniti,QX70,2015,6,3.7,All-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Infiniti,QX70,2016,6,3.7,All-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Infiniti,QX70 RWD,2014,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Infiniti,QX70 RWD,2015,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Infiniti,QX70 RWD,2016,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Infiniti,QX80,2014,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Infiniti,QX80,2014,8,5.6,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Infiniti,QX80,2015,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Infiniti,QX80,2015,8,5.6,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Infiniti,QX80,2016,8,5.6,Rear-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Infiniti,QX80,2016,8,5.6,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Infiniti,QX80 (over 6000 lbs curb weight),2015,8,5.6,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Isis Imports Ltd,Morgan Plus 8,1992,8,3.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Isuzu,750C/I-Mark,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Isuzu,750C/I-Mark,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Amigo,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1989,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1989,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1990,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1990,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1991,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1991,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1992,4,2.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1992,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Amigo,1992,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1992,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1993,4,2.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1993,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Amigo,1993,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1993,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1994,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1994,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1998,4,2.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1998,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1998,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Amigo,1999,4,2.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Amigo,1999,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Amigo,1999,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Amigo,1999,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Amigo,1999,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Amigo,2000,4,2.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Amigo,2000,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Amigo,2000,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Amigo,2000,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Ascender,2003,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender,2003,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender,2003,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender,2003,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender,2004,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender,2004,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender,2004,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender,2004,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2004,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2004,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2005,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2005,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2006,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2006,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2007,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2007,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2008,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2008,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 5-passenger,2009,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 7-passenger,2005,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 7-passenger,2005,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 7-passenger,2005,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 7-passenger,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 7-passenger,2006,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 7-passenger,2006,8,5.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 7-passenger,2006,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 7-passenger,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Ascender 7-passenger,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Axiom,2002,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Axiom,2002,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Axiom,2003,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Axiom,2003,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Axiom,2004,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Axiom,2004,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Hombre Pickup,1996,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Hombre Pickup,1997,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Hombre Pickup,1997,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Hombre Pickup,1997,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup,1998,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup,1998,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Hombre Pickup,1998,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup,1998,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Hombre Pickup,1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,Hombre Pickup,1998,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Hombre Pickup,1999,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup,1999,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Hombre Pickup,1999,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup,1999,6,4.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Hombre Pickup,1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,Hombre Pickup,1999,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Hombre Pickup,2000,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup,2000,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup,2000,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Hombre Pickup,2000,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Hombre Pickup,2000,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup,2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,Hombre Pickup,2000,6,4.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Hombre Pickup,2001,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup,2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,Hombre Pickup (FFV),2001,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup (FFV),2001,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Hombre Pickup (FFV),2002,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Hombre Pickup (FFV),2002,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,i-280 Extended Cab,2006,4,2.8,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,i-280 Extended Cab,2006,4,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,i-290 Extended Cab,2007,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,i-290 Extended Cab,2007,4,2.9,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,i-290 Extended Cab,2008,4,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,i-290 Extended Cab,2008,4,2.9,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,i-350 Crew Cab,2006,5,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,i-370 Crew Cab,2007,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,i-370 Crew Cab,2007,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,i-370 Crew Cab,2008,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,i-370 Crew Cab,2008,5,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,i-370 Extended Cab,2007,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,i-370 Extended Cab,2008,5,3.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,I-Mark,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Isuzu,I-Mark,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Isuzu,I-Mark,1984,4,1.8,,4-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Isuzu,I-Mark,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Isuzu,I-Mark,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1985,4,1.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Isuzu,I-Mark,1985,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1985,4,1.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Isuzu,I-Mark,1985,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1986,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Isuzu,I-Mark,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1987,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Isuzu,I-Mark,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Isuzu,I-Mark,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Isuzu,I-Mark,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,I-Mark,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1984,4,2,,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1984,4,2,,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1984,4,2,,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1984,4,2,,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1985,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1985,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1985,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1986,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1986,4,1.9,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1986,4,1.9,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1986,4,1.9,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1986,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1987,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1987,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1987,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1987,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1988,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1988,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1989,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1989,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1990,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1991,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1992,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Impulse,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Isuzu,Impulse,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Isuzu,Oasis,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Isuzu,Oasis,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Isuzu,Oasis,1998,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Isuzu,Oasis,1999,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Isuzu,Pickup,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1984,4,2.2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1984,4,2.2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1984,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1984,4,2.2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1984,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1985,4,2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2.2,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1985,4,2.2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1985,4,2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1985,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1986,4,1.9,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1986,4,1.9,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.2,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1986,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1987,4,1.9,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1987,4,1.9,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1987,4,2.2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1987,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1987,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1987,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1987,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1987,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1987,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1987,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1988,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1988,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1988,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Isuzu,Pickup,1988,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1989,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1989,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1989,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1990,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1990,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1990,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1991,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1991,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1991,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1991,6,3.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1992,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1992,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1992,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1992,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1992,6,3.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1993,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1993,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1993,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1993,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1993,6,3.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1994,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1994,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1994,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Isuzu,Pickup,1994,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1994,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1994,6,3.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1995,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Isuzu,Pickup,1995,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup,1995,4,2.6,2-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup 1-Ton,1988,4,2.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup 1-Ton,1989,4,2.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup 1-Ton,1990,4,2.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup 1-Ton,1991,4,2.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Pickup 1-Ton,1992,4,2.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Isuzu,Rodeo,1991,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1991,6,3.1,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1991,6,3.1,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1991,6,3.1,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1991,6,3.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1992,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1992,6,3.1,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1992,6,3.1,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1992,6,3.1,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1992,6,3.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1993,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1993,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1993,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1993,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1993,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1994,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1994,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1994,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1994,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1994,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1995,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1995,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1995,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1995,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1995,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1996,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1996,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1996,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1996,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1996,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1997,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1997,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1997,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1997,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1997,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1998,4,2.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1998,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1998,6,3.2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1998,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Rodeo,1998,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Rodeo,1999,4,2.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,1999,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,1999,6,3.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,1999,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,1999,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2000,4,2.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2000,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2000,6,3.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2000,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2000,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2001,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2001,4,2.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2001,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2001,6,3.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2001,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2001,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2002,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2002,6,3.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2002,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2002,4,2.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2002,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2002,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2003,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2003,4,2.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2003,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2003,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2003,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2004,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2004,6,3.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2004,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2004,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo,2004,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo,2004,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo Sport,2001,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo Sport,2001,4,2.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo Sport,2001,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo Sport,2001,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo Sport,2001,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo Sport,2002,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo Sport,2002,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo Sport,2002,4,2.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo Sport,2002,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo Sport,2002,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo Sport,2003,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo Sport,2003,4,2.2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Rodeo Sport,2003,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Rodeo Sport,2003,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Stylus,1990,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Isuzu,Stylus,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Isuzu,Stylus,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Isuzu,Stylus,1991,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Isuzu,Stylus,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Isuzu,Stylus,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Isuzu,Stylus,1992,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Isuzu,Stylus,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Isuzu,Stylus,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Isuzu,Stylus,1993,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Isuzu,Stylus,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Isuzu,Stylus,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Isuzu,Trooper,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1985,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1986,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1986,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1986,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1987,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1987,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1987,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1988,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1988,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1989,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1989,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1989,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1990,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1990,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1990,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1990,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1991,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1991,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1991,6,2.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1991,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1992,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1992,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1992,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1992,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1993,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1993,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1993,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1993,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1994,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1994,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1994,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1994,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1995,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1995,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1995,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1995,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1996,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1996,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1997,6,3.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1997,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1998,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Trooper,1998,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Isuzu,Trooper,1999,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Trooper,1999,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Trooper,2000,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Trooper,2000,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Trooper,2000,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Trooper,2001,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Trooper,2001,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Trooper,2001,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Trooper,2002,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Trooper,2002,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Trooper,2002,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Isuzu,Vehicross,1999,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Isuzu,Vehicross,2000,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Isuzu,Vehicross,2001,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +J.K. Motors,190E 2.3 MERC BENZ,1993,4,2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +J.K. Motors,230E MERC BENZ,1993,4,2,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,300CE MERC BENZ,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,300E MERC BENZ,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,300SL,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +J.K. Motors,300SL,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +J.K. Motors,300SL MERC BENZ,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +J.K. Motors,300TE MERC BENZ,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +J.K. Motors,BMW535I,1992,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,BMW535I,1993,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,BMW635CSI,1992,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,BMW635CSI,1993,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,BMW635L6,1992,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,BMW635L6,1993,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,BMW735I,1992,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,BMW735I,1993,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,BMW735IL,1992,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,BMW735IL,1993,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,MERC BENZ 300CE,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,MERC BENZ 300CE,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,MERC BENZ 300E,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,MERC BENZ 300E,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,MERC BENZ 300SE,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,MERC BENZ 300SE,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,MERC BENZ 300SEL,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +J.K. Motors,MERC BENZ 300SEL,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +J.K. Motors,MERC BENZ 300TE,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +J.K. Motors,MERC BENZ 300TE,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +J.K. Motors,MERC.BENZ 260E,1993,6,2.6,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +J.K. Motors,MERC.BENZ.300SE,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,PORSCHE 928 S4,1993,8,4.9,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +J.K. Motors,Testarossa,1991,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +J.K. Motors,Testarossa,1991,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +J.K. Motors,Testarossa,1992,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +J.K. Motors,Testarossa,1993,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +J.K. Motors,Testarossa,1993,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Jaguar,F-Pace,2017,6,3,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Jaguar,F-Type Convertible,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type Convertible,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type Convertible,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type Convertible,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Jaguar,F-Type Convertible,2017,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type Convertible,2017,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Jaguar,F-Type Coupe,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type Coupe,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type Coupe,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Jaguar,F-Type Coupe,2017,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type Coupe,2017,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Jaguar,F-Type R Convertible,2016,8,5,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type R Convertible,2016,8,5,All-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type R Convertible,2017,8,5,All-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type R Coupe,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type R Coupe,2016,8,5,All-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type R Coupe,2017,8,5,All-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Convertible,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Convertible,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Convertible,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Convertible,2016,6,3,All-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Convertible,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Jaguar,F-Type S Convertible,2017,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Convertible,2017,6,3,All-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Convertible,2017,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Jaguar,F-Type S Coupe,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Coupe,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Coupe,2016,6,3,All-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Coupe,2016,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Jaguar,F-Type S Coupe,2017,6,3,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Coupe,2017,6,3,All-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type S Coupe,2017,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Jaguar,F-Type V8 S Convertible,2014,8,5,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,F-Type V8 S Convertible,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Two Seaters +Jaguar,S-Type,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,S-Type,2001,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,S-Type,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,S-Type,2002,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,S-type (X200) V6,2000,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,S-type (X200) V8,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,S-Type 3.0 Litre,2003,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 3.0 Litre,2003,6,3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Jaguar,S-Type 3.0 Litre,2004,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 3.0 Litre,2004,6,3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Jaguar,S-Type 3.0 Litre,2005,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 3.0 Litre,2005,6,3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Jaguar,S-Type 3.0 Litre,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 3.0 Litre,2007,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 3.0 Litre,2008,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 4.2 Litre,2003,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 4.2 Litre,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 4.2 Litre,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 4.2 Litre,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 4.2 Litre,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type 4.2 Litre,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type R,2003,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type R,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type R,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type R,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type R,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,S-Type R,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,Super V8,2002,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Super V8,2003,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Super V8,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,Super V8,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,Super V8,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,Super V8,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,Super V8,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,Vanden Plas,1996,6,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Jaguar,Vanden Plas,1997,6,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Jaguar,Vanden Plas,1998,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Vanden Plas,1999,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Vanden Plas,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Vanden Plas,2001,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Vanden Plas,2002,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Vanden Plas,2003,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Vanden Plas S.C.,1999,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Vanden Plas S/C,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Vanden Plas S/C,2001,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,Vdp,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,Vdp 4.2 Litre,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,Vdp Lwb,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,Vdp Lwb,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,Vdp Lwb,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,Vdp Lwb,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,X-Type,2002,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type,2002,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Jaguar,X-Type,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Jaguar,X-Type,2003,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type,2003,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Jaguar,X-Type,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Jaguar,X-Type,2004,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type,2004,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Jaguar,X-Type,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Jaguar,X-Type,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Jaguar,X-Type,2007,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type,2008,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,X-Type Sport Brake,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,X-Type Sport Brake,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Jaguar,X-Type Sport Brake,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,X-Type Sport Brake,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Jaguar,X-Type Sport Brake,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,X-Type Sport Brake,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Cars +Jaguar,X-Type Sport Brake,2007,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,X-Type Sport Brake,2008,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,XE,2017,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Jaguar,XE,2017,6,3,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Jaguar,XE,2017,6,3,All-Wheel Drive,8-Speed Automatic,Compact Cars +Jaguar,XF,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,XF,2010,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,XF,2010,8,5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,XF,2010,8,5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,XF,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,XF,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,XF,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,XF,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,XF,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2013,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2013,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2014,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2014,8,5,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2014,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2014,8,5,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2015,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2015,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2016,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2017,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF,2017,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Jaguar,XF Supercharged,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Jaguar,XJ,1984,6,4.2,,3-Speed Automatic,Subcompact Cars +Jaguar,XJ,1984,6,4.2,,3-Speed Automatic,Subcompact Cars +Jaguar,XJ,1985,6,4.2,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJ,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ,2010,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ,2010,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ,2010,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2013,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2014,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2014,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2014,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2015,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2016,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2016,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ LWB,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ LWB,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ LWB,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ LWB,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ LWB,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ LWB,2013,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ LWB,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ LWB,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJ Sport,2002,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJ Sport,2003,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJ-S,1988,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJ-SC,1987,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Jaguar,XJ-SC,1988,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Jaguar,XJ12,1994,12,6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ12,1995,12,6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ12,1996,12,6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Jaguar,XJ6,1986,6,4.2,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJ6,1987,6,4.2,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJ6,1988,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6,1988,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6,1989,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6,1990,6,4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6,1991,6,4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6,1992,6,4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6,1995,6,4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6,1996,6,4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6,1997,6,4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJ6L,1997,6,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Jaguar,XJ8,1998,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJ8,1999,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJ8,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJ8,2001,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJ8,2002,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJ8,2003,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJ8,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ8,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ8,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ8 4.2 Litre,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ8 4.2 Litre,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ8L,1998,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,XJ8L,1999,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,XJ8L,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,XJ8L,2001,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Jaguar,XJ8l,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ8L,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ8L,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ8L,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJ8L,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJL,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2014,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2014,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2014,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2015,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2016,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2016,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJL,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Jaguar,XJR,1995,6,5.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJR,1996,6,4,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Jaguar,XJR,1998,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJR,1999,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJR,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJR,2001,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJR,2002,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJR,2003,8,4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Jaguar,XJR,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJR,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJR,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJR,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJR 4.2 Litre,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJR 4.2 Litre,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Jaguar,XJRS Convertble,1993,12,6,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Jaguar,XJRS Coupe,1993,12,6,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJS,1984,12,5.3,,3-Speed Automatic,Subcompact Cars +Jaguar,XJS,1985,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJS,1986,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJS,1987,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJS Convertible,1989,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Jaguar,XJS Convertible,1989,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Jaguar,XJS Convertible,1990,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Jaguar,XJS Convertible,1991,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Jaguar,XJS Convertible,1992,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Jaguar,XJS Convertible,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Jaguar,XJS Convertible,1993,6,4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Jaguar,XJS Convertible,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Jaguar,XJS Convertible,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Jaguar,XJS Convertible,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Jaguar,XJS Convertible,1995,6,4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Jaguar,XJS Convertible,1996,6,4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Jaguar,XJS Coupe,1989,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJS Coupe,1989,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJS Coupe,1990,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJS Coupe,1991,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJS Coupe,1992,12,5.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Jaguar,XJS Coupe,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Jaguar,XJS Coupe,1993,6,4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Jaguar,XJS Coupe,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Jaguar,XJS Coupe,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Jaguar,XJS Coupe,1995,6,4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Jaguar,XJS V12 Convertible,1995,12,6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Jaguar,XJS V12 Coupe,1994,12,6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Jaguar,XJS V12 Coupe,1995,12,6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Jaguar,XK,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2010,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2010,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2013,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2013,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2014,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2014,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2015,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK,2015,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2010,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2011,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2013,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2013,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2014,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2014,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2015,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK Convertible,2015,8,5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK8,1998,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Jaguar,XK8,1999,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Jaguar,XK8,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Jaguar,XK8,2001,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Jaguar,XK8,2002,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Jaguar,XK8,2003,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Jaguar,XK8,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Jaguar,XK8,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Jaguar,XK8,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Jaguar,XK8 Convertible,1998,8,4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Jaguar,XK8 Convertible,1999,8,4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Jaguar,XK8 Convertible,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Jaguar,XK8 Convertible,2001,8,4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Jaguar,XK8 Convertible,2002,8,4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Jaguar,XK8 Convertible,2003,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK8 Convertible,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK8 Convertible,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XK8 Convertible,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XKR,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Jaguar,XKR,2001,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Jaguar,XKR,2002,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Jaguar,XKR,2003,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Jaguar,XKR,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Jaguar,XKR,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Jaguar,XKR,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Jaguar,XKR,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XKR,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XKR,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XKR Convertible,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Jaguar,XKR Convertible,2001,8,4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Jaguar,XKR Convertible,2002,8,4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Jaguar,XKR Convertible,2003,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XKR Convertible,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XKR Convertible,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XKR Convertible,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XKR Convertible,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XKR Convertible,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Jaguar,XKR Convertible,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +"JBA Motorcars, Inc.",W-126/4 Series,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Jeep,Cherokee,1987,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1987,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1987,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1987,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1988,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1988,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1988,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1988,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1989,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1989,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1989,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1989,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1989,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1990,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1990,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1990,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1990,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1990,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1990,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1990,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1990,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1990,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1990,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1990,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1991,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1991,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1991,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1991,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1991,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1991,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1992,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1992,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1992,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1992,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1992,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1992,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1993,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1993,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1993,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1993,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1993,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1994,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1994,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1994,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1994,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1994,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1994,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1995,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1995,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1995,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1995,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1995,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1995,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1995,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1995,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1996,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1996,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1996,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1996,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1996,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1996,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1997,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1997,4,2.5,4-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1997,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1997,6,4,Rear-Wheel Drive,Auto(L4),Special Purpose Vehicle +Jeep,Cherokee,1997,6,4,4-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1997,6,4,4-Wheel Drive,Auto(L4),Special Purpose Vehicle +Jeep,Cherokee,1998,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1998,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1998,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1998,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1998,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1998,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee,1998,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee,1999,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Jeep,Cherokee,1999,4,2.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Cherokee,1999,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Cherokee,1999,6,4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Cherokee,1999,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Cherokee,1999,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Cherokee,1999,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Cherokee,2000,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Jeep,Cherokee,2000,4,2.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Cherokee,2000,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Cherokee,2000,6,4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Cherokee,2000,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Cherokee,2000,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Cherokee,2000,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Cherokee,2001,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Cherokee,2001,6,4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Cherokee,2001,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Cherokee,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Cherokee,2014,6,3.2,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2014,4,2.4,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2014,4,2.4,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2014,6,3.2,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2015,4,2.4,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2015,6,3.2,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2015,4,2.4,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2015,4,2.4,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2015,6,3.2,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2015,4,2.4,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2016,4,2.4,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2016,4,2.4,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2016,4,2.4,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2016,4,2.4,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2016,6,3.2,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee,2016,6,3.2,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Active Drive II,2014,4,2.4,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Active Drive II,2014,6,3.2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Active Drive II,2015,4,2.4,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Active Drive II,2015,6,3.2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Active Drive II,2016,4,2.4,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Active Drive II,2016,6,3.2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Trailhawk,2014,6,3.2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Trailhawk,2014,4,2.4,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Trailhawk,2015,4,2.4,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Trailhawk,2015,6,3.2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Trailhawk,2016,4,2.4,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee Trailhawk,2016,6,3.2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Cherokee/Wagoneer,1984,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1984,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1984,6,2.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1984,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1984,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1984,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1984,6,2.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.1,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,6,2.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1985,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,4,2.1,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,4,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,6,2.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1986,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1987,4,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1987,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1987,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1987,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1988,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1988,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1988,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1988,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1988,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1989,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1989,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1989,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1989,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Cherokee/Wagoneer,1989,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1984,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,CJ7,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1984,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1984,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,CJ7,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1984,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1985,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1985,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,CJ7,1985,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1985,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1985,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1985,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,CJ7,1985,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1986,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1986,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,CJ7,1986,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,CJ7,1986,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,CJ8,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Comanche,1986,4,2.1,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1986,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1986,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1986,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1986,4,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1986,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1986,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1986,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1986,6,2.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1986,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1987,4,2.1,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1987,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1987,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1987,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1987,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1987,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1987,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1987,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1987,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1988,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1988,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1988,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1988,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1988,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1988,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1988,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche,1988,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche,1988,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1989,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1990,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1991,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1991,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1991,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1991,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1991,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1991,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1991,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1991,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1992,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1992,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1992,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1992,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1992,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1992,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1992,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1992,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1993,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1993,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1993,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1993,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1993,4,2.5,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1993,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Comanche Pickup,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Jeep,Comanche Pickup,1993,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Jeep,Commander,2006,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2006,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2006,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2006,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2007,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2007,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2007,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2007,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2007,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2008,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2008,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2008,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2008,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2009,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2009,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2009,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2009,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2010,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2010,8,5.7,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2010,6,3.7,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Commander,2010,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Compass,2007,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2007,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2007,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2007,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2008,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2008,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2008,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2008,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2009,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2009,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2009,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2009,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2009,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2010,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2010,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2010,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2010,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2010,4,2.4,4-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2011,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2011,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2011,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2011,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2011,4,2.4,4-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2011,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2012,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2012,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2012,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2012,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2012,4,2.4,4-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Compass,2012,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2012,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Compass,2013,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2013,4,2.4,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Compass,2013,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Compass,2013,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2013,4,2.4,4-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2013,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Compass,2013,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Compass,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Compass,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Compass,2014,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2014,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2014,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Compass,2014,4,2.4,4-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2014,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Compass,2014,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Compass,2015,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Compass,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Compass,2015,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2015,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Compass,2015,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Compass,2015,4,2.4,4-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2015,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2016,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2016,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Compass,2016,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Compass,2016,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Compass,2016,4,2.4,4-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2016,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Compass,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Grand Cherokee,1993,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1993,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1993,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Grand Cherokee,1993,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Grand Cherokee,1993,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1994,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1994,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Grand Cherokee,1994,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1995,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1995,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1995,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Grand Cherokee,1995,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1996,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1996,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1996,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1997,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1997,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1997,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1997,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1998,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1998,8,5.2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1998,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1998,8,5.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1998,8,5.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Cherokee,1999,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,1999,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,1999,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2000,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2000,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2000,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2000,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2001,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2001,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2001,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2001,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2002,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2002,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2002,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2002,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2003,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2003,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2003,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2003,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2004,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2004,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2004,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2005,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2005,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2005,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2005,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2005,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2006,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2006,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2006,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2006,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2006,8,6.1,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2007,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2007,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2007,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2007,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2007,8,6.1,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2007,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2007,6,3,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2007,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2008,6,3,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2008,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2008,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2008,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2008,8,6.1,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2008,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2008,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2009,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2009,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2009,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2009,8,5.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2010,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2010,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2010,6,3.7,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2010,8,5.7,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2011,8,5.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2011,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2011,8,5.7,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2011,6,3.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2011,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2011,6,3.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2012,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2012,6,3.6,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2012,8,5.7,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2012,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee,2013,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2013,6,3.6,4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2013,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2013,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2014,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2014,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2014,8,5.7,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2014,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2015,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2015,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2015,8,5.7,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2015,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2016,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2016,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee,2016,8,5.7,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee SRT8,2009,8,6.1,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee SRT8,2010,8,6.1,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee SRT8,2012,8,6.4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Grand Cherokee SRT8,2013,8,6.4,4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee SRT8,2014,8,6.4,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee SRT8,2015,8,6.4,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Cherokee SRT8,2016,8,6.4,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Jeep,Grand Wagoneer,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Grand Wagoneer,1984,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Grand Wagoneer,1984,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1985,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1985,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1985,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1986,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1986,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Grand Wagoneer,1986,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1987,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1987,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Jeep,Grand Wagoneer,1987,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1988,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1989,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1990,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Grand Wagoneer,1991,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,J-10 Pickup,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,J-10 Pickup,1984,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup,1984,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,J-10 Pickup,1984,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1985,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1985,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1985,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1985,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1986,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1986,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1986,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1987,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1987,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1987,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1988,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Jeep,J-10 Pickup Truck,1988,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-20 Pickup Truck,1985,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-20 Pickup Truck,1986,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-20 Pickup Truck,1987,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,J-20 Pickup Truck,1988,8,5.9,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Jeep,Liberty,2002,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2002,6,3.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Liberty,2002,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2002,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Liberty,2008,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2008,6,3.7,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Liberty,2008,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2008,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Liberty,2009,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2009,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2010,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2010,6,3.7,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2011,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2011,6,3.7,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2012,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty,2012,6,3.7,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2003,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2003,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2003,6,3.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2003,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2003,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2003,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2004,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2004,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2004,6,3.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2004,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2004,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2004,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2005,4,2.4,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2005,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2005,6,3.7,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2005,4,2.4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2005,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2005,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2005,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2006,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2006,6,3.7,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2006,4,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2006,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2006,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2007,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2007,6,3.7,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2007,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Liberty/Cherokee,2007,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2007,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2007,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2007,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2007,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2007,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2008,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2008,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2008,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2008,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2008,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2009,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2009,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2009,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2009,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2009,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2009,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2010,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2010,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2010,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2010,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2010,4,2.4,4-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2010,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2011,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2011,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2011,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2011,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2011,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2011,4,2.4,4-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2012,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2012,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2012,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2012,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2012,4,2.4,4-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Patriot,2012,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2012,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Jeep,Patriot,2013,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2013,4,2.4,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Patriot,2013,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Patriot,2013,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2013,4,2.4,4-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2013,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Patriot,2013,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Patriot,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Patriot,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Patriot,2014,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2014,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Patriot,2014,4,2.4,4-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2014,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Patriot,2014,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2014,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Patriot,2015,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Patriot,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Patriot,2015,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2015,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Patriot,2015,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Patriot,2015,4,2.4,4-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2015,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2016,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Patriot,2016,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2016,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Jeep,Patriot,2016,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Patriot,2016,4,2.4,4-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Patriot,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Jeep,Patriot,2016,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Jeep,Renegade,2015,4,2.4,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Renegade,2015,4,2.4,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Renegade,2015,4,1.4,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Renegade,2015,4,1.4,All-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Renegade,2016,4,1.4,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Renegade,2016,4,2.4,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Renegade,2016,4,1.4,All-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Renegade,2016,4,2.4,All-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Jeep,Scrambler,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Jeep,Scrambler,1985,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Jeep,Scrambler,1985,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Jeep,Scrambler,1985,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Jeep,Scrambler,1985,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Jeep,Scrambler,1985,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Jeep,Scrambler,1985,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Jeep,Scrambler,1985,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Jeep,Scrambler,1985,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Jeep,Scrambler,1986,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Jeep,Scrambler,1986,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Jeep,Scrambler,1986,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Jeep,Scrambler Pickup,1984,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Jeep,Wagoneer,1990,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Wagoneer Limited,1989,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1987,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1987,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1987,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1988,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1988,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1988,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1989,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1989,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1989,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1989,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1990,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1990,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1990,6,4.2,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1990,6,4.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1991,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1991,6,4,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1991,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1992,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1992,6,4,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1992,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1993,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1993,6,4,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1993,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1994,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1994,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1994,6,4,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1994,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1995,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1995,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1995,6,4,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1995,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1997,4,2.5,4-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1997,4,2.5,4-Wheel Drive,Auto(L3),Special Purpose Vehicle +Jeep,Wrangler,1997,6,4,4-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1997,6,4,4-Wheel Drive,Auto(L3),Special Purpose Vehicle +Jeep,Wrangler,1998,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1998,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1998,6,4,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Jeep,Wrangler,1998,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Jeep,Wrangler,1999,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,1999,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,1999,6,4,4-Wheel or All-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,1999,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2000,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2000,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2000,6,4,4-Wheel or All-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2000,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2001,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2001,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2001,6,4,4-Wheel or All-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2002,4,2.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2002,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2002,6,4,4-Wheel or All-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2007,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2007,6,3.8,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2007,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2007,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2008,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2008,6,3.8,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2008,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2008,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2009,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2009,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2009,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2010,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2010,6,3.8,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2010,6,3.8,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2011,6,3.8,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2011,6,3.8,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2012,6,3.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler,2012,6,3.6,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler,2013,6,3.6,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Jeep,Wrangler,2013,6,3.6,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Wrangler,2014,6,3.6,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Wrangler,2014,6,3.6,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Jeep,Wrangler,2015,6,3.6,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Jeep,Wrangler,2015,6,3.6,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Wrangler,2016,6,3.6,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Jeep,Wrangler,2016,6,3.6,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Wrangler Unlimited,2012,6,3.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler Unlimited,2012,6,3.6,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler Unlimited,2013,6,3.6,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Jeep,Wrangler Unlimited,2013,6,3.6,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Wrangler Unlimited,2014,6,3.6,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Jeep,Wrangler Unlimited,2014,6,3.6,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Wrangler Unlimited,2015,6,3.6,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Jeep,Wrangler Unlimited,2015,6,3.6,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Wrangler Unlimited,2016,6,3.6,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Jeep,Wrangler Unlimited,2016,6,3.6,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Jeep,Wrangler/TJ,2003,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler/TJ,2003,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler/TJ,2003,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler/TJ,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler/TJ,2004,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler/TJ,2004,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler/TJ,2004,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler/TJ,2004,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler/TJ,2005,4,2.4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler/TJ,2005,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler/TJ,2005,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler/TJ,2006,4,2.4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Jeep,Wrangler/TJ,2006,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Jeep,Wrangler/TJ,2006,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Kenyon Corporation Of America,Kenyon 5.0 Cabrio,1984,8,5,,3-Speed Automatic,Two Seaters +Kenyon Corporation Of America,Kenyon 5.0 Coupe,1984,8,5,,3-Speed Automatic,Compact Cars +Kenyon Corporation Of America,Kenyon 5.0 Sedan,1984,8,5,,3-Speed Automatic,Midsize Cars +Kenyon Corporation Of America,Kenyon 5.0 Sp Sedan,1984,8,5,,3-Speed Automatic,Compact Cars +Kia,Amanti,2004,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Kia,Amanti,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Kia,Amanti,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Kia,Amanti,2007,6,3.8,Front-Wheel Drive,5-Speed Automatic,Large Cars +Kia,Amanti,2008,6,3.8,Front-Wheel Drive,5-Speed Automatic,Large Cars +Kia,Amanti,2009,6,3.8,Front-Wheel Drive,5-Speed Automatic,Large Cars +Kia,Borrego,2009,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2009,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2009,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2009,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2010,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2010,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2010,6,3.8,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2010,8,4.6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2011,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2011,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2011,6,3.8,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Borrego,2011,8,4.6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Cadenza,2014,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Cadenza,2015,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Cadenza,2016,6,3.3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Forte,2010,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Kia,Forte,2010,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Forte,2010,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Forte,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Kia,Forte,2010,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte,2011,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2012,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2013,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2014,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2014,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte,2015,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2016,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte,2017,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Forte 5,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Forte 5,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Large Cars +Kia,Forte 5,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Forte 5,2014,4,2,Front-Wheel Drive,6-Speed Manual,Large Cars +Kia,Forte 5,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Forte 5,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Forte 5,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Large Cars +Kia,Forte 5,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Forte 5,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Large Cars +Kia,Forte 5,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Forte Eco,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte Eco,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte Eco,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte Eco,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Forte Koup,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2011,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Forte Koup,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Forte Koup,2016,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,K900,2015,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Kia,K900,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Kia,K900,2016,8,5,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Kia,K900,2016,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Kia,K900,2017,6,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Kia,K900,2017,8,5,Front-Wheel Drive,8-Speed Automatic,Large Cars +Kia,Optima,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2001,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2001,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2002,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2002,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2003,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2003,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2004,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2004,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2005,6,2.7,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Optima,2007,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Kia,Optima,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2007,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Kia,Optima,2008,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Kia,Optima,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2008,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Kia,Optima,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Kia,Optima,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2009,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Kia,Optima,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima,2010,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Kia,Optima,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Kia,Optima,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Optima,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Optima,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Kia,Optima,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima,2016,4,1.6,Front-Wheel Drive,7-Speed Automated Manual,Large Cars +Kia,Optima,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Optima,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Optima (2006 New Model),2006,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Kia,Optima (2006 New Model),2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Optima (2006 New Model),2006,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Kia,Optima FE,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Optima FE,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Large Cars +Kia,Optima Hybrid,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima Hybrid,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Kia,Optima Hybrid,2013,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Kia,Optima Hybrid,2014,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Kia,Optima Hybrid,2015,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Kia,Optima Hybrid,2016,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Kia,Optima Hybrid EX,2013,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Kia,Optima Hybrid EX,2014,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Kia,Optima Hybrid EX,2015,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Kia,Optima Hybrid EX,2016,4,2.4,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Kia,Rio,2001,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2001,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2002,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2002,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2003,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2003,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2004,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2004,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2004,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2004,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2005,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2005,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2006,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2006,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2007,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2007,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2008,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2008,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2009,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2009,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2010,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2010,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2011,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Rio,2011,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Rio,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rio,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Rio,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rio,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Rio,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rio,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Rio,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rio,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Rio,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rio,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Rio,2017,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rio,2017,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +Kia,Rio Eco,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rio Eco,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rio Eco,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rio Eco,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rio Eco,2017,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Kia,Rondo,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2007,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2008,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2009,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2010,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2011,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2012,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Kia,Rondo,2012,6,2.7,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Kia,Sedona,2002,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Kia,Sedona,2003,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Kia,Sedona,2004,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Kia,Sedona,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Kia,Sedona,2006,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minivan +Kia,Sedona,2007,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minivan +Kia,Sedona,2008,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minivan +Kia,Sedona,2009,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minivan +Kia,Sedona,2010,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minivan +Kia,Sedona,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona,2015,6,3.3,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona,2016,6,3.3,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona,2017,6,3.3,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona SX,2015,6,3.3,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona SX,2016,6,3.3,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona SX,2017,6,3.3,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona SXL,2015,6,3.3,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona SXL,2016,6,3.3,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sedona SXL,2017,6,3.3,Front-Wheel Drive,6-Speed Automatic,Minivan +Kia,Sephia,1993,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1994,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1995,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1996,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1997,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia,1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1998,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia,1999,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia/Spectra,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia/Spectra,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sephia/Spectra,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Sephia/Spectra,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Sorento,2003,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2003,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2004,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2004,6,3.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sorento,2004,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2004,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sorento,2005,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2005,6,3.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sorento,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sorento,2006,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2006,6,3.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sorento,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sorento,2007,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2007,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2007,6,3.3,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2007,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2008,6,3.3,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2008,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2008,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2008,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2009,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2009,6,3.3,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2009,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2009,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Kia,Sorento,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2011,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2011,6,3.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Kia,Sorento,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2012,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2012,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2012,6,3.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sorento,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Kia,Sorento,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2013,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2013,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2013,6,3.5,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2014,4,2.4,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Kia,Sorento,2014,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2014,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2014,6,3.3,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2015,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2015,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2015,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2016,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2016,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2016,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2017,6,3.3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2017,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2017,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento,2017,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento FE,2016,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sorento FE,2017,6,3.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Soul,2010,4,1.6,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Kia,Soul,2010,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Kia,Soul,2010,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Kia,Soul,2010,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Kia,Soul,2011,4,1.6,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Kia,Soul,2011,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Kia,Soul,2011,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Kia,Soul,2011,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Kia,Soul,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Kia,Soul,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul,2012,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Kia,Soul,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Kia,Soul,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul,2013,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Kia,Soul,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Kia,Soul,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Kia,Soul,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Kia,Soul Eco,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul Eco,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul Eco,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul Eco,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul ECO dynamics,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul ECO dynamics,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul ECO dynamics,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Kia,Soul Electric,2015,,,Front-Wheel Drive,1-Speed Direct Drive,Small Station Wagons +Kia,Soul Electric,2016,,,Front-Wheel Drive,1-Speed Direct Drive,Small Station Wagons +Kia,Spectra,2002,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Spectra,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Spectra,2003,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Spectra,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Spectra,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Spectra,2005,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Spectra,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Spectra,2006,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Spectra,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Spectra,2007,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Spectra,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Spectra,2008,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Spectra,2009,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Spectra,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Spectra 1.8L,2004,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Kia,Spectra 1.8L,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Kia,Spectra 2.0L,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Kia,Spectra 2.0L,2004,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Kia,Sportage,1995,4,2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Kia,Sportage,1995,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Kia,Sportage,1995,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Kia,Sportage,1995,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Kia,Sportage,1996,4,2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Kia,Sportage,1996,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Kia,Sportage,1996,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Kia,Sportage,1997,4,2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Kia,Sportage,1997,4,2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Kia,Sportage,1997,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Kia,Sportage,1997,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Kia,Sportage,1998,4,2,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Kia,Sportage,1998,4,2,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Kia,Sportage,1998,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Kia,Sportage,1998,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Kia,Sportage,1999,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,1999,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,1999,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,1999,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2000,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2000,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2000,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2000,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2001,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2001,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2001,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2001,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2001,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2001,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2002,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2002,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2002,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2005,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2005,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2005,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2005,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2006,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2006,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2006,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2006,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2007,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2007,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2007,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2007,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2008,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2008,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2008,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2008,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2009,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2009,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2009,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2009,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2010,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2010,6,2.7,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2010,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2010,4,2,4-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2010,6,2.7,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2011,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2011,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2011,4,2.4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2011,4,2,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2012,4,2.4,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2012,4,2,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2012,4,2.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Kia,Sportage,2012,4,2.4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Kia,Sportage,2013,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Kia,Sportage,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2013,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2013,4,2.4,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Kia,Sportage,2013,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2014,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2014,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2014,4,2.4,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2015,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2015,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2015,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2016,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2016,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2017,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage,2017,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage FE,2017,4,2.4,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage FE,2017,4,2.4,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage SX,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage SX,2015,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage SX,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Kia,Sportage SX,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Laforza Automobile Inc,Laforza,1989,8,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Laforza Automobile Inc,Laforza,1990,8,4.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Lambda Control Systems,300E,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Lamborghini,Aventador Coupe,2012,12,6.5,All-Wheel Drive,7-Speed Automatic,Two Seaters +Lamborghini,Aventador Coupe,2013,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Aventador Coupe,2014,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Aventador Coupe,2015,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Aventador Coupe,2016,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Aventador Coupe,2017,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Aventador Roadster,2013,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Aventador Roadster,2014,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Aventador Roadster,2015,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Aventador Roadster,2016,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Aventador Roadster,2017,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Aventador Veneno Coupe,2014,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Countach,1986,12,5.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,Countach,1987,12,5.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,Countach,1988,12,5.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,Countach,1989,12,5.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,Countach,1990,12,5.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,Countach Lp500s,1984,12,4.8,,5-Speed Manual,Two Seaters +Lamborghini,Countach Lp500s,1984,12,4.8,,5-Speed Manual,Two Seaters +Lamborghini,DB132/144 - Diablo,1997,12,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/144 Diablo,1998,12,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/144 Diablo,1999,12,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/144 Diablo,2001,12,6,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/Diablo,1990,12,5.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/Diablo,1991,12,5.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/Diablo,1992,12,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/Diablo,1993,12,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/Diablo,1994,12,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/Diablo,1995,12,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/Diablo,1995,12,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,DB132/Diablo,1996,12,5.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Lamborghini,Gallardo Coupe,2007,10,5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Coupe,2007,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Gallardo Coupe,2008,10,5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Coupe,2008,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Gallardo Coupe,2009,10,5.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Coupe,2009,10,5.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Gallardo Coupe,2010,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Coupe,2010,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Lamborghini,Gallardo Coupe,2011,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Lamborghini,Gallardo Coupe,2011,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Coupe,2012,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Lamborghini,Gallardo Coupe,2012,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Coupe,2013,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Lamborghini,Gallardo Coupe,2013,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Coupe,2014,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Lamborghini,Gallardo Coupe,2014,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Coupe SL,2007,10,5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Coupe SL,2007,10,5,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Gallardo Spyder,2007,10,5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Spyder,2007,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Gallardo Spyder,2008,10,5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Spyder,2008,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Gallardo Spyder,2009,10,5.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Spyder,2009,10,5.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Gallardo Spyder,2010,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Spyder,2010,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Lamborghini,Gallardo Spyder,2011,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Lamborghini,Gallardo Spyder,2011,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Spyder,2012,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Lamborghini,Gallardo Spyder,2012,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Spyder,2013,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Lamborghini,Gallardo Spyder,2013,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Gallardo Spyder,2014,10,5.2,All-Wheel Drive,6-Speed Automated Manual,Two Seaters +Lamborghini,Gallardo Spyder,2014,10,5.2,All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Huracan,2015,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Huracan,2016,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Huracan,2017,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Huracan,2017,10,5.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Huracan Spyder,2016,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Huracan Spyder,2017,10,5.2,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Huracan Spyder,2017,10,5.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,L-140/141 Gallardo,2004,10,5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-140/141 Gallardo,2004,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,L-140/141 Gallardo,2005,10,5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-140/141 Gallardo,2005,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,L-140/715 Gallardo,2006,10,5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-140/715 Gallardo,2006,10,5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-140/715 Gallardo,2006,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,L-140/715 Gallardo,2006,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,L-147 Murcielago,2002,12,6,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-147 Murcielago,2002,12,6.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-147 Murcielago,2003,12,6,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-147 Murcielago,2003,12,6.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-147/148 Murcielago,2004,12,6.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-147/148 Murcielago,2004,12,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,L-147/148 Murcielago,2005,12,6.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-147/148 Murcielago,2005,12,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,L-147/148 Murcielago,2006,12,6.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-147/148 Murcielago,2006,12,6.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,L-147/148 Murcielago,2007,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,L-147/148 Murcielago,2007,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Murcielago,2008,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Murcielago,2008,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Murcielago,2009,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Murcielago,2009,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Murcielago,2010,12,6.5,All-Wheel Drive,7-Speed Manual,Two Seaters +Lamborghini,Murcielago,2010,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Murcielago Reventon,2008,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Murcielago Reventon Roadster,2010,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Murcielago Roadster,2008,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Murcielago Roadster,2008,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Murcielago Roadster,2009,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Two Seaters +Lamborghini,Murcielago Roadster,2009,12,6.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Two Seaters +Lamborghini,Murcielago Roadster,2010,12,6.5,All-Wheel Drive,7-Speed Manual,Two Seaters +Lamborghini,Murcielago Roadster,2010,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Lamborghini,Veneno Roadster,2015,12,6.5,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Land Rover,Defender 110,1993,8,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Land Rover,Defender 90,1994,8,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Land Rover,Defender 90,1995,8,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Land Rover,Defender 90,1997,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Discovery,1994,8,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Discovery,1994,8,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Land Rover,Discovery,1995,8,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Discovery,1995,8,3.9,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Land Rover,Discovery,1996,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Discovery,1997,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Discovery,1997,8,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Land Rover,Discovery,1998,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Discovery,1998,8,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Land Rover,Discovery,1999,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Discovery Series II,1999,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Discovery Series II,2000,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Discovery Series II,2001,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Discovery Series II,2002,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Discovery Series II,2003,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Discovery Series II,2004,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Discovery Sport,2015,4,2,4-Wheel Drive,9-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Discovery Sport,2016,4,2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Land Rover,Freelander,2002,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Land Rover,Freelander,2004,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Land Rover,Freelander,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Land Rover,Freelander 3 Door,2003,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Land Rover,Freelander 5 Door,2003,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Land Rover,LR2,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR2,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR2,2010,6,3.2,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR2,2011,6,3.2,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR2,2012,6,3.2,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR2,2013,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Land Rover,LR2,2014,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Land Rover,LR2,2015,4,2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Land Rover,LR3,2005,6,4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR3,2005,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR3,2006,6,4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR3,2006,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR3,2007,8,4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR3,2007,8,4.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR3,2008,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR3,2009,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR4,2010,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR4,2011,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR4,2012,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,LR4,2013,8,5,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,LR4,2014,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,LR4,2015,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,LR4,2016,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover,1987,8,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1988,8,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1989,8,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1990,8,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1991,8,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1992,8,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1995,8,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1997,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1997,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1998,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1998,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover,1999,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,1999,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2000,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2000,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2001,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2001,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2002,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2003,8,4.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2004,8,4.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2005,8,4.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2006,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2007,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2008,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2009,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2010,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2010,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2011,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2011,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2012,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2012,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover,2013,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover,2013,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover,2014,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover,2014,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover,2014,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover,2014,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover,2015,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover,2015,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover,2016,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover,2016,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover 4.0,1996,8,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover 4.6,1996,8,4.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover County,1993,8,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover County,1994,8,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover County Classic,1995,8,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover County LWB,1993,8,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover County LWB,1994,8,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover County LWB,1995,8,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Land Rover,Range Rover Evoque,2012,4,2,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Evoque,2013,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Land Rover,Range Rover Evoque,2014,4,2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Land Rover,Range Rover Evoque,2015,4,2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Land Rover,Range Rover Evoque,2016,4,2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Land Rover,Range Rover Evoque Convertible,2016,4,2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Land Rover,Range Rover L,2014,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover L,2014,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover L,2015,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover LWB,2015,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover LWB,2016,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover LWB,2016,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2006,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2007,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2008,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2009,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2010,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2010,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2011,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2011,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2012,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2012,8,5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Land Rover,Range Rover Sport,2013,8,5,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2013,8,5,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2014,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2014,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2014,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2015,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2015,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2015,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2016,8,5,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport,2016,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover Sport TDV6,2016,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Land Rover,Range Rover TDV6,2016,6,3,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Lexus,CT 200h,2011,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Lexus,CT 200h,2012,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Lexus,CT 200h,2013,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Lexus,CT 200h,2014,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Lexus,CT 200h,2015,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Lexus,CT 200h,2016,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Lexus,ES 250,1990,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 250,1990,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Lexus,ES 250,1991,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 250,1991,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Lexus,ES 300,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 300,1992,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Lexus,ES 300,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 300,1993,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Lexus,ES 300,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 300,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 300,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 300,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 300,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 300,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 300,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 300,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Lexus,ES 300,2002,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,ES 300,2003,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,ES 300h,2013,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Lexus,ES 300h,2014,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Lexus,ES 300h,2015,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Lexus,ES 300h,2016,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Lexus,ES 330,2004,6,3.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,ES 330,2005,6,3.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,ES 330,2006,6,3.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,ES 350,2007,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,ES 350,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,ES 350,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,ES 350,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,ES 350,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,ES 350,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,ES 350,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,ES 350,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,ES 350,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,ES 350,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 200t,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,GS 200t F Sport,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,GS 300,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,GS 300,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,GS 300,1996,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300,1997,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300,2006,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 400,1998,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 400,1998,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 400,1999,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 400,1999,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 400,2000,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 400,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2001,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2002,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2003,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2004,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2004,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2005,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2005,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2006,6,3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 300/GS 430,2006,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2007,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2007,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2008,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2008,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2009,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2010,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2011,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2013,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2014,6,3.5,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,GS 350,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350,2015,6,3.5,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,GS 350,2016,6,3.5,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,GS 350,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 350 F Sport,2016,6,3.5,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,GS 430,2007,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Lexus,GS 450h,2007,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,GS 450h,2008,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,GS 450h,2009,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,GS 450h,2010,6,3.5,Rear-Wheel Drive,CVT,Compact Cars +Lexus,GS 450h,2011,6,3.5,Rear-Wheel Drive,CVT,Compact Cars +Lexus,GS 450h,2013,6,3.5,Rear-Wheel Drive,CVT,Midsize Cars +Lexus,GS 450h,2014,6,3.5,Rear-Wheel Drive,CVT,Midsize Cars +Lexus,GS 450h,2015,6,3.5,Rear-Wheel Drive,CVT,Midsize Cars +Lexus,GS 450h,2016,6,3.5,Rear-Wheel Drive,CVT,Midsize Cars +Lexus,GS 460,2008,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,GS 460,2009,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,GS 460,2010,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,GS 460,2011,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,GS F,2016,8,5,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Lexus,GS300,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,GX 460,2010,8,4.6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,GX 460,2011,8,4.6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,GX 460,2012,8,4.6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,GX 460,2013,8,4.6,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lexus,GX 460,2014,8,4.6,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lexus,GX 460,2015,8,4.6,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lexus,GX 460,2016,8,4.6,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lexus,GX 470,2003,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,GX 470,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,GX 470,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,GX 470,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,GX 470,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,GX 470,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,GX 470,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,HS 250h,2010,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Lexus,HS 250h,2011,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Lexus,HS 250h,2012,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Lexus,IS 200t,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Lexus,IS 250,2006,6,2.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Lexus,IS 250,2006,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2006,6,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2007,6,2.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Lexus,IS 250,2007,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2007,6,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2008,6,2.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Lexus,IS 250,2008,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2008,6,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2009,6,2.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Lexus,IS 250,2009,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2009,6,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2010,6,2.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2011,6,2.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2012,6,2.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2013,6,2.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250,2014,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,IS 250,2014,6,2.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,IS 250,2015,6,2.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,IS 250,2015,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,IS 250 C,2014,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250 C,2015,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250/IS 250C,2010,6,2.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Lexus,IS 250/IS 250C,2010,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250/IS 250C,2011,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250/IS 250C,2011,6,2.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Lexus,IS 250/IS 250C,2012,6,2.5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Lexus,IS 250/IS 250C,2012,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 250/IS 250C,2013,6,2.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 300,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Lexus,IS 300,2002,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Lexus,IS 300,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Lexus,IS 300,2003,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Lexus,IS 300,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Lexus,IS 300,2004,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Lexus,IS 300,2004,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Lexus,IS 300,2005,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Lexus,IS 300,2005,6,3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Lexus,IS 300,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,IS 350,2006,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350,2007,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350,2008,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350,2009,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350,2014,6,3.5,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Lexus,IS 350,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,IS 350,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,IS 350,2015,6,3.5,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Lexus,IS 350,2016,6,3.5,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Lexus,IS 350,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Lexus,IS 350 C,2014,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350 C,2015,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350/IS 350C,2010,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350/IS 350C,2011,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350/IS 350C,2012,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS 350/IS 350C,2013,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,IS F,2008,8,5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,IS F,2009,8,5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,IS F,2010,8,5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,IS F,2011,8,5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,IS F,2012,8,5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,IS F,2013,8,5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,IS F,2014,8,5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,LFA,2012,10,4.8,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Lexus,LS 400,1990,8,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,LS 400,1991,8,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,LS 400,1992,8,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,LS 400,1993,8,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,LS 400,1994,8,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,LS 400,1995,8,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,LS 400,1996,8,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,LS 400,1997,8,4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lexus,LS 400,1998,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,LS 400,1999,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,LS 400,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,LS 430,2001,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Lexus,LS 430,2002,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lexus,LS 430,2003,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Lexus,LS 430,2004,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Lexus,LS 430,2005,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Lexus,LS 430,2006,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Lexus,LS 460,2007,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2008,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2009,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2009,8,4.6,4-Wheel or All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2010,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2010,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2011,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2011,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2012,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2012,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2013,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2013,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2014,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2014,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2015,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2015,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2016,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460,2016,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2007,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2008,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2009,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2009,8,4.6,4-Wheel or All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2010,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2010,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2011,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2011,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2012,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2012,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2013,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2013,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2014,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2014,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2015,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2015,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2016,8,4.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 460 L,2016,8,4.6,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 600h L,2008,8,5,4-Wheel or All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 600h L,2009,8,5,4-Wheel or All-Wheel Drive,8-Speed Automatic,Midsize Cars +Lexus,LS 600h L,2010,8,5,All-Wheel Drive,CVT,Midsize Cars +Lexus,LS 600h L,2011,8,5,All-Wheel Drive,CVT,Midsize Cars +Lexus,LS 600h L,2012,8,5,All-Wheel Drive,CVT,Midsize Cars +Lexus,LS 600h L,2013,8,5,All-Wheel Drive,CVT,Midsize Cars +Lexus,LS 600h L,2014,8,5,All-Wheel Drive,CVT,Midsize Cars +Lexus,LS 600h L,2015,8,5,All-Wheel Drive,CVT,Midsize Cars +Lexus,LS 600h L,2016,8,5,All-Wheel Drive,CVT,Midsize Cars +Lexus,LX 450,1996,6,4.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Lexus,LX 450,1997,6,4.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Lexus,LX 470,1998,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Lexus,LX 470,1999,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lexus,LX 470,2000,6,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lexus,LX 470,2001,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lexus,LX 470,2002,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lexus,LX 470,2003,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,LX 470,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,LX 470,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,LX 470,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,LX 470,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,LX 570,2008,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,LX 570,2009,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,LX 570,2010,8,5.7,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,LX 570,2011,8,5.7,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,LX 570,2013,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lexus,LX 570,2014,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lexus,LX 570,2015,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lexus,LX 570,2016,8,5.7,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Lexus,NX 200t,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,NX 200t,2015,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,NX 200t,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,NX 200t,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,NX 200t F Sport,2015,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,NX 200t F Sport,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,NX 300h,2015,4,2.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,NX 300h,2015,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,NX 300h,2016,4,2.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,NX 300h,2016,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,RC 200t,2016,4,2,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,RC 300,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,RC 350,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,RC 350,2015,6,3.5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,RC 350,2016,6,3.5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,RC 350,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Lexus,RC F,2015,8,5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,RC F,2016,8,5,Rear-Wheel Drive,8-Speed Automatic,Subcompact Cars +Lexus,RX 300,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Lexus,RX 300,1999,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Lexus,RX 300,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Lexus,RX 300,2000,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Lexus,RX 300,2001,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Lexus,RX 300,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Lexus,RX 300,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Lexus,RX 300,2002,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Lexus,RX 300,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Lexus,RX 300,2003,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Lexus,RX 330,2004,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2004,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2004,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2004,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2005,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2005,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2005,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2005,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2006,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2006,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2006,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 330,2006,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lexus,RX 350,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 350,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 350,2013,6,3.5,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 350,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 350,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 350,2014,6,3.5,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 350,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 350,2015,6,3.5,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 350,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 350,2016,6,3.5,Front-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 350,2016,6,3.5,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Lexus,RX 400h,2006,6,3.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 400h,2006,6,3.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 400h,2007,6,3.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 400h,2007,6,3.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 400h,2008,6,3.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 400h,2008,6,3.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 450h,2010,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 450h,2010,6,3.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 450h,2011,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 450h,2011,6,3.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 450h,2012,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 450h,2012,6,3.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Lexus,RX 450h,2013,6,3.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,RX 450h,2013,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,RX 450h,2014,6,3.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,RX 450h,2014,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,RX 450h,2015,6,3.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,RX 450h,2015,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,RX 450h,2016,6,3.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Lexus,RX 450h,2016,6,3.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Lexus,SC,1999,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC,1999,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Lexus,SC,2000,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC,2000,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Lexus,SC 300/SC 400,1992,8,4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Lexus,SC 300/SC 400,1993,8,4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Lexus,SC 300/SC 400,1994,8,4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Lexus,SC 300/SC 400,1995,8,4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1996,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Lexus,SC 300/SC 400,1996,8,4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1997,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Lexus,SC 300/SC 400,1997,8,4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1998,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 400,1998,8,4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Lexus,SC 300/SC 430,2002,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Lexus,SC 300/SC 430,2003,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Lexus,SC 430,2004,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Lexus,SC 430,2005,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Lexus,SC 430,2006,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lexus,SC 430,2007,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lexus,SC 430,2008,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lexus,SC 430,2009,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lexus,SC 430,2010,8,4.3,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lincoln,Aviator,2003,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lincoln,Aviator,2003,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lincoln,Aviator,2004,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lincoln,Aviator,2004,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lincoln,Aviator,2005,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lincoln,Aviator,2005,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Lincoln,Blackwood,2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Lincoln,Blackwood,2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Lincoln,Continental,1984,6,2.4,,4-Speed Automatic,Midsize Cars +Lincoln,Continental,1984,8,5,,4-Speed Automatic,Midsize Cars +Lincoln,Continental,1984,6,2.4,,4-Speed Automatic,Midsize Cars +Lincoln,Continental,1984,8,5,,4-Speed Automatic,Midsize Cars +Lincoln,Continental,1985,6,2.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Continental,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Continental,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Continental,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Continental,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1995,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1996,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1997,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1998,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,1999,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,2000,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,2001,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Continental,2002,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,LS,2000,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2000,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2000,6,3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Lincoln,LS,2000,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2000,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2001,6,3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Lincoln,LS,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2001,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2001,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2002,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2002,6,3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Lincoln,LS,2002,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2003,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2003,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2004,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2004,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2004,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2004,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2005,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2005,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2005,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2005,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2006,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,LS,2006,8,3.9,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Lincoln,Mark LT,2006,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Lincoln,Mark LT,2006,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Lincoln,Mark LT,2007,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Lincoln,Mark LT,2007,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Lincoln,Mark LT,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Lincoln,Mark LT,2008,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Lincoln,Mark VII,1984,6,2.4,,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1984,8,5,,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1984,6,2.4,,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1985,6,2.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VII,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VIII,1993,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VIII,1994,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VIII,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VIII,1996,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VIII,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,Mark VIII,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Lincoln,MKC,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKC,2017,4,2.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKC,2017,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKC,2017,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKC ,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKC ,2015,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKC ,2015,4,2.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKC ,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKC ,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKC ,2016,4,2.3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKS,2009,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2009,6,3.7,Front-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2011,6,3.7,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2011,6,3.7,Front-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2012,6,3.7,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2013,6,3.7,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2013,6,3.7,Front-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2014,6,3.7,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2014,6,3.7,Front-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2015,6,3.7,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2015,6,3.7,Front-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2016,6,3.7,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKS,2016,6,3.7,Front-Wheel Drive,6-Speed Automatic,Large Cars +Lincoln,MKT,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKT,2010,6,3.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKT,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKT,2011,6,3.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKT,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKT,2011,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKT,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKT,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKT,2013,6,3.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKT,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKT,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKT,2014,6,3.7,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,MKT,2015,6,3.7,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,MKT,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,MKT,2016,6,3.7,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,MKT,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,MKT Hearse,2011,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKT Livery,2013,6,3.7,All-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Lincoln,MKT Livery,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Lincoln,MKT Livery,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Lincoln,MKT Livery,2014,6,3.7,All-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Lincoln,MKT Livery,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Lincoln,MKT Livery,2015,6,3.7,All-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Lincoln,MKT Livery,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Lincoln,MKT Livery,2016,6,3.7,All-Wheel Drive,6-Speed Automatic,Special Purpose Vehicle +Lincoln,MKX,2007,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2007,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2008,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2011,6,3.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2011,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2012,6,3.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2012,6,3.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,MKX,2013,6,3.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKX,2013,6,3.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKX,2014,6,3.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKX,2014,6,3.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKX,2015,6,3.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKX,2015,6,3.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKX,2016,6,3.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKX,2016,6,2.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKX,2016,6,2.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKX,2016,6,3.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Lincoln,MKZ,2007,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2007,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2008,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2011,6,3.5,4-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2013,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2013,6,3.7,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2013,6,3.7,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2014,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2014,6,3.7,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2014,6,3.7,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2015,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2015,6,3.7,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2015,6,3.7,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2016,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2016,6,3.7,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2016,6,3.7,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2017,4,2,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Lincoln,MKZ Hybrid,2011,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Lincoln,MKZ Hybrid,2012,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Lincoln,MKZ Hybrid,2013,4,2,Front-Wheel Drive,CVT,Midsize Cars +Lincoln,MKZ Hybrid,2014,4,2,Front-Wheel Drive,CVT,Midsize Cars +Lincoln,MKZ Hybrid,2015,4,2,Front-Wheel Drive,CVT,Midsize Cars +Lincoln,MKZ Hybrid,2016,4,2,Front-Wheel Drive,CVT,Midsize Cars +Lincoln,MKZ Hybrid,2017,4,2,Front-Wheel Drive,CVT,Midsize Cars +Lincoln,Navigator,1998,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Lincoln,Navigator,1998,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Lincoln,Navigator,1999,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,1999,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,1999,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,1999,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2000,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2000,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2001,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2001,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2002,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2002,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2003,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2004,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2005,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2006,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2007,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2008,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2009,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2010,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2011,8,5.4,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2011,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2012,8,5.4,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2012,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Navigator,2013,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator,2013,8,5.4,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator,2014,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator,2014,8,5.4,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator,2015,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator,2015,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator,2016,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator,2016,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator,2017,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator,2017,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator L,2015,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator L,2015,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator L,2016,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator L,2016,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator L,2017,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator L,2017,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Lincoln,Navigator Limo.,2011,8,5.4,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Lincoln,Town Car,1984,8,5,,4-Speed Automatic,Large Cars +Lincoln,Town Car,1984,8,5,,4-Speed Automatic,Large Cars +Lincoln,Town Car,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1991,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1992,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1992,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1993,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1994,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1996,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2000,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2005,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2006,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2006,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2007,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2007,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2008,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2008,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2009,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2010,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Town Car,2011,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Lincoln,Zephyr,2006,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +London Coach Co Inc,London Taxi,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Large Cars +London Taxi,London Taxi,2003,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Lotus,98 Esrit V8,1998,8,3.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Elan,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Elan,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Elan,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Elise/exige,2005,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2006,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2007,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2007,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2008,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2008,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2009,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2009,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2010,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2010,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2011,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Elise/Exige,2011,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Lotus,Espirit Turbo,1992,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit,1984,4,2.2,,5-Speed Manual,Two Seaters +Lotus,Esprit,1984,4,2.2,,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo,1985,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo,1988,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo,1989,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo,1989,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo,1989,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo,1990,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo,1991,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo,1993,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo,1994,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo,1995,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo HC PI,1987,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit Turbo HC PI,1987,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit V8,1997,8,3.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit V8,1999,8,3.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit V8,2001,8,3.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit V8,2002,8,3.5,,5-Speed Manual,Two Seaters +Lotus,Esprit V8,2003,8,3.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit V8,2004,8,3.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Esprit.v8,2000,8,3.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Lotus,Evora,2010,6,3.5,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Lotus,Evora,2011,6,3.5,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Lotus,Evora,2011,6,3.5,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Lotus,Evora,2011,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lotus,Evora,2011,6,3.5,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Lotus,Evora,2012,6,3.5,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Lotus,Evora,2012,6,3.5,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Lotus,Evora,2012,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lotus,Evora,2012,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lotus,Evora,2013,6,3.5,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Lotus,Evora,2013,6,3.5,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Lotus,Evora,2013,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lotus,Evora,2013,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lotus,Evora,2014,6,3.5,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Lotus,Evora,2014,6,3.5,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Lotus,Evora,2014,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Lotus,Evora,2014,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Mahindra,TR40,2011,4,2.2,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Maserati,225,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Maserati,228,1989,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Maserati,228,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Maserati,228,1990,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Maserati,228,1990,6,2.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Maserati,430,1989,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Maserati,430,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Maserati,430,1990,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Maserati,430,1990,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Maserati,430,1991,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Maserati,222E,1989,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Maserati,222E,1990,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Maserati,222E,1990,6,2.8,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Maserati,Biturbo,1984,6,2.5,,5-Speed Manual,Minicompact Cars +Maserati,Biturbo,1984,6,2.5,,5-Speed Manual,Minicompact Cars +Maserati,Biturbo,1985,6,2.5,Rear-Wheel Drive,3-Speed Automatic,Minicompact Cars +Maserati,Biturbo,1985,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Maserati,Biturbo,1985,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Maserati,Biturbo,1985,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Maserati,Biturbo,1986,6,2.5,Rear-Wheel Drive,3-Speed Automatic,Minicompact Cars +Maserati,Biturbo,1987,6,2.5,Rear-Wheel Drive,3-Speed Automatic,Minicompact Cars +Maserati,Biturbo,1987,6,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Maserati,Biturbo 425,1986,6,2.5,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Maserati,Biturbo 425,1987,6,2.5,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Maserati,Biturbo 425,1987,6,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Maserati,Biturbo Spyder,1986,6,2.5,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Maserati,Biturbo Spyder,1987,6,2.5,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Maserati,Biturbo Spyder,1987,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Maserati,Coupe and Gransport,2005,8,4.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Maserati,Coupe and Gransport,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,Coupe Cambiocorsa/coupe GT,2002,8,4.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Maserati,Coupe Cambiocorsa/coupe GT,2002,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,Coupe Cambiocorsa/Coupe GT,2003,8,4.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Maserati,Coupe Cambiocorsa/Coupe GT,2003,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,Coupe Cambiocorsa/Coupe GT,2004,8,4.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Maserati,Coupe Cambiocorsa/Coupe GT,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,Coupe Cambiocorsa/GT/G-Sport,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,Coupe Cambiocorsa/GT/G-Sport,2006,8,4.2,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Maserati,Ghibli S RWD,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Maserati,Ghibli V6,2014,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Maserati,Ghibli V6,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Maserati,Ghibli V6,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Maserati,Ghibli V6,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Maserati,Ghibli V6 SQ4,2015,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Maserati,Ghibli V6 SQ4,2016,6,3,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Maserati,GranTurismo,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2010,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2010,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2011,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2011,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2012,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2013,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2014,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2015,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2016,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo,2017,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo Convertible,2010,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo Convertible,2011,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo Convertible,2012,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo Convertible,2013,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo Convertible,2014,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo Convertible,2015,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo Convertible,2016,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,GranTurismo Convertible,2017,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Maserati,Karif,1989,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Maserati,Karif,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Maserati,Karif,1990,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Maserati,Karif,1990,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Maserati,Q,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Two Seaters +Maserati,Quattroporte,1984,8,4.9,,3-Speed Automatic,Midsize Cars +Maserati,Quattroporte,1984,8,4.9,,3-Speed Automatic,Midsize Cars +Maserati,Quattroporte,1985,8,4.9,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Maserati,Quattroporte,1986,8,4.9,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Maserati,Quattroporte,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte,2006,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte,2008,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte,2009,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte,2010,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte,2010,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte,2011,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte,2011,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte,2012,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte,2013,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte GTS,2014,8,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Maserati,Quattroporte GTS,2015,8,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Maserati,Quattroporte GTS,2016,8,3.8,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Maserati,Quattroporte S,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Maserati,Quattroporte SQ4 V6,2014,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Maserati,Quattroporte SQ4 V6,2015,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Maserati,Quattroporte SQ4 V6,2016,6,3,All-Wheel Drive,8-Speed Automatic,Large Cars +Maserati,Quattroporte/QP Sport GT,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Quattroporte/QP Sport GT,2007,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Maserati,Spider Cambiocorsa/spider GT,2002,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Maserati,Spider Cambiocorsa/spider GT,2002,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Maserati,Spider Cambiocorsa/Spider GT,2003,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Maserati,Spider Cambiocorsa/Spider GT,2003,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Maserati,Spider Cambiocorsa/Spider GT,2004,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Maserati,Spider Cambiocorsa/Spider GT,2004,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Maserati,Spyder,1989,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Maserati,Spyder,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Maserati,Spyder,1990,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Maserati,Spyder,1990,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Maserati,Spyder,1991,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Maserati,Spyder,1991,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Maserati,Spyder Cambiocorsa/GT/90 ANV,2005,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Maserati,Spyder Cambiocorsa/GT/90 ANV,2005,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Maybach,57,2004,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57,2005,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57,2006,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57,2007,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57,2008,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57,2009,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57,2010,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57,2011,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57,2012,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62,2004,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62,2005,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62,2006,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62,2007,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62,2008,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62,2009,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62,2011,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62,2012,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57 S,2011,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57 S,2012,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57 Zeppelin,2010,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57S,2006,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57S,2007,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57S,2008,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57S,2009,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,57S,2010,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62 S,2011,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62 S,2012,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62S,2007,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62S,2008,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,62S,2009,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Maybach,Landaulet,2012,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mazda,2,2011,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,2,2011,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,2,2012,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,2,2012,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,2,2013,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,2,2013,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,2,2014,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,2,2014,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,2,2016,4,1.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,2,2016,4,1.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,3,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,3,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2004,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,3,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,3,2005,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2005,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,3,2006,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,3,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2006,4,2.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2007,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,3,2007,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2007,4,2.3,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3,2007,4,2.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2008,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,3,2008,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2008,4,2.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2009,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2009,4,2.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2009,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,3,2010,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2010,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2010,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3,2010,4,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2011,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2011,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2011,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3,2011,4,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2012,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3,2012,4,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2012,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2012,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2013,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,3,2013,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,3,2013,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3,2013,4,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Mazda,5,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Mazda,5,2006,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mazda,5,2007,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Mazda,5,2007,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mazda,5,2008,4,2.3,Front-Wheel Drive,5-Speed Manual,Minivan +Mazda,5,2008,4,2.3,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,5,2009,4,2.3,Front-Wheel Drive,5-Speed Manual,Minivan +Mazda,5,2009,4,2.3,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,5,2010,4,2.3,Front-Wheel Drive,5-Speed Manual,Minivan +Mazda,5,2010,4,2.3,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,5,2012,4,2.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,5,2012,4,2.5,Front-Wheel Drive,6-Speed Manual,Minivan +Mazda,5,2013,4,2.5,Front-Wheel Drive,6-Speed Manual,Minivan +Mazda,5,2013,4,2.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,5,2014,4,2.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,5,2014,4,2.5,Front-Wheel Drive,6-Speed Manual,Minivan +Mazda,5,2015,4,2.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,6,2003,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2003,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,6,2003,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2003,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mazda,6,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2004,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,6,2004,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2004,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mazda,6,2005,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2005,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,6,2005,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2005,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2006,4,2.3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,6,2006,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mazda,6,2006,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2006,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2007,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2007,4,2.3,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,6,2007,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mazda,6,2007,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2007,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2008,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2008,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mazda,6,2008,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,6,2008,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2009,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,6,2009,4,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mazda,6,2009,6,3.7,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2010,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,6,2010,6,3.7,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2010,4,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mazda,6,2011,6,3.7,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2011,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,6,2011,4,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mazda,6,2012,4,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mazda,6,2012,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,6,2012,6,3.7,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2013,6,3.7,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2013,4,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mazda,6,2013,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,6,2014,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,6,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2015,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,6,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,6,2016,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,323,1986,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mazda,323,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mazda,323,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mazda,323,1987,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mazda,323,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1988,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323,1988,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mazda,323,1988,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1989,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323,1989,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mazda,323,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1989,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1993,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323,1993,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1994,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323,1994,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323,1995,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,626,1984,4,2,,3-Speed Automatic,Compact Cars +Mazda,626,1984,4,2,,5-Speed Manual,Compact Cars +Mazda,626,1984,4,2,,5-Speed Manual,Compact Cars +Mazda,626,1984,4,2,,3-Speed Automatic,Compact Cars +Mazda,626,1984,4,2,,5-Speed Manual,Compact Cars +Mazda,626,1984,4,2,,5-Speed Manual,Compact Cars +Mazda,626,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mazda,626,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,626,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,626,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mazda,626,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,626,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,626,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,626,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,626,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,626,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1993,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1993,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1993,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1994,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1994,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1994,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1995,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1995,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1996,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1996,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1997,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1997,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1998,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1998,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1999,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,1999,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,2000,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,2000,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,2001,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,2001,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,2001,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,2002,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626,2002,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626,2002,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,929,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,929,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,929,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,929,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,929,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,929,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,929,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,929,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,929,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,929,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,929,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,929,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,2500,2000,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,2500,2000,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,3 4-Door,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 4-Door,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3 4-Door,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 4-Door,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 4-Door,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3 4-Door,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 4-Door,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 4-Door,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 4-Door,2015,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3 4-Door,2016,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3 4-Door,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 4-Door,2016,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3 4-Door,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 4-Door,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 5-Door,2014,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,3 5-Door,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,3 5-Door,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,3 5-Door,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,3 5-Door,2015,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,3 5-Door,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,3 5-Door,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,3 5-Door,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,3 5-Door,2015,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,3 5-Door,2016,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,3 5-Door,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,3 5-Door,2016,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,3 5-Door,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,3 5-Door,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,3 DI 4-Door,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3 DI 4-Door,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 DI 4-Door,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Mazda,3 DI 4-Door,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,3 DI 5-Door,2012,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,3 DI 5-Door,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,3 DI 5-Door,2013,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,3 DI 5-Door,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mazda,323 Protege 4x4,1991,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323 Protege 4x4,1991,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323 Wagon,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mazda,323 Wagon,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mazda,323 Wagon,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mazda,323 Wagon,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mazda,323 Wagon,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mazda,323 Wagon,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mazda,323/323 Protege,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323/323 Protege,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323/323 Protege,1990,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323/323 Protege,1990,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323/323 Protege,1990,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323/323 Protege,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323/323 Protege,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323/323 Protege,1990,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323/323 Protege,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323/323 Protege,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323/323 Protege,1991,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323/323 Protege,1991,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,323/323 Protege,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,323/323 Protege,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,6 Sport Wagon,2004,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Mazda,6 Sport Wagon,2004,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mazda,6 Sport Wagon,2005,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Mazda,6 Sport Wagon,2005,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Mazda,6 Sport Wagon,2006,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Mazda,6 Sport Wagon,2006,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Mazda,6 Sport Wagon,2007,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Mazda,6 Sport Wagon,2007,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Mazda,626/MX-6,1988,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626/MX-6,1988,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626/MX-6,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626/MX-6,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626/MX-6,1989,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626/MX-6,1989,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626/MX-6,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626/MX-6,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626/MX-6,1990,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626/MX-6,1990,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626/MX-6,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626/MX-6,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626/MX-6,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626/MX-6,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626/MX-6,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626/MX-6,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626/MX-6,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626/MX-6,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mazda,626/MX-6,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,626/MX-6,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mazda,B2000,1986,4,2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mazda,B2000,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2000/B2200 Pickup,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mazda,B2000/B2200 Pickup,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mazda,B2000/B2200 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2000/B2200 Pickup,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2000/B2200 Pickup,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mazda,B2000/B2200 Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2000/B2200 Pickup,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2000/B2200/B2600,1987,4,2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mazda,B2000/B2200/B2600,1987,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2000/B2200/B2600,1987,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mazda,B2000/B2200/B2600,1987,4,2.2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mazda,B2000/B2200/B2600,1987,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2000/B2200/B2600,1987,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mazda,B2000/B2200/B2600,1987,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2200/B2600,1988,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mazda,B2200/B2600,1988,4,2.2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mazda,B2200/B2600,1988,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2200/B2600,1988,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mazda,B2200/B2600,1988,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2200/B2600,1989,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mazda,B2200/B2600,1989,4,2.2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mazda,B2200/B2600,1989,4,2.2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2200/B2600i,1990,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1990,4,2.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1990,4,2.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1990,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1990,4,2.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1990,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1990,4,2.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1991,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1991,4,2.2,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1991,4,2.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1991,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1991,4,2.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1991,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1991,4,2.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1992,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1992,4,2.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1992,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1992,4,2.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1992,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1992,4,2.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1993,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1993,4,2.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1993,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1993,4,2.2,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2200/B2600i,1993,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2200/B2600i,1993,4,2.6,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300,2001,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2300,2001,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300,2002,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2300,2002,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300,2003,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2300,2003,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300,2004,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2300,2004,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300,2005,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2300,2005,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300,2006,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2300,2006,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300,2007,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2300,2007,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300,2008,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Mazda,B2300,2008,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2300,2009,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Mazda,B2300,2009,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1994,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1995,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,6,4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1996,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1997,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1997,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1997,4,2.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1997,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1997,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1997,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1997,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1997,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2300/B3000/B4000 Pickup,1997,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2500,1999,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2500,1999,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2500,2001,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2500,2001,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2500/B3000/B4000,1998,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2500/B3000/B4000,1998,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2500/B3000/B4000,1998,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2500/B3000/B4000,1998,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2500/B3000/B4000,1998,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2500/B3000/B4000,1998,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2500/B3000/B4000,1998,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2500/B3000/B4000,1998,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2500/B3000/B4000,1998,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B2500/B3000/B4000,1998,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2600 4x4,1987,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mazda,B2600 4x4,1987,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2600 4x4,1988,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mazda,B2600 4x4,1988,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2600i 4x4,1989,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B2600i 4x4,1990,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2600i 4x4,1990,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2600i 4x4,1991,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2600i 4x4,1991,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2600i 4x4,1992,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2600i 4x4,1992,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B2600i 4x4,1993,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B2600i 4x4,1993,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,1999,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,1999,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,1999,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,1999,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2000,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2000,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2000,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2000,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2001,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2001,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2001,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2002,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2002,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2002,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2003,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2003,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2004,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2004,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2005,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2005,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2006,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2006,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2007,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B3000,2007,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B3000,2008,6,3,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Mazda,B3000,2008,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B3000 (FFV) Ethanol,2001,6,3,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,1999,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,1999,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,1999,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,1999,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2000,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2000,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2000,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2000,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2001,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2001,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2002,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2002,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2003,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2003,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2004,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2004,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2004,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2004,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2005,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2006,6,4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mazda,B4000,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mazda,B4000,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Mazda,B4000,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Mazda,B4000,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B4000,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mazda,B4000,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Mazda,CX-3,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,CX-3,2016,4,2,4-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,CX-3,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,CX-3,2017,4,2,4-Wheel Drive,6-Speed Automatic,Compact Cars +Mazda,CX-5,2013,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2013,4,2,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Mazda,CX-5,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2014,4,2,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Mazda,CX-5,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2014,4,2.5,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2014,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2015,4,2,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Mazda,CX-5,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2015,4,2,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2015,4,2.5,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2016,4,2,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Mazda,CX-5,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-5,2016,4,2.5,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-7,2007,4,2.3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2007,4,2.3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2008,4,2.3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2008,4,2.3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2009,4,2.3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2009,4,2.3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2010,4,2.3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2010,4,2.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2010,4,2.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2011,4,2.3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2011,4,2.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2011,4,2.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2012,4,2.3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2012,4,2.3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-7,2012,4,2.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2007,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2007,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2008,6,3.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2008,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2009,6,3.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2009,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2010,6,3.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2010,6,3.7,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2011,6,3.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2011,6,3.7,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2012,6,3.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2012,6,3.7,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,CX-9,2013,6,3.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-9,2013,6,3.7,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-9,2014,6,3.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-9,2014,6,3.7,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-9,2015,6,3.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-9,2015,6,3.7,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-9,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,CX-9,2016,4,2.5,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mazda,GLC,1984,4,1.5,,3-Speed Automatic,Subcompact Cars +Mazda,GLC,1984,4,1.5,,4-Speed Manual,Subcompact Cars +Mazda,GLC,1984,4,1.5,,5-Speed Manual,Subcompact Cars +Mazda,GLC,1984,4,1.5,,3-Speed Automatic,Subcompact Cars +Mazda,GLC,1984,4,1.5,,4-Speed Manual,Subcompact Cars +Mazda,GLC,1984,4,1.5,,5-Speed Manual,Subcompact Cars +Mazda,GLC,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mazda,GLC,1985,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mazda,GLC,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,GLC,1985,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mazda,GLC Wagon,1984,4,1.5,,3-Speed Automatic,Small Station Wagons +Mazda,GLC Wagon,1984,4,1.5,,4-Speed Manual,Small Station Wagons +Mazda,GLC Wagon,1984,4,1.5,,5-Speed Manual,Small Station Wagons +Mazda,GLC Wagon,1985,4,1.5,Rear-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mazda,GLC Wagon,1985,4,1.5,Rear-Wheel Drive,4-Speed Manual,Small Station Wagons +Mazda,GLC Wagon,1985,4,1.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +Mazda,GLC Wagon,1986,4,1.5,Rear-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mazda,GLC Wagon,1986,4,1.5,Rear-Wheel Drive,4-Speed Manual,Small Station Wagons +Mazda,GLC Wagon,1986,4,1.5,Rear-Wheel Drive,5-Speed Manual,Small Station Wagons +Mazda,Millenia,1995,6,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,1996,6,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,1997,6,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,1998,6,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,1999,6,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,2000,6,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,2001,6,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,2001,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,2002,6,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Millenia,2002,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,MPV,1989,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1989,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,MPV,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,MPV,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,MPV,1989,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1990,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1990,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,MPV,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,MPV,1991,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1991,4,2.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,MPV,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1992,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1993,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1994,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1995,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,1998,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Mazda,MPV,2001,6,2.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Mazda,MPV,2002,6,3,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,MPV,2003,6,3,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,MPV,2004,6,3,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,MPV,2005,6,3,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,MPV,2006,6,3,Front-Wheel Drive,5-Speed Automatic,Minivan +Mazda,MPV 4x4,1990,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV 4x4,1990,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,MPV 4x4,1991,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV 4x4,1991,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,MPV 4x4,1992,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV 4x4,1992,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,MPV 4x4,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV 4x4,1994,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV 4x4,1994,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV 4x4,1995,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV 4x4,1996,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV 4x4,1997,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MPV 4x4,1998,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,MX-3,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-3,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-3,1992,6,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-3,1992,6,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-3,1993,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-3,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-3,1993,6,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-3,1993,6,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-3,1994,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-3,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-3,1994,6,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-3,1994,6,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-3,1995,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-3,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-3,1995,6,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-3,1995,6,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-3,1996,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-3,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-3,1996,6,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-3,1996,6,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-5,2006,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5,2006,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2006,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5,2007,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5,2007,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2007,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5,2008,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5,2008,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2008,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5,2009,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5,2009,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2009,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5,2010,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5,2010,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2010,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5,2011,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5,2011,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2011,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5,2012,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5,2012,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2012,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5,2013,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5,2013,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2013,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5,2014,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5,2014,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2014,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5,2015,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5,2015,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2015,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5,2016,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5,2016,4,2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,1990,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,1990,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,1991,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,1991,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,1992,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,1992,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,1993,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,1993,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,1994,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,1994,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,1995,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,1995,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,1996,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,1996,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,1997,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,1997,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,1999,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,1999,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,1999,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2000,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,2000,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2000,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2001,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,2001,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2001,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2002,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,2002,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2002,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2003,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,2003,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2003,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2004,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,2004,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2004,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2004,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2005,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,MX-5 Miata,2005,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2005,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-5 Miata,2005,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mazda,MX-6,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-6,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-6,1993,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-6,1993,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-6,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-6,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-6,1994,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-6,1994,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-6,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-6,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-6,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-6,1995,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-6,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-6,1996,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-6,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-6,1996,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-6,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-6,1997,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,MX-6,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,MX-6,1997,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mazda,Navajo,1991,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,Navajo,1991,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,Navajo,1991,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,Navajo,1991,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,Navajo,1992,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,Navajo,1992,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,Navajo,1993,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,Navajo,1993,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,Navajo,1994,6,4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,Navajo,1994,6,4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,Navajo 4x4,1992,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,Navajo 4x4,1992,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,Navajo 4x4,1993,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,Navajo 4x4,1993,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,Navajo 4x4,1994,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mazda,Navajo 4x4,1994,6,4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mazda,Protege,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1995,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1996,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1996,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1997,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1997,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1998,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1998,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1998,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1999,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1999,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,1999,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,2000,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,2000,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege/Protege 5,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege/Protege 5,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege/Protege 5,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege/Protege 5,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege/Protege 5,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege/Protege 5,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege/Protege 5,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege/Protege MPS,2001,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege/Protege MPS,2001,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,Protege/Protege MPS,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mazda,Protege/Protege MPS,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mazda,RX-7,1984,2,1.1,,4-Speed Automatic,Two Seaters +Mazda,RX-7,1984,2,1.1,,5-Speed Manual,Two Seaters +Mazda,RX-7,1984,2,1.3,,5-Speed Manual,Two Seaters +Mazda,RX-7,1984,2,1.1,,4-Speed Automatic,Two Seaters +Mazda,RX-7,1984,2,1.1,,5-Speed Manual,Two Seaters +Mazda,RX-7,1984,2,1.3,,5-Speed Manual,Two Seaters +Mazda,RX-7,1985,2,1.1,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1985,2,1.1,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1985,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1985,2,1.1,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1985,2,1.1,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1986,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mazda,RX-7,1986,NA,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1987,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1987,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1987,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1988,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1988,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1988,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1989,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1989,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1989,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1990,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1990,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1990,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1991,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1991,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1991,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1992,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1992,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1993,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1993,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1994,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1994,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-7,1995,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mazda,RX-7,1995,2,1.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mazda,RX-8,2004,2,1.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Mazda,RX-8,2004,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,RX-8,2005,2,1.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Mazda,RX-8,2005,2,1.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mazda,RX-8,2006,2,1.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Mazda,RX-8,2006,2,1.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Mazda,RX-8,2007,2,1.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Mazda,RX-8,2007,2,1.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Mazda,RX-8,2008,2,1.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Mazda,RX-8,2008,2,1.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Mazda,RX-8,2009,2,1.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Mazda,RX-8,2009,2,1.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Mazda,RX-8,2010,2,1.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Mazda,RX-8,2010,2,1.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Mazda,RX-8,2011,2,1.3,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Mazda,RX-8,2011,2,1.3,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Mazda,Speed 3,2008,4,2.3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,Speed 3,2009,4,2.3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,Speed 3,2010,4,2.3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,Speed 3,2011,4,2.3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,Speed 3,2012,4,2.3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,Speed 3,2013,4,2.3,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mazda,Tribute,2001,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2001,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2002,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2002,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2003,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2003,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2004,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2004,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2004,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2005,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2005,4,2.3,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2005,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2005,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2005,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2006,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2006,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2006,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2006,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2006,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2008,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2008,4,2.3,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2008,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2008,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2008,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2009,4,2.5,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2009,4,2.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2009,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2009,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2010,4,2.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2010,4,2.5,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2010,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2010,4,2.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2010,6,3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2011,4,2.5,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mazda,Tribute,2011,4,2.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute,2011,4,2.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mazda,Tribute Hybrid,2006,4,2.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Mazda,Tribute Hybrid,2008,4,2.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mazda,Tribute Hybrid,2008,4,2.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Mazda,Tribute Hybrid,2009,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mazda,Tribute Hybrid,2009,4,2.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Mazda,Tribute Hybrid,2010,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mazda,Tribute Hybrid,2010,4,2.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Mazda,Tribute Hybrid,2011,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mazda,Tribute Hybrid,2011,4,2.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Mcevoy Motors,240 DL/240 GL Sedan,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mcevoy Motors,240 DL/240 GL Sedan,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mcevoy Motors,240 DL/240 GL Wagon,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mcevoy Motors,240 DL/240 GL Wagon,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mcevoy Motors,740 GLE Sedan,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mcevoy Motors,740 GLE Wagon,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +McLaren Automotive,570S Coupe,2016,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +McLaren Automotive,650S Coupe,2015,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +McLaren Automotive,650S Coupe,2016,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +McLaren Automotive,650S Spider,2015,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +McLaren Automotive,650S Spider,2016,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +McLaren Automotive,675LT Coupe,2016,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +McLaren Automotive,MP4-12C Coupe,2012,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +McLaren Automotive,MP4-12C Coupe,2014,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +McLaren Automotive,MP4-12C Spider,2014,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +McLaren Automotive,P1,2014,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +McLaren Automotive,P1,2015,8,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,190,1985,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190,1985,4,2.2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190,1985,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190,1986,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190,1986,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190,1986,5,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190,1986,5,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190 D 2.2/190 E 2.3,1984,4,2.2,,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190 D 2.2/190 E 2.3,1984,4,2.2,,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190 D 2.2/190 E 2.3,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190 D 2.2/190 E 2.3,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190 D 2.2/190 E 2.3,1984,4,2.3,,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190 D 2.2/190 E 2.3,1984,4,2.3,,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190 D 2.2/190 E 2.3,1984,4,2.2,,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190 D 2.2/190 E 2.3,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190 D 2.2/190 E 2.3,1984,4,2.3,,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190 D 2.2/190 E 2.3,1984,4,2.3,,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190D 2.5,1987,5,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190D 2.5,1987,5,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190D 2.5,1988,5,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190D 2.5,1989,5,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190D 2.5 Turbo,1987,5,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E,1991,4,2,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Mercedes-Benz,190E,1991,4,2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,190E 2.3,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.3,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.3,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.3,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.3,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.3,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.3,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.3,1992,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.3,1993,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.3,1993,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.3-16,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.3-16,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.6,1987,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.6,1988,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.6,1988,6,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.6,1989,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.6,1989,6,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.6,1990,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.6,1990,6,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.6,1991,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.6,1991,6,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.6,1992,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.6,1992,6,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,190E 2.6,1993,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,190E 2.6,1993,6,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercedes-Benz,200E,1991,4,2,Rear-Wheel Drive,4-Speed Manual,Compact Cars +Mercedes-Benz,230CE,1991,4,2,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Mercedes-Benz,230E,1991,4,2,Rear-Wheel Drive,4-Speed Manual,Compact Cars +Mercedes-Benz,230E,1991,4,2,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,230TE,1991,4,2,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Mercedes-Benz,260E,1987,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,260E,1988,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,260E,1988,6,2.6,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Mercedes-Benz,260E,1989,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,260E,1991,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,300CE,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,300CE,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,300CE,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,300CE,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,300CE,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,300CE,1993,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,300D,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300D 2.5 Turbo,1990,5,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300D 2.5 Turbo,1991,5,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300D 2.5 Turbo,1992,5,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300D 2.5 Turbo,1993,5,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300D/300CD,1984,5,3,,4-Speed Automatic,Compact Cars +Mercedes-Benz,300D/300CD,1984,5,3,,4-Speed Automatic,Compact Cars +Mercedes-Benz,300D/300CD,1984,5,3,,4-Speed Automatic,Compact Cars +Mercedes-Benz,300D/300CD,1985,5,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300D/300CD,1985,5,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E,1986,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Mercedes-Benz,300E,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Mercedes-Benz,300E,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,300E,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E,1993,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E 2.6,1990,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E 2.6,1991,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E 2.6,1992,6,2.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E 2.8,1993,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E 4Matic,1990,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E 4Matic,1991,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E 4Matic,1992,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300E 4Matic,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SD,1985,5,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SD,1985,5,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SD,1992,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,300SD,1993,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,300SD/380SE,1984,5,3,,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SD/380SE,1984,5,3,,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SD/380SE,1984,8,3.8,,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SD/380SE,1984,5,3,,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SD/380SE,1984,8,3.8,,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SDL,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,300SDL,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,300SE,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SE,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SE,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SE,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,300SE,1992,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,300SE,1993,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,300SEL,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,300SEL,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,300SEL,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,300SEL,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,300SEL,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,300SEL,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,300SEL,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,300SEL,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,300SL,1990,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,300SL,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mercedes-Benz,300SL,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,300SL,1991,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,300SL,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mercedes-Benz,300SL,1992,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,300SL,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mercedes-Benz,300SL,1993,6,3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,300SL,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mercedes-Benz,300TD,1984,5,3,,4-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,300TD,1984,5,3,,4-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,300TD,1984,5,3,,4-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,300TD,1985,5,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TD,1985,5,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TD,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TE,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TE,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TE,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TE,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TE,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TE,1993,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TE 4Matic,1990,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TE 4Matic,1991,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TE 4Matic,1992,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,300TE 4Matic,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,350SD Turbo,1991,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,350SDL Turbo,1990,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,350SDL Turbo,1991,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,380SE,1985,8,3.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,380SL,1984,8,3.8,,4-Speed Automatic,Two Seaters +Mercedes-Benz,380SL,1984,8,3.8,,4-Speed Automatic,Two Seaters +Mercedes-Benz,380SL,1985,8,3.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,400E,1992,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,400E,1993,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,400SE,1992,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,400SEL,1993,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,420 SE,1991,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,420SE,1990,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,420SEL,1986,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,420SEL,1987,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,420SEL,1988,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,420SEL,1989,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,420SEL,1990,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,420SEL,1991,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500E,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,500E,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,500SE,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500SE,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500SE,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500SEC,1984,8,5,,4-Speed Automatic,Compact Cars +Mercedes-Benz,500SEC,1984,8,5,,4-Speed Automatic,Compact Cars +Mercedes-Benz,500SEC,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,500SEC,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,500SEC,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,500SEC,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,500SEC,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500SEL,1984,8,5,,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500SEL,1984,8,5,,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500SEL,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500SEL,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500SEL,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500SEL,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,500SEL 5.0L,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,500SEL 5.6L,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,500SL,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,500SL,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,500SL,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,500SL,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,500SL,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,500SL,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,500SL,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mercedes-Benz,500SL,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,560SE,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,560SEC,1986,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,560SEC,1987,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,560SEC,1988,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,560SEC,1989,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,560SEC,1990,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,560SEC,1991,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,560SEC,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,560SEL,1986,8,5.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,560SEL,1987,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,560SEL,1988,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,560SEL,1989,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,560SEL,1990,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,560SEL,1991,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,560SEL,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercedes-Benz,560SL,1986,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,560SL,1987,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,560SL,1988,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,560SL,1989,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,560SL,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mercedes-Benz,600SEL,1992,12,6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,600SEL/SEC,1993,12,6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,600SL,1993,12,6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,AMG C63,2015,8,4,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,AMG C63,2016,8,4,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,AMG C63 S,2015,8,4,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,AMG C63 S,2016,8,4,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,AMG CLA45 4matic,2016,4,2,4-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,AMG CLS63 S 4matic,2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,AMG E63 4matic,2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,AMG E63 S 4matic,2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,AMG E63 S 4matic (wagon),2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,AMG G63,2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,AMG G65,2016,12,6,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,AMG GL63,2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,AMG GLA45 4matic,2016,4,2,4-Wheel Drive,7-Speed Automated Manual,Midsize Station Wagons +Mercedes-Benz,AMG GLE63,2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,AMG GLE63 S,2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,AMG GLE63 S Coupe,2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,AMG GLS63,2017,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,AMG GT S,2016,8,4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,AMG S63 4matic,2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,AMG S63 4matic Coupe,2016,8,5.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,AMG S65,2016,12,6,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,AMG S65 Coupe,2016,12,6,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,AMG SL63,2016,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,AMG SL65,2016,12,6,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,AMG SLK55,2016,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,B-Class Electric Drive,2014,,,Front-Wheel Drive,1-Speed Direct Drive,Midsize Cars +Mercedes-Benz,B-Class Electric Drive,2015,,,Front-Wheel Drive,1-Speed Direct Drive,Midsize Cars +Mercedes-Benz,B250e,2016,,,Front-Wheel Drive,1-Speed Direct Drive,Midsize Cars +Mercedes-Benz,C220,1994,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,C220,1995,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,C220,1996,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,C230,1997,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230,1998,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230,2006,6,2.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C230,2006,6,2.5,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C230,2007,6,2.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C230,2007,6,2.5,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C230 Kompressor,1999,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230 Kompressor,2000,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230 Kompressor,2002,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230 Kompressor,2002,4,2.3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C230 Kompressor,2003,4,1.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230 Kompressor,2003,4,1.8,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C230 Kompressor,2003,4,1.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230 Kompressor,2003,4,1.8,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C230 Kompressor,2004,4,1.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230 Kompressor,2004,4,1.8,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C230 Kompressor,2005,4,1.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230 Kompressor,2005,4,1.8,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C230 Kompressor Sports Coupe,2004,4,1.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230 Kompressor Sports Coupe,2004,4,1.8,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C230 Kompressor Sports Coupe,2005,4,1.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C230 Kompressor Sports Coupe,2005,4,1.8,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C240,2001,6,2.6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C240,2001,6,2.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C240,2002,6,2.6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C240,2002,6,2.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C240,2003,6,2.6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C240,2003,6,2.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C240,2004,6,2.6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C240,2004,6,2.6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C240,2004,6,2.6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C240,2005,6,2.6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C240 (Wagon),2003,6,2.6,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C240 (Wagon),2003,6,2.6,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +Mercedes-Benz,C240 (Wagon),2004,6,2.6,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +Mercedes-Benz,C240 (Wagon),2004,6,2.6,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C240 (Wagon),2004,6,2.6,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C240 (Wagon),2005,6,2.6,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C240 4matic,2003,6,2.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C240 4matic,2004,6,2.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C240 4matic,2005,6,2.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C240 4matic (Wagon),2003,6,2.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C240 4matic (Wagon),2004,6,2.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C240 4matic (Wagon),2005,6,2.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C250,2012,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C250,2013,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C250,2014,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C250 Coupe,2012,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C250 Coupe,2013,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C250 Coupe,2014,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C250 Coupe,2015,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C280,1994,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,C280,1995,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,C280,1996,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,C280,1997,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C280,1998,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C280,1999,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C280,2000,6,2.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C280,2006,6,3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C280,2007,6,3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C280 4matic,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C280 4matic,2007,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C300,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C300,2008,6,3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300,2009,6,3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C300,2010,6,3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300,2011,6,3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300,2011,6,3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C300,2015,4,2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300,2016,4,2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2008,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2009,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2010,6,3,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2010,6,3.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2011,6,3,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2011,6,3,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2012,6,3,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2012,6,3,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2015,4,2,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 4matic,2016,4,2,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C300 Coupe,2017,4,2,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C300 Coupe 4matic,2017,4,2,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C32 AMG,2002,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C32 AMG,2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C32 AMG,2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320,2001,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320,2002,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320,2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320,2003,6,3.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C320,2004,6,3.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C320,2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320,2005,6,3.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C320,2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320 (Wagon),2002,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C320 (Wagon),2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C320 (Wagon),2003,6,3.2,Rear-Wheel Drive,6-Speed Manual,Small Station Wagons +Mercedes-Benz,C320 (Wagon),2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C320 4matic,2003,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320 4matic,2005,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320 4matic (Wagon),2003,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C320 4matic (Wagon),2004,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Mercedes-Benz,C320 4matic Sedan,2004,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320 Sports Coupe,2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320 Sports Coupe,2003,6,3.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C320 Sports Coupe,2004,6,3.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C320 Sports Coupe,2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C320 Sports Coupe,2005,6,3.2,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C320 Sports Coupe,2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2006,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2006,6,3.5,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C350,2007,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2007,6,3.5,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Mercedes-Benz,C350,2008,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2009,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C350 4matic,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C350 4matic,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C350 4matic Coupe,2012,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C350 4matic Coupe,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C350 4matic Coupe,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C350 4matic Coupe,2015,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C350 Coupe,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C350 Coupe,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C350 Coupe,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C350 Coupe,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C36,1995,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,C36 AMG,1996,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,C36 AMG,1997,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C400 4matic,2015,6,3,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C43,1998,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C43 AMG,1999,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C43 AMG,2000,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C450 AMG,2016,6,3,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C55 AMG,2005,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C55 AMG,2006,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,C63 AMG,2008,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C63 AMG,2009,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C63 AMG,2010,8,6.3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C63 AMG,2011,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C63 AMG,2012,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C63 AMG,2013,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C63 AMG,2014,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,C63 AMG Black Series Coupe,2012,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C63 AMG Black Series Coupe,2013,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C63 AMG Coupe,2012,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C63 AMG Coupe,2013,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C63 AMG Coupe,2014,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,C63 AMG Coupe,2015,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CL500,1998,8,5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL500,1999,8,5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL500,2000,8,5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL500,2001,8,5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL500,2002,8,5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL500,2003,8,5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL500,2004,8,5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL500,2005,8,5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL500,2006,8,5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL55 AMG,2001,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL55 AMG,2002,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL55 AMG,2003,8,5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL55 AMG,2004,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL55 AMG,2005,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL55 AMG,2006,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL550,2007,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL550,2008,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL550 4matic,2009,8,5.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL550 4matic,2010,8,5.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL550 4matic,2011,8,4.7,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL550 4matic,2012,8,4.7,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL550 4matic,2013,8,4.7,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL550 4matic,2014,8,4.7,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,1998,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,1999,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2001,12,5.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2002,12,5.8,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2003,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2004,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2005,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2006,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2007,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2008,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2009,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2010,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2011,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2012,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2013,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL600,2014,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL63 AMG,2008,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL63 AMG,2009,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL63 AMG,2010,8,6.3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL63 AMG,2011,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL63 AMG,2012,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL63 AMG,2013,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL63 AMG,2014,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CL65 AMG,2005,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL65 AMG,2006,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL65 AMG,2008,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL65 AMG,2009,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL65 AMG,2010,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL65 AMG,2011,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL65 AMG,2012,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL65 AMG,2013,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CL65 AMG,2014,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CLA250,2014,4,2,Front-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,CLA250,2015,4,2,Front-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,CLA250,2016,4,2,Front-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,CLA250 4matic,2014,4,2,4-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,CLA250 4matic,2015,4,2,4-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,CLA250 4matic,2015,4,2,4-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,CLA250 4matic,2016,4,2,4-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,CLA250 4matic,2016,4,2,4-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,CLA45 AMG 4matic,2014,4,2,4-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,CLA45 AMG 4matic,2015,4,2,4-Wheel Drive,7-Speed Automated Manual,Compact Cars +Mercedes-Benz,CLK320,1998,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320,1999,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320,2000,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320,2001,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320,2002,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320,2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320,2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320,2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320 (Cabriolet),2000,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mercedes-Benz,CLK320 (Cabriolet),2001,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mercedes-Benz,CLK320 (Cabriolet),2002,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320 (Cabriolet),2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320 (Cabriolet),2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320 (Cabriolet),2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK320 Cabriolet,1999,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mercedes-Benz,CLK350,2006,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK350,2007,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK350,2008,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK350,2009,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK350 (Cabriolet),2006,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK350 (Cabriolet),2007,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK350 (Cabriolet),2008,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK350 (Cabriolet),2009,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK430,1999,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK430,2000,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK430,2001,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK430,2002,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK430 (Cabriolet),2000,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mercedes-Benz,CLK430 (Cabriolet),2001,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mercedes-Benz,CLK430 (Cabriolet),2002,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK430 (Cabriolet),2003,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK500,2003,8,5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK500,2004,8,5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK500,2005,8,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK500,2006,8,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK500 (Cabriolet),2004,8,5,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK500 (Cabriolet),2005,8,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK500 (Cabriolet),2006,8,5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK55 AMG,2001,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK55 AMG,2002,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK55 AMG,2003,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK55 AMG,2004,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK55 AMG,2005,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK55 AMG (Cabriolet),2002,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK55 AMG (Cabriolet),2004,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK55 AMG (Cabriolet),2005,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK55 AMG (Cabriolet),2006,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK550,2007,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK550,2008,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK550,2009,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK550 (Cabriolet),2007,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK550 (Cabriolet),2008,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK550 (Cabriolet),2009,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK63 AMG,2008,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK63 AMG (Cabriolet),2007,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLK63 AMG (Cabriolet),2008,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,CLS400,2015,6,3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS400,2016,6,3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS400 4matic,2015,6,3,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS400 4matic,2016,6,3,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS500,2006,8,5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS55 AMG,2006,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550,2007,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550,2008,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550,2009,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550,2010,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550,2011,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550,2012,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550,2013,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550,2014,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550,2015,8,4.7,Rear-Wheel Drive,9-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550,2016,8,4.7,Rear-Wheel Drive,9-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550 4matic,2012,8,4.7,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550 4matic,2013,8,4.7,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550 4matic,2014,8,4.7,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550 4matic,2015,8,4.7,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS550 4matic,2016,8,4.7,4-Wheel Drive,9-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG,2007,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG,2008,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG,2009,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG,2010,8,6.3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG,2011,8,6.3,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG,2012,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG,2013,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG,2014,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG 4matic,2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG S,2014,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG S 4matic,2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,CLS63 AMG S 4matic,2015,8,5.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,E250 Bluetec,2014,4,2.1,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E250 Bluetec,2015,4,2.1,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E250 Bluetec,2016,4,2.1,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E250 Bluetec 4matic,2014,4,2.1,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E250 Bluetec 4matic,2015,4,2.1,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E250 Bluetec 4matic,2016,4,2.1,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E300,2017,4,2,Rear-Wheel Drive,9-Speed Automatic,Midsize Cars +Mercedes-Benz,E300 4matic,2017,4,2,4-Wheel Drive,9-Speed Automatic,Midsize Cars +Mercedes-Benz,E300 Diesel,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,E300 Diesel,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,E300 Diesel,1997,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E300 Turbodiesel,1998,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E300 Turbodiesel,1999,6,3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320,1996,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,E320,1997,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320,2000,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320,2001,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320,2002,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320,2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320,2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320,2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 (Wagon),2000,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 (Wagon),2001,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 (Wagon),2002,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 (Wagon),2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 (Wagon),2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 (Wagon),2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 4Matic,2000,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 4Matic,2001,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 4Matic,2002,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 4matic,2004,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 4matic,2005,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 4Matic (Wagon),2000,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 4Matic (Wagon),2001,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 4Matic (Wagon),2002,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 4Matic (Wagon),2003,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 4matic (Wagon),2004,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 4matic (Wagon),2005,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 Bluetec,2007,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 Bluetec,2008,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 Bluetec,2009,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 Cdi,2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 Cdi,2006,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 Convertible,1994,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mercedes-Benz,E320 Convertible,1995,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mercedes-Benz,E320 Coupe,1994,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,E320 Coupe,1995,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercedes-Benz,E320 Sedan,1994,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,E320 Sedan,1995,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,E320 Sedan,1998,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 Sedan,1998,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 Sedan,1999,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 Sedan 4Matic,1999,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E320 Wagon,1994,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,E320 Wagon,1995,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercedes-Benz,E320 Wagon,1998,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 Wagon,1998,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 Wagon,1999,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E320 Wagon 4Matic,1999,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350,2006,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2007,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2008,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2009,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2016,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350,2016,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 (wagon),2006,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2010,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2011,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2012,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4Matic,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2015,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2015,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2016,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic,2016,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 4matic (wagon),2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic (wagon),2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic (wagon),2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic (wagon),2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic (wagon),2011,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic (wagon),2012,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic (wagon),2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic (wagon),2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic (wagon),2015,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic (wagon),2016,6,3.5,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E350 4matic Coupe,2012,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 4matic Coupe,2012,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 4matic Coupe,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 4matic Coupe,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 4matic Coupe,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 4matic Coupe,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 4matic Coupe,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 4matic Coupe,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Bluetec,2011,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 Bluetec,2012,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 Bluetec,2013,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E350 Convertible,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Convertible,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Convertible,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Convertible,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Convertible,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Convertible,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Convertible,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Convertible,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E350 Coupe,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E400,2015,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E400,2016,6,3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E400 4matic,2015,6,3,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E400 4matic,2016,6,3,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E400 4matic (wagon),2015,6,3,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E400 4matic Coupe,2015,6,3,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E400 4matic Coupe,2016,6,3,4-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E400 Convertible,2015,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E400 Convertible,2016,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E400 Coupe,2015,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E400 Coupe,2016,6,3,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E400 Hybrid,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E400 Hybrid,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E400 Hybrid,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E420,1994,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,E420,1995,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,E420,1997,8,4.2,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E430,1999,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E430,2000,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E430,2001,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E430,2002,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E430 4Matic,2000,8,4.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E430 4Matic,2001,8,4.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E430 4Matic,2002,8,4.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E500,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,E500,2003,8,5,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E500,2004,8,5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E500,2005,8,5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E500,2006,8,5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E500 (Wagon),2004,8,5,Rear-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E500 4matic,2004,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E500 4matic,2005,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E500 4matic,2006,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E500 4matic (Wagon),2004,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E500 4matic (Wagon),2005,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E500 4matic (wagon),2006,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E55 AMG,1999,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E55 AMG,2000,8,5.5,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E55 AMG,2001,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E55 AMG,2002,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E55 AMG,2003,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E55 AMG,2004,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E55 AMG,2005,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E55 AMG,2006,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E55 AMG (Wagon),2005,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E55 AMG (wagon),2006,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E550,2007,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550,2008,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550,2009,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550,2010,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550,2011,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550 4matic,2007,8,5.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E550 4matic,2008,8,5.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550 4matic,2009,8,5.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercedes-Benz,E550 4matic,2010,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550 4matic,2011,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550 4matic,2012,8,4.7,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550 4matic,2013,8,4.7,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550 4matic,2014,8,4.7,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550 4matic,2016,8,4.7,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E550 Convertible,2011,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Convertible,2012,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Convertible,2013,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Convertible,2014,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Convertible,2015,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Convertible,2016,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Coupe,2010,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Coupe,2011,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Coupe,2012,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Coupe,2013,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Coupe,2014,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Coupe,2015,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E550 Coupe,2016,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Subcompact Cars +Mercedes-Benz,E63 AMG,2007,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG,2008,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG,2009,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG,2010,8,6.3,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG,2011,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG,2012,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG,2013,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG,2014,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG (wagon),2007,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E63 AMG (wagon),2008,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E63 AMG (wagon),2009,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E63 AMG (wagon),2012,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E63 AMG (wagon),2013,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E63 AMG 4matic,2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG 4matic,2015,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG 4matic (wagon),2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E63 AMG S,2014,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG S 4matic,2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG S 4matic,2015,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Cars +Mercedes-Benz,E63 AMG S 4matic (wagon),2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,E63 AMG S 4matic (wagon),2015,8,5.5,4-Wheel Drive,7-Speed Automatic,Midsize Station Wagons +Mercedes-Benz,G500,2002,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G500,2003,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G500,2004,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G500,2005,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G500,2006,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G500,2007,8,5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G500,2008,8,5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G55 AMG,2003,8,5.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G55 AMG,2004,8,5.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G55 AMG,2005,8,5.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G55 AMG,2006,8,5.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G55 AMG,2007,8,5.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G55 AMG,2008,8,5.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G55 AMG,2009,8,5.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G55 AMG,2010,8,5.4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G55 AMG,2011,8,5.4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G550,2010,8,5.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G550,2011,8,5.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G550,2012,8,5.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,G550,2013,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,G550,2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,G550,2015,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,G550,2016,8,4,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,G63 AMG,2013,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,G63 AMG,2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,G63 AMG,2015,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL320 Bluetec,2009,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL320 CDI 4matic,2007,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL320 CDI 4matic,2008,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL350 Bluetec,2010,6,3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL350 Bluetec 4matic,2011,6,3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL350 Bluetec 4matic,2012,6,3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL350 Bluetec 4matic,2013,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL350 Bluetec 4matic,2014,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL350 Bluetec 4matic,2015,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL350 Bluetec 4matic,2016,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL450 4matic,2007,8,4.6,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL450 4matic,2008,8,4.6,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL450 4matic,2009,8,4.6,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL450 4matic,2010,8,4.7,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL450 4matic,2011,8,4.7,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL450 4matic,2012,8,4.7,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL450 4matic,2013,8,4.7,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL450 4matic,2014,8,4.7,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL450 4matic,2015,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL450 4matic,2016,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL550 4matic,2008,8,5.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL550 4matic,2009,8,5.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL550 4matic,2010,8,5.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL550 4matic,2011,8,5.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL550 4matic,2012,8,5.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GL550 4matic,2013,8,4.7,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL550 4matic,2014,8,4.7,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL550 4matic,2015,8,4.7,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL550 4matic,2016,8,4.7,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL63 AMG,2013,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL63 AMG,2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GL63 AMG,2015,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLA250,2015,4,2,Front-Wheel Drive,7-Speed Automated Manual,Midsize Station Wagons +Mercedes-Benz,GLA250,2016,4,2,Front-Wheel Drive,7-Speed Automated Manual,Midsize Station Wagons +Mercedes-Benz,GLA250 4matic,2015,4,2,4-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Mercedes-Benz,GLA250 4matic,2015,4,2,4-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Mercedes-Benz,GLA250 4matic,2016,4,2,4-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Mercedes-Benz,GLA250 4matic,2016,4,2,4-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Mercedes-Benz,GLA45 AMG 4matic,2015,4,2,4-Wheel Drive,7-Speed Automated Manual,Midsize Station Wagons +Mercedes-Benz,GLC300,2016,4,2,Front-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLC300 4matic,2016,4,2,4-Wheel Drive,9-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLE300 d 4matic,2016,4,2.1,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLE350,2016,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLE350 4matic,2016,6,3.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLE350 4matic,2016,6,3.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLE350 d 4matic,2016,6,3,4-Wheel Drive,9-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLE350 d 4matic Coupe,2016,6,3,4-Wheel Drive,9-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLE400 4matic,2016,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLE450 AMG Coupe,2016,6,3,4-Wheel Drive,9-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLE550e 4matic,2016,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLK250 Bluetec 4matic,2013,4,2.1,4-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK250 Bluetec 4matic,2014,4,2.1,4-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK250 Bluetec 4matic,2015,4,2.1,4-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GLK350,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GLK350,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GLK350,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350 4matic,2010,6,3.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GLK350 4matic,2011,6,3.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GLK350 4matic,2012,6,3.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,GLK350 4matic,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350 4matic,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350 4matic,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350 4matic,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350 4matic,2015,6,3.5,4-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLK350 4matic,2015,6,3.5,4-Wheel Drive,7-Speed Automatic,Small Sport Utility Vehicle +Mercedes-Benz,GLS450 4matic,2017,6,3,4-Wheel Drive,9-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,GLS550 4matic,2017,8,4.7,4-Wheel Drive,9-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,Maybach S 600,2016,12,6,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,Metris (Cargo Van),2016,4,2,Rear-Wheel Drive,7-Speed Automatic,Special Purpose Vehicle +Mercedes-Benz,Metris (Passenger Van),2016,4,2,Rear-Wheel Drive,7-Speed Automatic,Special Purpose Vehicle +Mercedes-Benz,ML250 Bluetec 4matic,2015,4,2.1,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML320,1998,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Mercedes-Benz,ML320,1999,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML320,2000,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML320,2001,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML320,2002,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML320,2003,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML320 Bluetec,2009,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML320 CDI 4matic,2007,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML320 CDI 4matic,2008,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350,2003,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350,2004,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350,2005,6,3.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350,2006,6,3.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350,2009,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML350,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML350,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2007,6,3.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2008,6,3.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2009,6,3.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2010,6,3.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2012,6,3.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2012,6,3.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2014,6,3.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2015,6,3.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML350 4matic,2015,6,3.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML350 Bluetec,2010,6,3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350 Bluetec 4matic,2011,6,3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350 Bluetec 4matic,2012,6,3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML350 Bluetec 4matic,2013,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML350 Bluetec 4matic,2014,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML400 4matic,2015,6,3,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML430,1999,8,4.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML430,2000,8,4.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML430,2001,8,4.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML450 Hybrid 4matic,2010,6,3.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Mercedes-Benz,ML450 Hybrid 4matic,2011,6,3.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Mercedes-Benz,ML500,2002,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML500,2003,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML500,2004,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML500,2005,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML500,2006,8,5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML500 4matic,2007,8,5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML55,2000,8,5.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML55 AMG,2001,8,5.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML55 AMG,2002,8,5.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML55 AMG,2003,8,5.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML550 4matic,2008,8,5.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML550 4matic,2009,8,5.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML550 4matic,2010,8,5.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML550 4matic,2011,8,5.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML550 4matic,2012,8,4.7,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML550 4matic,2013,8,4.7,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML550 4matic,2014,8,4.7,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML63 AMG,2007,8,6.2,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML63 AMG,2008,8,6.2,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML63 AMG,2009,8,6.2,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML63 AMG,2010,8,6.3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML63 AMG,2011,8,6.3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML63 AMG,2012,8,5.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,ML63 AMG,2013,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML63 AMG,2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,ML63 AMG,2015,8,5.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,R320 Bluetec,2009,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R320 CDI 4matic,2007,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R320 CDI 4matic,2008,6,3,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350,2006,6,3.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350,2008,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350 4matic,2007,6,3.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350 4matic,2008,6,3.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350 4matic,2009,6,3.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350 4matic,2010,6,3.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350 4matic,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350 4matic,2012,6,3.5,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350 4matic,2013,6,3.5,4-Wheel Drive,7-Speed Automatic,Standard Sport Utility Vehicle +Mercedes-Benz,R350 Bluetec,2010,6,3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350 Bluetec 4matic,2011,6,3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R350 Bluetec 4matic,2012,6,3,4-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R500,2006,8,5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R500 4matic,2007,8,5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,R63 AMG,2007,8,6.2,4-Wheel or All-Wheel Drive,7-Speed Automatic,Sport Utility Vehicle +Mercedes-Benz,S320,1994,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1995,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1995,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1996,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1996,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1997,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1997,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1998,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1998,6,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1998,6,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1998,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1999,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S320,1999,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S350,1995,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,S350,2006,6,3.7,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S350 Bluetec 4matic,2012,6,3,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S350 Bluetec 4matic,2013,6,3,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S350D,1994,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,S400 Hybrid,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S400 Hybrid,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S400 Hybrid,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S400 Hybrid,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S420,1994,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,S420,1995,8,4.2,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,S420,1996,8,4.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S420,1997,8,4.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S420,1998,8,4.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S420,1999,8,4.2,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S430,2000,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S430,2001,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S430,2002,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S430,2003,8,4.3,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S430,2004,8,4.3,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S430,2005,8,4.3,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S430,2006,8,4.3,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S430 4matic,2003,8,4.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S430 4matic,2004,8,4.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S430 4matic,2005,8,4.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S430 4matic,2006,8,4.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500,1996,8,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500,1997,8,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500,1998,8,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500,1999,8,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500,2000,8,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500,2001,8,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500,2002,8,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500,2003,8,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500,2004,8,5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S500,2005,8,5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S500,2006,8,5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S500 4matic,2003,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500 4matic,2004,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500 4matic,2005,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500 4matic,2006,8,5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S500 Coupe,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,S500 Coupe,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,S500 Coupe,1996,8,5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,S500 Coupe,1997,8,5,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,S500 Sedan,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,S500 Sedan,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,S55 AMG,2001,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S55 AMG,2002,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S55 AMG,2003,8,5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S55 AMG,2004,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S55 AMG,2005,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S55 AMG,2006,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S550,2007,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550,2008,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550,2009,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550,2010,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550,2011,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550,2012,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550,2013,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550,2014,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550,2015,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550,2016,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic,2007,8,5.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic,2008,8,5.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic,2009,8,5.5,4-Wheel or All-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic,2010,8,5.5,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic,2011,8,5.5,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic,2012,8,4.7,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic,2013,8,4.7,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic,2014,8,4.7,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic,2015,8,4.7,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic,2016,8,4.7,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550 4matic Coupe,2015,8,4.7,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,S550 4matic Coupe,2016,8,4.7,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,S550e,2015,6,3,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S550e,2016,6,3,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S600,1996,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,1997,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,1998,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,1999,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2001,12,5.8,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2002,12,5.8,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2003,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2004,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2005,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2006,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2007,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2008,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2009,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2010,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2011,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2012,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2013,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S600,2015,12,6,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S600,2016,12,6,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S600 Coupe,1994,12,6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,S600 Coupe,1995,12,6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercedes-Benz,S600 Coupe,1996,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,S600 Coupe,1997,12,6,Rear-Wheel Drive,5-Speed Automatic,Compact Cars +Mercedes-Benz,S600 Sedan,1994,12,6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,S600 Sedan,1995,12,6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercedes-Benz,S63 AMG,2008,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S63 AMG,2009,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S63 AMG,2010,8,6.3,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S63 AMG,2011,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S63 AMG,2012,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S63 AMG,2013,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S63 AMG 4matic,2014,8,5.5,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S63 AMG 4matic,2015,8,5.5,4-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S63 AMG 4matic Coupe,2015,8,5.5,4-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,S65 AMG,2006,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S65 AMG,2007,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S65 AMG,2008,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S65 AMG,2009,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S65 AMG,2010,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S65 AMG,2011,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S65 AMG,2012,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S65 AMG,2013,12,6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Mercedes-Benz,S65 AMG,2015,12,6,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Mercedes-Benz,S65 AMG Coupe,2015,12,6,Rear-Wheel Drive,7-Speed Automatic,Compact Cars +Mercedes-Benz,SL320,1994,6,3.2,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,SL320,1995,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL320,1996,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL320,1997,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL400,2015,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL400,2016,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,1994,8,5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,1995,8,5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,1996,8,5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,1997,8,5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,1998,8,5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,1999,8,5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,2000,8,5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,2001,8,5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,2002,8,5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,2003,8,5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,2004,8,5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,2005,8,5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL500,2006,8,5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL55 AMG,2003,8,5.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL55 AMG,2004,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL55 AMG,2005,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL55 AMG,2006,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL55 AMG,2007,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL55 AMG,2008,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL550,2007,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL550,2008,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL550,2009,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL550,2011,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL550,2012,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL550,2013,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL550,2014,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL550,2015,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL550,2016,8,4.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,1994,12,6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,1995,12,6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,1996,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,1997,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,1998,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,1999,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,2000,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,2001,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,2002,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,2004,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,2005,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,2006,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,2007,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,2008,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL600,2009,12,5.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL63 AMG,2009,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL63 AMG,2011,8,6.3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL63 AMG,2012,8,6.2,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL63 AMG,2013,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL63 AMG,2014,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL63 AMG,2015,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL65 AMG,2005,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL65 AMG,2006,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL65 AMG,2007,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL65 AMG,2008,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL65 AMG,2009,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL65 AMG,2011,12,6,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SL65 AMG,2013,12,6,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL65 AMG,2014,12,6,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SL65 AMG,2015,12,6,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK230,2004,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK230,2004,4,2.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK230 Kompressor,1999,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK230 Kompressor,1999,4,2.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mercedes-Benz,SLK230 Kompressor,2000,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK230 Kompressor,2000,4,2.3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Mercedes-Benz,SLK230 Kompressor,2001,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK230 Kompressor,2001,4,2.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK230 Kompressor,2002,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK230 Kompressor,2002,4,2.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK230 Kompressor,2003,4,2.3,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK230 Kompressor,2003,4,2.3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK250,2012,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK250,2012,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK250,2013,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK250,2013,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK250,2014,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK250,2014,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK250,2015,4,1.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK250,2015,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK280,2006,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK280,2006,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK280,2007,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK280,2007,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK280,2008,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK280,2008,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK300,2009,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK300,2009,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK300,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK300,2010,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK300,2011,6,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK300,2011,6,3,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK300,2016,4,2,Rear-Wheel Drive,9-Speed Automatic,Two Seaters +Mercedes-Benz,SLK32 AMG,2002,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK32 AMG,2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK32 AMG,2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK320,2001,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK320,2001,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK320,2002,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK320,2002,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK320,2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK320,2003,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK320,2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLK320,2004,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK350,2005,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2005,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK350,2006,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2006,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK350,2007,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2007,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK350,2008,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2008,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK350,2009,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2009,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK350,2010,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK350,2010,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2011,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Mercedes-Benz,SLK350,2011,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2012,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2013,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2014,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2015,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK350,2016,6,3.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK55 AMG,2005,8,5.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK55 AMG,2006,8,5.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK55 AMG,2007,8,5.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK55 AMG,2008,8,5.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK55 AMG,2009,8,5.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK55 AMG,2010,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK55 AMG,2012,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK55 AMG,2013,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK55 AMG,2014,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLK55 AMG,2015,8,5.5,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Mercedes-Benz,SLR,2005,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLR,2006,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLR,2007,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLR,2008,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLR,2009,8,5.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Mercedes-Benz,SLS AMG,2011,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG,2012,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG Black Series Coupe,2014,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG Coupe,2013,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG Coupe,2014,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG GT Coupe,2013,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG GT Coupe,2014,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG GT Coupe,2015,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG GT Roadster,2013,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG GT Roadster,2014,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG GT Roadster,2015,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG Roadster,2012,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG Roadster,2013,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercedes-Benz,SLS AMG Roadster,2014,8,6.2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Mercury,Capri,1984,4,2.3,,3-Speed Automatic,Subcompact Cars +Mercury,Capri,1984,4,2.3,,4-Speed Manual,Subcompact Cars +Mercury,Capri,1984,4,2.3,,5-Speed Manual,Subcompact Cars +Mercury,Capri,1984,6,3.8,,3-Speed Automatic,Subcompact Cars +Mercury,Capri,1984,8,5,,5-Speed Manual,Subcompact Cars +Mercury,Capri,1984,8,5,,4-Speed Automatic,Subcompact Cars +Mercury,Capri,1984,4,2.3,,3-Speed Automatic,Subcompact Cars +Mercury,Capri,1984,4,2.3,,4-Speed Manual,Subcompact Cars +Mercury,Capri,1984,4,2.3,,5-Speed Manual,Subcompact Cars +Mercury,Capri,1984,6,3.8,,3-Speed Automatic,Subcompact Cars +Mercury,Capri,1984,8,5,,5-Speed Manual,Subcompact Cars +Mercury,Capri,1984,8,5,,4-Speed Automatic,Subcompact Cars +Mercury,Capri,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mercury,Capri,1985,4,2.3,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Mercury,Capri,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mercury,Capri,1985,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercury,Capri,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercury,Capri,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mercury,Capri,1985,4,2.3,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Mercury,Capri,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mercury,Capri,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mercury,Capri,1986,4,2.3,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Mercury,Capri,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mercury,Capri,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mercury,Capri,1986,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mercury,Capri,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mercury,Capri,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mercury,Capri,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mercury,Capri,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mercury,Capri,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mercury,Capri,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mercury,Capri,1993,4,1.6,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mercury,Capri,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mercury,Capri,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mercury,Capri,1994,4,1.6,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mercury,Capri,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mercury,Capri,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mercury,Cougar,1984,4,2.3,,3-Speed Automatic,Compact Cars +Mercury,Cougar,1984,4,2.3,,5-Speed Manual,Compact Cars +Mercury,Cougar,1984,6,3.8,,3-Speed Automatic,Compact Cars +Mercury,Cougar,1984,6,3.8,,4-Speed Automatic,Compact Cars +Mercury,Cougar,1984,8,5,,4-Speed Automatic,Compact Cars +Mercury,Cougar,1984,4,2.3,,3-Speed Automatic,Compact Cars +Mercury,Cougar,1984,4,2.3,,5-Speed Manual,Compact Cars +Mercury,Cougar,1984,6,3.8,,3-Speed Automatic,Compact Cars +Mercury,Cougar,1984,6,3.8,,4-Speed Automatic,Compact Cars +Mercury,Cougar,1984,8,5,,4-Speed Automatic,Compact Cars +Mercury,Cougar,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Cougar,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Cougar,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Cougar,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Cougar,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Cougar,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Cougar,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Cougar,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Cougar,1986,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,1987,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,1988,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,1989,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1989,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1989,6,3.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Mercury,Cougar,1990,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1990,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1990,6,3.8,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Mercury,Cougar,1991,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1992,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1993,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1993,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1994,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1994,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1995,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1996,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1996,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1997,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Cougar,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Cougar,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,1999,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Cougar,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Cougar,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,2000,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Cougar,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Cougar,2001,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,2001,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Cougar,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Cougar,2002,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Cougar,2002,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Grand Marquis,1984,8,5,,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1984,8,5,,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1992,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1992,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1993,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1994,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1995,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1996,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1997,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1998,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,1999,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2000,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2005,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2006,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2006,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2007,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2007,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2008,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2009,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2010,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis,2011,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Grand Marquis Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Grand Marquis Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Grand Marquis Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Grand Marquis Wagon,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Grand Marquis Wagon,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Grand Marquis Wagon,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Grand Marquis Wagon,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Grand Marquis Wagon,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Grand Marquis Wagon,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Lynx,1984,4,1.6,,3-Speed Automatic,Compact Cars +Mercury,Lynx,1984,4,1.6,,4-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,1.6,,4-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,1.6,,5-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,1.6,,3-Speed Automatic,Compact Cars +Mercury,Lynx,1984,4,1.6,,5-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,1.6,,5-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,2,,5-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,2,,5-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,1.6,,3-Speed Automatic,Compact Cars +Mercury,Lynx,1984,4,1.6,,4-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,1.6,,5-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,1.6,,3-Speed Automatic,Compact Cars +Mercury,Lynx,1984,4,1.6,,5-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,1.6,,5-Speed Manual,Compact Cars +Mercury,Lynx,1984,4,2,,5-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Lynx,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Lynx,1985,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1986,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Lynx,1986,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mercury,Lynx,1986,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1986,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Lynx,1986,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1987,4,1.9,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Lynx,1987,4,1.9,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mercury,Lynx,1987,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1987,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Lynx Wagon,1984,4,1.6,,3-Speed Automatic,Small Station Wagons +Mercury,Lynx Wagon,1984,4,1.6,,4-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1984,4,2,,5-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1984,4,1.6,,3-Speed Automatic,Small Station Wagons +Mercury,Lynx Wagon,1984,4,1.6,,4-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1984,4,2,,5-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mercury,Lynx Wagon,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1985,4,1.9,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mercury,Lynx Wagon,1985,4,1.9,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1985,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1985,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1985,4,1.9,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1985,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1986,4,1.9,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mercury,Lynx Wagon,1986,4,1.9,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1986,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1986,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1987,4,1.9,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mercury,Lynx Wagon,1987,4,1.9,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Mercury,Lynx Wagon,1987,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Marauder,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Marauder,2004,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Mercury,Mariner,2005,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2005,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2005,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2006,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2006,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2006,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2006,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2007,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2007,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2007,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2007,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2008,4,2.3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2008,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2008,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2008,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2009,4,2.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2009,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2009,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2010,4,2.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2010,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2010,4,2.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2010,6,3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2011,4,2.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner,2011,4,2.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mariner Hybrid,2006,4,2.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Mercury,Mariner Hybrid,2007,4,2.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Mercury,Mariner Hybrid,2008,4,2.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mercury,Mariner Hybrid,2008,4,2.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Mercury,Mariner Hybrid,2009,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mercury,Mariner Hybrid,2009,4,2.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Mercury,Mariner Hybrid,2010,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mercury,Mariner Hybrid,2010,4,2.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Mercury,Mariner Hybrid,2011,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mercury,Mariner Hybrid,2011,4,2.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Mercury,Marquis,1984,4,2.3,,3-Speed Automatic,Midsize Cars +Mercury,Marquis,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Mercury,Marquis,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Mercury,Marquis,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Mercury,Marquis,1984,8,5,,4-Speed Automatic,Midsize Cars +Mercury,Marquis,1984,4,2.3,,3-Speed Automatic,Midsize Cars +Mercury,Marquis,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Mercury,Marquis,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Mercury,Marquis,1984,8,5,,4-Speed Automatic,Midsize Cars +Mercury,Marquis,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Mercury,Marquis,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Mercury,Marquis,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Marquis,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Mercury,Marquis,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Mercury,Marquis,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Mercury,Marquis,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Mercury,Marquis Wagon,1984,6,3.8,,3-Speed Automatic,Midsize Station Wagons +Mercury,Marquis Wagon,1984,6,3.8,,4-Speed Automatic,Midsize Station Wagons +Mercury,Marquis Wagon,1984,6,3.8,,3-Speed Automatic,Midsize Station Wagons +Mercury,Marquis Wagon,1984,6,3.8,,3-Speed Automatic,Midsize Station Wagons +Mercury,Marquis Wagon,1984,6,3.8,,4-Speed Automatic,Midsize Station Wagons +Mercury,Marquis Wagon,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Mercury,Marquis Wagon,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Mercury,Marquis Wagon,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Mercury,Milan,2006,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercury,Milan,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mercury,Milan,2006,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2007,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercury,Milan,2007,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mercury,Milan,2007,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2008,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercury,Milan,2008,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mercury,Milan,2008,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2009,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mercury,Milan,2009,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mercury,Milan,2009,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2010,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2010,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2010,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mercury,Milan,2010,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2011,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2011,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mercury,Milan,2011,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan Hybrid,2010,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Mercury,Milan Hybrid,2011,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Mercury,Milan S,2010,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Mercury,Milan S,2010,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mercury,Milan S,2011,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Mercury,Montego,2005,6,3,4-Wheel or All-Wheel Drive,CVT,Large Cars +Mercury,Montego,2005,6,3,Front-Wheel Drive,CVT,Large Cars +Mercury,Montego,2005,6,3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Mercury,Montego,2006,6,3,4-Wheel or All-Wheel Drive,CVT,Large Cars +Mercury,Montego,2006,6,3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Mercury,Montego,2006,6,3,Front-Wheel Drive,CVT,Large Cars +Mercury,Montego,2007,6,3,4-Wheel or All-Wheel Drive,CVT,Large Cars +Mercury,Montego,2007,6,3,Front-Wheel Drive,6-Speed Automatic,Large Cars +Mercury,Monterey Wagon,2004,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Mercury,Monterey Wagon,2005,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Mercury,Monterey Wagon,2006,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Mercury,Monterey Wagon,2007,6,4.2,Front-Wheel Drive,4-Speed Automatic,Minivan +Mercury,Mountaineer,1997,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Mountaineer,1997,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Mountaineer,1998,6,4,Rear-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Mercury,Mountaineer,1998,8,5,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Mountaineer,1998,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Mercury,Mountaineer,1998,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Mountaineer,1999,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,1999,8,5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,1999,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,1999,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2000,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2000,8,5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2000,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2000,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2001,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2001,8,5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2001,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2001,8,5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2002,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2002,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2002,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2002,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2002,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2003,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2003,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2003,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2003,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2004,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2004,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2004,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2004,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2004,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2004,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2005,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2005,8,4.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2005,6,4,2-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2006,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2006,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2007,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2007,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2008,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2008,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2009,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2009,8,4.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2010,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2010,8,4.6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mercury,Mountaineer,2010,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mercury,Mystique,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,1995,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,1996,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,1996,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,1997,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,1997,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,1998,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,1998,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,1999,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,1999,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Mystique,2000,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Mystique,2000,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Sable,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Mercury,Sable,1986,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1987,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1988,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable,2008,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Mercury,Sable,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Mercury,Sable,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Mercury,Sable,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Mercury,Sable (FFV),2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mercury,Sable Wagon,1986,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1986,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1987,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1988,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon (FFV),2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Mercury,Sable Wagon 3.0 A/C,1987,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon V6 A/C,1988,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon V6 A/C,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon V6 A/C,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon V6 A/C,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon V6 A/C,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Sable Wagon V6 A/C,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mercury,Topaz,1984,4,2,,5-Speed Manual,Compact Cars +Mercury,Topaz,1984,4,2.3,,3-Speed Automatic,Compact Cars +Mercury,Topaz,1984,4,2.3,,3-Speed Automatic,Compact Cars +Mercury,Topaz,1984,4,2.3,,5-Speed Manual,Compact Cars +Mercury,Topaz,1984,4,2,,5-Speed Manual,Compact Cars +Mercury,Topaz,1984,4,2.3,,3-Speed Automatic,Compact Cars +Mercury,Topaz,1984,4,2.3,,5-Speed Manual,Compact Cars +Mercury,Topaz,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1985,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1985,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1985,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1985,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1985,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1985,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1986,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1986,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1986,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1987,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1987,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1987,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1987,4,2.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1988,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1988,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1988,4,2.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1988,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1989,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1989,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1989,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1989,4,2.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1990,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1990,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1990,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1990,4,2.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1991,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1991,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1991,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1991,4,2.3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1992,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1992,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1992,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1993,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1993,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1993,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1994,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Topaz,1994,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Topaz,1994,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Tracer,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Mercury,Tracer,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1991,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1991,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1992,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1993,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1994,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1994,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1995,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1995,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1996,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1997,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mercury,Tracer,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mercury,Tracer Wagon,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Tracer Wagon,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Tracer Wagon,1991,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Tracer Wagon,1992,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Tracer Wagon,1993,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Tracer Wagon,1994,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1994,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Tracer Wagon,1995,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1995,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Tracer Wagon,1996,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Tracer Wagon,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1997,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Tracer Wagon,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1998,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Tracer Wagon,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mercury,Tracer Wagon,1999,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mercury,Villager Van,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Van,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Van,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Van,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Van,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Van,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Wagon,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Wagon,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Wagon,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Wagon,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Wagon,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Wagon,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mercury,Villager Wagon,1999,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Mercury,Villager Wagon,2000,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Mercury,Villager Wagon,2001,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Mercury,Villager Wagon,2002,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Merkur,Scorpio,1988,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Merkur,Scorpio,1988,6,2.9,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Merkur,Scorpio,1989,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Merkur,Scorpio,1989,6,2.9,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Merkur,XR4Ti,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Merkur,XR4Ti,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Merkur,XR4Ti,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Merkur,XR4Ti,1986,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Merkur,XR4Ti,1987,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Merkur,XR4Ti,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Merkur,XR4Ti,1988,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Merkur,XR4Ti,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Merkur,XR4Ti,1989,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Merkur,XR4Ti,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +MINI,Clubman,2008,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Clubman,2008,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Clubman,2009,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Clubman,2009,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Clubman,2010,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Clubman,2010,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Clubman,2011,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Clubman,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Clubman S,2008,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Clubman S,2008,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Clubman S,2009,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Clubman S,2009,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Clubman S,2010,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Clubman S,2010,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper,2002,4,1.6,Front-Wheel Drive,CVT,Minicompact Cars +MINI,Cooper,2003,4,1.6,Front-Wheel Drive,CVT,Minicompact Cars +MINI,Cooper,2003,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +MINI,Cooper,2004,4,1.6,Front-Wheel Drive,CVT,Minicompact Cars +MINI,Cooper,2004,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +MINI,Cooper,2005,4,1.6,Front-Wheel Drive,CVT,Minicompact Cars +MINI,Cooper,2005,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +MINI,Cooper,2006,4,1.6,Front-Wheel Drive,CVT,Minicompact Cars +MINI,Cooper,2006,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +MINI,Cooper,2007,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper,2007,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper,2008,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper,2008,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper,2009,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper,2009,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper,2010,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper,2010,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper,2011,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper (3-doors),2014,3,1.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper (3-doors),2014,3,1.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper (3-doors),2015,3,1.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper (3-doors),2015,3,1.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper (5-doors),2015,3,1.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper (5-doors),2015,3,1.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper Clubman,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper Clubman,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper Clubman,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper Clubman,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper Clubman,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper Clubman,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper Clubman,2016,4,1.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +MINI,Cooper Clubman,2016,4,1.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +MINI,Cooper Clubvan,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper Clubvan,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper Clubvan,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper Clubvan,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper Convertible,2005,4,1.6,Front-Wheel Drive,CVT,Minicompact Cars +MINI,Cooper Convertible,2005,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2006,4,1.6,Front-Wheel Drive,CVT,Minicompact Cars +MINI,Cooper Convertible,2006,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2007,4,1.6,Front-Wheel Drive,CVT,Minicompact Cars +MINI,Cooper Convertible,2007,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2008,4,1.6,Front-Wheel Drive,CVT,Minicompact Cars +MINI,Cooper Convertible,2008,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2009,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper Convertible,2009,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2010,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2010,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper Convertible,2011,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper Convertible,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper Convertible,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper Convertible,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper Convertible,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper Convertible,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper Convertible,2016,4,1.5,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper Convertible,2016,4,1.5,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper Countryman,2011,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper Countryman,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper Countryman,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper Countryman,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper Countryman,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper Countryman,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper Countryman,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper Countryman,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper Countryman,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper Countryman,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper Countryman,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper Countryman,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper Countryman Coupe,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper Countryman Coupe,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper Coupe,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper Coupe,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper Coupe,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper Coupe,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper Coupe,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper Coupe,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper Coupe,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper Coupe,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper Hardtop 2 door,2016,4,1.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper Hardtop 2 door,2016,4,1.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper Hardtop 4 door,2016,4,1.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper Hardtop 4 door,2016,4,1.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper Paceman,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper Paceman,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper Paceman,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper Paceman,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper Paceman,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper Paceman,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper Roadster,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper Roadster,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper Roadster,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper Roadster,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper Roadster,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper Roadster,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper Roadster,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper Roadster,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper S,2003,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S,2004,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S,2005,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S,2005,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S,2006,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S,2006,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S,2007,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S,2007,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S,2008,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S,2008,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S,2009,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S,2009,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S,2010,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S,2010,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S,2011,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S (3-doors),2014,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper S (3-doors),2014,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper S (3-doors),2015,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper S (3-doors),2015,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper S (5-doors),2015,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper S (5-doors),2015,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper S Clubman,2011,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper S Clubman,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper S Clubman,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper S Clubman,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper S Clubman,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper S Clubman,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper S Clubman,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper S Clubman,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper S Clubman,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Midsize Cars +MINI,Cooper S Clubman,2016,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +MINI,Cooper S Clubman All4,2017,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +MINI,Cooper S Clubman All4,2017,4,2,All-Wheel Drive,6-Speed Manual,Midsize Cars +MINI,Cooper S Convertible,2005,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2005,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2006,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2006,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2007,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2007,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2008,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2008,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2009,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2009,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2010,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2010,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2011,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Convertible,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,Cooper S Convertible,2016,4,2,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,Cooper S Countryman,2011,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman All4,2011,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman All4,2011,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman All4,2012,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman All4,2012,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman All4,2013,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman All4,2013,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman All4,2014,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman All4,2014,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman All4,2015,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman All4,2015,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman All4,2016,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman All4,2016,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman Coupe,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman Coupe,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Countryman Coupe All4,2013,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Countryman Coupe All4,2013,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Coupe,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper S Coupe,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper S Coupe,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper S Coupe,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper S Coupe,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper S Coupe,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper S Coupe,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper S Coupe,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper S Hardtop 2 door,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper S Hardtop 2 door,2016,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper S Hardtop 4 door,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,Cooper S Hardtop 4 door,2016,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,Cooper S JCWorks GP Kit,2006,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper S Paceman,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Paceman,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Paceman,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Paceman,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Paceman,2016,4,1.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Paceman,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Paceman All4,2014,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Paceman All4,2014,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Paceman All4,2015,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Paceman All4,2015,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Paceman All4,2016,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,Cooper S Paceman All4,2016,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,Cooper S Roadster,2012,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper S Roadster,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper S Roadster,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper S Roadster,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper S Roadster,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,Cooper S Roadster,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper S Roadster,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,Cooper S Roadster,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,JCW Countryman All4,2013,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,JCW Countryman All4,2013,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,JCW Countryman All4,2014,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,JCW Countryman All4,2014,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,JCW Countryman All4,2015,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,JCW Countryman All4,2015,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,JCW Countryman All4,2016,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,JCW Countryman All4,2016,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,JCW Countryman Coupe All4,2013,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,JCW Countryman Coupe All4,2013,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,JCW Paceman All4,2014,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,JCW Paceman All4,2014,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,JCW Paceman All4,2015,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,JCW Paceman All4,2015,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,JCW Paceman All4,2016,4,1.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +MINI,JCW Paceman All4,2016,4,1.6,All-Wheel Drive,6-Speed Manual,Compact Cars +MINI,John Cooper Works,2009,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works,2010,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,John Cooper Works,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works Clubman,2009,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,John Cooper Works Clubman,2010,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,John Cooper Works Clubman,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,John Cooper Works Clubman,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,John Cooper Works Clubman,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,John Cooper Works Clubman,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,John Cooper Works Clubman,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,John Cooper Works Clubman,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,John Cooper Works Convertible,2009,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works Convertible,2010,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works Convertible,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works Convertible,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works Convertible,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,John Cooper Works Convertible,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works Convertible,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works Convertible,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,John Cooper Works Convertible,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,John Cooper Works Convertible,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works Convertible,2017,4,2,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +MINI,John Cooper Works Convertible,2017,4,2,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +MINI,John Cooper Works Coupe,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,John Cooper Works Coupe,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,John Cooper Works Coupe,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,John Cooper Works Coupe,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,John Cooper Works Coupe,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,John Cooper Works Coupe,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,John Cooper Works Coupe,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,John Cooper Works GP-2,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,John Cooper Works Hardtop,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,John Cooper Works Hardtop,2015,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,John Cooper Works Hardtop,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +MINI,John Cooper Works Hardtop,2016,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +MINI,John Cooper Works Roadster,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,John Cooper Works Roadster,2013,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,John Cooper Works Roadster,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,John Cooper Works Roadster,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,John Cooper Works Roadster,2014,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,John Cooper Works Roadster,2015,4,1.6,Front-Wheel Drive,6-Speed Automatic,Two Seaters +MINI,John Cooper Works Roadster,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Two Seaters +MINI,MiniE,2008,,,,1-Speed Direct Drive,Minicompact Cars +Mitsubishi,3000 GT,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT,1991,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1991,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT,1992,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1992,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT,1993,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1993,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT,1994,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1994,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT,1995,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1995,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT,1996,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1996,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT,1997,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1997,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1997,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT,1998,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1998,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT,1998,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT Spyder,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT Spyder,1995,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT Spyder,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT Spyder,1996,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT Spyder,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT Spyder,1997,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,3000 GT Spyder,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000 GT Spyder,1998,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,3000GT,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000GT,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,3000GT,1999,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000GT,1999,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,3000GT,1999,6,3,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1984,4,2,,3-Speed Automatic,Subcompact Cars +Mitsubishi,Cordia,1984,4,2,,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1984,4,2,,3-Speed Automatic,Subcompact Cars +Mitsubishi,Cordia,1984,4,2,,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Cordia,1985,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Cordia,1985,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Cordia,1986,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Cordia,1987,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Cordia,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Cordia,1988,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Diamante,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Diamante,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Diamante,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Diamante,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Diamante,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Diamante,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Diamante,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Diamante,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Diamante,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Diamante,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Diamante,1997,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Diamante,1998,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Diamante,1999,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Diamante,2000,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Diamante,2001,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Diamante,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Diamante Sedan,2003,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Diamante Sedan,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Diamante Sedan,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Diamante Sedan,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Diamante Wagon,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Diamante Wagon,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Eclipse,1990,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1990,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1991,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1991,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1991,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1992,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1992,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1992,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1992,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1993,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1993,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1994,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1994,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1995,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1995,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1996,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1996,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1996,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1996,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1997,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1997,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1997,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1997,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1998,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1998,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1999,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,1999,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1999,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,1999,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2000,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2000,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2001,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2002,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2003,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2004,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2004,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2005,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2005,6,3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2006,6,3.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2006,6,3.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2007,6,3.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2007,6,3.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2008,6,3.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2008,6,3.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2009,6,3.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2009,6,3.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2010,6,3.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2010,6,3.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2011,6,3.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2012,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse,2012,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Eclipse,2012,6,3.8,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Mitsubishi,Eclipse Convertible,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Convertible,1996,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Convertible,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Convertible,1996,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Convertible,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Convertible,1997,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Convertible,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Convertible,1997,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Convertible,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Convertible,1998,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Convertible,1998,4,2.3,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Convertible,1998,4,2.3,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Convertible,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Convertible,1999,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Convertible,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Convertible,1999,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2001,6,3,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2002,6,3,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2003,6,3,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2004,6,3,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2004,6,3,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2005,6,3,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2005,6,3,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2007,6,3.8,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2007,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2008,6,3.8,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2008,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2009,6,3.8,Front-Wheel Drive,6-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2009,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Mitsubishi,Eclipse Spyder,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2010,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2011,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2012,4,2.4,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Mitsubishi,Eclipse Spyder,2012,6,3.8,Front-Wheel Drive,5-Speed Automatic,Minicompact Cars +Mitsubishi,Endeavor,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2004,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2005,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2006,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2006,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2007,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2007,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2008,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2008,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2009,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2009,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2010,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2010,6,3.8,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2011,6,3.8,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Endeavor,2011,6,3.8,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Expo,1992,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo,1992,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo,1992,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo,1992,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo,1993,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo,1993,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo,1993,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo,1993,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo,1994,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo,1994,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo,1994,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo,1994,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo,1995,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo,1995,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo,1995,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo,1995,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1992,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1992,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1993,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1993,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1993,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1993,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1993,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1993,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1994,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1994,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1995,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Mitsubishi,Expo.LRV,1995,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Mitsubishi,Galant,1985,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1985,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1986,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1987,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1987,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1990,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1991,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1991,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1991,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1991,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1991,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1992,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1992,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1992,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1992,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1992,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1993,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1993,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1994,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1994,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1994,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1994,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1995,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1995,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1996,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1997,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1998,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant,1998,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Galant,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,1999,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Mitsubishi,Galant,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2006,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2007,6,3.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2008,6,3.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2009,6,3.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant,2012,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Mitsubishi,Galant Sigma,1988,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Galant Sigma,1988,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,i-MiEV,2012,,,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +Mitsubishi,i-MiEV,2013,,,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +Mitsubishi,i-MiEV,2014,,,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +Mitsubishi,i-MiEV,2016,,0,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +Mitsubishi,i-MiEV,2017,,,Rear-Wheel Drive,1-Speed Direct Drive,Subcompact Cars +Mitsubishi,Lancer,2002,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2002,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2003,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2003,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2006,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2007,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2008,4,2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2008,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2009,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2009,4,2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2009,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Mitsubishi,Lancer,2010,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2010,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2010,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2010,4,2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2011,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2011,4,2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2011,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2011,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer,2012,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2012,4,2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2012,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2012,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2012,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer,2012,4,2.4,All-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2013,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2013,4,2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2013,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2013,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2013,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer,2013,4,2.4,All-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2014,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2014,4,2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2014,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2014,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2014,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer,2014,4,2.4,All-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2015,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2015,4,2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2015,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2015,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2015,4,2.4,All-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2015,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer,2016,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2016,4,2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2016,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer,2016,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer,2016,4,2.4,All-Wheel Drive,CVT,Compact Cars +Mitsubishi,Lancer Evolution,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2004,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2005,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2005,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2006,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2006,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2008,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2008,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Mitsubishi,Lancer Evolution,2009,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Mitsubishi,Lancer Evolution,2010,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer Evolution,2010,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2011,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2011,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer Evolution,2012,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2012,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer Evolution,2013,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2013,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer Evolution,2014,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2014,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer Evolution,2015,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Lancer Evolution,2015,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Mitsubishi,Lancer Sportback,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mitsubishi,Lancer Sportback,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mitsubishi,Lancer Sportback,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Mitsubishi,Lancer Sportback,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Mitsubishi,Lancer Sportback,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mitsubishi,Lancer Sportback,2009,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Mitsubishi,Lancer Sportback,2010,4,2,All-Wheel Drive,6-Speed Automated Manual,Small Station Wagons +Mitsubishi,Lancer Sportback,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mitsubishi,Lancer Sportback,2010,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Mitsubishi,Lancer Sportback,2011,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mitsubishi,Lancer Sportback,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mitsubishi,Lancer Sportback,2011,4,2,All-Wheel Drive,6-Speed Automated Manual,Small Station Wagons +Mitsubishi,Lancer Sportback,2011,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Mitsubishi,Lancer Sportback,2011,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Mitsubishi,Lancer Sportback,2012,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Mitsubishi,Lancer Sportback,2012,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Mitsubishi,Lancer Sportback,2013,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Mitsubishi,Lancer Sportback,2013,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Mitsubishi,Lancer Sportback,2014,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Mitsubishi,Lancer Sportback,2014,4,2.4,Front-Wheel Drive,CVT,Small Station Wagons +Mitsubishi,Mirage,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1985,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1985,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1986,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1986,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1986,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1987,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1987,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1988,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1989,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1990,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1990,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1991,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1991,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1991,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1992,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1992,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1992,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1993,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1994,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1995,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1996,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1996,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1997,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Mirage,1997,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Mirage,1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Mirage,1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Mirage,1998,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1998,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1998,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1999,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1999,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,1999,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,2000,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,2000,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,2001,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Mirage,2001,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Mirage,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Mirage,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Mirage,2002,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,2002,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,2002,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Mirage,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Mirage,2014,3,1.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Mirage,2014,3,1.2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Mirage,2015,3,1.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Mirage,2015,3,1.2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Mirage,2017,3,1.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Mirage,2017,3,1.2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Mirage G4,2017,3,1.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Mirage G4,2017,3,1.2,Front-Wheel Drive,CVT,Compact Cars +Mitsubishi,Mirage Wagon,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Mirage Wagon,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mitsubishi,Mirage Wagon,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Mirage Wagon,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mitsubishi,Mirage Wagon,1990,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Mirage Wagon,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Mitsubishi,Montero,1984,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1984,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1984,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1984,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1984,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1984,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1985,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1985,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1985,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1985,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1986,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1986,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1987,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1987,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1988,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1988,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1989,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1989,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1989,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1990,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1990,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1990,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1991,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1991,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1992,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1992,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1993,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1994,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1994,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1994,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1995,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1995,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1995,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1995,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1995,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1996,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1996,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1996,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1996,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1996,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1997,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1997,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1997,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1997,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1998,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1998,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero,1998,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero,1999,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,1999,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Montero,1999,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2000,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2000,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Montero,2000,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2001,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2001,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2002,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2002,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2003,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2003,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2004,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2005,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero,2006,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero Sport,1997,6,3,4-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero Sport,1997,6,3,4-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero Sport,1997,4,2.4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero Sport,1998,4,2.4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero Sport,1998,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero Sport,1998,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Montero Sport,1998,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Montero Sport,1999,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Montero Sport,1999,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,1999,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,1999,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,1999,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Montero Sport,1999,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2000,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2000,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2000,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2000,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2001,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2001,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2001,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2001,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2002,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2002,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2002,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2002,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2003,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2003,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2003,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2003,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2004,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Montero Sport,2004,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa,1998,4,2.4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Nativa,1998,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Nativa,1998,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mitsubishi,Nativa,1998,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Nativa,1999,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa,1999,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Nativa,1999,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa,1999,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa,1999,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Nativa,2000,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa,2000,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Nativa,2000,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa,2000,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa (Puerto Rico Only),2001,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa (Puerto Rico Only),2001,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Nativa (Puerto Rico Only),2001,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa (Puerto Rico Only),2001,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa (Puerto Rico Only),2002,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa (Puerto Rico Only),2002,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Nativa (Puerto Rico Only),2002,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa (Puerto Rico Only),2002,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa(Puerto Rico Only),2003,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Nativa(Puerto Rico Only),2004,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2003,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2004,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Outlander,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2005,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Outlander,2005,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Outlander,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2006,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Outlander,2006,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2007,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2007,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2008,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2008,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander,2008,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander,2009,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander,2009,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2009,4,2.4,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2010,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander,2010,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander,2010,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2010,6,3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2011,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2011,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander,2011,6,3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2012,4,2.4,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander,2012,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2012,4,2.4,4-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander,2012,6,3,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Mitsubishi,Outlander,2013,4,2.4,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander,2013,6,3,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mitsubishi,Outlander,2013,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander,2013,6,3,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mitsubishi,Outlander,2014,4,2.4,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander,2014,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander,2014,6,3,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mitsubishi,Outlander,2015,4,2.4,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander,2015,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander,2015,6,3,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mitsubishi,Outlander,2016,4,2.4,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander,2016,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander,2016,6,3,4-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2011,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Outlander Sport,2011,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander Sport,2011,4,2,4-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander Sport,2012,4,2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander Sport,2012,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Mitsubishi,Outlander Sport,2012,4,2,4-Wheel Drive,CVT,Sport Utility Vehicle +Mitsubishi,Outlander Sport,2013,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2013,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2013,4,2,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2014,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2014,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2014,4,2,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2015,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2015,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2015,4,2,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2015,4,2.4,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2015,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2016,4,2,Front-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2016,4,2,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2016,4,2.4,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2016,4,2,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Outlander Sport,2016,4,2.4,4-Wheel Drive,CVT,Small Sport Utility Vehicle +Mitsubishi,Precis,1984,4,1.4,,4-Speed Manual,Subcompact Cars +Mitsubishi,Precis,1984,4,1.4,,4-Speed Manual Doubled,Subcompact Cars +Mitsubishi,Precis,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Mitsubishi,Precis,1984,4,1.6,,4-Speed Manual Doubled,Subcompact Cars +Mitsubishi,Precis,1987,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Precis,1987,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Precis,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Precis,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Precis,1988,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Precis,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Precis,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Precis,1989,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Precis,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Precis,1990,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Precis,1990,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Mitsubishi,Precis,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Precis,1991,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Precis,1991,4,1.5,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mitsubishi,Precis,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Precis,1992,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Precis,1992,4,1.5,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mitsubishi,Precis,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Precis,1993,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Precis,1993,4,1.5,Front-Wheel Drive,4-Speed Manual,Compact Cars +Mitsubishi,Raider Pickup,2006,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2006,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2006,8,4.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2006,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2006,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2006,8,4.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2007,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2007,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2007,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2007,8,4.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2007,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2007,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2007,8,4.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2008,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2008,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2008,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2009,6,3.7,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2009,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2009,6,3.7,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2009,6,3.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Raider Pickup,2010,6,3.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Sigma,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Sigma,1989,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Mitsubishi,Sigma,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Mitsubishi,Space Wagon,1984,4,2,,3-Speed Automatic,Small Station Wagons +Mitsubishi,Space Wagon,1984,4,2,,4-Speed Manual Doubled,Small Station Wagons +Mitsubishi,Space Wagon,1984,4,2,,5-Speed Manual,Small Station Wagons +Mitsubishi,Space Wagon,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Space Wagon,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Space Wagon,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Space Wagon,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Space Wagon,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Space Wagon,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Space Wagon,1989,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Mitsubishi,Space Wagon,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Space Wagon,1991,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Mitsubishi,Starion,1984,4,2.6,,4-Speed Automatic,Subcompact Cars +Mitsubishi,Starion,1984,4,2.6,,4-Speed Automatic,Subcompact Cars +Mitsubishi,Starion,1984,4,2.6,,5-Speed Manual,Subcompact Cars +Mitsubishi,Starion,1984,4,2.6,,5-Speed Manual,Subcompact Cars +Mitsubishi,Starion,1984,4,2.6,,4-Speed Automatic,Subcompact Cars +Mitsubishi,Starion,1984,4,2.6,,5-Speed Manual,Subcompact Cars +Mitsubishi,Starion,1985,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Starion,1985,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Starion,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Starion,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Starion,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Starion,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Starion,1986,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Starion,1986,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Starion,1987,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Starion,1987,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Starion,1988,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Starion,1988,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Starion,1989,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Mitsubishi,Starion,1989,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1984,4,2,,3-Speed Automatic,Subcompact Cars +Mitsubishi,Tredia,1984,4,2,,4-Speed Manual Doubled,Subcompact Cars +Mitsubishi,Tredia,1984,4,2,,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1984,4,2,,3-Speed Automatic,Subcompact Cars +Mitsubishi,Tredia,1984,4,2,,4-Speed Manual Doubled,Subcompact Cars +Mitsubishi,Tredia,1984,4,2,,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Tredia,1985,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Tredia,1985,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Tredia,1986,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Tredia,1987,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Tredia,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Mitsubishi,Tredia,1988,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Mitsubishi,Truck,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.3,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,2-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.3,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1984,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2.6,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2.6,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2.3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1985,4,2.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1986,4,2,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1986,4,2,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1986,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1986,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1987,4,2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1987,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1987,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1987,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1987,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Truck,1987,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1988,4,2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1988,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1988,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1988,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1988,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Truck,1988,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1989,4,2,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1989,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1989,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1989,4,2.6,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1989,4,2.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Truck,1989,4,2.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1990,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1990,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1990,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Truck,1990,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1990,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1991,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1991,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1991,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Truck,1991,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1991,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1992,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1992,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1992,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Truck,1992,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1992,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1993,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1993,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1993,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Mitsubishi,Truck,1993,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1993,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1994,4,2.3,Front-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1994,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Mitsubishi,Truck,1995,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1995,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1995,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Truck,1996,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Mitsubishi,Truck,1996,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Mitsubishi,Van,1987,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Mitsubishi,Van,1988,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Mitsubishi,Van,1989,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Mitsubishi,Van,1990,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Mitsubishi,Wagon,1987,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Mitsubishi,Wagon,1988,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Mitsubishi,Wagon,1989,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Mitsubishi,Wagon,1990,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Mobility Ventures LLC,MV-1,2014,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Mobility Ventures LLC,MV-1 CNG,2014,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Morgan,Plus Eight,2002,8,4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Morgan,Plus Eight,2002,8,3.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Morgan,Plus Eight,2003,8,4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,200SX,1984,4,1.8,,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Nissan,200SX,1984,4,2,,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1984,4,2,,5-Speed Manual,Subcompact Cars +Nissan,200SX,1984,4,1.8,,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Nissan,200SX,1984,4,2,,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1984,4,2,,5-Speed Manual,Subcompact Cars +Nissan,200SX,1985,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1985,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,200SX,1985,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,200SX,1985,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,200SX,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,200SX,1986,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,200SX,1986,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,200SX,1987,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1987,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,200SX,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,200SX,1988,4,2,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1988,4,2,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,200SX,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,200SX,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,240SX,1989,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,240SX,1989,4,2.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,240SX,1990,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,240SX,1990,4,2.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,240SX,1991,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,240SX,1991,4,2.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,240SX,1992,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,240SX,1992,4,2.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,240SX,1993,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,240SX,1993,4,2.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,240SX,1994,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,240SX,1995,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,240SX,1995,4,2.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,240SX,1996,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,240SX,1996,4,2.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,240SX,1997,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,240SX,1997,4,2.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,240SX,1998,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,240SX,1998,4,2.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,300ZX,1984,6,3,,4-Speed Automatic,Two Seaters +Nissan,300ZX,1984,6,3,,4-Speed Automatic,Two Seaters +Nissan,300ZX,1984,6,3,,5-Speed Manual,Two Seaters +Nissan,300ZX,1984,6,3,,5-Speed Manual,Two Seaters +Nissan,300ZX,1984,6,3,,4-Speed Automatic,Two Seaters +Nissan,300ZX,1984,6,3,,4-Speed Automatic,Two Seaters +Nissan,300ZX,1984,6,3,,5-Speed Manual,Two Seaters +Nissan,300ZX,1984,6,3,,5-Speed Manual,Two Seaters +Nissan,300ZX,1985,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1985,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1985,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1985,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1985,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1985,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1985,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1985,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1986,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1986,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Nissan,300ZX,1996,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX,1996,6,3,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Nissan,300ZX 2x2,1984,6,3,,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1984,6,3,,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1984,6,3,,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1984,6,3,,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1984,6,3,,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1984,6,3,,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1984,6,3,,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1984,6,3,,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1985,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1985,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1985,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1986,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,300ZX 2x2,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,300ZX 2x2,1996,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,350z,2003,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z,2003,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z,2004,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z,2004,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z,2005,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z,2005,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z,2005,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z,2006,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z,2006,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z,2007,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z,2007,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z,2008,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z,2008,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z Roadster,2004,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z Roadster,2004,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z Roadster,2005,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z Roadster,2005,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z Roadster,2006,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z Roadster,2006,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z Roadster,2007,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z Roadster,2007,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z Roadster,2008,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z Roadster,2008,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,350z Roadster,2009,6,3.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,350z Roadster,2009,6,3.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Nissan,370z,2009,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370z,2009,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z,2010,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z,2010,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z,2011,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z,2011,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z,2012,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z,2012,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z,2013,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z,2013,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z,2014,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z,2014,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z,2015,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z,2015,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z,2016,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z,2016,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z,2017,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z,2017,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z Roadster,2010,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z Roadster,2010,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z Roadster,2011,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z Roadster,2011,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z Roadster,2012,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z Roadster,2012,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z Roadster,2013,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z Roadster,2013,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z Roadster,2014,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z Roadster,2014,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z Roadster,2015,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z Roadster,2015,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z Roadster,2016,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z Roadster,2016,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,370Z Roadster,2017,6,3.7,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Nissan,370Z Roadster,2017,6,3.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Nissan,Altima,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Altima,1998,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Altima,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Altima,1999,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Altima,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Altima,2000,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Altima,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Altima,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Altima,2002,4,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Altima,2002,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Altima,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Altima,2002,6,3.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Altima,2003,4,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Altima,2003,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Altima,2003,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Altima,2003,6,3.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Altima,2004,4,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Altima,2004,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Altima,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Altima,2004,6,3.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Altima,2005,4,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Altima,2005,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Altima,2005,6,3.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Altima,2005,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Altima,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Nissan,Altima,2006,4,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Altima,2006,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Altima,2006,6,3.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Altima,2006,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Altima,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Nissan,Altima,2007,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2007,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Altima,2007,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2007,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Altima,2008,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2008,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Altima,2008,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2008,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Altima,2009,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Altima,2009,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2009,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Altima,2009,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2010,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2010,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2010,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Altima,2011,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2011,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2012,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2012,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2013,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2013,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2014,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2014,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2015,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2015,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2016,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima,2016,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima / Stanza,1993,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Altima / Stanza,1993,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Altima / Stanza,1994,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Altima / Stanza,1994,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Altima / Stanza,1995,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Altima / Stanza,1995,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Altima / Stanza,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Altima / Stanza,1996,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Altima / Stanza,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Altima / Stanza,1997,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Altima Coupe,2008,4,2.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Coupe,2008,4,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Nissan,Altima Coupe,2008,6,3.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Coupe,2008,6,3.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Nissan,Altima Coupe,2009,4,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Nissan,Altima Coupe,2009,4,2.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Coupe,2009,6,3.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Nissan,Altima Coupe,2009,6,3.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Coupe,2010,4,2.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Coupe,2010,4,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Nissan,Altima Coupe,2010,6,3.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Coupe,2010,6,3.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Nissan,Altima Coupe,2011,4,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Nissan,Altima Coupe,2011,4,2.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Coupe,2011,6,3.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Nissan,Altima Coupe,2011,6,3.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Coupe,2012,4,2.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Coupe,2012,4,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Nissan,Altima Coupe,2012,6,3.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Coupe,2012,6,3.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Nissan,Altima Coupe,2013,4,2.5,Front-Wheel Drive,CVT,Subcompact Cars +Nissan,Altima Hybrid,2007,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima Hybrid,2008,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima Hybrid,2009,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima Hybrid,2010,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima Hybrid,2011,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altima SR,2016,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Altra EV,2000,,,,,Midsize Station Wagons +Nissan,Armada,2005,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2005,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2006,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2006,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2007,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2007,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2007,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2007,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2008,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2008,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2008,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2008,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2009,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2009,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2009,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2009,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2010,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2010,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2010,8,5.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2010,8,5.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2011,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2011,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2011,8,5.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2011,8,5.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2012,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2012,8,5.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2012,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2012,8,5.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Armada,2013,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2013,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2013,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2013,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2014,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2014,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2014,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2014,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2015,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2015,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2015,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Armada,2015,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Nissan,Axxess,1990,4,2.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Axxess,1990,4,2.4,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Axxess,1990,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Axxess,1990,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Axxess,1991,4,2.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Axxess,1991,4,2.4,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Axxess,1991,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Axxess,1991,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Axxess,1992,4,2.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Axxess,1992,4,2.4,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Axxess,1992,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Axxess,1992,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Cube,2009,4,1.8,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Cube,2009,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Cube,2010,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Cube,2010,4,1.8,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Cube,2011,4,1.8,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Cube,2011,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Cube,2012,4,1.8,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Cube,2012,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Cube,2013,4,1.8,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Cube,2013,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Cube,2014,4,1.8,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Cube,2014,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Frontier,1998,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier,1998,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,1998,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,1999,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier,1999,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,1999,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,2000,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier,2000,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,2000,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,2001,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier,2001,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,2002,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier,2002,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,2003,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier,2003,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,2004,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier,2004,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,2005,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier,2005,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,2006,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier,2006,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,2007,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier,2007,4,2.5,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier,2008,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2008,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2008,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2008,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2009,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2009,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2009,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2009,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2010,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2010,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2010,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2010,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2010,6,4,4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2011,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2011,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2011,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2011,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2011,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2011,6,4,4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2012,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2012,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2012,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2012,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2012,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2012,6,4,4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2013,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2013,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2013,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2013,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2013,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2013,6,4,4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2014,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2014,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2014,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2014,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2014,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2014,6,4,4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2015,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2015,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2015,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2015,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2015,6,4,4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2015,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2016,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2016,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2016,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2016,6,4,Part-time 4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Nissan,Frontier,2016,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Nissan,Frontier,2016,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Frontier V6,1999,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,1999,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2000,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2000,6,3.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2000,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2000,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2001,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2001,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2001,6,3.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2001,6,3.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2001,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2001,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2001,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2001,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2002,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2002,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2002,6,3.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2002,6,3.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2002,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2002,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2002,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2002,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2003,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2003,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2003,6,3.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2003,6,3.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2003,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2003,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2003,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2003,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2004,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2004,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2004,6,3.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2004,6,3.3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2004,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2004,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2004,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2004,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2005,6,4,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2005,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2006,6,4,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2006,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2007,6,4,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Nissan,Frontier V6,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Frontier V6,2007,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Nissan,GT-R,2009,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Subcompact Cars +Nissan,GT-R,2010,6,3.8,4-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Nissan,GT-R,2011,6,3.8,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Nissan,GT-R,2012,6,3.8,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Nissan,GT-R,2013,6,3.8,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Nissan,GT-R,2014,6,3.8,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Nissan,GT-R,2015,6,3.8,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Nissan,GT-R,2016,6,3.8,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Nissan,GT-R,2017,6,3.8,All-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Nissan,Hardbody,1990,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Hardbody,1990,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Hardbody,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Hardbody,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Hardbody,1990,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Hardbody,1990,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Hardbody,1990,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Hyper-Mini,2001,,,,,Two Seaters +Nissan,Juke,2011,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Juke,2011,4,1.6,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2011,4,1.6,All-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2012,4,1.6,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2012,4,1.6,All-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2012,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Juke,2013,4,1.6,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2013,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Juke,2013,4,1.6,All-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2014,4,1.6,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2014,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Juke,2014,4,1.6,All-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2015,4,1.6,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Juke,2015,4,1.6,All-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2016,4,1.6,Front-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Juke,2016,4,1.6,All-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke Nismo RS,2015,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Juke Nismo RS,2015,4,1.6,All-Wheel Drive,CVT,Small Station Wagons +Nissan,Juke Nismo RS,2016,4,1.6,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Nissan,Juke Nismo RS,2016,4,1.6,All-Wheel Drive,CVT,Small Station Wagons +Nissan,Leaf,2011,,,Front-Wheel Drive,1-Speed Direct Drive,Midsize Cars +Nissan,Leaf,2012,,,Front-Wheel Drive,1-Speed Direct Drive,Midsize Cars +Nissan,Leaf,2013,,,Front-Wheel Drive,1-Speed Direct Drive,Midsize Cars +Nissan,Leaf,2014,,,Front-Wheel Drive,1-Speed Direct Drive,Midsize Cars +Nissan,Leaf,2015,,,Front-Wheel Drive,1-Speed Direct Drive,Midsize Cars +Nissan,Leaf (24 kW-hr battery pack),2016,,,Front-Wheel Drive,1-Speed Direct Drive,Midsize Cars +Nissan,Leaf (30 kW-hr battery pack),2016,,,Front-Wheel Drive,1-Speed Direct Drive,Midsize Cars +Nissan,Maxima,1984,6,2.4,,4-Speed Automatic,Subcompact Cars +Nissan,Maxima,1984,6,2.4,,5-Speed Manual,Subcompact Cars +Nissan,Maxima,1984,6,2.4,,4-Speed Automatic,Subcompact Cars +Nissan,Maxima,1984,6,2.4,,5-Speed Manual,Subcompact Cars +Nissan,Maxima,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Maxima,1985,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Maxima,1985,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Maxima,1986,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Maxima,1986,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Maxima,1987,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Maxima,1987,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Maxima,1988,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Maxima,1988,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Maxima,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1989,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1990,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1991,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1992,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1993,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1994,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1995,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1996,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1997,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1998,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,1999,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,2000,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,2001,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Maxima,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,2002,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Maxima,2003,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,2003,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Maxima,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Maxima,2004,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Maxima,2004,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Nissan,Maxima,2005,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Maxima,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Nissan,Maxima,2006,6,3.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Maxima,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Nissan,Maxima,2007,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Maxima,2008,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Maxima,2009,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Maxima,2010,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Maxima,2011,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Maxima,2012,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Maxima,2013,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Maxima,2014,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Maxima,2016,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Maxima,2017,6,3.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Maxima Wagon,1984,6,2.4,,4-Speed Automatic,Small Station Wagons +Nissan,Maxima Wagon,1984,6,2.4,,4-Speed Automatic,Small Station Wagons +Nissan,Maxima Wagon,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Nissan,Maxima Wagon,1986,6,3,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Nissan,Maxima Wagon,1987,6,3,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Nissan,Maxima Wagon,1988,6,3,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Nissan,Murano,2003,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2003,6,3.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2004,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2004,6,3.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2005,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2005,6,3.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2006,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2006,6,3.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2007,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2007,6,3.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2009,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2009,6,3.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2010,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2010,6,3.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2011,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2011,6,3.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2012,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2012,6,3.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano,2013,6,3.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Murano,2013,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Murano,2014,6,3.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Murano,2014,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Murano,2015,6,3.5,Front-Wheel Drive,CVT,Midsize Station Wagons +Nissan,Murano,2015,6,3.5,All-Wheel Drive,CVT,Midsize Station Wagons +Nissan,Murano,2016,6,3.5,Front-Wheel Drive,CVT,Midsize Station Wagons +Nissan,Murano,2016,6,3.5,All-Wheel Drive,CVT,Midsize Station Wagons +Nissan,Murano CrossCabriolet,2011,6,3.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano CrossCabriolet,2012,6,3.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Murano CrossCabriolet,2013,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Murano CrossCabriolet,2014,6,3.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Murano Hybrid,2016,4,2.5,Front-Wheel Drive,CVT,Midsize Station Wagons +Nissan,Murano Hybrid,2016,4,2.5,All-Wheel Drive,CVT,Midsize Station Wagons +Nissan,NV200 Cargo Van,2013,4,2,Front-Wheel Drive,CVT,"Vans, Cargo Type" +Nissan,NV200 Cargo Van,2014,4,2,Front-Wheel Drive,CVT,Special Purpose Vehicle +Nissan,NV200 Cargo Van,2015,4,2,Front-Wheel Drive,CVT,Special Purpose Vehicle +Nissan,NV200 Cargo Van,2016,4,2,Front-Wheel Drive,CVT,Special Purpose Vehicle +Nissan,NV200 NYC Taxi,2015,4,2,Front-Wheel Drive,CVT,Special Purpose Vehicle +Nissan,NV200 NYC Taxi,2016,4,2,Front-Wheel Drive,CVT,Special Purpose Vehicle +Nissan,NX,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,NX,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,NX,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,NX,1992,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,NX,1993,4,1.6,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,NX,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,NX,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,NX,1993,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,NX Coupe,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,NX Coupe,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,NX Coupe,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Nissan,NX Coupe,1991,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Nissan,Pathfinder,1986,6,3,4-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1987,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1987,6,3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1987,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1988,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1988,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1988,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1989,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1989,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1989,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1990,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1990,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1991,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1991,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1992,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1992,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1993,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1994,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1994,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1995,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1995,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1996,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1996,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1996,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1996,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1997,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1997,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1997,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1997,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1998,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1998,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1998,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1998,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1999,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1999,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1999,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1999,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1999,6,3.3,2-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1999,6,3.3,2-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,1999,6,3.3,2-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,1999,6,3.3,2-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2000,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2000,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,2000,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2000,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,2001,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2001,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2001,6,3.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,2001,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2001,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,2002,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2002,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2002,6,3.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,2002,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2002,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,2003,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2003,6,3.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,2003,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2003,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Pathfinder,2004,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2004,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2008,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2008,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2009,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2009,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2010,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2010,8,5.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2011,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2011,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2011,8,5.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2012,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2012,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2012,8,5.6,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder,2013,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder,2013,6,3.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder,2014,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder,2014,6,3.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder,2015,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder,2015,6,3.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder,2016,6,3.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder,2016,6,3.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder Armada,2004,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder Armada,2004,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder FE,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder FE,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Pathfinder Hybrid,2014,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder Hybrid,2014,4,2.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder Hybrid,2015,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder Hybrid,2015,4,2.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder Platinum,2015,6,3.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pathfinder Platinum,2016,6,3.5,4-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Pickup,1984,4,2,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Pickup,1984,4,2.4,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Nissan,Pickup,1984,4,2.4,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Pickup,1984,4,2.5,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Pickup,1984,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Pickup,1984,4,2.4,2-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Nissan,Pickup,1984,4,2.4,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Pickup,1984,4,2.5,2-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Pickup,1984,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Pickup Cab Chassis,1984,4,2.4,,5-Speed Manual,Special Purpose Vehicle +Nissan,Pickup Cab Chassis,1984,4,2.4,,5-Speed Manual,Special Purpose Vehicle +Nissan,Pulsar NX,1986,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Pulsar NX,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar NX,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Pulsar NX,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar NX,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar NX,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Pulsar NX,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar NX,1988,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Pulsar NX,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar NX,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Pulsar NX,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar NX,1989,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Pulsar NX,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar NX,1990,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Pulsar NX,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar NX,1990,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Pulsar NX,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar/Pulsar-NX,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Nissan,Pulsar/Pulsar-NX,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Nissan,Pulsar/Pulsar-NX,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Nissan,Pulsar/Pulsar-NX,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Nissan,Pulsar/Pulsar-NX,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Pulsar/Pulsar-NX,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar/Pulsar-NX,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Pulsar/Pulsar-NX,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Pulsar/Pulsar-NX,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Pulsar/Pulsar-NX,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Quest,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Quest,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Quest,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Quest,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Quest,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Quest,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Quest,1999,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Nissan,Quest,2000,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Nissan,Quest,2001,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Nissan,Quest,2002,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Nissan,Quest,2004,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Nissan,Quest,2004,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Nissan,Quest,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Nissan,Quest,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Nissan,Quest,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Nissan,Quest,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Nissan,Quest,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Nissan,Quest,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Nissan,Quest,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Nissan,Quest,2011,6,3.5,Front-Wheel Drive,CVT,Minivan +Nissan,Quest,2012,6,3.5,Front-Wheel Drive,CVT,Minivan +Nissan,Quest,2013,6,3.5,Front-Wheel Drive,CVT,Minivan +Nissan,Quest,2014,6,3.5,Front-Wheel Drive,CVT,Minivan +Nissan,Quest,2015,6,3.5,Front-Wheel Drive,CVT,Minivan +Nissan,Quest,2016,6,3.5,Front-Wheel Drive,CVT,Minivan +Nissan,Rogue,2008,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Rogue,2008,4,2.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Rogue,2009,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Rogue,2009,4,2.5,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Rogue,2010,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Rogue,2010,4,2.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Rogue,2011,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Rogue,2011,4,2.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Rogue,2012,4,2.5,Front-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Rogue,2012,4,2.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Nissan,Rogue,2013,4,2.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue,2013,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue,2014,4,2.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue,2014,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue,2015,4,2.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue,2015,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue,2016,4,2.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue,2016,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue Select,2014,4,2.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue Select,2014,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue Select,2015,4,2.5,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Rogue Select,2015,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Nissan,Sentra,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Nissan,Sentra,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1984,4,1.7,,3-Speed Automatic,Subcompact Cars +Nissan,Sentra,1984,4,1.7,,4-Speed Manual,Subcompact Cars +Nissan,Sentra,1984,4,1.7,,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Nissan,Sentra,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1984,4,1.7,,4-Speed Manual,Subcompact Cars +Nissan,Sentra,1984,4,1.7,,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1985,4,1.7,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Nissan,Sentra,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1985,4,1.7,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Nissan,Sentra,1986,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1986,4,1.7,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Nissan,Sentra,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Nissan,Sentra,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Nissan,Sentra,1988,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Nissan,Sentra,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Nissan,Sentra,1989,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Nissan,Sentra,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,1990,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra,1990,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Nissan,Sentra,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1991,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra,1991,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Nissan,Sentra,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1992,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra,1992,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Nissan,Sentra,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra,1992,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1993,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1994,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2002,4,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2002,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2002,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Nissan,Sentra,2002,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2003,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2003,4,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2003,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2003,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Nissan,Sentra,2004,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2004,4,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2004,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Nissan,Sentra,2005,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2005,4,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2005,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Nissan,Sentra,2006,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2006,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Sentra,2006,4,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Sentra,2006,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Nissan,Sentra,2007,4,2,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2007,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2007,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2007,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2008,4,2,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2008,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2008,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2008,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2009,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2009,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2009,4,2,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2009,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2010,4,2,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2010,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2010,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2010,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2011,4,2,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2011,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2011,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2011,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2012,4,2,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2012,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2012,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2012,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2013,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2013,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2013,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2014,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2014,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2014,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2015,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2015,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra,2016,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Sentra,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra Classic,1995,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra Classic,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra Coupe,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra Coupe,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra Coupe,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra Coupe,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra Coupe,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra Coupe,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra Coupe,1990,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra Coupe,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra FE,2009,4,2,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra FE,2013,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra FE,2014,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra FE,2015,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra FE,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Sentra Honeybee,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Nissan,Sentra Honeybee,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra Wagon,1984,4,1.6,,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1984,4,1.7,,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1984,4,1.7,,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1984,4,1.6,,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1984,4,1.7,,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1986,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1987,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1988,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1989,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1989,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra Wagon,1990,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Nissan,Sentra Wagon,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Nissan,Sentra/200SX,1995,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra/200SX,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra/200SX,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra/200SX,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra/200SX,1996,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra/200SX,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra/200SX,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra/200SX,1996,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra/200SX,1997,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra/200SX,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra/200SX,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra/200SX,1997,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra/200SX,1998,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra/200SX,1998,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra/200SX,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra/200SX,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra/200SX,1999,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra/200SX,1999,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Sentra/200SX,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Nissan,Sentra/200SX,1999,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Nissan,Stanza,1984,4,2,,3-Speed Automatic,Compact Cars +Nissan,Stanza,1984,4,2,,5-Speed Manual,Compact Cars +Nissan,Stanza,1984,4,2,,3-Speed Automatic,Compact Cars +Nissan,Stanza,1984,4,2,,5-Speed Manual,Compact Cars +Nissan,Stanza,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Nissan,Stanza,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Stanza,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Nissan,Stanza,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Stanza,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Nissan,Stanza,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Stanza,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Stanza,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Stanza,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Stanza,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Stanza,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Stanza,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Stanza,1990,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Stanza,1990,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Stanza,1991,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Stanza,1991,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Stanza,1992,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Stanza,1992,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Stanza Wagon,1986,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Nissan,Stanza Wagon,1986,4,2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Nissan,Stanza Wagon,1986,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Stanza Wagon,1986,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Stanza Wagon,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Nissan,Stanza Wagon,1987,4,2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Nissan,Stanza Wagon,1987,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Stanza Wagon,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Nissan,Stanza Wagon,1988,4,2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Nissan,Stanza Wagon,1988,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Stanza Wagon,1988,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Titan,2004,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2004,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2005,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2005,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2005,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2005,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2006,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2006,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2006,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2006,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2007,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2007,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2007,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2007,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2008,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2008,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2008,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2008,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2009,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2009,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2009,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2009,8,5.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2010,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2010,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2010,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2010,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2011,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2011,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2011,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2011,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2012,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2012,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2012,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2012,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2013,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2013,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2013,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2013,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2014,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2014,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2014,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2014,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2015,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2015,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2015,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan,2015,8,5.6,4-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Titan FE,2009,8,5.6,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Nissan,Truck,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1985,4,2.4,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1985,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1985,4,2.4,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1985,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1986,4,2.4,Rear-Wheel Drive,3-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1986,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1986,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1986,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1986,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1986,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1986,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1986,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1986,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1987,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1987,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1987,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1987,6,3,4-Wheel or All-Wheel Drive,3-Speed Automatic,Standard Pickup Trucks +Nissan,Truck,1987,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1988,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1988,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Nissan,Truck,1988,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1988,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1988,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Truck,1988,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1989,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1989,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Nissan,Truck,1989,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1989,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1989,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Truck,1989,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1991,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1991,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1991,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1991,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Truck,1991,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1992,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1992,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1992,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1992,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Truck,1992,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1993,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1993,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1993,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Truck,1993,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1994,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1994,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1994,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1994,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Truck,1994,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1995,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1995,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1995,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1995,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Nissan,Truck,1995,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1996,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1996,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1996,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck,1997,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Nissan,Truck,1997,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Nissan,Truck,1997,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Nissan,Truck Cab Chassis,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Truck Cab Chassis,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Truck Cab Chassis,1986,4,2.4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Truck Cab Chassis,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Truck Cab Chassis,1986,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Truck Cab Chassis,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Truck Cab Chassis,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Truck Cab Chassis,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Truck Cab Chassis,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Truck Cab Chassis,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Nissan,Truck Cab Chassis,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Nissan,Van (cargo),1988,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Nissan,Van (cargo),1988,4,2.4,Rear-Wheel Drive,5-Speed Manual,Vans +Nissan,Van (passenger),1987,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Nissan,Van (passenger),1987,4,2.4,Rear-Wheel Drive,5-Speed Manual,Vans +Nissan,Van (passenger),1988,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Nissan,Van (passenger),1988,4,2.4,Rear-Wheel Drive,5-Speed Manual,Vans +Nissan,Van (passenger),1990,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Nissan,Van (passenger),1990,4,2.4,Rear-Wheel Drive,5-Speed Manual,Vans +Nissan,Van(cargo),1987,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Nissan,Van(cargo),1987,4,2.4,Rear-Wheel Drive,5-Speed Manual,Vans +Nissan,Versa,2007,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Versa,2007,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Versa,2007,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Versa,2008,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Versa,2008,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Versa,2008,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Versa,2009,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Versa,2009,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Versa,2009,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Versa,2009,4,1.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Versa,2009,4,1.6,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Versa,2010,4,1.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Versa,2010,4,1.6,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Versa,2010,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Versa,2010,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Versa,2010,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Versa,2011,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Versa,2011,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Versa,2011,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Nissan,Versa,2011,4,1.6,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Nissan,Versa,2011,4,1.6,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Nissan,Versa,2012,4,1.8,Front-Wheel Drive,CVT,Compact Cars +Nissan,Versa,2012,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Versa,2012,4,1.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Nissan,Versa,2012,4,1.6,Front-Wheel Drive,CVT,Compact Cars +Nissan,Versa,2012,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Versa,2013,4,1.6,Front-Wheel Drive,CVT,Compact Cars +Nissan,Versa,2013,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Versa,2013,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Versa,2014,4,1.6,Front-Wheel Drive,CVT,Compact Cars +Nissan,Versa,2014,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Versa,2014,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Versa,2015,4,1.6,Front-Wheel Drive,CVT,Compact Cars +Nissan,Versa,2015,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Versa,2015,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Versa,2016,4,1.6,Front-Wheel Drive,CVT,Compact Cars +Nissan,Versa,2016,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Nissan,Versa,2016,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Nissan,Versa FE,2009,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Nissan,Xterra,2000,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2001,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2002,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2003,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2004,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2005,6,4,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2005,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2006,6,4,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2006,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2007,6,4,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2007,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2008,6,4,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2008,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2009,6,4,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2009,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2010,6,4,Rear-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2010,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2010,6,4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2011,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2011,6,4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2011,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2012,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2012,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra,2012,6,4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Nissan,Xterra,2013,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Nissan,Xterra,2013,6,4,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Nissan,Xterra,2013,6,4,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Nissan,Xterra,2014,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Nissan,Xterra,2014,6,4,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Nissan,Xterra,2014,6,4,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Nissan,Xterra,2015,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Nissan,Xterra,2015,6,4,4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Nissan,Xterra,2015,6,4,4-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Nissan,Xterra V6,2000,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2000,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2000,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2000,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2001,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2001,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2001,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2001,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2002,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2002,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2002,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2002,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2002,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2002,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2002,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2002,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2003,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2003,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2003,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2003,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2003,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2003,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2003,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2003,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2004,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2004,6,3.3,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2004,6,3.3,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Nissan,Xterra V6,2004,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2004,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Nissan,Xterra V6,2004,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Oldsmobile,Achieva,1992,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1992,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1992,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1993,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1993,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1993,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1994,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1994,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1994,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1995,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1995,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1995,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1996,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1997,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1997,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Achieva,1998,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Achieva,1998,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,1999,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,2000,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Alero,2000,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Alero,2001,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,2002,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,2002,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Alero,2002,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,2003,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,2003,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Alero,2003,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,2004,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Alero,2004,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Alero,2004,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Oldsmobile,Aurora,1995,8,4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Aurora,1996,8,4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Aurora,1997,8,4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Aurora,1998,8,4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Aurora,1999,8,4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Aurora,2001,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Aurora,2001,8,4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Aurora,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Aurora,2002,8,4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Aurora,2003,8,4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Bravada,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Bravada,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Bravada,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Bravada,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Bravada,1994,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Bravada,1996,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Bravada,1997,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Bravada,1998,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Bravada,1999,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Oldsmobile,Bravada,2000,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Oldsmobile,Bravada,2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Oldsmobile,Bravada,2001,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Bravada,2002,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Oldsmobile,Bravada,2002,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Oldsmobile,Bravada,2003,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Oldsmobile,Bravada,2003,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Oldsmobile,Bravada,2004,6,4.2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Oldsmobile,Bravada,2004,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Oldsmobile,Calais,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Calais,1985,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Calais,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Calais,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Calais,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Calais,1986,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Calais,1986,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Calais,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Calais,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Calais,1987,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Ciera SL,1996,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Ciera SL,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Ciera SL Wagon,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser Wagon,1984,8,5.7,,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser Wagon,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Custom Cruiser Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass,1997,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass,1998,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass,1999,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Calais,1988,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1988,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Cutlass Calais,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Cutlass Calais,1988,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1989,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1989,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Cutlass Calais,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Cutlass Calais,1989,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1990,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1990,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Cutlass Calais,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Cutlass Calais,1990,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1991,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1991,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Cutlass Calais,1991,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Cutlass Calais,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Calais,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Cutlass Calais,1991,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Cutlass Ciera,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1984,6,3,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1984,6,4.3,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1984,6,3,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1984,6,3.8,,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1984,6,4.3,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1984,6,4.3,,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1985,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1986,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1987,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1988,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1989,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1989,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1990,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1990,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1991,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1991,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1992,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1993,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1994,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Ciera,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Cruiser,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1987,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1989,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1990,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1991,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1991,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1992,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1993,6,3.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1984,4,2.5,,3-Speed Automatic,Midsize Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1984,6,3,,3-Speed Automatic,Midsize Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1984,6,3.8,,4-Speed Automatic,Midsize Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1984,6,4.3,,3-Speed Automatic,Midsize Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1984,4,2.5,,3-Speed Automatic,Midsize Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1984,6,3,,3-Speed Automatic,Midsize Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1984,6,3.8,,4-Speed Automatic,Midsize Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1984,6,4.3,,3-Speed Automatic,Midsize Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1984,6,4.3,,4-Speed Automatic,Midsize Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1985,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1985,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Cruiser Wagon,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Oldsmobile,Cutlass Supreme,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1984,6,4.3,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1984,6,4.3,,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1984,8,5,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1984,8,5,,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1984,8,5.7,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1984,8,5.7,,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1984,6,4.3,,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1984,8,5,,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1984,8,5,,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1985,8,5.7,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1986,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1987,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1987,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Oldsmobile,Cutlass Supreme,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1989,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Oldsmobile,Cutlass Supreme,1989,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1990,4,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1990,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Oldsmobile,Cutlass Supreme,1990,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1991,4,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1991,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1991,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1991,6,3.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Oldsmobile,Cutlass Supreme,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1992,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1992,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1992,6,3.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Oldsmobile,Cutlass Supreme,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1993,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1993,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1993,6,3.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Oldsmobile,Cutlass Supreme,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1994,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1995,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1996,6,3.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1997,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme,1997,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Cutlass Supreme Classic,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Delta 88,1984,6,3.8,,3-Speed Automatic,Large Cars +Oldsmobile,Delta 88,1984,8,5,,3-Speed Automatic,Large Cars +Oldsmobile,Delta 88,1984,8,5,,4-Speed Automatic,Large Cars +Oldsmobile,Delta 88,1984,8,5.7,,3-Speed Automatic,Large Cars +Oldsmobile,Delta 88,1984,8,5.7,,4-Speed Automatic,Large Cars +Oldsmobile,Delta 88,1984,6,3.8,,3-Speed Automatic,Large Cars +Oldsmobile,Delta 88,1984,8,5,,3-Speed Automatic,Large Cars +Oldsmobile,Delta 88,1984,8,5,,4-Speed Automatic,Large Cars +Oldsmobile,Delta 88,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Delta 88 Royale,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Oldsmobile,Delta 88 Royale,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Oldsmobile,Delta 88 Royale,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Delta 88 Royale,1985,8,5.7,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Oldsmobile,Delta 88 Royale,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Delta 88 Royale,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Oldsmobile,Delta 88 Royale,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Delta 88 Royale,1986,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Delta 88 Royale,1986,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Delta 88 Royale,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight/Regency,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight/Regency,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight/Regency,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight/Regency,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight/Regency/LSS,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Eighty-Eight/Regency/LSS,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Firenza,1984,4,1.8,,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1984,4,1.8,,5-Speed Manual,Compact Cars +Oldsmobile,Firenza,1984,4,2,,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1984,4,2,,4-Speed Manual,Compact Cars +Oldsmobile,Firenza,1984,4,2,,5-Speed Manual,Compact Cars +Oldsmobile,Firenza,1984,4,1.8,,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1984,4,1.8,,5-Speed Manual,Compact Cars +Oldsmobile,Firenza,1984,4,2,,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1984,4,2,,4-Speed Manual,Compact Cars +Oldsmobile,Firenza,1984,4,2,,5-Speed Manual,Compact Cars +Oldsmobile,Firenza,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Firenza,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1985,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Oldsmobile,Firenza,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Oldsmobile,Firenza,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1985,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Oldsmobile,Firenza,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Oldsmobile,Firenza,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1986,4,1.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Oldsmobile,Firenza,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Firenza,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1986,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Oldsmobile,Firenza,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1986,6,2.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Oldsmobile,Firenza,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1987,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Oldsmobile,Firenza,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Firenza,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Firenza,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Firenza,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Oldsmobile,Firenza,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Oldsmobile,Firenza Cruiser,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser,1986,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser,1986,6,2.8,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser,1987,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser,1987,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser,1988,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser,1988,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1984,4,1.8,,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1984,4,1.8,,5-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1984,4,2,,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1984,4,2,,4-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1984,4,2,,5-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1984,4,1.8,,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1984,4,1.8,,5-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1984,4,2,,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1984,4,2,,4-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1984,4,2,,5-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1985,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1985,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Oldsmobile,Firenza Cruiser Wagon,1985,6,2.8,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Oldsmobile,Intrigue,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Intrigue,1999,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Intrigue,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Intrigue,2000,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Intrigue,2001,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Intrigue,2002,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Ninety-Eight,1984,8,5,,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight,1984,8,5.7,,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight,1984,8,5,,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight II,1984,6,4.3,,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight Regency,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight Regency,1985,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight Regency,1985,6,4.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight Regency,1985,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight Regency,1985,6,4.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight Regency,1986,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight Regency,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight/Touring,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight/Touring,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight/Touring,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Ninety-Eight/Touring,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Oldsmobile,Omega,1984,4,2.5,,3-Speed Automatic,Compact Cars +Oldsmobile,Omega,1984,4,2.5,,4-Speed Manual,Compact Cars +Oldsmobile,Omega,1984,6,2.8,,3-Speed Automatic,Compact Cars +Oldsmobile,Omega,1984,6,2.8,,4-Speed Manual,Compact Cars +Oldsmobile,Omega,1984,4,2.5,,3-Speed Automatic,Compact Cars +Oldsmobile,Omega,1984,4,2.5,,4-Speed Manual,Compact Cars +Oldsmobile,Omega,1984,6,2.8,,3-Speed Automatic,Compact Cars +Oldsmobile,Omega,1984,6,2.8,,4-Speed Manual,Compact Cars +Oldsmobile,Silhouette,1990,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1994,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1995,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1996,6,3.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1997,6,3.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1998,6,3.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Oldsmobile,Silhouette,1999,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Oldsmobile,Silhouette,2000,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Oldsmobile,Silhouette,2001,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Oldsmobile,Silhouette,2002,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Oldsmobile,Silhouette,2002,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Oldsmobile,Silhouette,2003,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Oldsmobile,Silhouette,2003,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Oldsmobile,Silhouette,2004,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Oldsmobile,Silhouette,2004,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Oldsmobile,Toronado,1984,6,4.1,,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1984,8,5,,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1984,8,5.7,,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1984,6,4.1,,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1984,8,5,,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1985,8,5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1985,8,5.7,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1985,8,5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1986,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Toronado,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Trofeo/Toronado,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Oldsmobile,Trofeo/Toronado,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pagani,Huayra Coupe,2014,12,6,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Pagani,Huayra Coupe,2016,12,6,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Panos,Roadster,1993,8,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Panoz Auto-Development,Panoz Roadster,1995,8,5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Panther Car Company Limited,Kallista,1986,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Panther Car Company Limited,Kallista,1986,4,2.3,Rear-Wheel Drive,4-Speed Manual,Two Seaters +Panther Car Company Limited,Kallista,1988,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Panther Car Company Limited,Kallista,1988,4,2.3,Rear-Wheel Drive,4-Speed Manual,Two Seaters +PAS Inc - GMC,Pas-Syclone,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +PAS Inc - GMC,Pas-typhoon,1992,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +"PAS, Inc",Pas-Syclone,1991,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +"PAS, Inc",Pas-Typhoon,1993,6,4.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Peugeot,505,1985,4,2,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Peugeot,505,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505,1985,4,2.1,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505,1985,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Peugeot,505,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sedan,1989,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,405 Sedan,1989,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,405 Sedan,1989,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sedan,1989,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sedan,1989,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sedan,1989,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sedan,1990,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,405 Sedan,1990,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sedan,1990,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sedan,1991,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,405 Sedan,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sedan,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sedan,1992,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,405 Sedan,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sedan,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,405 Sports Wagon,1991,4,1.9,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,405 Sports Wagon,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Peugeot,405 Sports Wagon,1992,4,1.9,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,405 Sports Wagon,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Peugeot,405 Station Wagon,1990,4,1.9,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,405 Station Wagon,1990,4,1.9,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Peugeot,505 Sedan,1984,4,2,,3-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1984,4,2,,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1984,4,2.3,,3-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1984,4,2.3,,3-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1984,4,2.3,,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1984,4,2.3,,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1984,4,2,,3-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1984,4,2,,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1984,4,2.3,,3-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1984,4,2.3,,3-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1984,4,2.3,,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1984,4,2.3,,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1986,4,2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1986,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1986,4,2.2,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1986,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1987,4,2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1987,4,2.1,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1987,4,2.1,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1987,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1987,4,2.2,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1987,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1987,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1987,6,2.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1988,4,2.1,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1988,4,2.1,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1988,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1988,4,2.2,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1988,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1988,6,2.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1989,4,2.1,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1989,4,2.1,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1989,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1989,4,2.2,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Sedan,1989,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Peugeot,505 Sedan,1989,6,2.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Peugeot,505 Station Wagon,1984,4,2,,3-Speed Automatic,Midsize Station Wagons +Peugeot,505 Station Wagon,1984,4,2,,5-Speed Manual,Midsize Station Wagons +Peugeot,505 Station Wagon,1984,4,2.3,,3-Speed Automatic,Midsize Station Wagons +Peugeot,505 Station Wagon,1984,4,2.3,,3-Speed Automatic,Midsize Station Wagons +Peugeot,505 Station Wagon,1984,4,2,,3-Speed Automatic,Midsize Station Wagons +Peugeot,505 Station Wagon,1984,4,2,,5-Speed Manual,Midsize Station Wagons +Peugeot,505 Station Wagon,1984,4,2.3,,3-Speed Automatic,Midsize Station Wagons +Peugeot,505 Station Wagon,1984,4,2.3,,3-Speed Automatic,Midsize Station Wagons +Peugeot,505 Station Wagon,1986,4,2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1986,4,2,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1986,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1986,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1987,4,2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1987,4,2.1,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1987,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1988,4,2.1,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1988,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1988,4,2.2,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1989,4,2.1,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1989,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1989,4,2.2,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1990,4,2.1,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1990,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1990,4,2.2,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1991,4,2.1,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1991,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1991,4,2.2,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1992,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Station Wagon,1992,4,2.2,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Peugeot,505 Wagon,1985,4,2,Rear-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Peugeot,505 Wagon,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Peugeot,505 Wagon,1985,4,2.3,Rear-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Peugeot,604 Sedan,1984,4,2.3,,3-Speed Automatic,Compact Cars +Peugeot,604 Sedan,1984,4,2.3,,5-Speed Manual,Compact Cars +Pininfarina,Spider,1984,4,2,,3-Speed Automatic,Two Seaters +Pininfarina,Spider,1984,4,2,,5-Speed Manual,Two Seaters +Pininfarina,Spider,1984,4,2,,3-Speed Automatic,Two Seaters +Pininfarina,Spider,1984,4,2,,5-Speed Manual,Two Seaters +Pininfarina,Spider,1985,4,2,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Pininfarina,Spider,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Plymouth,Acclaim,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Acclaim,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Acclaim,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Acclaim,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Acclaim,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Acclaim,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Acclaim,1992,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1993,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Acclaim,1993,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1994,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1994,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1994,4,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Acclaim,1994,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1995,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Acclaim,1995,6,3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Breeze,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Breeze,1996,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Breeze,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Breeze,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Breeze,1997,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Breeze,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Breeze,1998,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Breeze,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Breeze,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Breeze,1999,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Breeze,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Breeze,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Breeze,2000,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Breeze,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Caravelle,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Colt,1984,4,1.4,,4-Speed Manual,Subcompact Cars +Plymouth,Colt,1984,4,1.4,,4-Speed Manual Doubled,Subcompact Cars +Plymouth,Colt,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1984,4,1.6,,4-Speed Manual Doubled,Subcompact Cars +Plymouth,Colt,1984,4,1.4,,4-Speed Manual,Subcompact Cars +Plymouth,Colt,1984,4,1.4,,4-Speed Manual Doubled,Subcompact Cars +Plymouth,Colt,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1984,4,1.6,,4-Speed Manual Doubled,Subcompact Cars +Plymouth,Colt,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1985,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Colt,1986,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1986,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Colt,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1986,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1987,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1987,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Colt,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1988,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Colt,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1989,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Colt,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1990,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1990,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Colt,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Colt,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1991,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1991,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Colt,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1992,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1992,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Colt,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1993,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Colt,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1994,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Colt,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Colt,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Colt Vista,1984,4,2,,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1984,4,2,,4-Speed Manual Doubled,Small Station Wagons +Plymouth,Colt Vista,1984,4,2,,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1984,4,2,,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1984,4,2,,4-Speed Manual Doubled,Small Station Wagons +Plymouth,Colt Vista,1984,4,2,,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1985,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1985,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Colt Vista,1985,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Colt Vista,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1985,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1986,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1986,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Colt Vista,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1987,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1987,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1987,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Colt Vista,1987,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Colt Vista,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1988,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1988,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Colt Vista,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1989,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1989,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Colt Vista,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1990,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1990,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Colt Vista,1991,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Vista,1991,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Vista,1991,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Colt Vista,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1992,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Vista,1992,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Vista,1992,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1992,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1992,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Vista,1992,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Vista,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1993,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Vista,1993,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Vista,1993,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1993,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1993,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Vista,1993,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Vista,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Vista,1994,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1994,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Colt Vista,1994,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Vista,1994,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Colt Wagon,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Wagon,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Wagon,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Wagon,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Wagon,1989,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Colt Wagon,1990,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Plymouth,Colt Wagon,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Plymouth,Colt Wagon,1990,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Conquest,1984,4,2.6,,4-Speed Automatic,Subcompact Cars +Plymouth,Conquest,1984,4,2.6,,4-Speed Automatic,Subcompact Cars +Plymouth,Conquest,1984,4,2.6,,5-Speed Manual,Subcompact Cars +Plymouth,Conquest,1984,4,2.6,,5-Speed Manual,Subcompact Cars +Plymouth,Conquest,1984,4,2.6,,4-Speed Automatic,Subcompact Cars +Plymouth,Conquest,1984,4,2.6,,5-Speed Manual,Subcompact Cars +Plymouth,Conquest,1985,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Conquest,1985,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Conquest,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Conquest,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Conquest,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Conquest,1985,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Conquest,1986,4,2.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Conquest,1986,4,2.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Gran Fury,1984,8,5.2,,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1984,8,5.2,,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1984,8,5.2,,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1985,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1986,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1987,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1988,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Gran Fury,1989,8,5.2,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Horizon,1984,4,1.6,,4-Speed Manual,Compact Cars +Plymouth,Horizon,1984,4,2.2,,3-Speed Automatic,Compact Cars +Plymouth,Horizon,1984,4,2.2,,5-Speed Manual,Compact Cars +Plymouth,Horizon,1984,4,1.6,,4-Speed Manual,Compact Cars +Plymouth,Horizon,1984,4,2.2,,3-Speed Automatic,Compact Cars +Plymouth,Horizon,1984,4,2.2,,5-Speed Manual,Compact Cars +Plymouth,Horizon,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Plymouth,Horizon,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Plymouth,Horizon,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Plymouth,Horizon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Horizon,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Horizon,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Horizon,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Plymouth,Horizon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Horizon,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Horizon,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Plymouth,Horizon,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Plymouth,Horizon,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Horizon,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Horizon,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Horizon,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Horizon,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Horizon,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Horizon,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Horizon,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Horizon,1990,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Horizon,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1990,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1991,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1992,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1992,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1992,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1993,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1993,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1994,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Plymouth,Laser,1994,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Laser,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Neon,1995,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Neon,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Neon,1996,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Neon,1996,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Neon,1997,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Neon,1997,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Neon,1998,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Neon,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Neon,1999,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Neon,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Neon,2000,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Neon,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Neon,2001,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Neon,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Prowler,1999,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Plymouth,Prowler,2000,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Plymouth,Prowler,2001,6,3.5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Plymouth,Reliant,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1984,4,2.2,,4-Speed Manual,Midsize Cars +Plymouth,Reliant,1984,4,2.2,,5-Speed Manual,Midsize Cars +Plymouth,Reliant,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1984,4,2.2,,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1984,4,2.2,,4-Speed Manual,Midsize Cars +Plymouth,Reliant,1984,4,2.2,,5-Speed Manual,Midsize Cars +Plymouth,Reliant,1984,4,2.6,,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Midsize Cars +Plymouth,Reliant,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Reliant,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Midsize Cars +Plymouth,Reliant,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Reliant,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Reliant,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Reliant,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Reliant,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Reliant,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Plymouth,Reliant,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Plymouth,Reliant Wagon,1984,4,2.2,,3-Speed Automatic,Midsize Station Wagons +Plymouth,Reliant Wagon,1984,4,2.2,,4-Speed Manual,Midsize Station Wagons +Plymouth,Reliant Wagon,1984,4,2.2,,5-Speed Manual,Midsize Station Wagons +Plymouth,Reliant Wagon,1984,4,2.6,,3-Speed Automatic,Midsize Station Wagons +Plymouth,Reliant Wagon,1984,4,2.2,,3-Speed Automatic,Midsize Station Wagons +Plymouth,Reliant Wagon,1984,4,2.2,,4-Speed Manual,Midsize Station Wagons +Plymouth,Reliant Wagon,1984,4,2.2,,5-Speed Manual,Midsize Station Wagons +Plymouth,Reliant Wagon,1984,4,2.6,,3-Speed Automatic,Midsize Station Wagons +Plymouth,Reliant Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1985,4,2.2,Front-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Plymouth,Reliant Wagon,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Plymouth,Sundance,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1988,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1988,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1990,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1991,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance Convertible,1989,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Sundance Convertible,1989,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Sundance Convertible,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Sundance Convertible,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Sundance Convertible,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Sundance/Duster,1992,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance/Duster,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance/Duster,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance/Duster,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance/Duster,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance/Duster,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance/Duster,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Plymouth,Sundance/Duster,1992,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance/Duster,1993,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance/Duster,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance/Duster,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance/Duster,1993,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance/Duster,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Plymouth,Sundance/Duster,1993,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance/Duster,1994,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance/Duster,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance/Duster,1994,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Plymouth,Sundance/Duster,1994,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Sundance/Duster,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Plymouth,Sundance/Duster,1994,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Plymouth,Turismo,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Plymouth,Turismo,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Plymouth,Turismo,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Plymouth,Turismo,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Plymouth,Turismo,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Plymouth,Turismo,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Plymouth,Turismo,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Turismo,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Turismo,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Turismo,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Turismo,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Turismo,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Turismo,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Turismo,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Turismo,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Turismo,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Turismo,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Turismo,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Turismo,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Plymouth,Turismo,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Turismo,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Turismo,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Turismo,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Plymouth,Turismo,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Plymouth,Voyager,1984,4,2.2,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager,1984,4,2.6,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager,1984,4,2.2,2-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager,1985,4,2.6,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager,1986,4,2.6,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1987,4,2.2,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1987,4,2.2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1987,4,2.6,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1987,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1988,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1989,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1989,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1990,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1990,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1990,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1991,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1991,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1991,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1991,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1992,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1992,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1992,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1992,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1992,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1993,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1993,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1993,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1993,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1994,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1994,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1994,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1994,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1994,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1995,4,2.5,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1995,4,2.5,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1995,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1995,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1995,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1996,4,2.4,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1996,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1996,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1996,6,3.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1997,4,2.4,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1997,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1997,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1998,4,2.4,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1998,6,3,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1998,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1998,6,3.3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Plymouth,Voyager/Grand Voyager,1999,4,2.4,Front-Wheel Drive,3-Speed Automatic,Minivan +Plymouth,Voyager/Grand Voyager,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Plymouth,Voyager/Grand Voyager,1999,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Plymouth,Voyager/Grand Voyager,1999,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Plymouth,Voyager/Grand Voyager,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Plymouth,Voyager/Grand Voyager,1999,,,Front-Wheel Drive,1-Speed Direct Drive,Minivan +Plymouth,Voyager/Grand Voyager,2000,4,2.4,Front-Wheel Drive,3-Speed Automatic,Minivan +Plymouth,Voyager/Grand Voyager,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Plymouth,Voyager/Grand Voyager,2000,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Plymouth,Voyager/Grand Voyager,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Plymouth,Voyager/Grand Voyager,2000,6,3.3,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,1000,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Pontiac,1000,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Pontiac,1000,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Pontiac,1000,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Pontiac,1000,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Pontiac,1000,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Pontiac,1000,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Pontiac,1000,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Pontiac,1000,1985,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,1000,1985,4,1.6,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Pontiac,1000,1985,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,1000,1985,4,1.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,1000,1985,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,1000,1985,4,1.6,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Pontiac,1000,1985,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,1000,1986,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,1000,1986,4,1.6,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Pontiac,1000,1986,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,1000,1987,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,1000,1987,4,1.6,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Pontiac,1000,1987,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,6000,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Pontiac,6000,1984,6,2.8,,3-Speed Automatic,Midsize Cars +Pontiac,6000,1984,6,4.3,,3-Speed Automatic,Midsize Cars +Pontiac,6000,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Pontiac,6000,1984,6,2.8,,3-Speed Automatic,Midsize Cars +Pontiac,6000,1984,6,4.3,,3-Speed Automatic,Midsize Cars +Pontiac,6000,1984,6,4.3,,4-Speed Automatic,Midsize Cars +Pontiac,6000,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1985,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,6000,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1985,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,6000,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,6000,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,6000,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1987,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,6000,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Pontiac,6000,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1988,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,6000,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Pontiac,6000,1988,6,3.1,4-Wheel or All-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1989,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,6000,1989,6,3.1,4-Wheel or All-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1990,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1990,6,3.1,4-Wheel or All-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1990,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,6000,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,6000,1991,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,2000 Sunbird,1984,4,1.8,,3-Speed Automatic,Compact Cars +Pontiac,2000 Sunbird,1984,4,1.8,,3-Speed Automatic,Compact Cars +Pontiac,2000 Sunbird,1984,4,1.8,,4-Speed Manual,Compact Cars +Pontiac,2000 Sunbird,1984,4,1.8,,5-Speed Manual,Compact Cars +Pontiac,2000 Sunbird,1984,4,1.8,,5-Speed Manual,Compact Cars +Pontiac,2000 Sunbird,1984,4,2,,4-Speed Manual,Compact Cars +Pontiac,2000 Sunbird,1984,4,1.8,,3-Speed Automatic,Compact Cars +Pontiac,2000 Sunbird,1984,4,1.8,,3-Speed Automatic,Compact Cars +Pontiac,2000 Sunbird,1984,4,1.8,,4-Speed Manual,Compact Cars +Pontiac,2000 Sunbird,1984,4,1.8,,5-Speed Manual,Compact Cars +Pontiac,2000 Sunbird,1984,4,2,,4-Speed Manual,Compact Cars +Pontiac,2000 Sunbird Convertible,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Pontiac,2000 Sunbird Convertible,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Pontiac,2000 Sunbird Convertible,1984,4,1.8,,4-Speed Manual,Subcompact Cars +Pontiac,2000 Sunbird Convertible,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Pontiac,2000 Sunbird Convertible,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Pontiac,2000 Sunbird Convertible,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Pontiac,2000 Sunbird Convertible,1984,4,1.8,,4-Speed Manual,Subcompact Cars +Pontiac,2000 Sunbird Convertible,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Pontiac,2000 Sunbird Wagon,1984,4,1.8,,3-Speed Automatic,Small Station Wagons +Pontiac,2000 Sunbird Wagon,1984,4,1.8,,5-Speed Manual,Small Station Wagons +Pontiac,2000 Sunbird Wagon,1984,4,2,,4-Speed Manual,Small Station Wagons +Pontiac,2000 Sunbird Wagon,1984,4,1.8,,3-Speed Automatic,Small Station Wagons +Pontiac,2000 Sunbird Wagon,1984,4,1.8,,5-Speed Manual,Small Station Wagons +Pontiac,2000 Sunbird Wagon,1984,4,2,,4-Speed Manual,Small Station Wagons +Pontiac,20th Anniversary Trans Am,1989,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,6000 Wagon,1984,4,2.5,,3-Speed Automatic,Midsize Station Wagons +Pontiac,6000 Wagon,1984,6,2.8,,3-Speed Automatic,Midsize Station Wagons +Pontiac,6000 Wagon,1984,6,2.8,,4-Speed Automatic,Midsize Station Wagons +Pontiac,6000 Wagon,1984,6,4.3,,3-Speed Automatic,Midsize Station Wagons +Pontiac,6000 Wagon,1984,4,2.5,,3-Speed Automatic,Midsize Station Wagons +Pontiac,6000 Wagon,1984,6,2.8,,3-Speed Automatic,Midsize Station Wagons +Pontiac,6000 Wagon,1984,6,2.8,,4-Speed Automatic,Midsize Station Wagons +Pontiac,6000 Wagon,1984,6,4.3,,3-Speed Automatic,Midsize Station Wagons +Pontiac,6000 Wagon,1984,6,4.3,,4-Speed Automatic,Midsize Station Wagons +Pontiac,6000 Wagon,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1985,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1985,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1985,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1985,6,4.3,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1986,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1986,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1987,6,2.8,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1987,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1987,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1990,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Midsize-Large Station Wagons +Pontiac,6000 Wagon,1991,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Aztek,2001,6,3.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Pontiac,Aztek,2001,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Pontiac,Aztek,2002,6,3.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Pontiac,Aztek,2002,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Pontiac,Aztek,2003,6,3.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Pontiac,Aztek,2003,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Pontiac,Aztek,2004,6,3.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Pontiac,Aztek,2004,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Pontiac,Aztek,2005,6,3.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Pontiac,Aztek,2005,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Pontiac,Bonneville,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1984,8,5,,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1984,8,5,,4-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1984,8,5.7,,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1984,8,5.7,,4-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1984,8,5,,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1984,8,5,,4-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Bonneville,1987,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1988,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1989,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1990,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1991,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1996,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2004,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Bonneville,2005,8,4.6,Front-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Fiero,1984,4,2.5,,3-Speed Automatic,Two Seaters +Pontiac,Fiero,1984,4,2.5,,4-Speed Manual,Two Seaters +Pontiac,Fiero,1984,4,2.5,,4-Speed Manual,Two Seaters +Pontiac,Fiero,1984,4,2.5,,3-Speed Automatic,Two Seaters +Pontiac,Fiero,1984,4,2.5,,4-Speed Manual,Two Seaters +Pontiac,Fiero,1985,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Pontiac,Fiero,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Fiero,1985,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Pontiac,Fiero,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Two Seaters +Pontiac,Fiero,1986,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Pontiac,Fiero,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Fiero,1986,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Pontiac,Fiero,1986,6,2.8,Rear-Wheel Drive,4-Speed Manual,Two Seaters +Pontiac,Fiero,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Fiero,1987,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Pontiac,Fiero,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Fiero,1987,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Pontiac,Fiero,1987,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Fiero,1988,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Pontiac,Fiero,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Fiero,1988,6,2.8,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Pontiac,Fiero,1988,6,2.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Firebird,1984,4,2.5,,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1984,4,2.5,,4-Speed Manual,Subcompact Cars +Pontiac,Firebird,1984,4,2.5,,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1984,6,2.8,,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1984,6,2.8,,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1984,8,5,,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1984,8,5,,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1984,4,2.5,,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1984,4,2.5,,4-Speed Manual,Subcompact Cars +Pontiac,Firebird,1984,4,2.5,,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1984,6,2.8,,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1984,6,2.8,,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1984,8,5,,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1984,8,5,,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1985,4,2.5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1985,4,2.5,Rear-Wheel Drive,4-Speed Manual,Subcompact Cars +Pontiac,Firebird,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1985,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,1986,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,2002,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,2002,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird,2002,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird,2002,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1993,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1993,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1993,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1993,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1994,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1994,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1994,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1994,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1995,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1995,6,3.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1995,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1995,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1995,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1996,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1996,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1996,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1996,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1997,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1997,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1997,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1997,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1998,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1998,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Formula,1998,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Formula,1998,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1988,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1988,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1989,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1989,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1989,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1990,6,3.1,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1990,6,3.1,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1990,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1991,6,3.1,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1991,6,3.1,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1991,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1992,6,3.1,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1992,6,3.1,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1992,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1992,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1992,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1999,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1999,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,1999,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,1999,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,2000,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,2000,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,2000,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,2000,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,2001,6,3.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,2001,6,3.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am,2001,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am,2001,8,5.7,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am/Formula,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am/Formula,1987,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am/Formula,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am/Formula,1987,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am/Formula,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am/Formula,1987,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firebird/Trans Am/Formula,1987,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Firebird/Trans Am/Formula,1987,8,5,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly,1985,3,1,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Pontiac,Firefly,1985,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Pontiac,Firefly,1986,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Firefly,1986,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly,1987,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Firefly,1987,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly,1988,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Firefly,1988,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly,1989,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Firefly,1989,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Firefly,1989,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly,1989,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly,1990,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Firefly,1990,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly,1991,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Firefly,1991,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly,1992,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Firefly,1992,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly,1993,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Firefly,1993,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly,1994,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Firefly,1994,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Firefly FE,1986,3,1,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Pontiac,Firefly FE,1986,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Pontiac,G3 (3-Door),2010,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,G3 (3-Door),2010,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G3 (5-Door),2010,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G3 (5-Door),2010,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,G3 Wave,2009,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G3 Wave,2009,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,G3 Wave 5,2009,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,G3 Wave 5,2009,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5,2009,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5,2009,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,G5,2010,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,G5,2010,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5 GT,2009,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5 GT,2009,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,G5 GT,2010,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,G5 GT,2010,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5 XFE,2008,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5 XFE,2009,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5 XFE,2010,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5/Pursuit,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,G5/Pursuit,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5/Pursuit,2007,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,G5/Pursuit,2007,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5/Pursuit,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5/Pursuit,2008,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,G5/Pursuit,2008,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,G5/Pursuit,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,G6,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2006,6,3.9,Front-Wheel Drive,6-Speed Manual,Compact Cars +Pontiac,G6,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2007,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2007,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2007,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Pontiac,G6,2007,6,3.9,Front-Wheel Drive,6-Speed Manual,Compact Cars +Pontiac,G6,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2008,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2008,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Pontiac,G6,2008,6,3.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2009,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Pontiac,G6,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2009,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2009,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Pontiac,G6,2009,6,3.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2009,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Pontiac,G6,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Pontiac,G6,2010,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2010,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Pontiac,G6,2010,6,3.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6 GT/GTP Convertible,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6 GT/GTP Convertible,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G6 GT/GTP Convertible,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,G8,2008,8,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Pontiac,G8,2008,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Pontiac,G8,2009,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Pontiac,G8,2009,8,6,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Pontiac,G8,2009,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Pontiac,G8,2009,8,6.2,Rear-Wheel Drive,6-Speed Manual,Large Cars +Pontiac,Grand Am,1985,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1985,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1985,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1986,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1986,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1986,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1987,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1987,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1987,6,3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1988,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1988,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1988,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1988,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1989,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1989,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1989,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1989,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1990,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1990,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1990,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1990,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1991,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1991,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1991,4,2.5,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1991,4,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1992,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1992,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1992,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1993,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1993,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1993,6,3.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1994,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1994,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1994,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1995,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1995,4,2.3,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Grand Am,1995,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1996,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1997,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1997,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1998,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,1998,6,3.1,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,1999,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2000,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,2000,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,2001,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2002,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2002,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,2002,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2003,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2003,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,2003,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2004,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2004,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Grand Am,2004,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2005,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Am,2005,6,3.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Grand Prix,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1984,8,5,,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1984,8,5,,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1984,8,5.7,,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1984,8,5.7,,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1984,6,3.8,,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1984,8,5,,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1984,8,5,,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1985,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1985,8,5,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1986,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1987,6,3.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1987,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1987,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1988,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1988,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Pontiac,Grand Prix,1989,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1989,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Pontiac,Grand Prix,1989,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1990,4,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1990,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1990,6,3.1,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Pontiac,Grand Prix,1991,4,2.3,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1991,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1991,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1991,6,3.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Pontiac,Grand Prix,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1992,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1992,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1992,6,3.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Pontiac,Grand Prix,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1993,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1993,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1993,6,3.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Pontiac,Grand Prix,1994,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1994,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1995,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1995,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1996,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1996,6,3.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1997,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1997,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1998,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1998,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1999,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,1999,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2000,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2000,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2001,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2001,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2002,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2002,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2003,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2003,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2004,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2005,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2005,8,5.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2006,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2006,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2006,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2006,8,5.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2007,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2007,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2007,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2007,8,5.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2008,6,3.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix,2008,8,5.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix Ste Turbo,1990,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix Turbo,1989,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,Grand Prix Turbo,1990,6,3.1,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Pontiac,GTO,2004,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,GTO,2004,8,5.7,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Pontiac,GTO,2005,8,6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Pontiac,GTO,2005,8,6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,GTO,2006,8,6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,GTO,2006,8,6,Rear-Wheel Drive,6-Speed Manual,Compact Cars +Pontiac,Lemans,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Lemans,1988,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Lemans,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Lemans,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Lemans,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Lemans,1989,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Lemans,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Lemans,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Lemans,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Lemans,1990,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Lemans,1990,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Lemans,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Lemans,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Lemans,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Lemans,1991,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Lemans,1991,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Lemans,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Lemans,1991,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Lemans,1991,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Lemans,1992,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Lemans,1992,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Lemans,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Lemans,1993,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Lemans,1993,4,1.6,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Lemans,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Montana,2000,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana,2001,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana,2002,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana,2002,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana,2003,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana,2003,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana,2004,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana,2004,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana SV6,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana SV6,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana SV6,2006,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana SVX,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Montana SVX,2005,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Monterey Wagon,2005,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Parisienne,1984,6,3.8,,3-Speed Automatic,Large Cars +Pontiac,Parisienne,1984,8,5,,4-Speed Automatic,Large Cars +Pontiac,Parisienne,1984,8,5.7,,3-Speed Automatic,Large Cars +Pontiac,Parisienne,1984,8,5.7,,4-Speed Automatic,Large Cars +Pontiac,Parisienne,1984,6,3.8,,3-Speed Automatic,Large Cars +Pontiac,Parisienne,1984,8,5,,4-Speed Automatic,Large Cars +Pontiac,Parisienne,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Pontiac,Parisienne,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Parisienne,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Parisienne,1985,8,5.7,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Pontiac,Parisienne,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Parisienne,1985,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Pontiac,Parisienne,1985,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Parisienne,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Parisienne,1986,6,4.3,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Pontiac,Parisienne,1986,6,4.3,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Parisienne,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Parisienne,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Pontiac,Parisienne Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Parisienne Wagon,1984,8,5.7,,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Parisienne Wagon,1984,8,5,,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Parisienne Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Parisienne Wagon,1985,8,5.7,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Parisienne Wagon,1985,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Parisienne Wagon,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Parisienne Wagon,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Phoenix,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Pontiac,Phoenix,1984,6,2.8,,3-Speed Automatic,Midsize Cars +Pontiac,Phoenix,1984,6,2.8,,4-Speed Manual,Midsize Cars +Pontiac,Phoenix,1984,4,2.5,,3-Speed Automatic,Midsize Cars +Pontiac,Phoenix,1984,6,2.8,,3-Speed Automatic,Midsize Cars +Pontiac,Phoenix,1984,6,2.8,,4-Speed Manual,Midsize Cars +Pontiac,Safari Wagon,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Safari Wagon,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Safari Wagon,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Pontiac,Solstice,2006,4,2.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Solstice,2006,4,2.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Pontiac,Solstice,2007,4,2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Pontiac,Solstice,2007,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Solstice,2007,4,2.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Pontiac,Solstice,2007,4,2.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Solstice,2008,4,2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Pontiac,Solstice,2008,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Solstice,2008,4,2.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Pontiac,Solstice,2008,4,2.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Solstice,2009,4,2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Pontiac,Solstice,2009,4,2.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Pontiac,Solstice,2009,4,2.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Solstice,2009,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Solstice,2010,4,2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Pontiac,Solstice,2010,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Solstice,2010,4,2.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Pontiac,Solstice,2010,4,2.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Pontiac,Sunbird,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1985,4,1.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Sunbird,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1985,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Sunbird,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1985,4,1.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Sunbird,1985,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Sunbird,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1986,4,1.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Sunbird,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1986,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Sunbird,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1987,4,2,Front-Wheel Drive,4-Speed Manual,Compact Cars +Pontiac,Sunbird,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunbird,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunbird,1991,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird,1991,6,3.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird,1992,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird,1992,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird,1992,6,3.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird,1993,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird,1993,6,3.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird,1994,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird,1994,6,3.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird,1994,6,3.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1985,4,1.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1985,4,1.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1986,4,1.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1987,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1987,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1988,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1988,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1989,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1989,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1991,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Convertible,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunbird Convertible,1991,6,3.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunbird Wagon,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Pontiac,Sunbird Wagon,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Sunbird Wagon,1985,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Pontiac,Sunbird Wagon,1985,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Pontiac,Sunbird Wagon,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Pontiac,Sunbird Wagon,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Sunbird Wagon,1986,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Pontiac,Sunbird Wagon,1987,4,2,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Pontiac,Sunbird Wagon,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Pontiac,Sunbird Wagon,1987,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Sunbird Wagon,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Pontiac,Sunbird Wagon,1988,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Sunburst,1986,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunburst,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunburst,1987,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunburst,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunburst,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunburst,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunburst,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunburst,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunfire,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,1995,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,1995,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,1996,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunfire,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,1996,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,1996,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,1997,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunfire,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,1997,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,1997,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,1998,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunfire,1998,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Sunfire,1998,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunfire,1998,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Sunfire,1998,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunfire,1999,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunfire,1999,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Sunfire,1999,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunfire,1999,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Sunfire,1999,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunfire,2000,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Pontiac,Sunfire,2000,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Sunfire,2000,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunfire,2000,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Sunfire,2000,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Sunfire,2001,4,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Pontiac,Sunfire,2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,2001,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,2001,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,2002,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,2002,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,2002,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,2002,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,2003,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,2003,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,2004,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,2004,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Sunfire,2005,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Sunfire,2005,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Torrent,2006,6,3.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2006,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2007,6,3.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2007,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2008,6,3.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2008,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2009,6,3.4,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2009,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Pontiac,Torrent,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Pontiac,Trans Sport,1990,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1991,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1992,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1992,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1993,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1993,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1994,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1994,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1995,6,3.1,Front-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1995,6,3.8,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1996,6,3.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1997,6,3.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport,1998,6,3.4,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Pontiac,Trans Sport/Montana,1999,6,3.4,Front-Wheel Drive,4-Speed Automatic,Minivan +Pontiac,Turbo Firefly,1987,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Pontiac,Turbo Firefly,1988,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Pontiac,Turbo Firefly,1989,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Turbo Firefly,1990,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Pontiac,Vibe,2003,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2003,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2003,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Vibe,2003,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Pontiac,Vibe,2004,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2004,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Vibe,2004,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Pontiac,Vibe,2005,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2005,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Vibe,2005,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Pontiac,Vibe,2006,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2006,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2006,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Vibe,2006,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Pontiac,Vibe,2007,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2007,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Vibe,2008,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2008,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Vibe,2009,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Vibe,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2009,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2009,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Vibe,2010,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2010,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Vibe,2010,4,2.4,All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Pontiac,Vibe,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Pontiac,Vibe,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Pontiac,Wave,2005,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Wave,2005,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Wave 5,2005,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Pontiac,Wave 5,2005,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Pontiac,Wave 5,2006,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Pontiac,Wave 5,2006,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Porsche,911,1986,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911,1986,6,3.3,Rear-Wheel Drive,4-Speed Manual,Minicompact Cars +Porsche,911,1987,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911,1987,6,3.3,Rear-Wheel Drive,4-Speed Manual,Minicompact Cars +Porsche,944,1984,4,2.5,,3-Speed Automatic,Minicompact Cars +Porsche,944,1984,4,2.5,,5-Speed Manual,Minicompact Cars +Porsche,944,1984,4,2.5,,3-Speed Automatic,Minicompact Cars +Porsche,944,1984,4,2.5,,5-Speed Manual,Minicompact Cars +Porsche,944,1985,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944,1986,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Minicompact Cars +Porsche,944,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944,1986,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944,1987,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Minicompact Cars +Porsche,944,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944,1987,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Minicompact Cars +Porsche,944,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944,1988,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Minicompact Cars +Porsche,944,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944,1989,4,2.7,Rear-Wheel Drive,3-Speed Automatic,Minicompact Cars +Porsche,944,1989,4,2.7,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,968,1992,4,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,968,1992,4,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Porsche,968,1992,4,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,968,1992,4,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,968,1993,4,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Porsche,968,1993,4,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,968,1993,4,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,968,1993,4,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,968,1994,4,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Porsche,968,1994,4,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,968,1994,4,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,968,1994,4,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,968,1995,4,3,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Porsche,968,1995,4,3,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,968,1995,4,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,968,1995,4,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 C4 GTS,2012,6,3.8,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 C4 GTS,2012,6,3.8,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 C4 GTS Cabriolet,2012,6,3.8,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 C4 GTS Cabriolet,2012,6,3.8,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera,1988,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera,1988,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera,1989,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera,1989,6,3.3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera,1989,6,3.2,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera,1999,6,3.4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Carrera,1999,6,3.4,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera,1999,6,3.4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Carrera,1999,6,3.4,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2000,6,3.4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Carrera,2000,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Carrera,2000,6,3.4,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2000,6,3.4,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2002,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2002,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Carrera,2010,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera,2010,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2011,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2011,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera,2012,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera,2012,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2013,6,3.4,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2013,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera,2014,6,3.4,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2014,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera,2015,6,3.4,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2015,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera,2016,6,3.4,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2016,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera,2017,6,3,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera,2017,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 2/4,2001,6,3.4,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 2/4,2001,6,3.4,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 2/4,2001,6,3.4,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 2/4,2001,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4,1989,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4,2010,6,3.6,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4,2010,6,3.6,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4,2011,6,3.6,All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4,2011,6,3.6,All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4,2012,6,3.6,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4,2012,6,3.6,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4,2013,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4,2013,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4,2014,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4,2014,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4,2015,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4,2015,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4,2016,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4,2016,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4,2017,6,3,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4,2017,6,3,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2002,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2002,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2010,6,3.6,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2010,6,3.6,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2011,6,3.6,All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2011,6,3.6,All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2012,6,3.6,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2012,6,3.6,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2013,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2013,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2014,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2014,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2015,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2015,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2016,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2016,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2017,6,3,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Cabriolet,2017,6,3,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4 GTS,2015,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 GTS,2015,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4 GTS,2016,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 GTS,2016,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4 GTS Cabriolet,2015,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 GTS Cabriolet,2015,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4 GTS Cabriolet,2016,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 GTS Cabriolet,2016,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4 Targa,2010,6,3.6,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4 Targa,2010,6,3.6,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Targa,2011,6,3.6,All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4 Targa,2011,6,3.6,All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4 Targa,2012,6,3.6,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4 Targa,2012,6,3.6,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1990,6,3.6,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1990,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1990,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4/2,1991,6,3.6,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1991,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1991,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4/2,1992,6,3.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,911 Carrera 4/2,1992,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,911 Carrera 4/2,1992,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Porsche,911 Carrera 4/2,1992,6,3.6,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1992,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1992,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4/2,1993,6,3.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,911 Carrera 4/2,1993,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,911 Carrera 4/2,1993,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Porsche,911 Carrera 4/2,1993,6,3.6,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1993,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1993,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4/2,1994,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Porsche,911 Carrera 4/2,1994,6,3.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,911 Carrera 4/2,1994,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,911 Carrera 4/2,1994,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4/2,1994,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1994,6,3.6,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1995,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4/2,1995,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1995,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1996,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4/2,1996,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1996,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1997,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4/2,1997,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1997,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1998,6,3.6,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4/2,1998,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4/2,1998,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S,2002,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S,2002,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4S,2010,6,3.8,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4S,2010,6,3.8,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S,2011,6,3.8,All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S,2011,6,3.8,All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4S,2012,6,3.8,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4S,2012,6,3.8,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S,2013,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S,2013,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4S,2014,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S,2014,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4S,2015,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S,2015,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4S,2016,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S,2016,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4S,2017,6,3,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S,2017,6,3,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2010,6,3.8,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2010,6,3.8,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2011,6,3.8,All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2011,6,3.8,All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2012,6,3.8,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2012,6,3.8,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2013,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2013,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2014,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2014,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2015,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2015,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2016,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2016,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2017,6,3,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S Cabriolet,2017,6,3,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera 4S Targa,2010,6,3.8,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4S Targa,2010,6,3.8,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S Targa,2011,6,3.8,All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera 4S Targa,2011,6,3.8,All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4S Targa,2012,6,3.8,4-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera 4S Targa,2012,6,3.8,4-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2002,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2002,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Carrera Cabriolet,2010,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera Cabriolet,2010,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2011,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2011,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera Cabriolet,2012,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera Cabriolet,2012,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2013,6,3.4,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2013,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2014,6,3.4,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2014,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2015,6,3.4,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2015,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2016,6,3.4,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2016,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2017,6,3,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera Cabriolet,2017,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera GTS,2015,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera GTS,2015,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera GTS,2016,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera GTS,2016,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera GTS Cabriolet,2015,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera GTS Cabriolet,2015,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera GTS Cabriolet,2016,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera GTS Cabriolet,2016,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera S,2010,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera S,2010,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera S,2011,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera S,2011,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera S,2012,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera S,2012,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera S,2013,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera S,2013,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera S,2014,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera S,2014,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera S,2015,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera S,2015,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera S,2016,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera S,2016,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera S,2017,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera S,2017,6,3,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2010,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2010,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2011,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2011,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2012,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2012,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2013,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2013,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2014,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2014,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2015,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2015,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2016,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2016,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2017,6,3,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Carrera S Cabriolet,2017,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 GT2,2002,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT2,2008,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT2,2009,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT2 RS,2011,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT3,2007,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 GT3,2008,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT3,2010,6,3.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT3,2011,6,3.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT3,2014,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,911 GT3,2015,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,911 GT3,2016,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,911 GT3 RS,2007,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 GT3 RS,2008,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT3 RS,2010,6,3.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT3 RS,2011,6,3.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT3 RS,2011,6,4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,911 GT3 RS,2016,6,4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,911 GTS,2011,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 GTS,2011,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 GTS,2012,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 GTS,2012,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 GTS Cabriolet,2011,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 GTS Cabriolet,2011,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 GTS Cabriolet,2012,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 GTS Cabriolet,2012,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 SC,1984,6,3.2,,5-Speed Manual,Minicompact Cars +Porsche,911 SC,1984,6,3.2,,5-Speed Manual,Minicompact Cars +Porsche,911 Speedster,2011,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,911 Speedster,2012,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,911 Targa,2002,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Targa,2002,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Targa 4,2014,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Targa 4,2014,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Targa 4,2015,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Targa 4,2015,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Targa 4,2016,6,3.4,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Targa 4,2016,6,3.4,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Targa 4,2017,6,3,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Targa 4,2017,6,3,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Targa 4 GTS,2016,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Targa 4 GTS,2016,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Targa 4S,2014,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Targa 4S,2014,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Targa 4S,2015,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Targa 4S,2015,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Targa 4S,2016,6,3.8,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Targa 4S,2016,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Targa 4S,2017,6,3,4-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,911 Targa 4S,2017,6,3,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo,1988,6,3.3,Rear-Wheel Drive,4-Speed Manual,Minicompact Cars +Porsche,911 Turbo,1989,6,3.3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Turbo,1991,6,3.3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Turbo,1992,6,3.3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Turbo,1994,6,3.6,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,911 Turbo,1996,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo,1997,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo,2001,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo,2001,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Turbo,2002,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo,2002,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Turbo,2008,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Turbo,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo,2009,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Turbo,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo,2013,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo,2013,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo,2014,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo,2015,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo,2016,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo,2017,6,3.8,All-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo Cabriolet,2008,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Turbo Cabriolet,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo Cabriolet,2009,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,911 Turbo Cabriolet,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo Cabriolet,2010,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo Cabriolet,2010,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo Cabriolet,2011,6,3.8,All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo Cabriolet,2011,6,3.8,All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo Cabriolet,2012,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo Cabriolet,2012,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo Cabriolet,2013,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo Cabriolet,2013,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo Cabriolet,2014,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo Cabriolet,2016,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo Cabriolet,2017,6,3.8,All-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo Coupe,2010,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo Coupe,2010,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo Coupe,2011,6,3.8,All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo Coupe,2011,6,3.8,All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo Coupe,2012,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo Coupe,2012,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,911 Turbo S,2013,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo S,2014,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo S,2015,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo S,2016,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo S,2017,6,3.8,All-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo S Cabriolet,2010,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo S Cabriolet,2011,6,3.8,All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo S Cabriolet,2012,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo S Cabriolet,2013,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo S Cabriolet,2014,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo S Cabriolet,2016,6,3.8,4-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo S Cabriolet,2017,6,3.8,All-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,911 Turbo S Coupe,2010,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo S Coupe,2011,6,3.8,All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,911 Turbo S Coupe,2012,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,918 Spyder,2015,8,4.6,All-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,924 S,1987,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,924 S,1987,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Minicompact Cars +Porsche,924 S,1988,4,2.5,Rear-Wheel Drive,3-Speed Automatic,Minicompact Cars +Porsche,924 S,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 GTS,1993,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,928 GTS,1993,8,5.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 GTS,1994,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,928 GTS,1994,8,5.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 GTS,1995,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,928 GTS,1995,8,5.4,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 S,1984,8,4.7,,4-Speed Automatic,Minicompact Cars +Porsche,928 S,1984,8,4.7,,5-Speed Manual,Minicompact Cars +Porsche,928 S,1984,8,4.7,,4-Speed Automatic,Minicompact Cars +Porsche,928 S,1984,8,4.7,,5-Speed Manual,Minicompact Cars +Porsche,928 S,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,928 S,1986,8,5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 S,1987,8,5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,928 S,1987,8,5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 S4,1988,8,5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,928 S4,1988,8,5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 S4,1989,8,5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,928 S4,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 S4,1989,8,5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 S4,1990,8,5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,928 S4,1990,8,5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 S4,1991,8,5,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Porsche,928 S4,1991,8,5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,928 S4,1991,8,4.9,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Porsche,944 S,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944 S2,1989,4,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944 S2,1990,4,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944 S2,1991,4,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944 Turbo,1988,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,944 Turbo,1989,4,2.5,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Porsche,Boxster,1997,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,1997,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,1998,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,1998,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,1999,6,2.5,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,1999,6,2.5,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,2000,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,2000,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,2001,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,2001,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,2002,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,2002,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,2003,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,2003,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,2004,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,2004,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,2005,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,2005,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2005,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,2006,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,2006,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,2006,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2007,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,2007,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,2007,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2008,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster,2008,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Boxster,2008,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2009,6,2.9,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Boxster,2009,6,2.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2010,6,2.9,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Boxster,2010,6,2.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2011,6,2.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2011,6,2.9,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Boxster,2012,6,2.9,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Boxster,2012,6,2.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2013,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2013,6,2.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster,2014,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2014,6,2.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster,2015,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2015,6,2.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster,2016,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2016,6,2.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster,2017,4,2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster,2017,4,2,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster GTS,2015,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster GTS,2015,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster GTS,2016,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster GTS,2016,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster S,2000,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster S,2000,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2001,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster S,2001,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2002,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2002,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster S,2003,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2003,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster S,2004,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2004,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster S,2005,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2005,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster S,2006,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster S,2006,6,3.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2007,6,3.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster S,2007,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2008,6,3.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Boxster S,2008,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2009,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Boxster S,2009,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2010,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Boxster S,2010,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2011,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2011,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Boxster S,2012,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Boxster S,2012,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2013,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2013,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster S,2014,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2014,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster S,2015,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2015,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster S,2016,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2016,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster S,2017,4,2.5,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster S,2017,4,2.5,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Boxster Spyder,2011,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster Spyder,2011,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Boxster Spyder,2012,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Boxster Spyder,2012,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Boxster Spyder,2016,6,3.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Carrera,1991,6,3.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Carrera 2 911 GT3,2004,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Carrera 2 911 GT3,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Carrera 2 Cabriolet,2003,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2003,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2004,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2004,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2006,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2006,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2007,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2007,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2008,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2008,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2009,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Cabriolet,2009,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Cabriolet Kit,2003,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Cabriolet Kit,2003,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Cabriolet Kit,2004,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Cabriolet Kit,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Cabriolet Kit,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe,2003,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Coupe,2003,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe,2004,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Coupe,2004,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Coupe,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Coupe,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe,2006,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Coupe,2006,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe,2007,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Coupe,2007,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe,2008,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Coupe,2008,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe,2009,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe,2009,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Coupe Kit,2003,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Coupe Kit,2003,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe Kit,2004,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 Coupe Kit,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 Coupe Kit,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Cabriolet,2005,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 S Cabriolet,2005,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Cabriolet,2006,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 S Cabriolet,2006,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Cabriolet,2007,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 S Cabriolet,2007,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Cabriolet,2008,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 S Cabriolet,2008,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Cabriolet,2009,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Cabriolet,2009,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 S Coupe,2005,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 S Coupe,2005,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Coupe,2006,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 S Coupe,2006,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Coupe,2007,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 S Coupe,2007,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Coupe,2008,6,3.8,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 2 S Coupe,2008,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Coupe,2009,6,3.8,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 2 S Coupe,2009,6,3.8,Rear-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,Carrera 4,1991,6,3.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Carrera 4 Cabriolet,2003,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2003,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2004,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2004,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2006,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2006,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2007,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2008,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Cabriolet,2009,6,3.6,4-Wheel or All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Cabriolet Kit,2003,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Cabriolet Kit,2003,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Cabriolet Kit,2004,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Cabriolet Kit,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Cabriolet Kit,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Coupe,2006,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Coupe,2006,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Coupe,2007,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Coupe,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Coupe,2008,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Coupe,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Coupe,2009,6,3.6,4-Wheel or All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Coupe,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S,2003,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S,2003,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2004,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2004,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2006,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2006,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2007,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2007,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2008,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2008,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2009,6,3.8,4-Wheel or All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Cabriolet,2009,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Cabriolet Kit,2004,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Cabriolet Kit,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Cabriolet Kit,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Coupe,2004,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Coupe,2004,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Coupe,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Coupe,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Coupe,2006,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Coupe,2006,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Coupe,2007,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Coupe,2007,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Coupe,2008,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Coupe,2008,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Coupe,2009,6,3.8,4-Wheel or All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Coupe,2009,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Kit,2003,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Kit,2003,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Kit,2004,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Kit,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Kit,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Targa,2007,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Targa,2007,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Targa,2008,6,3.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Targa,2008,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 S Targa,2009,6,3.8,4-Wheel or All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 S Targa,2009,6,3.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Targa,2007,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Targa,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Targa,2008,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Targa,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera 4 Targa,2009,6,3.6,4-Wheel or All-Wheel Drive,7-Speed Automatic,Minicompact Cars +Porsche,Carrera 4 Targa,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Carrera GT,2004,10,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Carrera GT,2005,10,5.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayenne,2004,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne,2005,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne,2005,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne,2006,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne,2006,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne,2010,6,3.6,All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne,2011,6,3.6,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne,2011,6,3.6,All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne,2012,6,3.6,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne,2012,6,3.6,All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne,2013,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne,2013,6,3.6,All-Wheel Drive,6-Speed Manual,Standard Sport Utility Vehicle +Porsche,Cayenne,2014,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne,2014,6,3.6,All-Wheel Drive,6-Speed Manual,Standard Sport Utility Vehicle +Porsche,Cayenne,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Diesel,2013,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Diesel,2014,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Diesel,2015,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Diesel,2016,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne GTS,2008,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne GTS,2008,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne GTS,2009,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne GTS,2009,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne GTS,2010,8,4.8,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne GTS,2010,8,4.8,All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne GTS,2013,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne GTS,2014,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne GTS,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne GTS,2017,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne S,2003,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Porsche,Cayenne S,2004,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne S,2005,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne S,2006,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne S,2007,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne S,2008,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne S,2009,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne S,2010,8,4.8,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne S,2011,8,4.8,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne S,2012,8,4.8,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne S,2013,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne S,2014,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne S,2015,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne S,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne S,2017,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne S e-Hybrid,2015,6,3,All-Wheel Drive,8-Speed Automated Manual,Standard Sport Utility Vehicle +Porsche,Cayenne S e-Hybrid,2016,6,3,All-Wheel Drive,8-Speed Automated Manual,Standard Sport Utility Vehicle +Porsche,Cayenne S Hybrid,2011,6,3,All-Wheel Drive,Auto(A8),Sport Utility Vehicle +Porsche,Cayenne S Hybrid,2012,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne S Hybrid,2013,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne S Hybrid,2014,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne TransSiberia,2010,8,4.8,All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Porsche,Cayenne Turbo,2003,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Special Purpose Vehicle +Porsche,Cayenne Turbo,2004,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo,2005,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo,2006,8,4.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo,2007,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo,2008,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo,2009,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo,2010,8,4.8,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo,2011,8,4.8,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo,2012,8,4.8,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo,2013,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Turbo,2014,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Turbo,2015,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Turbo,2016,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Turbo,2017,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Turbo Kit,2010,8,4.8,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo S,2009,8,4.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo S,2010,8,4.8,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Porsche,Cayenne Turbo S,2014,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Turbo S,2016,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayenne Turbo S,2017,8,4.8,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Porsche,Cayman,2007,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Cayman,2007,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Cayman,2007,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman,2008,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Cayman,2008,6,2.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Porsche,Cayman,2008,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman,2009,6,2.9,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Cayman,2009,6,2.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman,2010,6,2.9,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Cayman,2010,6,2.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman,2011,6,2.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman,2011,6,2.9,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Cayman,2012,6,2.9,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Cayman,2012,6,2.9,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman,2014,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman,2014,6,2.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Cayman,2015,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman,2015,6,2.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Cayman,2016,6,2.7,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman,2016,6,2.7,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Cayman GT4,2016,6,3.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman GTS,2015,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman GTS,2015,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Cayman GTS,2016,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman GTS,2016,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Cayman R,2012,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Cayman R,2012,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2006,6,3.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Cayman S,2006,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2007,6,3.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Cayman S,2007,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2008,6,3.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Porsche,Cayman S,2008,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2009,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Cayman S,2009,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2010,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Cayman S,2010,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2011,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2011,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Cayman S,2012,6,3.4,Rear-Wheel Drive,7-Speed Automatic,Two Seaters +Porsche,Cayman S,2012,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2014,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2014,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Cayman S,2015,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2015,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Cayman S,2016,6,3.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Cayman S,2016,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Two Seaters +Porsche,Macan GTS,2017,6,3,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Porsche,Macan S,2015,6,3,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Porsche,Macan S,2016,6,3,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Porsche,Macan S,2017,6,3,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Porsche,Macan Turbo,2015,6,3.6,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Porsche,Macan Turbo,2016,6,3.6,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Porsche,Macan Turbo,2017,6,3.6,All-Wheel Drive,7-Speed Automated Manual,Small Sport Utility Vehicle +Porsche,New 911 Carrera,2012,6,3.4,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,New 911 Carrera,2012,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,New 911 Carrera Cabriolet,2012,6,3.4,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,New 911 Carrera Cabriolet,2012,6,3.4,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,New 911 Carrera S,2012,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,New 911 Carrera S,2012,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,New 911 Carrera S Cabriolet,2012,6,3.8,Rear-Wheel Drive,7-Speed Manual,Minicompact Cars +Porsche,New 911 Carrera S Cabriolet,2012,6,3.8,Rear-Wheel Drive,7-Speed Automated Manual,Minicompact Cars +Porsche,Panamera,2011,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera,2012,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera,2013,6,3.6,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera,2014,6,3.6,Rear-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera,2015,6,3.6,Rear-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera,2016,6,3.6,Rear-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera 4,2011,6,3.6,4-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera 4,2012,6,3.6,4-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera 4,2013,6,3.6,4-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera 4,2014,6,3.6,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera 4,2015,6,3.6,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera 4,2016,6,3.6,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera 4S,2010,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera 4S,2011,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera 4S,2012,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera 4S,2013,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera 4S,2014,6,3,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera 4S,2015,6,3,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera 4S,2016,6,3,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera 4S Executive,2014,6,3,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera 4S Executive,2015,6,3,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera 4S Executive,2016,6,3,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera GTS,2013,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera GTS,2014,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera GTS,2015,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera GTS,2016,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera S,2010,8,4.8,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera S,2011,8,4.8,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera S,2012,8,4.8,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera S,2013,8,4.8,Rear-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera S,2014,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera S,2015,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera S,2016,6,3,Rear-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera S E-Hybrid,2014,6,3,Rear-Wheel Drive,8-Speed Automated Manual,Large Cars +Porsche,Panamera S E-Hybrid,2015,6,3,Rear-Wheel Drive,8-Speed Automated Manual,Large Cars +Porsche,Panamera S E-Hybrid,2016,6,3,Rear-Wheel Drive,8-Speed Automated Manual,Large Cars +Porsche,Panamera S Hybrid,2012,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Porsche,Panamera S Hybrid,2013,6,3,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Porsche,Panamera Turbo,2010,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera Turbo,2011,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera Turbo,2012,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera Turbo,2013,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera Turbo,2014,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo,2015,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo,2016,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo Executive,2014,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo Executive,2015,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo Executive,2016,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo S,2012,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera Turbo S,2013,8,4.8,All-Wheel Drive,7-Speed Automatic,Large Cars +Porsche,Panamera Turbo S,2014,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo S,2015,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo S,2016,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo S Executive,2014,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo S Executive,2015,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Panamera Turbo S Executive,2016,8,4.8,All-Wheel Drive,7-Speed Automated Manual,Large Cars +Porsche,Targa,2003,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Targa,2003,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Targa,2004,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Targa,2004,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Targa,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Targa,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Targa Kit,2003,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Targa Kit,2003,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Targa Kit,2004,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Targa Kit,2005,6,3.6,Rear-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Targa Kit,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo,2003,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo,2003,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 2 911 Gt2,2004,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Turbo 2 911 GT2,2005,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Turbo 4 911,2004,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911,2004,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 4 911 Cab,2004,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911 Cab,2004,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 4 911 Cab,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911 Cab,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 4 911 Cab Kit,2004,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911 Cab Kit,2004,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 4 911 Cab Kit,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911 Cab Kit,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 4 911 Kit,2004,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911 Kit,2004,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 4 911 Kit,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911 Kit,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 4 911 S,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911 S,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 4 911 Turbo,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911 Turbo,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 4 911 Turbo,2007,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911 Turbo,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo 4 911 Turbo Cab S,2005,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo 4 911 Turbo Cab S,2005,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Porsche,Turbo GT2,2003,6,3.6,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Porsche,Turbo Kit,2003,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minicompact Cars +Porsche,Turbo Kit,2003,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Manual,Minicompact Cars +Quantum Technologies,Chevrolet Cavalier,1998,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Quantum Technologies,Chevrolet Cavalier,1999,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Qvale,Detomaso Mangusta,2000,8,4.6,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Ram,1500,2013,8,4.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ram,1500,2013,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ram,1500,2013,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2013,8,4.7,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ram,1500,2013,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ram,1500,2013,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2013,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2013,8,5.7,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2013,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2014,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ram,1500,2014,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2014,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2014,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ram,1500,2014,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2014,8,5.7,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2014,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2014,6,3,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2015,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ram,1500,2015,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2015,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ram,1500,2015,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2015,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2015,8,5.7,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2015,6,3,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2016,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ram,1500,2016,8,5.7,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2016,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Ram,1500,2016,6,3,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2016,8,5.7,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500,2016,6,3.6,4-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500 HFE,2013,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500 HFE,2014,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500 HFE,2015,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500 HFE,2015,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500 HFE,2016,6,3.6,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,1500 HFE,2016,6,3,Rear-Wheel Drive,8-Speed Automatic,Standard Pickup Trucks +Ram,C/V,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Ram,C/V,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Ram,C/V,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Ram,C/V Cargo Van,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Ram,C/V Tradesman,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Ram,C/V Tradesman,2015,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Ram,Promaster City,2015,4,2.4,Front-Wheel Drive,9-Speed Automatic,Special Purpose Vehicle +Ram,Promaster City,2016,4,2.4,Front-Wheel Drive,9-Speed Automatic,Special Purpose Vehicle +Ram,Promaster City,2017,4,2.4,Front-Wheel Drive,9-Speed Automatic,Special Purpose Vehicle +Red Shift Ltd.,Delta 204T,1987,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Red Shift Ltd.,Delta 204T,1988,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Renault,18i,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Renault,18i,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Renault,18i,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Renault,18i,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Renault,18i 4DR Wagon,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Renault,18i 4DR Wagon,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Renault,18i Sportwagon,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Renault,18i Sportwagon,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Renault,Alliance,1987,4,1.4,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Renault,Alliance,1987,4,1.4,Front-Wheel Drive,4-Speed Manual,Compact Cars +Renault,Alliance,1987,4,1.4,Front-Wheel Drive,4-Speed Manual,Compact Cars +Renault,Alliance,1987,4,1.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Renault,Alliance,1987,4,1.7,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Renault,Alliance,1987,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Renault,Alliance Convertible,1986,4,1.7,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Renault,Alliance Convertible,1986,4,1.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Renault,Alliance Convertible,1987,4,1.7,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Renault,Alliance Convertible,1987,4,1.7,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Renault,Alliance/Encore,1984,4,1.4,,3-Speed Automatic,Compact Cars +Renault,Alliance/Encore,1984,4,1.4,,4-Speed Manual,Compact Cars +Renault,Alliance/Encore,1984,4,1.4,,5-Speed Manual,Compact Cars +Renault,Alliance/Encore,1984,4,1.4,,3-Speed Automatic,Compact Cars +Renault,Alliance/Encore,1984,4,1.4,,3-Speed Automatic,Compact Cars +Renault,Alliance/Encore,1984,4,1.4,,4-Speed Manual,Compact Cars +Renault,Alliance/Encore,1984,4,1.4,,4-Speed Manual,Compact Cars +Renault,Alliance/Encore,1984,4,1.4,,5-Speed Manual,Compact Cars +Renault,Alliance/Encore,1984,4,1.4,,5-Speed Manual,Compact Cars +Renault,Alliance/Encore,1985,4,1.4,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Renault,Alliance/Encore,1985,4,1.4,Front-Wheel Drive,4-Speed Manual,Compact Cars +Renault,Alliance/Encore,1985,4,1.4,Front-Wheel Drive,4-Speed Manual,Compact Cars +Renault,Alliance/Encore,1985,4,1.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Renault,Alliance/Encore,1985,4,1.7,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Renault,Alliance/Encore,1985,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Renault,Alliance/Encore,1986,4,1.4,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Renault,Alliance/Encore,1986,4,1.4,Front-Wheel Drive,4-Speed Manual,Compact Cars +Renault,Alliance/Encore,1986,4,1.4,Front-Wheel Drive,4-Speed Manual,Compact Cars +Renault,Alliance/Encore,1986,4,1.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Renault,Alliance/Encore,1986,4,1.7,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Renault,Alliance/Encore,1986,4,1.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Renault,Fuego,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Renault,Fuego,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Renault,Fuego,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Renault,Fuego,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Renault,Fuego,1984,4,2.2,,3-Speed Automatic,Subcompact Cars +Renault,Fuego,1984,4,2.2,,5-Speed Manual,Subcompact Cars +Renault,Fuego,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Renault,Fuego,1985,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Renault,Fuego,1985,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Renault,Fuego,1986,4,2.2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Renault,Fuego,1986,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Renault,GTA,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Renault,GTA Convertible,1987,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Renault,Sportwagon,1984,4,2.2,,3-Speed Automatic,Small Station Wagons +Renault,Sportwagon,1984,4,2.2,,5-Speed Manual,Small Station Wagons +Renault,Sportwagon,1984,4,2.2,,3-Speed Automatic,Small Station Wagons +Renault,Sportwagon,1984,4,2.2,,5-Speed Manual,Small Station Wagons +Rolls-Royce,Azure,1996,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Azure,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Brooklands,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Brooklands,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Brooklands and (LWB),1994,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Brooklands and (LWB),1995,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Brooklands and (LWB),1996,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Brooklands/Brklnds L,1993,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Camargue,1984,8,6.8,,3-Speed Automatic,Compact Cars +Rolls-Royce,Camargue,1984,8,6.8,,3-Speed Automatic,Compact Cars +Rolls-Royce,Camargue,1985,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Rolls-Royce,Camargue,1986,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Rolls-Royce,Camargue,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Compact Cars +Rolls-Royce,Continental,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental,1988,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental,1989,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental,1990,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental,1991,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental,1992,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental,1993,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental,1994,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental,1995,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental (turbo),1995,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Continental R,1993,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Rolls-Royce,Continental R,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Rolls-Royce,Continental R,1995,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Rolls-Royce,Continental R,1996,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Rolls-Royce,Continental R,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Rolls-Royce,Continental T,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche,1984,8,6.8,,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche,1984,8,6.8,,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche,2000,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche,2001,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche II,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche II,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche II,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche II,1988,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche II,1989,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche II/Continental,1986,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche III,1990,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche III,1991,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche IV,1992,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche IV,1993,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche IV,1994,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche IV,1995,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche S,1995,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Rolls-Royce,Corniche/Continental,1985,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Subcompact Cars +Rolls-Royce,Dawn,2016,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Eight/Mulsan,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Eight/Mulsan,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Eight/Mulsan,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Eight/Mulsan,1988,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Eight/Mulsan,1989,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Eight/Mulsan,1990,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Eight/Mulsanne S,1991,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Eight/Mulsanne S and S,1992,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Flying Spur,1995,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Ghost,2010,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost,2011,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost,2012,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost,2013,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost,2014,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost,2015,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost,2016,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost EWB,2012,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost EWB,2013,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost EWB,2014,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost EWB,2015,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Ghost EWB,2016,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Limousine,1996,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Rolls-Royce,Limousine,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Rolls-Royce,Park Ward,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Rolls-Royce,Park Ward,2001,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Rolls-Royce,Park Ward,2002,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Large Cars +Rolls-Royce,Phantom,2004,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Rolls-Royce,Phantom,2005,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Rolls-Royce,Phantom,2006,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Rolls-Royce,Phantom,2007,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Rolls-Royce,Phantom,2008,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Rolls-Royce,Phantom,2009,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Rolls-Royce,Phantom,2010,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Rolls-Royce,Phantom,2011,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Rolls-Royce,Phantom,2012,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Rolls-Royce,Phantom,2013,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Phantom,2014,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Phantom,2015,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Phantom,2016,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Phantom,2017,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Phantom Coupe,2009,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Coupe,2010,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Coupe,2011,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Coupe,2012,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Coupe,2013,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Coupe,2014,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Coupe,2015,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Coupe,2016,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Coupe,2017,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Drophead Coupe,2008,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Drophead Coupe,2009,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Drophead Coupe,2010,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Drophead Coupe,2011,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Drophead Coupe,2012,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Drophead Coupe,2013,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Drophead Coupe,2014,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Drophead Coupe,2015,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Drophead Coupe,2016,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Phantom Drophead Coupe,2017,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Compact Cars +Rolls-Royce,Phantom EWB,2007,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Rolls-Royce,Phantom EWB,2008,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Rolls-Royce,Phantom EWB,2009,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Rolls-Royce,Phantom EWB,2010,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Rolls-Royce,Phantom EWB,2011,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Rolls-Royce,Phantom EWB,2012,12,6.7,Rear-Wheel Drive,6-Speed Automatic,Large Cars +Rolls-Royce,Phantom EWB,2013,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Phantom EWB,2014,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Phantom EWB,2015,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Phantom EWB,2016,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Phantom EWB,2017,12,6.7,Rear-Wheel Drive,8-Speed Automatic,Large Cars +Rolls-Royce,Silver Dawn,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Seraph,1999,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Seraph,2001,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Seraph,2002,12,5.4,Rear-Wheel Drive,5-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit II/Silver Spur,1990,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit II/Silver Spur,1991,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit II/Silver Spur,1992,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit II/Silver Spur,1993,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit III/Spur III,1994,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit/Silver Spur,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit/Silver Spur,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit/Silver Spur,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit/Silver Spur,1988,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit/Silver Spur,1989,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit/Spur/Mulsanne,1984,8,6.8,,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit/Spur/Mulsanne,1984,8,6.8,,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit/Spur/Mulsanne,1985,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spirit/Spur/Mulsanne,1986,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spur,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spur,1998,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spur,1999,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Silver Spur II Mpw Touring L,1993,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur III Limousine,1994,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur III Limousine,1995,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Limousine,1984,8,6.8,,3-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Limousine,1984,8,6.8,,3-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Limousine,1985,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Limousine,1986,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Limousine,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Limousine,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Limousine,1987,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Limousine,1988,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Limousine,1996,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Limousine,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Park Ward,1998,8,6.7,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur Park Ward,1999,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Rolls-Royce,Silver Spur/Silver Dawn,1996,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Spirit III/Spur III/Dawn,1995,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Turbo R,1989,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Turbo R,1991,8,6.8,Rear-Wheel Drive,3-Speed Automatic,Midsize Cars +Rolls-Royce,Turbo R,1997,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Turbo R/Rl Bklds Turbo/LWB,1995,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Turbo R/Turbo R(lwb),1992,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Turbo R/Turbo R(lwb),1993,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Turbo R/Turbo Rl,1994,8,6.5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Turbo R/Turbo Rl,1996,8,6.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Rolls-Royce,Wraith,2014,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Rolls-Royce,Wraith,2015,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Rolls-Royce,Wraith,2016,12,6.6,Rear-Wheel Drive,8-Speed Automatic,Midsize Cars +Roush Performance,Boss F150 Super Cab,2006,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,F150 Pickup,2014,8,6.2,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Roush Performance,F150 Pickup,2014,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Roush Performance,F150 Pickup,2014,8,6.2,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Roush Performance,F150 Pickup,2014,8,5,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Roush Performance,F150 Pickup,2016,8,5,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Roush Performance,F150 Pickup,2016,8,5,4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Roush Performance,F150 Raptor Pickup,2014,8,6.2,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F-150,2006,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F-150,2006,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F-150 Supercab,2006,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F-150 Supercab,2006,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F-150 Supercrew,2006,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F-150 Supercrew,2006,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Regular Cab,2007,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Regular Cab,2007,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Regular Cab,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Regular Cab,2008,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Super Cab,2007,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Super Cab,2007,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Super Cab,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Super Cab,2008,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Super Crew,2007,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Super Crew,2007,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Super Crew,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 F150 Super Crew,2008,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Roush Performance,Stage 3 Mustang,2001,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Roush Performance,Stage 3 Mustang,2001,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2002,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Roush Performance,Stage 3 Mustang,2002,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2003,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Roush Performance,Stage 3 Mustang,2003,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2004,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2006,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2007,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2008,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2008,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Roush Performance,Stage 3 Mustang,2009,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Roush Performance,Stage 3 Mustang,2009,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2010,8,4.6,Rear-Wheel Drive,5-Speed Automatic,Subcompact Cars +Roush Performance,Stage 3 Mustang,2010,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2011,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2012,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2012,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Roush Performance,Stage 3 Mustang,2013,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2013,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Roush Performance,Stage 3 Mustang,2014,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2014,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Roush Performance,Stage 3 Mustang,2015,8,5,Rear-Wheel Drive,6-Speed Automatic,Midsize Cars +Roush Performance,Stage 3 Mustang,2015,8,5,Rear-Wheel Drive,6-Speed Manual,Midsize Cars +Roush Performance,Stage 3 Mustang,2016,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Roush Performance,Stage 3 Mustang,2016,8,5,Rear-Wheel Drive,6-Speed Automatic,Subcompact Cars +Roush Performance,Stage 3 Mustang Coupe,2007,8,4.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Ruf Automobile Gmbh,Ruf,1987,6,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ruf Automobile Gmbh,Ruf,1987,6,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Ruf Automobile Gmbh,Ruf,1988,6,3.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +S and S Coach Company E.p. Dutton,Funeral Coach ,1984,8,6,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Saab,900,1984,4,2,,3-Speed Automatic,Compact Cars +Saab,900,1984,4,2,,3-Speed Automatic,Compact Cars +Saab,900,1984,4,2,,5-Speed Manual,Compact Cars +Saab,900,1984,4,2,,5-Speed Manual,Compact Cars +Saab,900,1984,4,2,,3-Speed Automatic,Compact Cars +Saab,900,1984,4,2,,3-Speed Automatic,Compact Cars +Saab,900,1984,4,2,,5-Speed Manual,Compact Cars +Saab,900,1984,4,2,,5-Speed Manual,Compact Cars +Saab,900,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1985,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1986,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1991,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1991,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1991,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1991,4,2.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1991,4,2.1,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1992,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1992,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1992,4,2.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1992,4,2.1,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1993,4,2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1993,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1993,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1993,4,2.1,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Saab,900,1993,4,2.1,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,900,1994,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900,1994,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900,1994,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900,1995,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900,1995,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900,1995,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900,1995,6,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900,1996,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900,1996,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900,1996,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900,1997,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900,1997,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900,1997,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9000,1986,4,2,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1987,4,2,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1987,4,2,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1987,4,2,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1988,4,2,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1988,4,2,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1989,4,2,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1989,4,2,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1990,4,2,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1990,4,2,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1990,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1990,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1991,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1991,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1991,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1991,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1992,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1992,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1992,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1993,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1993,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1993,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1994,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1994,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1995,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1995,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1995,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1995,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1995,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1996,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1996,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1996,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1997,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1997,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1997,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1997,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9000,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1998,4,2.3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Saab,9000,1998,4,2.3,Front-Wheel Drive,5-Speed Manual,Large Cars +Saab,9-2x Wagon,2005,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saab,9-2x Wagon,2005,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Saab,9-2x Wagon,2005,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saab,9-2x Wagon,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Saab,9-2X Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saab,9-2X Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saab,9-2X Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Saab,9-2X Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Saab,9-3,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-3,1999,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3,1999,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-3,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-3,2000,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3,2000,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-3,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-3,2001,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3,2001,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-3,2002,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3 Aero Sedan,2008,6,2.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Aero Sedan,2008,6,2.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Aero Sedan,2009,6,2.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Aero Sedan,2009,6,2.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Aero Sedan,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Aero Sedan,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Aero SportCombi,2008,6,2.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3 Aero SportCombi,2008,6,2.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 Aero SportCombi,2009,6,2.8,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 Aero SportCombi,2009,6,2.8,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3 Aero SportCombi,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 Aero SportCombi,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3 Convertible,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,1999,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,1999,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2000,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2000,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2001,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2001,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2002,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2003,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2004,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2004,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2004,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2005,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2005,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2006,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2006,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2006,6,2.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2006,6,2.8,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2007,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2007,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2007,6,2.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2007,6,2.8,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2008,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2008,6,2.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2008,6,2.8,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2008,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2009,6,2.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2009,6,2.8,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2009,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2009,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2010,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Saab,9-3 Convertible,2010,4,2,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Saab,9-3 Convertible,2011,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Convertible,2011,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Convertible,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Convertible,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sedan,2010,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sedan,2010,4,2,All-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Sedan,2010,4,2,All-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sedan,2011,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sedan,2011,4,2,All-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Sedan,2012,4,2,All-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Sedan,2012,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2003,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2003,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2003,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2004,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2004,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2004,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2005,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2005,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2006,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2006,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2006,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2006,6,2.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2007,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2007,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2007,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2007,6,2.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2008,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2008,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2008,6,2.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2008,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2009,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2009,6,2.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2009,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2009,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2010,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2010,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2011,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 Sport Sedan,2011,4,2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Saab,9-3 Sport Sedan,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Saab,9-3 SportCombi,2006,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saab,9-3 SportCombi,2006,4,2,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2006,6,2.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 SportCombi,2006,6,2.8,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2007,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 SportCombi,2007,4,2,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2007,6,2.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 SportCombi,2007,6,2.8,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2008,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 SportCombi,2008,6,2.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 SportCombi,2008,6,2.8,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2008,4,2,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2009,6,2.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 SportCombi,2009,6,2.8,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2009,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 SportCombi,2009,4,2,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2010,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 SportCombi,2010,4,2,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2011,4,2,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2011,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 SportCombi,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3 SportCombi,2012,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3 Viggen,1999,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3 Viggen,2000,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3 Viggen,2001,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3 Viggen,2002,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-3 Viggen Convertible,2000,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Viggen Convertible,2001,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3 Viggen Convertible,2002,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,9-3X SportCombi,2010,4,2,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3X SportCombi,2010,4,2,All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Saab,9-3X SportCombi,2010,4,2,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3X SportCombi,2011,4,2,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3X SportCombi,2011,4,2,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-3X SportCombi,2012,4,2,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Saab,9-3X SportCombi,2012,4,2,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Saab,9-4X,2011,6,2.8,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saab,9-4X,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saab,9-4X,2011,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saab,9-4X,2012,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saab,9-4X,2012,6,3,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saab,9-4X,2012,6,2.8,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saab,9-5,1999,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-5,1999,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-5,2000,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-5,2000,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-5,2000,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2000,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-5,2001,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-5,2001,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-5,2001,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2001,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,9-5,2002,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5,2002,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5,2002,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2002,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2002,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5,2003,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5,2003,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5,2003,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2003,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2003,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2004,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5,2004,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5,2005,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5,2005,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5,2006,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5 Sedan,2007,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5 Sedan,2007,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5 Sedan,2008,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5 Sedan,2008,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5 Sedan,2009,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,9-5 Sedan,2009,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Saab,9-5 Sedan,2010,6,2.8,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Saab,9-5 Sedan,2011,6,2.8,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Saab,9-5 Sedan,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Saab,9-5 Sedan,2011,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Saab,9-5 Sedan,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Saab,9-5 Sedan,2012,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Saab,9-5 Sedan,2012,6,2.8,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Saab,9-5 SportCombi,2006,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 SportCombi,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 SportCombi,2007,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 SportCombi,2007,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 SportCombi,2008,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 SportCombi,2008,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 SportCombi,2009,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 SportCombi,2009,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,1999,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,1999,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2000,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2000,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2000,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2000,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2001,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2001,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2001,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2001,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2002,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2002,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2002,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2002,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2002,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2003,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2003,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2003,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2003,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2003,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2004,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2004,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2004,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-5 Wagon,2005,4,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saab,9-5 Wagon,2005,4,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Saab,9-7X,2005,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2005,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2006,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2006,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2007,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2007,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2008,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2008,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2008,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2009,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2009,8,6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,9-7X,2009,8,5.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saab,900 Convertible,1987,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1987,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1988,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1988,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1989,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1989,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1990,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1990,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1991,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1991,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1992,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1992,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1992,4,2.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1992,4,2.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1995,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1995,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1995,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1995,6,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1996,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1996,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1996,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1996,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1997,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1997,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,900 Convertible,1997,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900 Convertible,1997,6,2.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,900S,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900S,1998,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900S,1998,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900S,1998,4,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900S Convertible,1998,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,900S Convertible,1998,4,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,900SE,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saab,900SE,1998,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saab,900SE Convertible,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saab,900SE Convertible,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,Convertible,1993,4,2.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,Convertible,1993,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,Convertible,1993,4,2.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,Convertible,1993,4,2.1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,Convertible,1994,4,2,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,Convertible,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,Convertible,1994,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saab,Convertible,1994,4,2.1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Saab,Convertible,1994,4,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saleen,Mustang,1993,8,4.9,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Saleen,Mustang S351,1994,8,5.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Saleen,Mustang S351,1995,8,5.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Saleen,SSC,1989,8,4.9,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Saleen,SSC,1990,8,4.9,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Saleen Performance,F150 Supercharged,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Saleen Performance,S281 Family,2008,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Saleen Performance,S281 Family,2008,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Saleen Performance,S281 Family,2009,8,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Saleen Performance,S331 Family,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Saturn,Astra 2DR Hatchback,2008,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,Astra 2DR Hatchback,2008,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Astra 2DR Hatchback,2009,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Astra 2DR Hatchback,2009,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,Astra 4DR Hatchback,2008,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,Astra 4DR Hatchback,2008,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Astra 4DR Hatchback,2009,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,Astra 4DR Hatchback,2009,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saturn,Aura,2007,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,Aura,2007,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Saturn,Aura,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,Aura,2008,6,3.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,Aura,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Saturn,Aura,2009,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Saturn,Aura,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Saturn,Aura,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Saturn,Aura,2010,4,2.4,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Saturn,Aura,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Saturn,Aura Hybrid,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,Aura Hybrid,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,Aura Hybrid,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,Ion,2003,4,2.2,Front-Wheel Drive,CVT,Compact Cars +Saturn,Ion,2003,4,2.2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saturn,Ion,2003,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Ion,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Ion,2004,4,2.2,Front-Wheel Drive,CVT,Compact Cars +Saturn,Ion,2004,4,2.2,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Saturn,Ion,2004,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Ion,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Ion,2005,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,Ion,2005,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Ion,2006,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Ion,2006,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,Ion,2006,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Ion,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,Ion,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Ion,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,Ion,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Ion,2007,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,Ion,2007,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,Ion,2007,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,L100/200,2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,L100/200,2001,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saturn,L100/200,2002,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,L100/200,2002,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saturn,L200,2003,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,L200,2003,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saturn,L300,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,L300,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,L300,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,L300,2004,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,L300,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,L300,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,LS,2000,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,LS,2000,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Saturn,LS,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Saturn,LW,2000,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,LW,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,LW200,2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,LW200,2001,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saturn,LW200,2002,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,LW200,2002,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saturn,LW200,2003,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,LW200,2003,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Saturn,LW300,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,LW300,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,LW300,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,LW300,2004,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,LW300,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,LW300,2005,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Saturn,Outlook,2007,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Outlook,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Outlook,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Outlook,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Outlook,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Outlook,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Outlook,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Outlook,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Relay,2005,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Saturn,Relay,2005,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Saturn,Relay,2006,6,3.5,Front-Wheel Drive,4-Speed Automatic,Minivan +Saturn,Relay,2006,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Saturn,Relay,2006,6,3.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Minivan +Saturn,Relay,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Saturn,Relay,2007,6,3.9,Front-Wheel Drive,4-Speed Automatic,Minivan +Saturn,SC,1991,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1992,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1993,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1993,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1994,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1994,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1994,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1994,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1995,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1995,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1995,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1995,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1996,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1996,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1997,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1997,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1997,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1997,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1998,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1998,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1998,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1998,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1999,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1999,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,1999,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,1999,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,2000,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,2000,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,2001,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,2001,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,2001,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,2001,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,2002,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,2002,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Saturn,SC,2002,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SC,2002,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Saturn,SKY,2007,4,2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Saturn,SKY,2007,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Saturn,SKY,2007,4,2.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Saturn,SKY,2007,4,2.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Saturn,SKY,2008,4,2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Saturn,SKY,2008,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Saturn,SKY,2008,4,2.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Saturn,SKY,2008,4,2.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Saturn,SKY,2009,4,2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Saturn,SKY,2009,4,2.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Saturn,SKY,2009,4,2.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Saturn,SKY,2009,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Saturn,SKY,2010,4,2,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Saturn,SKY,2010,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Saturn,SKY,2010,4,2.4,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +Saturn,SKY,2010,4,2.4,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Saturn,SL,1991,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1991,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1991,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1992,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1992,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1992,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1993,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1993,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1994,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1994,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1994,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1994,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1995,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1995,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1995,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1995,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1996,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1996,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1997,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1997,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1997,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1997,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1998,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1998,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1998,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1998,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1999,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1999,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,1999,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,1999,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,2000,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,2000,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,2001,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,2001,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,2001,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,2001,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,2002,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,2002,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Saturn,SL,2002,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SL,2002,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Saturn,SW,1993,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1993,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1993,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1994,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1994,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1994,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1994,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1995,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1995,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1995,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1995,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1996,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1996,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1997,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1997,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1997,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1997,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1998,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1998,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1998,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1998,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1999,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1999,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,1999,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,1999,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,2000,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,SW,2001,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,2001,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Saturn,SW,2001,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Saturn,Vue,2002,4,2.2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Saturn,Vue,2002,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Saturn,Vue,2002,4,2.2,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Saturn,Vue,2002,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2003,4,2.2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Saturn,Vue,2003,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Saturn,Vue,2003,6,3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2003,4,2.2,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Saturn,Vue,2003,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2004,4,2.2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Saturn,Vue,2004,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Saturn,Vue,2004,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2004,4,2.2,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Saturn,Vue,2004,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2005,4,2.2,Front-Wheel Drive,CVT,Sport Utility Vehicle +Saturn,Vue,2005,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2005,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Saturn,Vue,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2005,4,2.2,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Saturn,Vue,2005,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2006,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2006,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Saturn,Vue,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2007,4,2.2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2007,4,2.2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Saturn,Vue,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2008,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2010,6,3.6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2010,6,3.5,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue,2010,6,3.6,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Saturn,Vue Hybrid,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saturn,Vue Hybrid,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saturn,Vue Hybrid,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Saturn,Vue Hybrid,2009,6,3.6,Front-Wheel Drive,CVT,Sport Utility Vehicle +Saturn,Vue Hybrid,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Scion,FR-S,2013,4,2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Scion,FR-S,2013,4,2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Scion,FR-S,2014,4,2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Scion,FR-S,2014,4,2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Scion,FR-S,2015,4,2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Scion,FR-S,2015,4,2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Scion,FR-S,2016,4,2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Scion,FR-S,2016,4,2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Scion,iA,2016,4,1.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Scion,iA,2016,4,1.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Scion,iM,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Scion,iM,2016,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Scion,iQ,2011,4,1.3,Front-Wheel Drive,CVT,Minicompact Cars +Scion,iQ,2012,4,1.3,Front-Wheel Drive,CVT,Minicompact Cars +Scion,iQ,2013,4,1.3,Front-Wheel Drive,CVT,Minicompact Cars +Scion,iQ,2014,4,1.3,Front-Wheel Drive,CVT,Minicompact Cars +Scion,iQ,2015,4,1.3,Front-Wheel Drive,CVT,Minicompact Cars +Scion,iQ EV,2013,,,Front-Wheel Drive,CVT,Minicompact Cars +Scion,tC,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,tC,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,tC,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,tC,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,tC,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,tC,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,tC,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,tC,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,tC,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,tC,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,tC,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,tC,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,tC,2011,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Scion,tC,2011,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Scion,tC,2012,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Scion,tC,2012,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Scion,tC,2013,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Scion,tC,2013,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Scion,tC,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Scion,tC,2014,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Scion,tC,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Scion,tC,2015,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Scion,tC,2016,4,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Scion,tC,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Scion,xA,2004,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,xA,2004,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,xA,2005,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,xA,2005,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,xA,2006,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,xA,2006,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,xB,2004,4,1.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xB,2004,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2005,4,1.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xB,2005,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2006,4,1.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xB,2006,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xB,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2009,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xB,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2010,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xB,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2011,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xB,2012,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xB,2012,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2013,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2013,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xB,2014,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xB,2014,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2015,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Scion,xB,2015,4,2.4,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Scion,xD,2008,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,xD,2008,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,xD,2009,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,xD,2009,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,xD,2010,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,xD,2010,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,xD,2011,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,xD,2011,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,xD,2012,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,xD,2012,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,xD,2013,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,xD,2013,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Scion,xD,2014,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Scion,xD,2014,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Shelby,Mustang GT,2008,8,4.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +smart,fortwo cabriolet,2010,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo cabriolet,2011,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo cabriolet,2012,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo cabriolet,2013,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo cabriolet,2014,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo cabriolet,2015,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo convertible,2008,3,1,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +smart,fortwo convertible,2009,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo coupe,2008,3,1,Rear-Wheel Drive,5-Speed Automatic,Two Seaters +smart,fortwo coupe,2009,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo coupe,2010,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo coupe,2011,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo coupe,2012,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo coupe,2013,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo coupe,2014,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo coupe,2015,3,1,Rear-Wheel Drive,5-Speed Automated Manual,Two Seaters +smart,fortwo coupe,2016,3,0.9,Rear-Wheel Drive,6-Speed Automated Manual,Two Seaters +smart,fortwo coupe,2016,3,0.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +smart,fortwo electric drive cabriolet,2011,,,Rear-Wheel Drive,1-Speed Direct Drive,Two Seaters +smart,fortwo electric drive convertible,2013,,,Rear-Wheel Drive,1-Speed Direct Drive,Two Seaters +smart,fortwo electric drive convertible,2014,,,Rear-Wheel Drive,1-Speed Direct Drive,Two Seaters +smart,fortwo electric drive convertible,2015,,,Rear-Wheel Drive,1-Speed Direct Drive,Two Seaters +smart,fortwo electric drive convertible,2016,,,Rear-Wheel Drive,1-Speed Direct Drive,Two Seaters +smart,fortwo electric drive coupe,2011,,,Rear-Wheel Drive,1-Speed Direct Drive,Two Seaters +smart,fortwo electric drive coupe,2013,,,Rear-Wheel Drive,1-Speed Direct Drive,Two Seaters +smart,fortwo electric drive coupe,2014,,,Rear-Wheel Drive,1-Speed Direct Drive,Two Seaters +smart,fortwo electric drive coupe,2015,,,Rear-Wheel Drive,1-Speed Direct Drive,Two Seaters +smart,fortwo electric drive coupe,2016,,,Rear-Wheel Drive,1-Speed Direct Drive,Two Seaters +Spyker,C8,2009,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Spyker,C8 Aileron,2010,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Spyker,C8 Aileron,2011,8,4.2,Rear-Wheel Drive,6-Speed Automatic,Two Seaters +Spyker,C8 Double 12 S,2007,8,4.2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Spyker,C8 Double 12 Spyder,2007,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Spyker,C8 Laviolette,2005,8,4.2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Spyker,C8 Laviolette,2006,8,4.2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Spyker,C8 Laviolette,2007,8,4.2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Spyker,C8 Spyder,2005,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Spyker,C8 Spyder,2006,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Spyker,C8 Spyder,2007,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Spyker,C8 Spyder Wide Body,2005,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Spyker,C8 Spyder Wide Body,2006,8,4.2,Rear-Wheel Drive,6-Speed Manual,Two Seaters +SRT,Viper,2013,10,8.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +SRT,Viper,2014,10,8.4,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Sterling,825,1987,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Sterling,825,1987,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Sterling,825,1988,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Sterling,825,1988,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Sterling,827,1988,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Sterling,827,1988,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Sterling,827,1989,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Sterling,827,1989,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Sterling,827,1990,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Sterling,827,1990,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Sterling,827,1991,6,2.7,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Sterling,827,1991,6,2.7,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,3 Door Turbo,1986,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,B9 Tribeca,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,B9 Tribeca,2007,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Baja,2003,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Baja,2003,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Baja,2004,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Baja,2004,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Baja,2004,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Baja,2004,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Baja,2005,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Baja,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Baja,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Baja,2005,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Baja,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Baja,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Baja,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Baja,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Brat,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Brat,1984,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Brat,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Brat,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Brat,1984,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Brat,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Brat,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Brat,1985,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Brat,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Brat,1985,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Brat,1986,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Subaru,Brat,1986,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Subaru,Brat,1987,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Subaru,Brat,1987,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Subaru,BRZ,2013,4,2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Subaru,BRZ,2013,4,2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Subaru,BRZ,2014,4,2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Subaru,BRZ,2014,4,2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Subaru,BRZ,2015,4,2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Subaru,BRZ,2015,4,2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Subaru,BRZ,2016,4,2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Subaru,BRZ,2016,4,2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Subaru,Forester,1998,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Subaru,Forester,1998,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Forester,1999,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,1999,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2000,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2000,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2001,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2001,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2002,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2002,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2003,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2003,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2004,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2004,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2004,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2004,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2005,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2005,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2007,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2007,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2008,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2008,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2009,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2009,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2010,4,2.5,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2010,4,2.5,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2010,4,2.5,All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2011,4,2.5,All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2011,4,2.5,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2011,4,2.5,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2012,4,2.5,All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Forester,2012,4,2.5,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2012,4,2.5,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Forester,2013,4,2.5,All-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Subaru,Forester,2013,4,2.5,All-Wheel Drive,4-Speed Automatic,Small Sport Utility Vehicle +Subaru,Forester,2013,4,2.5,All-Wheel Drive,4-Speed Automatic,Small Sport Utility Vehicle +Subaru,Forester,2014,4,2.5,All-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Subaru,Forester,2014,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Forester,2014,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Forester,2015,4,2.5,All-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Subaru,Forester,2015,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Forester,2015,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Forester,2016,4,2.5,All-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Subaru,Forester,2016,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Forester,2016,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Forester,2017,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Forester,2017,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Hatchback,1985,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Subaru,Hatchback,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,Hatchback,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Hatchback,1985,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Hatchback,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,Hatchback,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Hatchback,1985,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Hatchback,1986,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Subaru,Hatchback,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Hatchback,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,Hatchback,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Hatchback,1986,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Hatchback,1986,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Hatchback,1987,4,1.6,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Subaru,Hatchback,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Hatchback,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,Hatchback,1987,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Hatchback,1987,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Hatchback,1988,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,Hatchback,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Hatchback,1988,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Hatchback,1989,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,Hatchback,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Hatchback,1989,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Impreza,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1993,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1993,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1994,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1994,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1995,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1995,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1995,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1996,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1996,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1996,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1997,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1997,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1997,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1998,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1998,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1998,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1998,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1999,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1999,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,1999,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,1999,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2000,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2000,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2001,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2001,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2001,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2001,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2002,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2002,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2002,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2003,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2003,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2003,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2004,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2004,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2004,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2004,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2004,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Subaru,Impreza,2005,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2005,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2005,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2005,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Subaru,Impreza,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2006,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Subaru,Impreza,2007,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2007,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Impreza,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Impreza,2007,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Subaru,Impreza,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2008,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Impreza,2008,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Impreza,2009,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Impreza,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2009,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Impreza,2010,4,2.5,All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Impreza,2010,4,2.5,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2010,4,2.5,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2010,4,2.5,All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Impreza,2011,4,2.5,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2011,4,2.5,All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Impreza,2011,4,2.5,All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,Impreza,2011,4,2.5,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2012,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2012,4,2,All-Wheel Drive,CVT,Compact Cars +Subaru,Impreza,2012,4,2.5,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2012,4,2.5,All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,Impreza,2013,4,2,All-Wheel Drive,CVT,Compact Cars +Subaru,Impreza,2013,4,2.5,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2013,4,2.5,All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,Impreza,2013,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2014,4,2.5,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2014,4,2.5,All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,Impreza,2014,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2014,4,2,All-Wheel Drive,CVT,Compact Cars +Subaru,Impreza,2015,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2015,4,2,All-Wheel Drive,CVT,Compact Cars +Subaru,Impreza,2016,4,2,All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Impreza,2016,4,2,All-Wheel Drive,CVT,Compact Cars +Subaru,Impreza Sport,2015,4,2,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Sport,2015,4,2,All-Wheel Drive,CVT,Small Station Wagons +Subaru,Impreza Sport,2016,4,2,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Sport,2016,4,2,All-Wheel Drive,CVT,Small Station Wagons +Subaru,Impreza Wagon,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,1993,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1993,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,1994,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1994,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,1995,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1995,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,1995,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1996,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1996,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,1997,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1997,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,1998,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1998,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,1999,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,1999,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2001,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,2001,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2002,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,2002,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2002,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2013,4,2,All-Wheel Drive,CVT,Small Station Wagons +Subaru,Impreza Wagon,2013,4,2.5,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2013,4,2.5,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2013,4,2,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2014,4,2.5,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2014,4,2.5,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2014,4,2,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2014,4,2,All-Wheel Drive,CVT,Small Station Wagons +Subaru,Impreza Wagon,2015,4,2,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2015,4,2,All-Wheel Drive,CVT,Small Station Wagons +Subaru,Impreza Wagon,2016,4,2,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon,2016,4,2,All-Wheel Drive,CVT,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2010,4,2.5,All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2010,4,2.5,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2010,4,2.5,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2010,4,2.5,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2010,4,2.5,All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2011,4,2.5,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2011,4,2.5,All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2011,4,2.5,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2011,4,2.5,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2012,4,2,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2012,4,2,All-Wheel Drive,CVT,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2012,4,2.5,All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback Sport,2012,4,2.5,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2003,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2003,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2003,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2004,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2004,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2004,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2004,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2005,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2005,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2005,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2007,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2007,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2008,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2008,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2008,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2009,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2009,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Subaru,Impreza Wagon/Outback SPT,2009,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Justy,1987,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1988,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1988,3,1.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Justy,1989,3,1.2,Front-Wheel Drive,CVT,Subcompact Cars +Subaru,Justy,1989,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1989,3,1.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1990,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1990,3,1.2,Front-Wheel Drive,CVT,Subcompact Cars +Subaru,Justy,1990,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1990,3,1.2,4-Wheel or All-Wheel Drive,CVT,Subcompact Cars +Subaru,Justy,1990,3,1.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1991,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1991,3,1.2,Front-Wheel Drive,CVT,Subcompact Cars +Subaru,Justy,1991,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1991,3,1.2,4-Wheel or All-Wheel Drive,CVT,Subcompact Cars +Subaru,Justy,1991,3,1.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1992,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1992,3,1.2,Front-Wheel Drive,CVT,Subcompact Cars +Subaru,Justy,1992,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1992,3,1.2,4-Wheel or All-Wheel Drive,CVT,Subcompact Cars +Subaru,Justy,1992,3,1.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1993,3,1.2,Front-Wheel Drive,CVT,Subcompact Cars +Subaru,Justy,1993,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1993,3,1.2,4-Wheel or All-Wheel Drive,CVT,Subcompact Cars +Subaru,Justy,1993,3,1.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1994,3,1.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Justy,1994,3,1.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Legacy,1990,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1990,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1990,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1991,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1991,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1992,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1992,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1993,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1993,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1993,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1994,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1994,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1994,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1995,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1995,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1996,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1996,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1996,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1997,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1997,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1997,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1997,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1998,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1998,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1998,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1998,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1998,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1999,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1999,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,1999,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,1999,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2000,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,2000,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2001,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,2001,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2002,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2005,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Subaru,Legacy,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Subaru,Legacy,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2007,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2007,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,Legacy,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Subaru,Legacy,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2008,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,Legacy,2008,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Subaru,Legacy,2008,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Subaru,Legacy,2009,4,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,Legacy,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Subaru,Legacy,2009,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Subaru,Legacy,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy,2009,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy,2010,4,2.5,All-Wheel Drive,6-Speed Manual,Midsize Cars +Subaru,Legacy,2010,6,3.6,All-Wheel Drive,5-Speed Automatic,Midsize Cars +Subaru,Legacy,2010,4,2.5,All-Wheel Drive,6-Speed Manual,Midsize Cars +Subaru,Legacy,2010,4,2.5,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy,2011,4,2.5,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy,2011,4,2.5,All-Wheel Drive,6-Speed Manual,Midsize Cars +Subaru,Legacy,2011,4,2.5,All-Wheel Drive,6-Speed Manual,Midsize Cars +Subaru,Legacy,2011,6,3.6,All-Wheel Drive,5-Speed Automatic,Midsize Cars +Subaru,Legacy,2012,4,2.5,All-Wheel Drive,6-Speed Manual,Midsize Cars +Subaru,Legacy,2012,4,2.5,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy,2012,4,2.5,All-Wheel Drive,6-Speed Manual,Midsize Cars +Subaru,Legacy,2012,6,3.6,All-Wheel Drive,5-Speed Automatic,Midsize Cars +Subaru,Legacy,2013,4,2.5,All-Wheel Drive,6-Speed Manual,Midsize Cars +Subaru,Legacy,2013,4,2.5,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy,2013,6,3.6,All-Wheel Drive,5-Speed Automatic,Midsize Cars +Subaru,Legacy,2014,4,2.5,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy,2014,4,2.5,All-Wheel Drive,6-Speed Manual,Midsize Cars +Subaru,Legacy,2014,6,3.6,All-Wheel Drive,5-Speed Automatic,Midsize Cars +Subaru,Legacy,2015,4,2.5,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy,2015,6,3.6,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy,2016,4,2.5,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy,2016,6,3.6,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy,2017,6,3.6,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy,2017,4,2.5,All-Wheel Drive,CVT,Midsize Cars +Subaru,Legacy (incl. Outback),2002,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy (incl. Outback),2002,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy Turbo,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy Turbo,1991,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy Turbo,1991,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy Turbo,1992,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy Turbo,1992,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy Turbo,1993,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy Turbo,1993,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy Turbo,1994,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy Turbo,1994,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy Wagon,1990,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon,1990,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon,1990,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon,1991,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon,1991,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon,1992,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon,1992,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon,1993,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon,1993,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon,1993,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon,1994,4,2.2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon,1994,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon,1994,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1995,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1995,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1996,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1996,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1996,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1997,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1997,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1997,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1997,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Subaru,Legacy Wagon,1998,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,1998,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,1998,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,1998,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,1998,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,1999,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,1999,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,1999,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,1999,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,2000,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,2000,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,2001,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,2001,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,2001,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,2005,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,2007,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon (incl. Outback),2002,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon (incl. Outback),2002,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy Wagon (incl. Outback),2002,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy Wagon Turbo,1992,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon Turbo,1992,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Legacy Wagon Turbo,1993,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy Wagon Turbo,1994,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Legacy/Outback,2003,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy/Outback,2003,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy/Outback,2003,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy/Outback,2003,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy/Outback,2004,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy/Outback,2004,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Legacy/Outback,2004,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy/Outback,2004,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Legacy/Outback Wagon,2003,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy/Outback Wagon,2003,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy/Outback Wagon,2003,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy/Outback Wagon,2003,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy/Outback Wagon,2004,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy/Outback Wagon,2004,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Subaru,Legacy/Outback Wagon,2004,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Legacy/Outback Wagon,2004,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Subaru,Loyale,1990,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Loyale,1990,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Loyale,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Loyale,1990,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Loyale,1990,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Loyale,1991,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Loyale,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Loyale,1991,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Loyale,1991,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Loyale,1992,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Loyale,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Loyale,1992,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Loyale,1992,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Loyale,1993,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Loyale,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Loyale,1993,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Loyale,1993,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Loyale Turbo,1990,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Loyale Wagon,1990,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Loyale Wagon,1990,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Loyale Wagon,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Loyale Wagon,1990,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Loyale Wagon,1990,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Loyale Wagon,1991,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Loyale Wagon,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Loyale Wagon,1991,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Loyale Wagon,1991,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Loyale Wagon,1992,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Loyale Wagon,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Loyale Wagon,1992,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Loyale Wagon,1992,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Loyale Wagon,1993,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Loyale Wagon,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Loyale Wagon,1993,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Loyale Wagon,1993,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Loyale Wagon,1994,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Loyale Wagon,1994,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Loyale Wagon Turbo,1990,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Outback,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Outback,2007,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Outback,2007,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback,2013,4,2.5,All-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Subaru,Outback,2013,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Outback,2013,6,3.6,All-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Subaru,Outback,2014,4,2.5,All-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Subaru,Outback,2014,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Outback,2014,6,3.6,All-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Subaru,Outback,2015,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Outback,2015,6,3.6,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Outback,2016,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Outback,2016,6,3.6,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Outback,2017,6,3.6,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Outback,2017,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,Outback Wagon,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2005,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2005,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2005,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2006,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2006,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2007,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2007,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2007,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2008,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2008,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2008,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2009,6,3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2009,4,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2009,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2010,4,2.5,All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2010,6,3.6,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2010,4,2.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Subaru,Outback Wagon,2011,4,2.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Subaru,Outback Wagon,2011,4,2.5,All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2011,6,3.6,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Outback Wagon,2012,4,2.5,All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Subaru,Outback Wagon,2012,4,2.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Subaru,Outback Wagon,2012,6,3.6,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,RX Turbo,1985,NA,NA,4-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,RX Turbo,1985,NA,NA,4-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,Sedan,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Subaru,Sedan,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Subaru,Sedan,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Subaru,Sedan,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Subaru,Sedan,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Subaru,Sedan,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Subaru,Sedan,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan,1984,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Sedan,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Subaru,Sedan,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Subaru,Sedan,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Subaru,Sedan,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Subaru,Sedan,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan,1984,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Sedan,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan,1985,4,1.8,Front-Wheel Drive,4-Speed Manual,Compact Cars +Subaru,Sedan,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Sedan,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Sedan,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan/3 Door,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Sedan/3 Door,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan/3 Door,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan/3 Door,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Sedan/3 Door,1986,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan/3 Door,1986,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan/3 Door,1986,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Sedan/3 Door,1986,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Sedan/3 Door,1986,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan/3 Door,1986,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Sedan/3 Door,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan/3 Door,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan/3 Door,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Sedan/3 Door,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Sedan/3 Door,1987,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan/3 Door,1987,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Sedan/3 Door,1987,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan/3 Door,1987,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Sedan/3 Door,1988,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan/3 Door,1988,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan/3 Door,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Sedan/3 Door,1988,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan/3 Door,1988,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Sedan/3 Door,1989,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan/3 Door,1989,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan/3 Door,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Sedan/3 Door,1989,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Sedan/3 Door,1989,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Sedan/3Door Turbo,1987,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Compact Cars +Subaru,Sedan/3Door Turbo,1987,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Sedan/3Door Turbo,1988,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Sedan/3Door Turbo,1988,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,Sedan/3Door Turbo,1989,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Subaru,Sedan/3Door Turbo,1989,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Subaru,SVX,1992,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,SVX,1993,6,3.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,SVX,1993,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,SVX,1994,6,3.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,SVX,1994,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,SVX,1995,6,3.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,SVX,1995,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,SVX,1996,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,SVX,1997,6,3.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,Tribeca,2008,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Tribeca,2009,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Tribeca,2010,6,3.6,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Tribeca,2011,6,3.6,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Tribeca,2012,6,3.6,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Subaru,Tribeca,2013,6,3.6,All-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Subaru,Tribeca,2014,6,3.6,All-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Subaru,Wagon,1984,4,1.8,,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1984,4,1.8,,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1984,4,1.8,,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1984,4,1.8,,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1984,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1984,4,1.8,,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1984,4,1.8,,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1984,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1984,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1985,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1985,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1985,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1986,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1986,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1986,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1986,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1986,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1986,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1987,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1987,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1987,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1987,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1988,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1988,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1988,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1988,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Wagon,1989,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1989,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Wagon,1989,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,Wagon,1989,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,Wagon Turbo,1987,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Station Wagons +Subaru,Wagon Turbo,1987,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Wagon Turbo,1988,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Wagon Turbo,1988,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,Wagon Turbo,1989,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Subaru,Wagon Turbo,1989,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Subaru,WRX,2015,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,WRX,2015,4,2.5,All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,WRX,2015,4,2,All-Wheel Drive,CVT,Compact Cars +Subaru,WRX,2016,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,WRX,2016,4,2.5,All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,WRX,2016,4,2,All-Wheel Drive,CVT,Compact Cars +Subaru,WRX,2017,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,WRX,2017,4,2,All-Wheel Drive,CVT,Compact Cars +Subaru,WRX,2017,4,2.5,All-Wheel Drive,6-Speed Manual,Compact Cars +Subaru,XT,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,XT,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,XT,1985,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,XT,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,XT,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,XT,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1986,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Subaru,XT,1986,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Subaru,XT,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,XT,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,XT,1987,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1987,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1987,4,1.8,4-Wheel or All-Wheel Drive,3-Speed Automatic,Subcompact Cars +Subaru,XT,1987,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1987,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1987,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1987,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1988,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1988,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1988,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1988,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1988,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1989,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1989,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1989,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1989,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1989,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1989,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1990,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1990,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1990,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1990,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1990,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1990,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1991,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1991,6,2.7,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1991,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1991,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT,1991,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Subaru,XT,1991,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Subaru,XT-DL,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Two Seaters +Subaru,XT-DL,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Two Seaters +Subaru,XT-DL,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Two Seaters +Subaru,XT-DL,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Two Seaters +Subaru,XT-DL,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Two Seaters +Subaru,XT-DL,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Two Seaters +Subaru,XV Crosstrek,2013,4,2,All-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Subaru,XV Crosstrek,2013,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,XV Crosstrek,2014,4,2,All-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Subaru,XV Crosstrek,2014,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,XV Crosstrek,2015,4,2,All-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Subaru,XV Crosstrek,2015,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,XV Crosstrek,2016,4,2,All-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Subaru,XV Crosstrek,2016,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,XV Crosstrek Hybrid,2014,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,XV Crosstrek Hybrid,2015,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Subaru,XV Crosstrek Hybrid,2016,4,2,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Superior Coaches Div E.p. Dutton,Funeral Coach ,1984,8,6,2-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Aerio,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Aerio,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Aerio,2003,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio,2004,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Aerio,2004,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio,2005,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio,2005,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Aerio,2005,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio,2006,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Aerio,2006,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio,2007,4,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio,2007,4,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Aerio,2007,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Aerio SX,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Aerio SX,2002,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Aerio SX,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Aerio SX,2003,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Aerio SX,2003,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Aerio SX,2004,4,2.3,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Aerio SX,2004,4,2.3,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Aerio SX,2004,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Aerio SX,2005,4,2.3,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Aerio SX,2005,4,2.3,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Aerio SX,2005,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Aerio SX,2006,4,2.3,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Aerio SX,2006,4,2.3,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Aerio SX,2006,4,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Equator,2009,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Suzuki,Equator,2009,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2010,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2010,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Suzuki,Equator,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2010,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2011,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2011,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Suzuki,Equator,2011,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2011,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2012,4,2.5,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2012,4,2.5,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Suzuki,Equator,2012,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Equator,2012,6,4,4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Suzuki,Esteem,1996,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Esteem,1997,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Esteem,1998,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,1998,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Esteem,1999,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,1999,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Esteem,1999,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Esteem,1999,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,2000,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,2000,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Esteem,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Esteem,2001,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,2001,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Esteem,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Esteem,2002,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,2002,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Esteem,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Esteem Wagon,1998,4,1.6,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Esteem Wagon,1998,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Esteem Wagon,1999,4,1.6,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Esteem Wagon,1999,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Esteem Wagon,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Esteem Wagon,1999,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Esteem Wagon,2000,4,1.6,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Esteem Wagon,2000,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Esteem Wagon,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Esteem Wagon,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Esteem Wagon,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Esteem Wagon,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Esteem Wagon,2002,4,1.6,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Esteem Wagon,2002,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Esteem Wagon,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Forenza,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Forenza,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Forenza,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Forenza,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Forenza,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Forenza,2006,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Forenza,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Forenza,2007,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Forenza,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Forenza,2008,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Forenza Wagon,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Forenza Wagon,2005,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Forenza Wagon,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Forenza Wagon,2006,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Forenza Wagon,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Forenza Wagon,2007,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Forenza Wagon,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,Forenza Wagon,2008,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,Forsa,1987,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Forsa,1987,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Forsa,1988,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Forsa,1988,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Forsa Turbo,1987,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Suzuki,Forsa Turbo,1988,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Suzuki,Grand Vitara,2001,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2001,6,2.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2001,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2001,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2002,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2002,6,2.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2002,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2002,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2003,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2003,6,2.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2003,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2003,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2004,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2004,6,2.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2004,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2004,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2005,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2005,6,2.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2005,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2005,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2006,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2006,6,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2006,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2006,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2007,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2007,6,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2007,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2007,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2008,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2008,6,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2008,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2008,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2009,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2009,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2009,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2009,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2009,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2009,6,3.2,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2010,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2010,6,3.2,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2010,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2010,4,2.4,4-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2010,6,3.2,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2010,4,2.4,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2011,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2011,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2011,4,2.4,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2012,4,2.4,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara,2012,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2012,4,2.4,4-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara,2013,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Sport Utility Vehicle +Suzuki,Grand Vitara,2013,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Sport Utility Vehicle +Suzuki,Grand Vitara,2013,4,2.4,4-Wheel Drive,4-Speed Automatic,Small Sport Utility Vehicle +Suzuki,Grand Vitara 4Door,1999,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara 4Door,1999,6,2.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara 4Door,1999,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara 4Door,1999,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara 4Door,2000,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara 4Door,2000,6,2.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara 4Door,2000,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara 4Door,2000,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2001,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2001,6,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2001,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2001,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2002,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2002,6,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2002,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2002,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2003,6,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2003,6,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2003,6,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2003,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2004,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2004,6,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2004,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2004,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2005,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2005,6,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2005,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2005,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2006,6,2.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2006,6,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2006,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,Grand Vitara XL7,2006,6,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Kizashi,2010,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi,2010,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,Kizashi,2010,4,2.4,All-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi,2011,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,Kizashi,2011,4,2.4,All-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi,2012,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,Kizashi,2012,4,2.4,All-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi,2013,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,Kizashi,2013,4,2.4,All-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi S,2010,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi S,2010,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,Kizashi S,2010,4,2.4,All-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi S,2011,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi S,2011,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,Kizashi S,2011,4,2.4,All-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi S,2012,4,2.4,Front-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi S,2012,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,Kizashi S,2012,4,2.4,All-Wheel Drive,CVT,Compact Cars +Suzuki,Kizashi S,2013,4,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,Kizashi S,2013,4,2.4,All-Wheel Drive,CVT,Compact Cars +Suzuki,Reno,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Reno,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Reno,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Reno,2006,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Reno,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Reno,2007,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Reno,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Reno,2008,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,SA310,1985,3,1,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Suzuki,SA310,1985,3,1,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Suzuki,Samurai,1986,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai,1991,4,1.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai,1992,4,1.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai,1993,4,1.3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai,1995,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Convertible,1986,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Convertible,1987,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Convertible,1988,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Convertible,1989,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Hardtop,1987,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Hardtop,1988,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Hardtop,1989,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Hardtop,1990,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Hardtop,1991,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Soft-top,1990,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Soft-top,1991,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Soft-top,1992,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Soft-top,1993,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Samurai Soft-top,1994,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick,1990,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick,1991,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick,1992,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick,1993,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick,1993,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1994,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1994,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1994,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1994,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1994,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1994,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1994,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1994,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1996,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1996,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1996,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1996,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1997,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1997,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1997,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1997,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1998,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 2Door,1998,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 2Door RWD,1998,4,1.6,Rear-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 2Door RWD,1998,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1994,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1994,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1994,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1994,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1996,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1996,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1996,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1996,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1997,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1997,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1997,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1997,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1998,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 4Door,1998,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick 4Door RWD,1998,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick 4Door RWD,1998,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Convertible,1989,4,1.3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Convertible,1989,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Convertible,1989,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1989,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1989,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1990,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1990,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1991,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1991,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1991,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1991,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1992,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1992,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1992,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1992,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1992,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1993,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1993,4,1.6,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1993,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1993,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1993,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1993,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1993,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Hardtop,1993,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Soft-top,1990,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Soft-top,1990,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Soft-top,1991,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Soft-top,1991,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Soft-top,1992,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Soft-top,1992,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Soft-top,1993,4,1.6,4-Wheel or All-Wheel Drive,3-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Soft-top,1993,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Sport,1996,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Sport,1996,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Sport,1997,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Sport,1997,4,1.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Sport,1997,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Sport,1997,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Sport,1998,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Sport,1998,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,Sidekick Sport RWD,1998,4,1.8,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Suzuki,Sidekick Sport RWD,1998,4,1.8,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Suzuki,SJ 410,1984,4,1,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Suzuki,SJ 410,1985,4,1,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Suzuki,SJ 410V,1984,4,1,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Suzuki,SJ 410V,1985,4,1,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Suzuki,SJ410K P/U,1984,4,1,4-Wheel or All-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Suzuki,SW,1999,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,SW,1999,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1989,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1989,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1989,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1989,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1990,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1990,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1990,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1990,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1991,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1991,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1991,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1991,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1992,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1992,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1992,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1992,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1993,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1993,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1993,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1993,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1994,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1994,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1995,3,1,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1995,3,1,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1996,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1996,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1997,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1997,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,1998,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,1998,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,2000,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,2000,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,2001,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift,2001,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift,2004,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Swift,2004,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Swift,2005,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Swift,2005,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Swift GA,1989,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift GT,1990,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift GT,1990,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift GT,1991,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift GT,1992,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift GT,1993,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift GT,1994,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift GTI,1989,4,1.3,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Suzuki,Swift GTI,1989,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift x,2005,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,Swift x,2005,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,Swift x,2006,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Swift x,2006,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift x,2010,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Swift x,2010,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,Swift x,2011,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Suzuki,Swift x,2011,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Suzuki,SX4,2007,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,SX4,2007,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,SX4,2007,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,SX4,2007,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,SX4,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,SX4,2008,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,SX4,2008,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,SX4,2008,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,SX4,2009,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,SX4,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,SX4,2009,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Suzuki,SX4,2009,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Suzuki,SX4,2010,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Suzuki,SX4,2010,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Suzuki,SX4,2010,4,2,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Suzuki,SX4,2010,4,2,All-Wheel Drive,CVT,Small Station Wagons +Suzuki,SX4,2011,4,2,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Suzuki,SX4,2011,4,2,All-Wheel Drive,CVT,Small Station Wagons +Suzuki,SX4,2011,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Suzuki,SX4,2011,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Suzuki,SX4,2012,4,2,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Suzuki,SX4,2012,4,2,All-Wheel Drive,CVT,Small Station Wagons +Suzuki,SX4,2012,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Suzuki,SX4,2012,4,2,Front-Wheel Drive,CVT,Small Station Wagons +Suzuki,SX4,2013,4,2,All-Wheel Drive,6-Speed Manual,Subcompact Cars +Suzuki,SX4,2013,4,2,All-Wheel Drive,CVT,Subcompact Cars +Suzuki,SX4,2013,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Suzuki,SX4,2013,4,2,Front-Wheel Drive,CVT,Subcompact Cars +Suzuki,SX4 Sedan,2008,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,SX4 Sedan,2008,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,SX4 Sedan,2009,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,SX4 Sedan,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,SX4 Sedan,2010,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,SX4 Sedan,2010,4,2,Front-Wheel Drive,CVT,Compact Cars +Suzuki,SX4 Sedan,2011,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,SX4 Sedan,2011,4,2,Front-Wheel Drive,CVT,Compact Cars +Suzuki,SX4 Sedan,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,SX4 Sedan,2012,4,2,Front-Wheel Drive,CVT,Compact Cars +Suzuki,SX4 Sedan,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,SX4 Sedan,2013,4,2,Front-Wheel Drive,CVT,Compact Cars +Suzuki,SX4 Sport,2009,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Suzuki,SX4 Sport,2009,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Suzuki,SX4 Sport,2010,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,SX4 Sport,2010,4,2,Front-Wheel Drive,CVT,Compact Cars +Suzuki,SX4 Sport,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,SX4 Sport,2012,4,2,Front-Wheel Drive,CVT,Compact Cars +Suzuki,SX4 Sport,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,SX4 Sport,2013,4,2,Front-Wheel Drive,CVT,Compact Cars +Suzuki,SX4 Sport/Anniversary Edition,2011,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Suzuki,SX4 Sport/Anniversary Edition,2011,4,2,Front-Wheel Drive,CVT,Compact Cars +Suzuki,Verona,2004,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Suzuki,Verona,2005,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Suzuki,Verona,2006,6,2.5,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Suzuki,Vitara 2 Door,2003,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2 Door,2003,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2 Door,2003,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2 Door,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,1999,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,1999,4,1.6,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,1999,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,1999,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,1999,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,1999,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,1999,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,1999,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,2000,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,2000,4,1.6,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,2000,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,2000,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,2000,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,2000,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,2000,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,2000,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,2001,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,2001,4,1.6,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,2001,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,2001,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,2001,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,2001,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,2001,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,2002,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,2002,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 2Door,2002,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 2Door,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4 Door,2003,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4 Door,2003,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4 Door,2003,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4 Door,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4 Door,2004,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4 Door,2004,6,2.5,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4 Door,2004,6,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4 Door,2004,6,2.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4Door,1999,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4Door,1999,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4Door,1999,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4Door,1999,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4Door,2000,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4Door,2000,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4Door,2000,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4Door,2000,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4Door,2001,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4Door,2001,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4Door,2001,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4Door,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4Door,2002,4,2,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4Door,2002,4,2,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,Vitara 4Door,2002,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Suzuki,Vitara 4Door,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Suzuki,X-90,1996,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Suzuki,X-90,1996,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Two Seaters +Suzuki,X-90,1996,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Suzuki,X-90,1997,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Suzuki,X-90,1997,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Suzuki,X-90,1997,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Two Seaters +Suzuki,X-90,1997,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Suzuki,X-90,1998,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Two Seaters +Suzuki,X-90,1998,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Two Seaters +Suzuki,X-90 RWD,1998,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Suzuki,X-90 RWD,1998,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Suzuki,XL7,2007,6,3.6,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,XL7,2007,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,XL7,2008,6,3.6,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,XL7,2008,6,3.6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Suzuki,XL7,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Suzuki,XL7,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +"Tecstar, LP",Foose F150 Regular Cab,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +"Tecstar, LP",Foose F150 Regular Cab,2008,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +"Tecstar, LP",Foose F150 Super Cab,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +"Tecstar, LP",Foose F150 Super Cab,2008,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +"Tecstar, LP",Foose F150 Super Crew,2008,8,5.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +"Tecstar, LP",Foose F150 Super Crew,2008,8,5.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Tesla,Model S,2012,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - 70D,2015,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - 70D,2016,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - 75D,2016,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - 85D,2015,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - 85D,2016,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - 90D,2015,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - 90D,2016,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - P85D,2015,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - P85D,2016,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - P90D,2015,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S - P90D,2016,,,All-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (40 kW-hr battery pack),2013,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (60 kW-hr battery pack),2013,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (60 kW-hr battery pack),2014,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (60 kW-hr battery pack),2015,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (70 kW-hr battery pack),2016,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (75 kW-hr battery pack),2016,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (85 kW-hr battery pack),2013,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (85 kW-hr battery pack),2014,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (85 kW-hr battery pack),2014,,,4-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (85 kW-hr battery pack),2015,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (85 kW-hr battery pack),2016,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (90 kW-hr battery pack),2015,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model S (90 kW-hr battery pack),2016,,,Rear-Wheel Drive,1-Speed Direct Drive,Large Cars +Tesla,Model X - 75D,2016,,,All-Wheel Drive,1-Speed Direct Drive,Standard Sport Utility Vehicle +Tesla,Model X - 90D,2016,,,All-Wheel Drive,1-Speed Direct Drive,Standard Sport Utility Vehicle +Tesla,Model X - P90D,2016,,,All-Wheel Drive,1-Speed Direct Drive,Standard Sport Utility Vehicle +Texas Coach Company,500 SEC,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Texas Coach Company,500SE,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Texas Coach Company,500SEL,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Texas Coach Company,500SL,1986,8,5,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,86,2017,4,2,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Toyota,86,2017,4,2,Rear-Wheel Drive,6-Speed Automatic,Minicompact Cars +Toyota,1-Ton Truck,1985,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,1-Ton Truck,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,1-Ton Truck,1986,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,1-Ton Truck,1986,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,1-Ton Truck,1987,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,1-Ton Truck,1987,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,1-Ton Truck,1988,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,1-Ton Truck,1988,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,1-Ton Truck,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,1-Ton Truck,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,1-Ton Truck,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,1-Ton Truck,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,1-Ton Truck,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,1-Ton Truck,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,1-Ton Truck,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,1-Ton Truck,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,4Runner,1984,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1984,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1985,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1985,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1986,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1986,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1986,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1987,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1987,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1987,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1988,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1988,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1988,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1988,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1989,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1989,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1989,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1989,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1990,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1990,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1990,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1990,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1990,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1991,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1991,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1991,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1991,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1991,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1992,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1992,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1992,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1992,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1993,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1993,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1993,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1994,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1994,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1994,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1995,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1995,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1995,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1996,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1996,4,2.7,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1996,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1996,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1996,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1996,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1996,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1997,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1997,4,2.7,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1997,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1997,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1997,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1997,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1997,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1998,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1998,4,2.7,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1998,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1998,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1998,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1998,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,4Runner,1998,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,4Runner,1999,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,1999,4,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,4Runner,1999,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,1999,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,1999,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,4Runner,1999,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,1999,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,4Runner,2000,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2000,4,2.7,Rear-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,4Runner,2000,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2000,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2000,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,4Runner,2000,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2000,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,4Runner,2001,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2001,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2002,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2002,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2003,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2003,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2003,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2003,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2004,6,4,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2004,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2004,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2005,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2007,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2010,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2010,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2010,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2011,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2011,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2011,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2011,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2012,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2012,6,4,4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2012,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,4Runner,2013,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2013,6,4,All-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2013,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2014,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2014,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2014,6,4,All-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2015,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2015,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2015,6,4,All-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2016,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2016,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,4Runner,2016,6,4,All-Wheel Drive,5-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Avalon,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Toyota,Avalon,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Toyota,Avalon,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Toyota,Avalon,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Toyota,Avalon,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Toyota,Avalon,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Toyota,Avalon,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Toyota,Avalon,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Toyota,Avalon,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Toyota,Avalon,2004,6,3,Front-Wheel Drive,4-Speed Automatic,Large Cars +Toyota,Avalon,2005,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Toyota,Avalon,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Toyota,Avalon,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Large Cars +Toyota,Avalon,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Toyota,Avalon,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Toyota,Avalon,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Toyota,Avalon,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Toyota,Avalon,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Large Cars +Toyota,Avalon,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Avalon,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Avalon,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Avalon,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Avalon,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Avalon,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Avalon Hybrid,2013,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Avalon Hybrid,2014,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Avalon Hybrid,2015,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Avalon Hybrid,2016,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Cab Chassis,1984,4,2.4,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Toyota,Cab Chassis,1984,4,2.4,2-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Toyota,Cab Chassis,1985,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Cab Chassis,1985,4,2.4,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Toyota,Cab/Chassis,1986,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Cab/Chassis,1986,4,2.4,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Toyota,Cab/Chassis,1987,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Cab/Chassis,1987,4,2.4,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Toyota,Cab/Chassis,1988,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Cab/Chassis,1988,4,2.4,Rear-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Toyota,Cab/Chassis,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Cab/Chassis,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,Cab/Chassis,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Cab/Chassis,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,Cab/Chassis,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Cab/Chassis,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,Cab/Chassis,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Cab/Chassis,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,Cab/Chassis,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Cab/Chassis,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,Cab/Chassis,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Cab/Chassis,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,Camry,1984,4,1.8,,5-Speed Manual,Compact Cars +Toyota,Camry,1984,4,2,,4-Speed Automatic,Compact Cars +Toyota,Camry,1984,4,2,,5-Speed Manual,Compact Cars +Toyota,Camry,1984,4,2,,4-Speed Automatic,Compact Cars +Toyota,Camry,1984,4,2,,5-Speed Manual,Compact Cars +Toyota,Camry,1985,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1985,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1985,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1986,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1986,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1986,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1987,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1988,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1988,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1988,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1988,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1989,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1989,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1989,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1989,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1989,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1990,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1990,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1990,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1990,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1991,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1991,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1991,6,2.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry,1991,6,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1992,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1993,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1993,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1994,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1997,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1997,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1998,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1998,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1998,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1999,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1999,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,1999,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2000,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,2000,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,2000,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,2001,4,2.2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,2001,6,3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,2003,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Camry,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2004,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2004,6,3.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2005,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2005,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2005,6,3.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2006,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2006,6,3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2006,6,3.3,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2007,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2007,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2008,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2008,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Toyota,Camry,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Toyota,Camry,2010,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Toyota,Camry,2010,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2011,4,2.5,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Toyota,Camry,2011,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2012,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2013,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry,2017,6,3.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Toyota,Camry CNG,1999,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry CNG,2000,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry CNG,2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Hybrid,2007,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid,2008,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid,2009,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid,2010,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid,2011,4,2.4,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid LE,2012,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid LE,2013,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid LE,2014,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid LE,2015,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid LE,2016,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid XLE,2012,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid XLE,2013,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid XLE/SE,2014,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid XLE/SE,2015,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Hybrid XLE/SE,2016,4,2.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Camry Solara,1999,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,1999,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,1999,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2000,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,2000,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,2000,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,2001,4,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,2001,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,2002,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,2002,6,3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,2003,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2004,6,3.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Camry Solara,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2005,6,3.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara,2006,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2006,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara,2006,6,3.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara,2007,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2007,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara,2007,6,3.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara,2008,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Camry Solara,2008,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara,2008,6,3.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara Convertible,2000,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Camry Solara Convertible,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Camry Solara Convertible,2001,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Camry Solara Convertible,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Camry Solara Convertible,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Camry Solara Convertible,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Camry Solara Convertible,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Camry Solara Convertible,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Camry Solara Convertible,2004,6,3.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara Convertible,2005,6,3.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara Convertible,2006,6,3.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara Convertible,2007,6,3.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Solara Convertible,2008,6,3.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Camry Wagon,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Camry Wagon,1987,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Camry Wagon,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Camry Wagon,1988,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Camry Wagon,1988,6,2.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Camry Wagon,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Camry Wagon,1989,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Camry Wagon,1989,6,2.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Camry Wagon,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Camry Wagon,1990,6,2.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Camry Wagon,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Camry Wagon,1991,6,2.5,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Camry Wagon,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Camry Wagon,1992,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Camry Wagon,1993,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Camry Wagon,1993,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Camry Wagon,1994,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Camry Wagon,1994,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Camry Wagon,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Camry Wagon,1995,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Camry Wagon,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Camry Wagon,1996,6,3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Cargo Van,1984,4,2,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Toyota,Cargo Van,1984,4,2,2-Wheel Drive,5-Speed Manual,"Vans, Cargo Type" +Toyota,Cargo Van,1984,4,2,2-Wheel Drive,4-Speed Automatic,"Vans, Cargo Type" +Toyota,Cargo Van,1984,4,2,2-Wheel Drive,5-Speed Manual,"Vans, Cargo Type" +Toyota,Cargo Van,1985,4,2,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Cargo Van,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Cargo Van,1986,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Cargo Van,1986,4,2.2,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Cargo Van,1987,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Cargo Van,1987,4,2.2,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Cargo Van,1987,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Cargo Van,1987,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Toyota,Celica,1984,4,2.4,,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1984,4,2.4,,5-Speed Manual,Subcompact Cars +Toyota,Celica,1984,4,2.4,,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1984,4,2.4,,5-Speed Manual,Subcompact Cars +Toyota,Celica,1985,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1986,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1986,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1986,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1986,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1987,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1987,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1988,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1988,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1988,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1989,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1989,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1989,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1990,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1990,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1990,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1991,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1992,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1993,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1993,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1993,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1994,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1994,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1998,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1998,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,1999,4,2.2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,1999,4,2.2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,2000,4,1.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Toyota,Celica,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,2001,4,1.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Toyota,Celica,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2002,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,2002,4,1.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Toyota,Celica,2002,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2003,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,2003,4,1.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Toyota,Celica,2003,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2004,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,2004,4,1.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Toyota,Celica,2004,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2005,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica,2005,4,1.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Toyota,Celica,2005,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica Convertible,1987,4,2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1987,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1988,4,2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1988,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1989,4,2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1989,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1990,4,2.2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1990,4,2.2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1991,4,2.2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1991,4,2.2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1992,4,2.2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1992,4,2.2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1993,4,2.2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1993,4,2.2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1995,4,2.2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1995,4,2.2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1996,4,2.2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1996,4,2.2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1997,4,2.2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1997,4,2.2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1998,4,2.2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1998,4,2.2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Convertible,1999,4,2.2,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Celica Convertible,1999,4,2.2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Celica Supra,1984,6,2.8,,4-Speed Automatic,Subcompact Cars +Toyota,Celica Supra,1984,6,2.8,,5-Speed Manual,Subcompact Cars +Toyota,Celica Supra,1984,6,2.8,,4-Speed Automatic,Subcompact Cars +Toyota,Celica Supra,1984,6,2.8,,5-Speed Manual,Subcompact Cars +Toyota,Celica Supra,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica Supra,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Celica Supra,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Celica Supra,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1984,4,1.6,,3-Speed Automatic,Compact Cars +Toyota,Corolla,1984,4,1.6,,5-Speed Manual,Compact Cars +Toyota,Corolla,1984,4,1.8,,3-Speed Automatic,Compact Cars +Toyota,Corolla,1984,4,1.8,,4-Speed Manual,Compact Cars +Toyota,Corolla,1984,4,1.8,,5-Speed Manual,Compact Cars +Toyota,Corolla,1984,4,1.6,,3-Speed Automatic,Compact Cars +Toyota,Corolla,1984,4,1.6,,5-Speed Manual,Compact Cars +Toyota,Corolla,1984,4,1.8,,5-Speed Manual,Compact Cars +Toyota,Corolla,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1985,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1985,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1986,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1986,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1987,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1987,4,1.6,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Corolla,1988,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Corolla,1989,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1989,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla,1989,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1990,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Corolla,1990,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla,1990,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla,1990,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1991,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Corolla,1991,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1992,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Corolla,1992,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1993,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1993,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1994,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1994,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1995,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1995,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1996,4,1.6,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1996,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1997,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Corolla,1997,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1997,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla,1997,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla,1998,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1998,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,1999,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,1999,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2000,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2001,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2002,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Toyota,Corolla,2002,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2003,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2004,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2005,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2005,4,1.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Toyota,Corolla,2006,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2006,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2006,4,1.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Toyota,Corolla,2007,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2007,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2008,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2008,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Corolla,2009,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2009,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2010,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2010,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Corolla,2011,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2011,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2011,4,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Toyota,Corolla,2012,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2012,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2013,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Corolla,2013,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Corolla,2014,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Corolla,2014,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla,2014,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla,2014,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Toyota,Corolla,2015,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla,2015,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Corolla,2015,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Toyota,Corolla,2015,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla,2016,4,1.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Toyota,Corolla,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla,2016,4,1.8,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Toyota,Corolla All-Trac Wagon,1988,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Corolla All-Trac Wagon,1988,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla All-Trac Wagon,1989,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Corolla All-Trac Wagon,1989,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla All-Trac Wagon,1990,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Corolla All-Trac Wagon,1990,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla All-Trac Wagon,1991,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Corolla All-Trac Wagon,1991,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla All-Trac Wagon,1992,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Corolla All-Trac Wagon,1992,4,1.6,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla FX,1987,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla FX,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla FX,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Corolla FX,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla FX,1988,4,1.6,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla FX,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla LE Eco,2014,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla LE Eco,2014,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla LE Eco,2015,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla LE Eco,2015,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla LE Eco,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla LE Eco,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Corolla Sport,1984,4,1.6,,4-Speed Automatic,Subcompact Cars +Toyota,Corolla Sport,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Toyota,Corolla Sport,1984,4,1.6,,4-Speed Automatic,Subcompact Cars +Toyota,Corolla Sport,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Toyota,Corolla Sport,1985,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla Sport,1985,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla Sport,1985,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla Sport,1985,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla Sport,1986,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla Sport,1986,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla Sport,1986,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla Sport,1987,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Corolla Sport,1987,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla Sport,1987,4,1.6,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Corolla Wagon,1988,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Corolla Wagon,1988,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla Wagon,1989,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Corolla Wagon,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla Wagon,1990,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Corolla Wagon,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla Wagon,1991,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Corolla Wagon,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla Wagon,1992,4,1.6,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Corolla Wagon,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla Wagon,1993,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Corolla Wagon,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla Wagon,1994,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Corolla Wagon,1994,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla Wagon,1995,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Corolla Wagon,1995,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Corolla Wagon,1996,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Corolla Wagon,1996,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Cressida,1984,6,2.8,,4-Speed Automatic,Subcompact Cars +Toyota,Cressida,1984,6,2.8,,5-Speed Manual,Subcompact Cars +Toyota,Cressida,1984,6,2.8,,4-Speed Automatic,Subcompact Cars +Toyota,Cressida,1984,6,2.8,,5-Speed Manual,Subcompact Cars +Toyota,Cressida,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Cressida,1985,6,2.8,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Cressida,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Cressida,1986,6,2.8,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Cressida,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Cressida,1987,6,2.8,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Cressida,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Cressida,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Cressida,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Cressida,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Cressida,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Cressida Wagon,1984,6,2.8,,4-Speed Automatic,Small Station Wagons +Toyota,Cressida Wagon,1984,6,2.8,,4-Speed Automatic,Small Station Wagons +Toyota,Cressida Wagon,1985,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Cressida Wagon,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Cressida Wagon,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Toyota,Echo,2000,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Echo,2000,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Echo,2001,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Echo,2001,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Echo,2002,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Echo,2002,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Echo,2003,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Echo,2003,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Echo,2004,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Echo,2004,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Echo,2005,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Echo,2005,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,FJ Cruiser,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2007,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Toyota,FJ Cruiser,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2008,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Toyota,FJ Cruiser,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2009,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Toyota,FJ Cruiser,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2010,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2010,6,4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Toyota,FJ Cruiser,2011,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2011,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2011,6,4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Toyota,FJ Cruiser,2012,6,4,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2012,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,FJ Cruiser,2012,6,4,4-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Toyota,FJ Cruiser,2013,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Toyota,FJ Cruiser,2013,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Toyota,FJ Cruiser,2013,6,4,All-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Toyota,FJ Cruiser,2014,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Toyota,FJ Cruiser,2014,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Toyota,FJ Cruiser,2014,6,4,All-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Toyota,Highlander,2001,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2001,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2001,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2002,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2002,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2002,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2003,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2003,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2003,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2004,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2004,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2004,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2005,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2005,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2005,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2006,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2006,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2006,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2007,6,3.3,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2007,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2007,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2009,4,2.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2010,4,2.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2010,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2011,4,2.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2011,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2011,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2012,4,2.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2012,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2012,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Highlander,2013,4,2.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Highlander,2013,6,3.5,Front-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Toyota,Highlander,2013,6,3.5,All-Wheel Drive,5-Speed Automatic,Small Sport Utility Vehicle +Toyota,Highlander,2014,4,2.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Highlander,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Highlander,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Highlander,2015,4,2.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Highlander,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Highlander,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Highlander,2016,4,2.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Highlander,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Highlander,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Highlander Hybrid,2006,6,3.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Toyota,Highlander Hybrid,2006,6,3.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Toyota,Highlander Hybrid,2007,6,3.3,Front-Wheel Drive,CVT,Sport Utility Vehicle +Toyota,Highlander Hybrid,2007,6,3.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Toyota,Highlander Hybrid,2008,6,3.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Toyota,Highlander Hybrid,2009,6,3.3,4-Wheel or All-Wheel Drive,CVT,Sport Utility Vehicle +Toyota,Highlander Hybrid,2010,6,3.3,All-Wheel Drive,CVT,Sport Utility Vehicle +Toyota,Highlander Hybrid,2011,6,3.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Toyota,Highlander Hybrid,2012,6,3.5,All-Wheel Drive,CVT,Sport Utility Vehicle +Toyota,Highlander Hybrid,2013,6,3.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Toyota,Highlander Hybrid,2014,6,3.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Toyota,Highlander Hybrid,2015,6,3.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Toyota,Highlander Hybrid,2016,6,3.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Toyota,Highlander Hybrid LE Plus,2014,6,3.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Toyota,Highlander Hybrid LE Plus,2015,6,3.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Toyota,Highlander Hybrid LE Plus,2016,6,3.5,All-Wheel Drive,CVT,Standard Sport Utility Vehicle +Toyota,Land Cruiser Wagon,1984,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1985,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1986,6,4.2,4-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1987,6,4.2,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1988,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1989,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1990,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1991,6,3.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1992,6,4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1993,6,4.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1994,6,4.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1995,6,4.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1996,6,4.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1997,6,4.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1998,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Land Cruiser Wagon,1999,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2000,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2001,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2002,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2003,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2004,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2008,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2009,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2010,8,5.7,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2011,8,5.7,4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2013,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2014,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2015,8,5.7,4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Land Cruiser Wagon,2016,8,5.7,4-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Matrix,2003,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2003,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2003,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2003,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Toyota,Matrix,2004,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2004,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2004,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Toyota,Matrix,2005,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2005,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2005,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Toyota,Matrix,2006,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2006,4,1.8,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2006,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2006,4,1.8,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Toyota,Matrix,2007,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2007,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2008,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2008,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2009,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2009,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2009,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Toyota,Matrix,2009,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2009,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2010,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2010,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2010,4,2.4,All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2010,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2010,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Toyota,Matrix,2011,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2011,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2011,4,2.4,All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2011,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2011,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Toyota,Matrix,2012,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2012,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2012,4,2.4,All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2012,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2012,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Toyota,Matrix,2013,4,1.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2013,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2013,4,2.4,All-Wheel Drive,4-Speed Automatic,Small Station Wagons +Toyota,Matrix,2013,4,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Matrix,2013,4,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Toyota,MR2,1985,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1986,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1986,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1987,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1987,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1988,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1988,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1988,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1988,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1989,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1989,4,1.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1989,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1989,4,1.6,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1991,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1991,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1991,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1992,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1992,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1992,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1993,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1993,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1993,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1994,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1994,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1994,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1995,4,2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,1995,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Toyota,MR2,1995,4,2.2,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,2001,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,2002,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,2003,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,2003,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Toyota,MR2,2004,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,2004,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Toyota,MR2,2005,4,1.8,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Toyota,MR2,2005,4,1.8,Rear-Wheel Drive,6-Speed Manual,Two Seaters +Toyota,Paseo,1992,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Paseo,1993,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Paseo,1994,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Paseo,1995,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Paseo,1996,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo,1996,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Paseo,1997,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo,1997,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Paseo,1998,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo,1998,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Paseo,1999,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo,1999,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Paseo Convertible,1997,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo Convertible,1997,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Paseo Convertible,1998,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo Convertible,1998,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Paseo Convertible,1999,4,1.5,Front-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Paseo Convertible,1999,4,1.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Previa,1991,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa,1991,4,2.4,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Previa,1992,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa,1992,4,2.4,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Previa,1993,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa,1993,4,2.4,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Previa,1994,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa,1994,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa,1995,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa,1995,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa,1996,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa,1997,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa All-Trac,1991,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa All-Trac,1991,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Toyota,Previa All-Trac,1992,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa All-Trac,1992,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Toyota,Previa All-Trac,1993,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa All-Trac,1994,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa All-Trac,1994,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa All-Trac,1995,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa All-Trac,1995,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa All-Trac,1996,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Previa All-Trac,1997,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Prius,2001,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Toyota,Prius,2002,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Toyota,Prius,2003,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Toyota,Prius,2004,4,1.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2005,4,1.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2006,4,1.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2007,4,1.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2008,4,1.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2009,4,1.5,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2010,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2011,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2012,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2013,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2014,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2015,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius c,2012,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Toyota,Prius c,2013,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Toyota,Prius c,2014,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Toyota,Prius c,2015,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Toyota,Prius c,2016,4,1.5,Front-Wheel Drive,CVT,Compact Cars +Toyota,Prius Eco,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius Plug-in Hybrid,2012,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius Plug-in Hybrid,2013,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius Plug-in Hybrid,2014,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius Plug-in Hybrid,2015,4,1.8,Front-Wheel Drive,CVT,Midsize Cars +Toyota,Prius v,2012,4,1.8,Front-Wheel Drive,CVT,Midsize Station Wagons +Toyota,Prius v,2013,4,1.8,Front-Wheel Drive,CVT,Midsize Station Wagons +Toyota,Prius v,2014,4,1.8,Front-Wheel Drive,CVT,Midsize Station Wagons +Toyota,Prius v,2015,4,1.8,Front-Wheel Drive,CVT,Midsize Station Wagons +Toyota,Prius v,2016,4,1.8,Front-Wheel Drive,CVT,Midsize Station Wagons +Toyota,Prius v,2017,4,1.8,Front-Wheel Drive,CVT,Midsize Station Wagons +Toyota,RAV4,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,RAV4,1996,4,2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,RAV4,1996,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,RAV4,1996,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,RAV4,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,RAV4,1997,4,2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,RAV4,1997,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,RAV4,1997,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,RAV4,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,RAV4,1998,4,2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,RAV4,1998,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,RAV4,1998,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,RAV4,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,1999,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,1999,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,1999,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2000,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2000,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2000,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2001,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2001,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2001,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2002,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2002,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2002,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2003,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2003,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2003,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2004,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2004,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2004,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2004,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2005,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2005,4,2.4,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2005,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2005,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4,2006,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2006,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2006,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2006,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2007,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2007,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2008,4,2.4,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2008,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2009,4,2.5,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2009,4,2.5,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2010,4,2.5,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2010,4,2.5,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2010,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2011,4,2.5,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2011,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2011,4,2.5,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2011,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2012,4,2.5,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2012,6,3.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2012,4,2.5,All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2012,6,3.5,All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4,2013,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4,2013,4,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4,2014,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4,2014,4,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4,2015,4,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4,2016,4,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4 EV,2000,,,2-Wheel Drive,,Sport Utility Vehicle +Toyota,RAV4 EV,2001,,,2-Wheel Drive,,Sport Utility Vehicle +Toyota,RAV4 EV,2002,,,2-Wheel Drive,,Sport Utility Vehicle +Toyota,RAV4 EV,2003,,,2-Wheel Drive,,Sport Utility Vehicle +Toyota,RAV4 EV,2012,,,Front-Wheel Drive,CVT,Sport Utility Vehicle +Toyota,RAV4 EV,2013,,,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Toyota,RAV4 EV,2014,,,Front-Wheel Drive,CVT,Small Sport Utility Vehicle +Toyota,RAV4 Hybrid,2016,4,2.5,All-Wheel Drive,CVT,Small Sport Utility Vehicle +Toyota,RAV4 LE/XLE,2015,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4 LE/XLE,2016,4,2.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4 Limited,2013,4,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4 Limited,2014,4,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4 Limited,2015,4,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4 Limited/SE,2016,4,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,RAV4 Soft Top,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,RAV4 Soft Top,1998,4,2,Front-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,RAV4 Soft Top,1998,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,RAV4 Soft Top,1998,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Toyota,RAV4 Soft Top,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4 Soft Top,1999,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4 Soft Top,1999,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4 Soft Top,1999,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4 Soft Top,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4 Soft Top,2000,4,2,Front-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,RAV4 Soft Top,2000,4,2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,RAV4 Soft Top,2000,4,2,4-Wheel or All-Wheel Drive,5-Speed Manual,Sport Utility Vehicle +Toyota,Sequoia,2001,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2001,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2002,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2002,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2003,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2003,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2004,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2004,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2005,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2007,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2008,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2008,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2009,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2009,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2009,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2010,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2010,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2010,8,4.6,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2010,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2010,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2011,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2011,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2011,8,4.6,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2011,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2011,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2012,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2012,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2012,8,4.6,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2012,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2012,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Sequoia,2013,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2013,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2013,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2014,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2014,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2014,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2015,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2015,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2015,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2016,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2016,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sequoia,2016,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Toyota,Sienna,1998,6,3,Front-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Toyota,Sienna,1999,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Toyota,Sienna,2000,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Toyota,Sienna,2001,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Toyota,Sienna,2002,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Toyota,Sienna,2003,6,3,Front-Wheel Drive,4-Speed Automatic,Minivan +Toyota,Sienna,2004,6,3.3,Front-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2004,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2005,6,3.3,Front-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2005,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2006,6,3.3,Front-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2006,6,3.3,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2007,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2007,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2008,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2008,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2009,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2009,6,3.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2010,6,3.5,Front-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2010,6,3.5,All-Wheel Drive,5-Speed Automatic,Minivan +Toyota,Sienna,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2011,4,2.7,Front-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2012,4,2.7,Front-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2013,4,2.7,Front-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2016,6,3.5,Front-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Sienna,2016,6,3.5,All-Wheel Drive,6-Speed Automatic,Minivan +Toyota,Starlet,1984,4,1.3,,4-Speed Manual,Minicompact Cars +Toyota,Starlet,1984,4,1.3,,5-Speed Manual,Minicompact Cars +Toyota,Starlet,1984,4,1.3,,4-Speed Manual,Minicompact Cars +Toyota,Supra,1986,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1986,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1987,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1987,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1988,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1988,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Supra,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Supra,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Supra,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1993,6,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Toyota,Supra,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Supra,1994,6,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Toyota,Supra,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Supra,1995,6,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Toyota,Supra,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1996,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1996,6,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Supra,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1997,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1997,6,3,Rear-Wheel Drive,5-Speed Manual,Minicompact Cars +Toyota,Supra,1997,6,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Toyota,Supra,1998,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1998,6,3,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Toyota,Supra,1998,6,3,Rear-Wheel Drive,6-Speed Manual,Minicompact Cars +Toyota,T100,1993,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1993,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1994,4,2.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1994,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1994,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1995,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1995,4,2.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1995,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1995,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1995,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1995,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1996,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1996,4,2.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1996,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1996,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1996,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1996,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1997,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1997,4,2.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1997,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1997,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1997,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1997,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1998,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1998,4,2.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1998,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1998,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,T100,1998,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,T100,1998,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1995,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,1995,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,1995,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,1995,6,3.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,1995,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1995,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1995,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1995,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1996,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,1996,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,1996,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,1996,6,3.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,1996,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1996,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1996,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1996,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1997,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,1997,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,1997,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,1997,6,3.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,1997,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1997,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1997,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1997,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1998,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,1998,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,1998,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,1998,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,1998,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,1998,6,3.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,1998,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1998,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1998,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1998,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1999,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1999,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1999,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1999,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1999,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1999,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1999,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,1999,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,1999,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2000,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2000,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2000,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2000,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2000,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2000,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2000,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2000,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2000,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2001,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2001,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2001,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2001,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2001,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2001,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2001,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2001,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2001,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2002,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2002,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2002,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2002,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2002,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2002,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2002,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2002,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2002,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2003,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2003,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2003,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2003,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2003,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2003,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2003,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2003,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2003,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2004,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2004,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2004,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2004,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2004,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2004,4,2.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2004,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2004,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2004,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2005,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2005,4,2.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2005,6,4,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2005,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2005,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2005,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2006,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2006,4,2.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2006,6,4,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2006,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2006,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2006,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2007,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2007,4,2.7,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2007,6,4,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2007,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2007,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tacoma,2007,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Toyota,Tacoma,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2008,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2008,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2008,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2008,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2008,4,2.7,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2008,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2009,4,2.7,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2009,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2009,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2009,4,2.7,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2009,6,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2009,6,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2010,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2010,4,2.7,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2010,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2010,4,2.7,Part-time 4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2010,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2010,6,4,Part-time 4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2011,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2011,4,2.7,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2011,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2011,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2011,4,2.7,Part-time 4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2011,4,2.7,Part-time 4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2011,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2011,6,4,Part-time 4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2012,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2012,4,2.7,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2012,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2012,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2012,4,2.7,Part-time 4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2012,4,2.7,Part-time 4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2012,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2012,6,4,Part-time 4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2013,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2013,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2013,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2013,4,2.7,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2013,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2013,6,4,Part-time 4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2013,4,2.7,Part-time 4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2013,4,2.7,Part-time 4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2014,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2014,4,2.7,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2014,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2014,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2014,4,2.7,Part-time 4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2014,4,2.7,Part-time 4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2014,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2014,6,4,Part-time 4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2015,6,4,Rear-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2015,4,2.7,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2015,6,4,Rear-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2015,4,2.7,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2015,6,4,Part-time 4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2015,4,2.7,Part-time 4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2015,6,4,Part-time 4-Wheel Drive,5-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2015,4,2.7,Part-time 4-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2016,4,2.7,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2016,6,3.5,Rear-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2016,4,2.7,Part-time 4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2016,4,2.7,Part-time 4-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Tacoma,2016,6,3.5,Part-time 4-Wheel Drive,6-Speed Automatic,Small Pickup Trucks +Toyota,Tacoma,2016,6,3.5,Part-time 4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tacoma Double Cab,2016,6,3.5,Part-time 4-Wheel Drive,6-Speed Manual,Small Pickup Trucks +Toyota,Tercel,1984,4,1.5,,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1984,4,1.5,,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1984,4,1.5,,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1984,4,1.5,,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1984,4,1.5,,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1984,4,1.5,,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1985,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1985,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1986,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1986,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1987,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1987,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1988,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1988,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1988,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1989,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1989,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1989,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1990,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1990,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1990,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1990,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1991,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1991,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1991,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1992,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1992,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1992,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1993,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1993,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1993,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1994,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1994,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1994,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1995,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1995,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Tercel,1995,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1995,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1996,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1996,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Tercel,1996,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel,1996,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1997,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1997,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Tercel,1997,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1998,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1998,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Tercel,1998,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel,1999,4,1.5,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Toyota,Tercel,1999,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Tercel,1999,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Tercel EZ,1988,4,1.5,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Toyota,Tercel Wagon,1984,4,1.5,,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1984,4,1.5,,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1984,4,1.5,,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1984,4,1.5,,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1984,4,1.5,,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1984,4,1.5,,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1984,4,1.5,,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1984,4,1.5,,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1985,4,1.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1985,4,1.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1985,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1985,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1985,4,1.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1986,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1986,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1986,4,1.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1986,4,1.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1987,4,1.5,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1987,4,1.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1987,4,1.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1987,4,1.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Tercel Wagon,1988,4,1.5,4-Wheel or All-Wheel Drive,3-Speed Automatic,Small Station Wagons +Toyota,Tercel Wagon,1988,4,1.5,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Toyota,Truck,1984,4,2.4,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,2-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1984,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1985,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1985,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1985,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1985,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1986,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1986,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1986,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1986,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1986,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1986,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1986,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1986,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1986,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1986,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1986,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1986,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1986,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1986,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1986,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1986,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1987,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1987,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1987,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1987,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1987,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1987,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1987,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1987,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1987,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1987,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1987,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1987,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1987,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1987,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1988,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1988,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1988,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1988,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1988,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1988,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1988,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1988,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1988,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1988,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1988,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1989,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1989,4,2.4,Rear-Wheel Drive,4-Speed Manual,Small Pickup Trucks +Toyota,Truck,1989,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1989,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1989,4,2.4,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1989,6,3,Rear-Wheel Drive,4-Speed Automatic,Small Pickup Trucks +Toyota,Truck,1989,6,3,Rear-Wheel Drive,5-Speed Manual,Small Pickup Trucks +Toyota,Truck,1989,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1989,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1989,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1989,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1990,4,2.4,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1990,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1990,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1990,4,2.4,Rear-Wheel Drive,4-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1990,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1990,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1990,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1990,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1990,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1990,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1990,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1991,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1991,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1991,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1991,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1991,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1991,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1991,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1991,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1992,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1992,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1992,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1992,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1992,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1992,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1992,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1992,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1994,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1994,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1994,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1994,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1994,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1994,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1994,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1994,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1995,4,2.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1995,4,2.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1995,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1995,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1995,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1995,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck,1995,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck,1995,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck/T100,1993,4,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck/T100,1993,4,2.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck/T100,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck/T100,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck/T100,1993,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck/T100,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck/T100,1993,6,3,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck/T100,1993,6,3,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Truck/T100,1993,6,3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Truck/T100,1993,6,3,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2000,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2000,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2000,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2000,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2000,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2000,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2001,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2001,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2001,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2001,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2001,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2001,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2002,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2002,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2002,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2002,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2002,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2002,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2003,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2003,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2003,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2003,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2003,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2003,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2004,6,3.4,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2004,6,3.4,Rear-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2004,8,4.7,Rear-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2004,6,3.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2004,6,3.4,4-Wheel or All-Wheel Drive,5-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2004,8,4.7,4-Wheel or All-Wheel Drive,4-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2005,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2005,6,4,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2005,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2005,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2006,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2006,6,4,Rear-Wheel Drive,6-Speed Manual,Standard Pickup Trucks +Toyota,Tundra,2006,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2006,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2007,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2007,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2007,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2007,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2007,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2008,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2008,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2008,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2008,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2008,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2009,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2009,8,4.7,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2009,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2009,8,4.7,4-Wheel or All-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2009,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2009,8,5.7,4-Wheel or All-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2010,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2010,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2010,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2010,8,4.6,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2010,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2010,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2011,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2011,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2011,8,4.6,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2011,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2011,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2011,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2012,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2012,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2012,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2012,8,4.6,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2012,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2012,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2013,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2013,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2013,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2013,8,4.6,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2013,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2013,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2014,6,4,Rear-Wheel Drive,5-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2014,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2014,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2014,8,4.6,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2014,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2014,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2015,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2015,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2015,8,4.6,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2015,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2015,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2016,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2016,8,5.7,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2016,8,4.6,Rear-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2016,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2016,8,5.7,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Tundra,2016,8,4.6,Part-time 4-Wheel Drive,6-Speed Automatic,Standard Pickup Trucks +Toyota,Van,1984,4,2,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Toyota,Van,1984,4,2,2-Wheel Drive,5-Speed Manual,"Vans, Passenger Type" +Toyota,Van,1984,4,2,2-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Toyota,Van,1984,4,2,2-Wheel Drive,5-Speed Manual,"Vans, Passenger Type" +Toyota,Van,1985,4,2,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van,1985,4,2,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Van,1986,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van,1986,4,2.2,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Van,1987,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van,1987,4,2.2,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Van,1987,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van,1987,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Toyota,Van (cargo),1988,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van (cargo),1988,4,2.2,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Van (cargo),1988,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van (cargo),1988,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Toyota,Van (cargo),1989,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van (cargo),1989,4,2.2,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Van (cargo),1989,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van (passenger),1988,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van (passenger),1988,4,2.2,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Van (passenger),1988,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van (passenger),1988,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Toyota,Van (passenger),1989,4,2.2,Rear-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van (passenger),1989,4,2.2,Rear-Wheel Drive,5-Speed Manual,Vans +Toyota,Van (passenger),1989,4,2.2,4-Wheel or All-Wheel Drive,4-Speed Automatic,Vans +Toyota,Van (passenger),1989,4,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Toyota,Venza,2009,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2009,6,3.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2009,4,2.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2009,4,2.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2010,4,2.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2010,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2010,4,2.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2010,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2011,4,2.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2011,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2011,4,2.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2011,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2012,4,2.7,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2012,6,3.5,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2012,4,2.7,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2012,6,3.5,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Toyota,Venza,2013,4,2.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2013,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2013,4,2.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2013,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2014,4,2.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2014,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2014,4,2.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2014,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2015,4,2.7,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2015,6,3.5,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2015,4,2.7,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Venza,2015,6,3.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Toyota,Yaris,2007,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Yaris,2007,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Yaris,2008,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Yaris,2008,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Yaris,2009,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Yaris,2009,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Yaris,2010,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Yaris,2010,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Yaris,2011,4,1.5,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Toyota,Yaris,2011,4,1.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Toyota,Yaris,2012,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Yaris,2012,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Yaris,2013,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Yaris,2013,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Yaris,2014,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Yaris,2014,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Yaris,2015,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Yaris,2015,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Toyota,Yaris,2016,4,1.5,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Toyota,Yaris,2016,4,1.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +TVR Engineering Ltd,TVR 280i Convertible,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Two Seaters +TVR Engineering Ltd,TVR 280i Coupe,1985,6,2.8,Rear-Wheel Drive,4-Speed Manual,Two Seaters +TVR Engineering Ltd,TVR 280i/350i Convertible,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +TVR Engineering Ltd,TVR 280i/350i Coupe,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Vector,Avtech SC / M12,1996,12,5.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Vector,Avtech SC / M12,1997,12,5.7,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Vector,W8,1992,8,6,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Vector,W8,1993,8,6,Rear-Wheel Drive,3-Speed Automatic,Two Seaters +Vixen Motor Company,21 TD,1986,6,2.4,Rear-Wheel Drive,5-Speed Manual,Special Purpose Vehicle +Volga Associated Automobile,Niva,1986,4,1.6,4-Wheel or All-Wheel Drive,4-Speed Manual,Special Purpose Vehicle +Volkswagen,Beetle,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Beetle,2012,5,2.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Beetle,2012,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Beetle,2012,5,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Beetle,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Beetle,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Beetle,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Beetle,2013,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Beetle,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Beetle,2013,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Beetle,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Beetle,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Beetle,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Beetle,2014,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Beetle,2014,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Beetle,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Beetle,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Beetle,2014,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Beetle,2015,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Beetle,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Beetle,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Beetle,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Beetle,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Beetle,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Beetle,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Beetle,2016,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Beetle,2016,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Beetle,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Beetle Convertible,2013,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2013,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2013,5,2.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Beetle Convertible,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2014,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2014,5,2.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Beetle Convertible,2014,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Beetle Convertible,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Beetle Convertible,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2015,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2015,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Beetle Convertible,2016,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Beetle Convertible,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Beetle Dune,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Cabrio,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Cabrio,1995,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Cabrio,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Cabrio,1996,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Cabrio,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Cabrio,1997,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Cabrio,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Cabrio,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Cabrio,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Cabrio,1999,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Cabrio,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Cabrio,2000,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Cabrio,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Cabrio,2001,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Cabrio,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Cabrio,2002,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Cabriolet,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Volkswagen,Cabriolet,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,Cabriolet,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Volkswagen,Cabriolet,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,Cabriolet,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Volkswagen,Cabriolet,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,Cabriolet,1988,4,1.8,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Volkswagen,Cabriolet,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,Cabriolet,1989,4,1.8,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Volkswagen,Cabriolet,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,Cabriolet,1990,4,1.8,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Volkswagen,Cabriolet,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,Cabriolet,1991,4,1.8,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Volkswagen,Cabriolet,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,Cabriolet,1992,4,1.8,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Volkswagen,Cabriolet,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,Cabriolet,1993,4,1.8,Front-Wheel Drive,3-Speed Automatic,Minicompact Cars +Volkswagen,Cabriolet,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,CC,2009,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,CC,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC,2009,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC,2010,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,CC,2010,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC,2011,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,CC,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,CC,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,CC,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,CC,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,CC,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,CC,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,CC,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,CC,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,CC,2016,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,CC 4motion,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC 4motion,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC 4motion,2011,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC 4motion,2012,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC 4motion,2013,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC 4motion,2014,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC 4motion,2015,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,CC 4motion,2016,6,3.6,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Corrado,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Corrado,1991,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Corrado,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Corrado,1992,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Corrado,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Corrado SLC,1992,6,2.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Corrado SLC,1992,6,2.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Corrado SLC,1993,6,2.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Corrado SLC,1993,6,2.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Corrado SLC,1993,6,2.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Corrado SLC,1994,6,2.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,Corrado SLC,1994,6,2.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,e-Golf,2015,,,Front-Wheel Drive,1-Speed Direct Drive,Compact Cars +Volkswagen,e-Golf,2016,,,Front-Wheel Drive,1-Speed Direct Drive,Compact Cars +Volkswagen,Eos,2007,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Eos,2007,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Eos,2007,6,3.2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Eos,2008,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Eos,2008,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Eos,2008,6,3.2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Eos,2009,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Eos,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Eos,2010,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Eos,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Eos,2011,4,2,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,Eos,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Eos,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,Eos,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Eos,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Eos,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Eos,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Subcompact Cars +Volkswagen,Eurovan,1993,5,2.5,Front-Wheel Drive,4-Speed Automatic,Vans +Volkswagen,Eurovan,1993,5,2.5,Front-Wheel Drive,5-Speed Manual,Vans +Volkswagen,Eurovan,1993,5,2.5,Front-Wheel Drive,4-Speed Automatic,"Vans, Passenger Type" +Volkswagen,Eurovan,1994,5,2.5,Front-Wheel Drive,4-Speed Automatic,Vans +Volkswagen,Eurovan,1994,5,2.5,Front-Wheel Drive,5-Speed Manual,Vans +Volkswagen,Eurovan,1999,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Volkswagen,Eurovan,2000,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Volkswagen,Eurovan,2001,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Volkswagen,Eurovan,2002,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Volkswagen,Eurovan,2003,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Volkswagen,Eurovan Camper,1995,5,2.5,Front-Wheel Drive,4-Speed Automatic,Vans +Volkswagen,Eurovan Camper,1995,5,2.5,Front-Wheel Drive,5-Speed Manual,Vans +Volkswagen,Eurovan Camper,1997,6,2.8,Front-Wheel Drive,4-Speed Automatic,Vans +Volkswagen,Eurovan Camper,1999,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Volkswagen,Eurovan Camper,2000,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Volkswagen,Eurovan Camper,2001,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Volkswagen,Eurovan Camper,2002,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Volkswagen,Eurovan Camper,2003,6,2.8,Front-Wheel Drive,4-Speed Automatic,Minivan +Volkswagen,Fox,1987,4,1.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Volkswagen,Fox,1988,4,1.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Volkswagen,Fox,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Fox,1989,4,1.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Volkswagen,Fox,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Fox,1990,4,1.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Volkswagen,Fox,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Fox,1991,4,1.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Volkswagen,Fox,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Fox,1992,4,1.8,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Volkswagen,Fox,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Fox,1993,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Fox GL Wagon,1987,4,1.8,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Volkswagen,Fox Wagon,1988,4,1.8,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Volkswagen,Fox Wagon,1989,4,1.8,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Volkswagen,Fox Wagon,1990,4,1.8,Front-Wheel Drive,4-Speed Manual,Small Station Wagons +Volkswagen,Golf,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Golf,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,1987,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Golf,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,1988,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Golf,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,1989,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Golf,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2000,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2001,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2001,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2002,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2002,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2003,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2003,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2004,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2004,4,1.9,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Golf,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2005,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2005,4,1.9,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Golf,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2006,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2006,4,1.9,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Golf,2006,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf,2006,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2010,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2010,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Golf,2010,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Golf,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Golf,2011,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Golf,2011,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Golf,2011,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Golf,2012,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Golf,2012,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Golf,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Golf,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Golf,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Golf,2013,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Golf,2013,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Golf,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Golf,2014,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Golf,2015,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Golf,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Golf,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Golf,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Golf,2016,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf III,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf III,1994,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf III,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf III,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf III / GTI,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf III / GTI,1993,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf III / GTI,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf R,2012,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Golf R,2013,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Golf R,2015,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Golf R,2016,4,2,All-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Golf R,2016,4,2,All-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Golf SportWagen,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Small Station Wagons +Volkswagen,Golf SportWagen,2015,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volkswagen,Golf SportWagen,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Golf SportWagen,2015,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Golf SportWagen,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Golf SportWagen,2016,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Golf/GTI,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf/GTI,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Golf/GTI,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf/GTI,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf/GTI,1990,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Golf/GTI,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf/GTI,1991,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Golf/GTI,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf/GTI,1992,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Golf/GTI,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf/GTI,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf/GTI,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf/GTI,1996,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf/GTI,1997,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf/GTI,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf/GTI,1997,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Golf/GTI,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Golf/GTI,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,GTI,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,1999,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,GTI,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,GTI,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2000,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,GTI,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2001,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2002,4,1.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2002,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2002,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,GTI,2002,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2003,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2003,4,1.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2003,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,GTI,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2004,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,GTI,2004,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2005,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,GTI,2005,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2006,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI,2006,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,GTI,2006,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,GTI,2006,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2007,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2007,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,GTI,2008,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,GTI,2008,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2009,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,GTI,2010,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,GTI,2011,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,GTI,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,GTI,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,GTI,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,GTI,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,GTI,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,GTI,2016,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,GTI 16v,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI 16v,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI 16v,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI 16v,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI 16v,1991,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI 16v,1992,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI VR6,1995,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI VR6,1996,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI VR6,1997,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI VR6,1998,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,GTI/Golf GT,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,GTI/Golf GT,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1984,4,1.7,,3-Speed Automatic,Subcompact Cars +Volkswagen,Jetta,1984,4,1.7,,3-Speed Automatic,Subcompact Cars +Volkswagen,Jetta,1984,4,1.7,,5-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1984,4,1.7,,5-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1984,4,1.7,,3-Speed Automatic,Subcompact Cars +Volkswagen,Jetta,1984,4,1.7,,3-Speed Automatic,Subcompact Cars +Volkswagen,Jetta,1984,4,1.7,,5-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1984,4,1.7,,5-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Volkswagen,Jetta,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1986,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1988,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1989,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1989,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1990,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1990,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta,1990,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1991,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1991,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta,1991,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1992,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1992,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta,1992,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,1996,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1997,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1997,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,1997,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1998,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,1998,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1999,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,1999,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,1999,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2000,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2000,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2000,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2000,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2001,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2001,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2001,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2001,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2001,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2002,6,2.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Jetta,2002,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2002,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Jetta,2002,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2002,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2002,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2002,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2002,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2003,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2003,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2003,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2003,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2003,6,2.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Jetta,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2003,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Jetta,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2004,4,1.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2004,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Jetta,2004,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2004,4,1.9,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Jetta,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2004,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2004,6,2.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2005,4,1.8,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2005,4,1.8,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Jetta,2005,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2005,4,1.9,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Jetta,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta,2005,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2005,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2005,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2005,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2005,4,1.9,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2006,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2006,4,1.9,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2006,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2006,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2006,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2006,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2007,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2007,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2007,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2007,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2008,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2008,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2008,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2008,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2009,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2009,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2009,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2009,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2010,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2010,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2010,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2010,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2011,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2011,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2011,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2011,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2012,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2012,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2012,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2012,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Jetta,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Jetta,2013,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2013,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2013,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2013,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Jetta,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2014,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Jetta,2014,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2014,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Jetta,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2015,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Jetta,2015,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2015,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2016,4,2,Front-Wheel Drive,6-Speed Automated Manual,Compact Cars +Volkswagen,Jetta,2016,4,2,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Jetta,2016,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta,2016,4,1.4,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Jetta,2016,4,1.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLI,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta GLI,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLI 16v,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLI 16v,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLI 16v,1989,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLI 16v,1990,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLI 16v,1991,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLI 16v,1992,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLI/Wolfsburg Edition,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Jetta GLI/Wolfsburg Edition,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLX,1996,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta GLX,1996,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLX,1997,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta GLX,1997,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta GLX,1998,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta GLX,1998,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta Hybrid,2013,4,1.4,Front-Wheel Drive,7-Speed Automated Manual,Compact Cars +Volkswagen,Jetta Hybrid,2014,4,1.4,Front-Wheel Drive,7-Speed Automated Manual,Compact Cars +Volkswagen,Jetta Hybrid,2015,4,1.4,Front-Wheel Drive,7-Speed Automated Manual,Compact Cars +Volkswagen,Jetta Hybrid,2016,4,1.4,Front-Wheel Drive,7-Speed Automated Manual,Compact Cars +Volkswagen,Jetta III,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta III,1993,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta III,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta III,1994,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta III,1994,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta III,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta III,1995,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta III GLX,1994,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta III GLX,1994,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta III GLX,1995,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Jetta III GLX,1995,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Jetta SportWagen,2008,5,2.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2008,5,2.5,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2009,5,2.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2009,5,2.5,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2009,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2009,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2010,5,2.5,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2010,5,2.5,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2010,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2011,5,2.5,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2011,5,2.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2011,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2012,5,2.5,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2012,5,2.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2012,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2013,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2013,5,2.5,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2013,5,2.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2014,4,2,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Small Station Wagons +Volkswagen,Jetta SportWagen,2014,5,2.5,Front-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volkswagen,Jetta SportWagen,2014,5,2.5,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2001,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2001,6,2.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2001,6,2.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2002,4,1.8,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2002,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2002,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2002,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2002,6,2.8,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2002,6,2.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2003,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2003,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2003,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2003,4,1.8,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2004,4,1.8,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2004,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2004,4,1.9,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2004,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2005,4,1.8,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2005,4,1.9,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Jetta Wagon,2005,4,1.9,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2005,4,2,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volkswagen,Jetta Wagon,2005,4,2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,New Beetle,1998,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,1998,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,1998,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,1998,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,1999,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,1999,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,1999,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,1999,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2000,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2000,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2000,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2000,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2001,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2001,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2001,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2001,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2001,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2002,4,1.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2002,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2002,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2002,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2002,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2002,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2003,4,1.9,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2003,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2003,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2003,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2003,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2003,4,1.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2004,4,1.8,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2004,4,1.8,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2004,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2004,4,1.9,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2004,4,2,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2004,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2005,4,1.8,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2005,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2005,4,1.9,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2005,4,2,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2005,4,2,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2006,4,1.9,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2006,4,1.9,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2006,5,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2006,5,2.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2007,5,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2007,5,2.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2008,5,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2008,5,2.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2009,5,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2009,5,2.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle,2010,5,2.5,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,New Beetle,2010,5,2.5,Front-Wheel Drive,6-Speed Automatic,Subcompact Cars +Volkswagen,New Beetle Convertible,2003,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,New Beetle Convertible,2003,4,2,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Beetle Convertible,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,New Beetle Convertible,2003,4,1.8,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Beetle Convertible,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,New Beetle Convertible,2004,4,1.8,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Beetle Convertible,2004,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,New Beetle Convertible,2004,4,2,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Beetle Convertible,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,New Beetle Convertible,2005,4,1.8,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Beetle Convertible,2005,4,2,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,New Beetle Convertible,2005,4,2,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Beetle Convertible,2006,5,2.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,New Beetle Convertible,2006,5,2.5,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Beetle Convertible,2007,5,2.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,New Beetle Convertible,2007,5,2.5,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Beetle Convertible,2008,5,2.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,New Beetle Convertible,2008,5,2.5,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Beetle Convertible,2009,5,2.5,Front-Wheel Drive,5-Speed Manual,Minicompact Cars +Volkswagen,New Beetle Convertible,2009,5,2.5,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Beetle Convertible,2010,5,2.5,Front-Wheel Drive,6-Speed Automatic,Minicompact Cars +Volkswagen,New Golf,1999,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,New Golf,1999,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,New Golf,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,New Golf,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,New GTI,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,New GTI,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,New GTI,1999,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,New Jetta,1999,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,New Jetta,1999,4,1.9,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,New Jetta,1999,4,2,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,New Jetta,1999,4,2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,New Jetta,1999,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,New Jetta,1999,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Passat,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1990,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1991,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1992,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1993,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1993,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1993,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1993,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1994,6,2.8,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volkswagen,Passat,1994,6,2.8,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Passat,1995,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1995,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1995,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1995,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1996,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1996,4,2,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1996,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1996,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1997,4,1.9,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1997,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1997,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1998,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1998,4,1.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volkswagen,Passat,1998,4,1.9,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1998,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,1998,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1999,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1999,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,1999,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,1999,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,1999,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2000,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2000,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2000,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2001,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2001,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2001,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2002,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2002,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2002,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2003,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2003,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2003,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2004,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2004,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2004,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2004,4,2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2005,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2005,4,2,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2005,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2005,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat,2006,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Volkswagen,Passat,2006,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2006,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2007,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Volkswagen,Passat,2007,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2007,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2008,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Volkswagen,Passat,2008,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2008,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2012,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Volkswagen,Passat,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2012,5,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2012,5,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2013,4,2,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Volkswagen,Passat,2013,6,3.6,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Volkswagen,Passat,2013,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Volkswagen,Passat,2013,5,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2013,5,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2014,6,3.6,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Volkswagen,Passat,2014,4,2,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Volkswagen,Passat,2014,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Volkswagen,Passat,2014,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2014,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2014,5,2.5,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2014,5,2.5,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2015,6,3.6,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Volkswagen,Passat,2015,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volkswagen,Passat,2015,4,2,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Volkswagen,Passat,2015,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat,2015,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Cars +Volkswagen,Passat,2016,6,3.6,Front-Wheel Drive,6-Speed Automated Manual,Midsize Cars +Volkswagen,Passat,2016,4,1.8,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat 4motion,2000,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat 4motion,2001,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Passat 4motion,2002,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Passat 4motion,2002,8,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Passat 4motion,2003,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Passat 4motion,2003,8,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Passat 4motion,2003,8,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Passat 4motion,2004,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Passat 4motion,2004,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Passat 4motion,2004,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Passat 4motion,2004,8,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volkswagen,Passat 4motion,2004,8,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Passat 4motion,2005,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Passat 4motion,2005,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Passat 4motion,2005,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volkswagen,Passat 4motion,2006,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat 4motion,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat 4motion,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volkswagen,Passat Syncro,1998,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat Syncro,1999,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat Syncro,1999,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volkswagen,Passat Wagon,1990,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1990,4,2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1991,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1991,4,2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1992,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1992,4,2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1993,4,2,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1993,4,2,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1993,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1993,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1993,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1994,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1994,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1995,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1995,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1996,4,1.9,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1996,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1996,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1997,4,1.9,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1997,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1997,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volkswagen,Passat Wagon,1998,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,1998,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,1998,4,1.9,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,1998,4,1.9,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,1999,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,1999,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,1999,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,1999,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,1999,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,1999,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2000,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2000,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2000,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2000,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2001,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2001,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2001,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2001,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2002,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2002,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2002,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2002,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2003,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2003,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2003,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2003,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2004,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2004,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2004,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2004,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2004,4,2,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2005,4,1.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2005,4,1.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2005,4,2,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2005,6,2.8,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2005,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2007,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2007,6,3.6,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2007,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2008,4,2,Front-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon,2008,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2000,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2001,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2002,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2002,8,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2003,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2003,8,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2003,8,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2004,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2004,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2004,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2004,8,4,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2004,8,4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2005,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2005,4,1.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2005,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon 4motion,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon Syncro,1998,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon Syncro,1999,6,2.8,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Passat Wagon Syncro,1999,6,2.8,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volkswagen,Phaeton,2004,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Volkswagen,Phaeton,2004,12,6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Volkswagen,Phaeton,2005,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Volkswagen,Phaeton,2005,12,6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Volkswagen,Phaeton,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Large Cars +Volkswagen,Phaeton,2006,12,6,4-Wheel or All-Wheel Drive,5-Speed Automatic,Large Cars +Volkswagen,Quantum,1984,4,1.6,,3-Speed Automatic,Compact Cars +Volkswagen,Quantum,1984,4,1.6,,3-Speed Automatic,Compact Cars +Volkswagen,Quantum,1984,4,1.6,,5-Speed Manual,Compact Cars +Volkswagen,Quantum,1984,4,1.6,,5-Speed Manual,Compact Cars +Volkswagen,Quantum,1984,5,2.1,,3-Speed Automatic,Compact Cars +Volkswagen,Quantum,1984,5,2.1,,5-Speed Manual,Compact Cars +Volkswagen,Quantum,1984,4,1.6,,5-Speed Manual,Compact Cars +Volkswagen,Quantum,1984,4,1.6,,5-Speed Manual,Compact Cars +Volkswagen,Quantum,1984,5,2.1,,3-Speed Automatic,Compact Cars +Volkswagen,Quantum,1984,5,2.1,,5-Speed Manual,Compact Cars +Volkswagen,Quantum,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Quantum,1985,5,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Quantum,1985,5,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Quantum,1986,5,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Quantum,1986,5,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Quantum,1987,5,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Quantum,1987,5,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Quantum,1988,5,2.2,Front-Wheel Drive,3-Speed Automatic,Compact Cars +Volkswagen,Quantum,1988,5,2.2,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Quantum Syncro Wagon,1985,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Syncro Wagon,1986,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Syncro Wagon,1987,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Syncro Wagon,1988,5,2.2,4-Wheel or All-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1984,4,1.6,,3-Speed Automatic,Small Station Wagons +Volkswagen,Quantum Wagon,1984,4,1.6,,3-Speed Automatic,Small Station Wagons +Volkswagen,Quantum Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1984,5,2.1,,3-Speed Automatic,Small Station Wagons +Volkswagen,Quantum Wagon,1984,5,2.1,,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1984,4,1.6,,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1984,5,2.1,,3-Speed Automatic,Small Station Wagons +Volkswagen,Quantum Wagon,1984,5,2.1,,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1985,4,1.6,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Volkswagen,Quantum Wagon,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Volkswagen,Quantum Wagon,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1986,5,2.2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Volkswagen,Quantum Wagon,1986,5,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1987,5,2.2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Volkswagen,Quantum Wagon,1987,5,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,Quantum Wagon,1988,5,2.2,Front-Wheel Drive,3-Speed Automatic,Small Station Wagons +Volkswagen,Quantum Wagon,1988,5,2.2,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volkswagen,R32,2004,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Manual,Subcompact Cars +Volkswagen,R32,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Rabbit,1984,4,1.6,,3-Speed Automatic,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.6,,5-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.7,,4-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.7,,4-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.7,,3-Speed Automatic,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.7,,3-Speed Automatic,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.7,,5-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.7,,5-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.6,,4-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.7,,3-Speed Automatic,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.7,,3-Speed Automatic,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.7,,5-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.7,,5-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Volkswagen,Rabbit,2006,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Rabbit,2006,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Rabbit,2007,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Rabbit,2007,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Rabbit,2008,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Rabbit,2008,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Rabbit,2009,5,2.5,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volkswagen,Rabbit,2009,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volkswagen,Rabbit Convertible,1984,4,1.8,,3-Speed Automatic,Minicompact Cars +Volkswagen,Rabbit Convertible,1984,4,1.8,,5-Speed Manual,Minicompact Cars +Volkswagen,Rabbit Convertible,1984,4,1.8,,3-Speed Automatic,Minicompact Cars +Volkswagen,Rabbit Convertible,1984,4,1.8,,5-Speed Manual,Minicompact Cars +Volkswagen,Routan,2009,6,3.8,Front-Wheel Drive,6-Speed Automatic,Minivan +Volkswagen,Routan,2009,6,4,Front-Wheel Drive,6-Speed Automatic,Minivan +Volkswagen,Routan,2010,6,4,Front-Wheel Drive,6-Speed Automatic,Minivan +Volkswagen,Routan,2010,6,3.8,Front-Wheel Drive,6-Speed Automatic,Minivan +Volkswagen,Routan,2011,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Volkswagen,Routan,2012,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Volkswagen,Routan,2013,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Volkswagen,Routan,2014,6,3.6,Front-Wheel Drive,6-Speed Automatic,Minivan +Volkswagen,Scirocco,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Volkswagen,Scirocco,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Volkswagen,Scirocco,1984,4,1.8,,3-Speed Automatic,Subcompact Cars +Volkswagen,Scirocco,1984,4,1.8,,5-Speed Manual,Subcompact Cars +Volkswagen,Scirocco,1985,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Volkswagen,Scirocco,1985,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Scirocco,1986,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Volkswagen,Scirocco,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Scirocco,1987,4,1.8,Front-Wheel Drive,3-Speed Automatic,Subcompact Cars +Volkswagen,Scirocco,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Scirocco 16v,1986,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Scirocco 16v,1987,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Scirocco 16v,1988,4,1.8,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volkswagen,Tiguan,2009,4,2,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Volkswagen,Tiguan,2009,4,2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Tiguan,2010,4,2,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Volkswagen,Tiguan,2010,4,2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Tiguan,2011,4,2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Tiguan,2011,4,2,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Volkswagen,Tiguan,2012,4,2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Tiguan,2012,4,2,Front-Wheel Drive,6-Speed Manual,Sport Utility Vehicle +Volkswagen,Tiguan,2013,4,2,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Volkswagen,Tiguan,2013,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volkswagen,Tiguan,2014,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volkswagen,Tiguan,2014,4,2,Front-Wheel Drive,6-Speed Manual,Small Sport Utility Vehicle +Volkswagen,Tiguan,2015,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volkswagen,Tiguan,2016,4,2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volkswagen,Tiguan 4motion,2009,4,2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Tiguan 4motion,2010,4,2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Tiguan 4motion,2011,4,2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Tiguan 4motion,2012,4,2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Tiguan 4motion,2013,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volkswagen,Tiguan 4motion,2014,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volkswagen,Tiguan 4motion,2015,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volkswagen,Tiguan 4motion,2016,4,2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volkswagen,Touareg,2004,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2004,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2004,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2005,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2005,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2006,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2006,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2006,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2007,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2007,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2007,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2008,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2008,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2008,10,5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2009,8,4.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2009,6,3.6,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2009,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2010,6,3.6,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2011,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2011,6,3.6,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2012,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2012,6,3.6,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg,2013,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Touareg,2013,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Touareg,2014,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Touareg,2014,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Touareg,2015,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Touareg,2015,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Touareg,2016,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Touareg,2016,6,3.6,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Touareg Hybrid,2011,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg Hybrid,2012,6,3,All-Wheel Drive,8-Speed Automatic,Sport Utility Vehicle +Volkswagen,Touareg Hybrid,2013,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Touareg Hybrid,2014,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Touareg Hybrid,2015,6,3,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volkswagen,Vanagon,1984,4,1.9,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Volkswagen,Vanagon,1984,4,1.9,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Volkswagen,Vanagon,1984,4,1.9,2-Wheel Drive,3-Speed Automatic,"Vans, Passenger Type" +Volkswagen,Vanagon,1984,4,1.9,2-Wheel Drive,4-Speed Manual,"Vans, Passenger Type" +Volkswagen,Vanagon,1985,4,1.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Volkswagen,Vanagon,1985,4,1.9,Rear-Wheel Drive,4-Speed Manual,Vans +Volkswagen,Vanagon,1985,4,1.9,Rear-Wheel Drive,3-Speed Automatic,Vans +Volkswagen,Vanagon,1985,4,1.9,Rear-Wheel Drive,4-Speed Manual,Vans +Volkswagen,Vanagon Syncro,1986,4,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Volkswagen,Vanagon Syncro,1987,4,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Volkswagen,Vanagon Syncro,1988,4,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Volkswagen,Vanagon Syncro,1989,4,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Volkswagen,Vanagon Syncro,1990,4,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Volkswagen,Vanagon Syncro,1991,4,2.1,4-Wheel or All-Wheel Drive,5-Speed Manual,Vans +Volkswagen,Vanagon/Camper,1986,4,2.1,Rear-Wheel Drive,3-Speed Automatic,Vans +Volkswagen,Vanagon/Camper,1986,4,2.1,Rear-Wheel Drive,4-Speed Manual,Vans +Volkswagen,Vanagon/Camper,1987,4,2.1,Rear-Wheel Drive,3-Speed Automatic,Vans +Volkswagen,Vanagon/Camper,1987,4,2.1,Rear-Wheel Drive,4-Speed Manual,Vans +Volkswagen,Vanagon/Camper,1988,4,2.1,Rear-Wheel Drive,3-Speed Automatic,Vans +Volkswagen,Vanagon/Camper,1988,4,2.1,Rear-Wheel Drive,4-Speed Manual,Vans +Volkswagen,Vanagon/Camper,1989,4,2.1,Rear-Wheel Drive,3-Speed Automatic,Vans +Volkswagen,Vanagon/Camper,1989,4,2.1,Rear-Wheel Drive,4-Speed Manual,Vans +Volkswagen,Vanagon/Camper,1990,4,2.1,Rear-Wheel Drive,3-Speed Automatic,Vans +Volkswagen,Vanagon/Camper,1990,4,2.1,Rear-Wheel Drive,4-Speed Manual,Vans +Volkswagen,Vanagon/Camper,1991,4,2.1,Rear-Wheel Drive,3-Speed Automatic,Vans +Volkswagen,Vanagon/Camper,1991,4,2.1,Rear-Wheel Drive,4-Speed Manual,Vans +Volvo,240,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,240,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,240,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,240,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,240,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240,1992,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,240,1993,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240,1993,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,740,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740,1989,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740,1989,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,740,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,740,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740,1990,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,740,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,740,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,740,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,740,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,760,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,760,1989,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,760,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,760,1990,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,780,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,780,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,780,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,780,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,780,1989,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,780,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,780,1990,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,850,1993,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,850,1993,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,850,1994,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,850,1994,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,850,1994,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,850,1995,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,850,1995,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,850,1995,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,850,1996,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,850,1996,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,850,1996,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,850,1997,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,850,1997,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,850,1997,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,850,1997,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,940,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,940,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,940,1993,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,940,1993,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,940,1994,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,940,1994,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,940,1995,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,940,1995,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,960,1992,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,960,1993,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,960,1994,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,960,1995,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,960,1996,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240 DL/240 GL,1986,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240 DL/240 GL,1986,4,2.3,Rear-Wheel Drive,4-Speed Manual,Compact Cars +Volvo,240 DL/240 GL,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240 DL/240 GL,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,240 DL/240 GL,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240 DL/240 GL,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,240 DL/240 GL,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240 DL/240 GL,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240 DL/240 GL,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,240 DL/240 GL,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,240 DL/240 GL Wagon,1986,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 DL/240 GL Wagon,1986,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,240 DL/240 GL Wagon,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 DL/240 GL Wagon,1987,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,240 DL/240 GL Wagon,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 DL/240 GL Wagon,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,240 DL/240 GL Wagon,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 DL/240 GL Wagon,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 DL/240 GL Wagon,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,240 DL/240 GL Wagon,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,240 DL/GL/Turbo,1984,4,2.1,,4-Speed Automatic,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.1,,5-Speed Manual,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.3,,4-Speed Automatic,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.3,,4-Speed Automatic,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.3,,5-Speed Manual,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.3,,5-Speed Manual,Compact Cars +Volvo,240 DL/GL/Turbo,1984,6,2.4,,3-Speed Automatic,Compact Cars +Volvo,240 DL/GL/Turbo,1984,6,2.4,,5-Speed Manual,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.1,,4-Speed Automatic,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.1,,5-Speed Manual,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.3,,4-Speed Automatic,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.3,,4-Speed Automatic,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.3,,5-Speed Manual,Compact Cars +Volvo,240 DL/GL/Turbo,1984,4,2.3,,5-Speed Manual,Compact Cars +Volvo,240 DL/GL/turbo,1985,4,2.1,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240 DL/GL/turbo,1985,4,2.1,Rear-Wheel Drive,4-Speed Manual,Compact Cars +Volvo,240 DL/GL/turbo,1985,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,240 DL/GL/turbo,1985,4,2.3,Rear-Wheel Drive,4-Speed Manual,Compact Cars +Volvo,240 DL/GL/turbo,1985,4,2.1,Rear-Wheel Drive,4-Speed Manual,Compact Cars +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.1,,4-Speed Automatic,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.1,,5-Speed Manual,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.3,,4-Speed Automatic,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.3,,4-Speed Automatic,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.3,,5-Speed Manual,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.3,,5-Speed Manual,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,6,2.4,,3-Speed Automatic,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,6,2.4,,5-Speed Manual,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.1,,4-Speed Automatic,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.1,,5-Speed Manual,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.3,,4-Speed Automatic,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.3,,4-Speed Automatic,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.3,,5-Speed Manual,Midsize Station Wagons +Volvo,240 DL/GL/Turbo Wagon,1984,4,2.3,,5-Speed Manual,Midsize Station Wagons +Volvo,240 DL/GL/turbo Wagon,1985,4,2.1,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 DL/GL/turbo Wagon,1985,4,2.1,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,240 DL/GL/turbo Wagon,1985,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 DL/GL/turbo Wagon,1985,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,240 DL/GL/turbo Wagon,1985,4,2.1,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,240 Wagon,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 Wagon,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,240 Wagon,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 Wagon,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 Wagon,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,240 Wagon,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,240 Wagon,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 Wagon,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,240 Wagon,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 Wagon,1992,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,240 Wagon,1993,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,240 Wagon,1993,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,740 16-Valve,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740 16-Valve,1990,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740 16-Valve Wagon,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 16-Valve Wagon,1990,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,740 Wagon,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1989,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,740 Wagon,1989,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,740 Wagon,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,740 Wagon,1989,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,740 Wagon,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1990,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,740 Wagon,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,740 Wagon,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1990,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,740 Wagon,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,740 Wagon,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,740 Wagon,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740 Wagon,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740/760,1985,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1985,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1985,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740/760,1985,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740/760,1985,6,2.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1985,6,2.4,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740/760,1985,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1986,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1986,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1986,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740/760,1986,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740/760,1986,6,2.4,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1986,6,2.4,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740/760,1986,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1987,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740/760,1987,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740/760,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1987,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760,1988,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize Cars +Volvo,740/760,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,740/760,1988,6,2.8,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,740/760 Wagon,1986,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1986,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1986,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1986,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1986,6,2.4,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1987,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1987,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1987,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1988,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1988,4,2.3,Rear-Wheel Drive,4-Speed Manual,Midsize-Large Station Wagons +Volvo,740/760 Wagon,1988,4,2.3,Rear-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,760 GLE,1984,4,2.3,,4-Speed Automatic,Midsize Cars +Volvo,760 GLE,1984,4,2.3,,5-Speed Manual,Midsize Cars +Volvo,760 GLE,1984,6,2.4,,4-Speed Automatic,Midsize Cars +Volvo,760 GLE,1984,6,2.4,,5-Speed Manual,Midsize Cars +Volvo,760 GLE,1984,6,2.9,,4-Speed Automatic,Midsize Cars +Volvo,760 GLE,1984,4,2.3,,4-Speed Automatic,Midsize Cars +Volvo,760 GLE,1984,4,2.3,,5-Speed Manual,Midsize Cars +Volvo,760 GLE,1984,6,2.4,,4-Speed Automatic,Midsize Cars +Volvo,760 GLE,1984,6,2.9,,4-Speed Automatic,Midsize Cars +Volvo,760 Wagon,1989,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,760 Wagon,1990,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1994,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1994,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1994,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,850 Wagon,1995,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1995,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1995,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,850 Wagon,1995,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1995,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,850 Wagon,1996,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1996,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1996,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,850 Wagon,1997,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1997,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1997,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,850 Wagon,1997,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize-Large Station Wagons +Volvo,940 GLE 16-Valve,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,940 GLE 16-Valve Wagon,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,940 SE,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,940 SE Wagon,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,940 Turbo,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,940 Turbo Wagon,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,940 Wagon,1992,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,940 Wagon,1993,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,940 Wagon,1993,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,940 Wagon,1994,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,940 Wagon,1994,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,940 Wagon,1995,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,940 Wagon,1995,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,960 Wagon,1992,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,960 Wagon,1993,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,960 Wagon,1994,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Volvo,960 Wagon,1995,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volvo,960 Wagon,1996,6,2.5,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volvo,960 Wagon,1996,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volvo,960 Wagon/V90,1997,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volvo,960/S90,1997,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,C30,2008,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,C30,2008,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C30,2008,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,C30,2008,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C30,2009,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,C30,2009,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C30,2009,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,C30,2009,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C30,2010,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,C30,2010,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C30,2010,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,C30,2010,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C30,2011,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,C30,2011,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C30,2012,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,C30,2012,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C30,2013,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C30,2013,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,C70,1998,5,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,C70,1998,5,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,C70,1998,5,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,C70,1999,5,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,C70,1999,5,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,C70,1999,5,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,C70,2010,5,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volvo,C70,2010,5,2.5,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70,2011,5,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volvo,C70,2011,5,2.5,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70,2012,5,2.5,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70,2013,5,2.5,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,1998,5,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,1998,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volvo,C70 Convertible,1998,5,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,1999,5,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,1999,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volvo,C70 Convertible,1999,5,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2000,5,2.3,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2000,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volvo,C70 Convertible,2000,5,2.4,Front-Wheel Drive,4-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2001,5,2.3,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2001,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volvo,C70 Convertible,2001,5,2.4,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2002,5,2.3,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2002,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volvo,C70 Convertible,2002,5,2.4,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2003,5,2.3,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2003,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volvo,C70 Convertible,2003,5,2.4,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2004,5,2.3,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2004,5,2.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Volvo,C70 Convertible,2004,5,2.4,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2006,5,2.5,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2007,5,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volvo,C70 Convertible,2007,5,2.5,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2008,5,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volvo,C70 Convertible,2008,5,2.5,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Convertible,2009,5,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volvo,C70 Convertible,2009,5,2.5,Front-Wheel Drive,5-Speed Automatic,Subcompact Cars +Volvo,C70 Coupe,2000,5,2.3,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,C70 Coupe,2000,5,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,C70 Coupe,2000,5,2.4,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,C70 Coupe,2001,5,2.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C70 Coupe,2001,5,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,C70 Coupe,2001,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C70 Coupe,2002,5,2.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,C70 Coupe,2002,5,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,Coupe,1991,4,2.3,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,New C70 Convertible,2006,5,2.5,Front-Wheel Drive,6-Speed Manual,Subcompact Cars +Volvo,S40,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,S40,2001,4,1.9,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2002,4,1.9,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2003,4,1.9,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2004,4,1.9,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2004,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2004,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2005,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2005,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2005,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S40,2005,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2005,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2005,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2006,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2006,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2006,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S40,2006,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2006,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2006,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2007,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2007,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2007,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S40,2007,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2007,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2007,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2008,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2008,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2008,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S40,2008,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2008,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2008,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2009,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2009,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2009,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2009,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2009,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S40,2009,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2010,5,2.5,All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2010,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2010,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S40,2010,5,2.5,All-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2010,5,2.5,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S40,2010,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S40,2011,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2001,5,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S60,2001,5,2.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2001,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2001,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2001,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S60,2001,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2002,5,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2002,5,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S60,2002,5,2.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2002,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2002,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2002,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S60,2003,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2003,5,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S60,2003,5,2.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2003,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2003,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2003,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S60,2004,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2004,5,2.3,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S60,2004,5,2.3,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2004,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2004,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S60,2004,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2005,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2005,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2005,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S60,2005,5,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S60,2005,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2005,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2006,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2006,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2006,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2006,5,2.4,Front-Wheel Drive,5-Speed Manual,Compact Cars +Volvo,S60,2006,5,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S60,2006,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2006,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2006,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2007,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2007,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2007,5,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S60,2007,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2007,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2007,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2008,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2008,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2008,5,2.4,Front-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S60,2008,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2008,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2008,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2009,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2009,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2009,5,2.4,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2009,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2009,5,2.5,Front-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60,2011,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2012,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2012,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2013,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2013,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2013,5,2.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2014,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2014,5,2.5,Front-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2014,5,2.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2015,5,2.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2015,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2015,4,2,Front-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60,2015,4,2,Front-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60,2016,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2016,5,2.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60,2016,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60,2017,4,2,Front-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60,2017,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60,2017,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60 CC,2016,5,2.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60 CC,2017,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60 Inscription,2016,5,2.5,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60 Inscription,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60 Inscription,2017,4,2,Front-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60 Inscription,2017,4,2,All-Wheel Drive,8-Speed Automatic,Compact Cars +Volvo,S60 PoleStar,2015,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60 PoleStar,2016,6,3,All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60 R,2004,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S60 R,2004,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60 R,2005,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S60 R,2005,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Compact Cars +Volvo,S60 R,2006,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S60 R,2006,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S60 R,2007,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Compact Cars +Volvo,S60 R,2007,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Compact Cars +Volvo,S70,1998,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S70,1998,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,S70,1998,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S70,1998,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S70,1998,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,S70,1999,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S70,1999,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,S70,1999,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S70,1999,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S70,1999,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,S70,1999,5,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S70,1999,5,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S70,2000,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S70,2000,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,S70,2000,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S70,2000,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volvo,S70,2000,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Cars +Volvo,S70,2000,5,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80,1999,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80,1999,6,2.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80,2000,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80,2000,6,2.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80,2004,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Volvo,S80,2005,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Volvo,S80,2005,5,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volvo,S80,2005,6,2.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80,2006,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Cars +Volvo,S80,2006,5,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volvo,S80,2007,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2007,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2007,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2008,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2008,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2008,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2009,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2009,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2010,8,4.4,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2010,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2010,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2011,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2011,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2012,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2012,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2013,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2013,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2014,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2014,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2015,6,3,All-Wheel Drive,6-Speed Automatic,Midsize Cars +Volvo,S80,2015,4,2,Front-Wheel Drive,8-Speed Automatic,Midsize Cars +Volvo,S80,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Midsize Cars +Volvo,S80/S80 Executive,2001,6,2.8,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80/S80 Executive,2001,6,2.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80/S80 Executive,2002,6,2.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80/S80 Executive,2002,6,2.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80/S80 Executive,2003,6,2.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80/S80 Executive,2003,6,2.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80/S80 Premier,2004,5,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Cars +Volvo,S80/S80 Premier,2004,6,2.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S80/S80 Premier,2004,6,2.9,Front-Wheel Drive,4-Speed Automatic,Midsize Cars +Volvo,S90,1998,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Volvo,S90,2017,4,2,Front-Wheel Drive,8-Speed Automatic,Midsize Cars +Volvo,S90,2017,4,2,All-Wheel Drive,8-Speed Automatic,Midsize Cars +Volvo,V40,2000,4,1.9,Front-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volvo,V40,2001,4,1.9,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V40,2002,4,1.9,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V40,2003,4,1.9,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V40,2004,4,1.9,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2005,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2005,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2005,5,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volvo,V50,2005,5,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2005,5,2.5,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2005,5,2.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2006,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2006,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2006,5,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volvo,V50,2006,5,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2006,5,2.5,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2006,5,2.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2007,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2007,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2007,5,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volvo,V50,2007,5,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2007,5,2.5,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2007,5,2.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2008,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2008,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2008,5,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volvo,V50,2008,5,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2008,5,2.5,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2008,5,2.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2009,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2009,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2009,5,2.5,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2009,5,2.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2009,5,2.4,Front-Wheel Drive,5-Speed Manual,Small Station Wagons +Volvo,V50,2009,5,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2010,5,2.5,All-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2010,5,2.4,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2010,5,2.5,All-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2010,5,2.5,Front-Wheel Drive,6-Speed Manual,Small Station Wagons +Volvo,V50,2010,5,2.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V50,2011,5,2.5,Front-Wheel Drive,5-Speed Automatic,Small Station Wagons +Volvo,V60,2015,5,2.5,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volvo,V60,2015,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volvo,V60,2015,4,2,Front-Wheel Drive,8-Speed Automatic,Small Station Wagons +Volvo,V60,2016,5,2.5,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volvo,V60,2016,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volvo,V60,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Small Station Wagons +Volvo,V60,2016,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Volvo,V60,2017,4,2,Front-Wheel Drive,8-Speed Automatic,Small Station Wagons +Volvo,V60,2017,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Volvo,V60,2017,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Volvo,V60 CC,2015,4,2,Front-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,V60 CC,2015,5,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,V60 CC,2016,5,2.5,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volvo,V60 CC,2017,4,2,All-Wheel Drive,8-Speed Automatic,Small Station Wagons +Volvo,V60 PoleStar,2015,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volvo,V60 PoleStar,2016,6,3,All-Wheel Drive,6-Speed Automatic,Small Station Wagons +Volvo,V70,1998,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,1998,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,1998,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,1998,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,1998,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,1998,5,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,1998,5,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,1999,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,1999,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,1999,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,1999,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,1999,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,1999,5,2.3,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,1999,5,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,2000,5,2.3,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,2000,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2000,5,2.4,Front-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,2000,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2000,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2000,5,2.4,4-Wheel or All-Wheel Drive,4-Speed Automatic,Midsize Station Wagons +Volvo,V70,2000,5,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2001,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2001,5,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2001,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2001,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2001,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2001,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2001,5,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2002,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2002,5,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2002,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2002,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2002,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2002,5,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2003,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2003,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2003,5,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2003,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2003,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2003,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2004,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2004,5,2.3,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2004,5,2.3,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2004,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2004,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2004,5,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2005,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2005,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2005,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2005,5,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volvo,V70,2005,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2005,5,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2006,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2006,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2006,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2006,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2006,5,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volvo,V70,2006,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2006,5,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2007,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2007,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2007,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2007,5,2.4,Front-Wheel Drive,5-Speed Manual,Midsize Station Wagons +Volvo,V70,2007,5,2.4,Front-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volvo,V70,2007,5,2.4,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2007,5,2.5,Front-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70,2008,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volvo,V70,2009,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volvo,V70,2010,6,3.2,Front-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volvo,V70 R,2004,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volvo,V70 R,2004,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70 R,2005,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volvo,V70 R,2005,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Midsize Station Wagons +Volvo,V70 R,2006,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volvo,V70 R,2006,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volvo,V70 R,2007,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Manual,Midsize Station Wagons +Volvo,V70 R,2007,5,2.5,4-Wheel or All-Wheel Drive,6-Speed Automatic,Midsize Station Wagons +Volvo,V70 XC,2001,5,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,V70 XC,2002,5,2.4,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,V90,1998,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Small Station Wagons +Volvo,XC 60,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 60,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 60,2010,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 60,2010,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 70,2003,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 70,2004,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 70,2005,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 70,2006,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 70,2007,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 70,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 70,2009,6,3,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 70,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 70,2010,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 70,2010,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2003,5,2.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2003,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2003,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2004,5,2.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2004,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2004,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2005,5,2.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2005,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2005,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2005,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2006,5,2.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2006,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2006,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2007,5,2.5,Front-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2007,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2007,5,2.5,4-Wheel or All-Wheel Drive,5-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2007,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2007,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2008,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2008,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2008,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2009,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2009,6,3.2,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2009,8,4.4,4-Wheel or All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2010,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2010,8,4.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC 90,2010,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC60,2011,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC60,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC60,2011,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC60,2012,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC60,2012,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC60,2012,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC60,2013,6,3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2013,6,3.2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2013,6,3.2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2014,6,3.2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2014,6,3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2014,6,3.2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2015,6,3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2015,4,2,Front-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2015,4,2,Front-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2015,6,3.2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2015,5,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2016,6,3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2016,5,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2016,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2017,4,2,Front-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2017,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC60,2017,4,2,All-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2011,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC70,2011,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC70,2011,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC70,2012,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC70,2012,6,3,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC70,2012,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC70,2013,6,3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2013,6,3.2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2013,6,3.2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2014,6,3.2,Front-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2014,6,3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2014,6,3.2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2015,6,3,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2015,4,2,Front-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2015,6,3.2,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC70,2016,5,2.5,All-Wheel Drive,6-Speed Automatic,Small Sport Utility Vehicle +Volvo,XC90,2011,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC90,2011,8,4.4,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC90,2011,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC90,2012,6,3.2,Front-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC90,2012,6,3.2,All-Wheel Drive,6-Speed Automatic,Sport Utility Vehicle +Volvo,XC90,2013,6,3.2,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Volvo,XC90,2013,6,3.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Volvo,XC90,2014,6,3.2,Front-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Volvo,XC90,2014,6,3.2,All-Wheel Drive,6-Speed Automatic,Standard Sport Utility Vehicle +Volvo,XC90,2016,4,2,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volvo,XC90,2016,4,2,Front-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volvo,XC90,2016,4,2,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volvo,XC90,2017,4,2,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volvo,XC90,2017,4,2,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +Volvo,XC90 PHEV,2016,4,2,All-Wheel Drive,8-Speed Automatic,Standard Sport Utility Vehicle +VPG,MV-1,2011,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +VPG,MV-1,2012,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +VPG,MV-1,2013,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +VPG,MV-1 CNG,2011,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +VPG,MV-1 CNG,2012,8,4.6,Rear-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Wallace Environmental,Wetl 190E,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Wallace Environmental,Wetl 190E,1992,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Wallace Environmental,Wetl 190E 2.3,1991,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Wallace Environmental,Wetl 190E 2.3,1992,4,2.3,Rear-Wheel Drive,5-Speed Manual,Subcompact Cars +Wallace Environmental,Wetl 300 CE,1991,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Wallace Environmental,Wetl 300 CE,1992,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Wallace Environmental,Wetl 300 E,1991,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Wallace Environmental,Wetl 300 E,1992,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Wallace Environmental,Wetl 300 GE,1991,6,2.9,4-Wheel or All-Wheel Drive,4-Speed Automatic,Special Purpose Vehicle +Wallace Environmental,Wetl 300 SL,1991,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Wallace Environmental,Wetl 300 SL,1992,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Minicompact Cars +Wallace Environmental,Wetl 300 TE,1991,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Wallace Environmental,Wetl 300 TE,1992,6,2.9,Rear-Wheel Drive,4-Speed Automatic,Midsize-Large Station Wagons +Wallace Environmental,Wetl 412,1991,12,4.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Wallace Environmental,Wetl 412,1992,12,4.9,Rear-Wheel Drive,5-Speed Manual,Compact Cars +Wallace Environmental,Wetl 500 SE,1991,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Wallace Environmental,Wetl 500 SE,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Wallace Environmental,Wetl 500 SEC,1991,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Wallace Environmental,Wetl 500 SEC,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Wallace Environmental,Wetl 500 SEL,1991,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Wallace Environmental,Wetl 500 SEL,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Wallace Environmental,Wetl 500 SL,1991,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Wallace Environmental,Wetl 560 SEC,1991,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Wallace Environmental,Wetl 560 SEC,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Compact Cars +Wallace Environmental,Wetl 560 SEL,1991,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Wallace Environmental,Wetl 560 SEL,1992,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Midsize Cars +Wallace Environmental,Wetl 560 SL,1991,8,5.6,Rear-Wheel Drive,4-Speed Automatic,Two Seaters +Wallace Environmental,Wetl 600 SEL,1992,12,6,Rear-Wheel Drive,4-Speed Automatic,Large Cars +Wallace Environmental,Wetl 850I,1992,12,5,Rear-Wheel Drive,4-Speed Automatic,Subcompact Cars +Wallace Environmental,Wetl 850I,1992,12,5,Rear-Wheel Drive,6-Speed Manual,Subcompact Cars +Wallace Environmental,Wetl Testarossa,1991,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Wallace Environmental,Wetl Testarossa,1992,12,4.9,Rear-Wheel Drive,5-Speed Manual,Two Seaters +Yugo,GV,1988,4,1.1,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Yugo,GV,1988,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Yugo,GV Plus/GV/Cabrio,1990,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Yugo,GV Plus/GV/Cabrio,1990,4,1.3,Front-Wheel Drive,4-Speed Manual,Minicompact Cars +Yugo,GV/GVX,1987,4,1.1,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Yugo,GV/GVX,1989,4,1.1,Front-Wheel Drive,4-Speed Manual,Subcompact Cars +Yugo,GV/GVX,1989,4,1.3,Front-Wheel Drive,5-Speed Manual,Subcompact Cars +Yugo,Gy/yugo GVX,1986,4,1.1,Front-Wheel Drive,4-Speed Manual,Minicompact Cars diff --git a/src/Vehicle/Data/years.json b/src/Vehicle/Data/years.json new file mode 100644 index 0000000..fc4be3d --- /dev/null +++ b/src/Vehicle/Data/years.json @@ -0,0 +1,70482 @@ +[ + { + "id": 1, + "model_id": 1, + "year": "1997" + }, + { + "id": 4, + "model_id": 4, + "year": "1998" + }, + { + "id": 7, + "model_id": 4, + "year": "1999" + }, + { + "id": 10, + "model_id": 10, + "year": "1995" + }, + { + "id": 11, + "model_id": 11, + "year": "1996" + }, + { + "id": 13, + "model_id": 11, + "year": "1997" + }, + { + "id": 15, + "model_id": 11, + "year": "1998" + }, + { + "id": 17, + "model_id": 17, + "year": "2001" + }, + { + "id": 18, + "model_id": 17, + "year": "2002" + }, + { + "id": 19, + "model_id": 17, + "year": "2003" + }, + { + "id": 21, + "model_id": 21, + "year": "1999" + }, + { + "id": 22, + "model_id": 21, + "year": "2000" + }, + { + "id": 23, + "model_id": 21, + "year": "2001" + }, + { + "id": 24, + "model_id": 21, + "year": "2002" + }, + { + "id": 25, + "model_id": 21, + "year": "2003" + }, + { + "id": 26, + "model_id": 26, + "year": "1996" + }, + { + "id": 27, + "model_id": 26, + "year": "1997" + }, + { + "id": 28, + "model_id": 26, + "year": "1998" + }, + { + "id": 29, + "model_id": 26, + "year": "1999" + }, + { + "id": 30, + "model_id": 26, + "year": "2000" + }, + { + "id": 31, + "model_id": 26, + "year": "2001" + }, + { + "id": 32, + "model_id": 26, + "year": "2002" + }, + { + "id": 33, + "model_id": 26, + "year": "2003" + }, + { + "id": 34, + "model_id": 26, + "year": "2004" + }, + { + "id": 35, + "model_id": 35, + "year": "2013" + }, + { + "id": 37, + "model_id": 35, + "year": "2014" + }, + { + "id": 39, + "model_id": 35, + "year": "2015" + }, + { + "id": 41, + "model_id": 35, + "year": "2016" + }, + { + "id": 42, + "model_id": 35, + "year": "2017" + }, + { + "id": 43, + "model_id": 43, + "year": "2013" + }, + { + "id": 44, + "model_id": 43, + "year": "2014" + }, + { + "id": 45, + "model_id": 45, + "year": "1986" + }, + { + "id": 47, + "model_id": 45, + "year": "1987" + }, + { + "id": 49, + "model_id": 45, + "year": "1988" + }, + { + "id": 51, + "model_id": 45, + "year": "1989" + }, + { + "id": 53, + "model_id": 45, + "year": "1990" + }, + { + "id": 55, + "model_id": 45, + "year": "1991" + }, + { + "id": 57, + "model_id": 45, + "year": "1992" + }, + { + "id": 60, + "model_id": 45, + "year": "1993" + }, + { + "id": 63, + "model_id": 45, + "year": "1994" + }, + { + "id": 66, + "model_id": 45, + "year": "1995" + }, + { + "id": 69, + "model_id": 45, + "year": "1996" + }, + { + "id": 72, + "model_id": 45, + "year": "1997" + }, + { + "id": 75, + "model_id": 45, + "year": "1998" + }, + { + "id": 78, + "model_id": 45, + "year": "1999" + }, + { + "id": 81, + "model_id": 45, + "year": "2000" + }, + { + "id": 84, + "model_id": 45, + "year": "2001" + }, + { + "id": 87, + "model_id": 87, + "year": "1986" + }, + { + "id": 89, + "model_id": 87, + "year": "1987" + }, + { + "id": 93, + "model_id": 87, + "year": "1988" + }, + { + "id": 95, + "model_id": 87, + "year": "1989" + }, + { + "id": 97, + "model_id": 87, + "year": "1990" + }, + { + "id": 99, + "model_id": 87, + "year": "1991" + }, + { + "id": 101, + "model_id": 87, + "year": "1992" + }, + { + "id": 103, + "model_id": 87, + "year": "1993" + }, + { + "id": 107, + "model_id": 87, + "year": "1994" + }, + { + "id": 111, + "model_id": 87, + "year": "1995" + }, + { + "id": 115, + "model_id": 115, + "year": "2001" + }, + { + "id": 116, + "model_id": 115, + "year": "2002" + }, + { + "id": 117, + "model_id": 115, + "year": "2003" + }, + { + "id": 118, + "model_id": 115, + "year": "2004" + }, + { + "id": 119, + "model_id": 115, + "year": "2005" + }, + { + "id": 120, + "model_id": 115, + "year": "2006" + }, + { + "id": 121, + "model_id": 115, + "year": "2007" + }, + { + "id": 122, + "model_id": 115, + "year": "2008" + }, + { + "id": 123, + "model_id": 115, + "year": "2009" + }, + { + "id": 124, + "model_id": 115, + "year": "2010" + }, + { + "id": 125, + "model_id": 115, + "year": "2011" + }, + { + "id": 126, + "model_id": 115, + "year": "2012" + }, + { + "id": 127, + "model_id": 115, + "year": "2013" + }, + { + "id": 128, + "model_id": 115, + "year": "2014" + }, + { + "id": 130, + "model_id": 115, + "year": "2015" + }, + { + "id": 132, + "model_id": 115, + "year": "2016" + }, + { + "id": 136, + "model_id": 115, + "year": "2017" + }, + { + "id": 140, + "model_id": 140, + "year": "1991" + }, + { + "id": 142, + "model_id": 140, + "year": "1992" + }, + { + "id": 144, + "model_id": 140, + "year": "1993" + }, + { + "id": 146, + "model_id": 140, + "year": "1994" + }, + { + "id": 148, + "model_id": 140, + "year": "1995" + }, + { + "id": 150, + "model_id": 140, + "year": "1996" + }, + { + "id": 152, + "model_id": 140, + "year": "1998" + }, + { + "id": 154, + "model_id": 140, + "year": "1999" + }, + { + "id": 156, + "model_id": 140, + "year": "2000" + }, + { + "id": 158, + "model_id": 140, + "year": "2001" + }, + { + "id": 160, + "model_id": 140, + "year": "2002" + }, + { + "id": 162, + "model_id": 140, + "year": "2003" + }, + { + "id": 164, + "model_id": 140, + "year": "2004" + }, + { + "id": 166, + "model_id": 140, + "year": "2005" + }, + { + "id": 168, + "model_id": 168, + "year": "2017" + }, + { + "id": 169, + "model_id": 169, + "year": "2007" + }, + { + "id": 170, + "model_id": 169, + "year": "2008" + }, + { + "id": 171, + "model_id": 169, + "year": "2009" + }, + { + "id": 172, + "model_id": 169, + "year": "2010" + }, + { + "id": 174, + "model_id": 169, + "year": "2011" + }, + { + "id": 176, + "model_id": 169, + "year": "2012" + }, + { + "id": 178, + "model_id": 169, + "year": "2013" + }, + { + "id": 180, + "model_id": 169, + "year": "2014" + }, + { + "id": 182, + "model_id": 169, + "year": "2015" + }, + { + "id": 184, + "model_id": 169, + "year": "2016" + }, + { + "id": 186, + "model_id": 169, + "year": "2017" + }, + { + "id": 188, + "model_id": 188, + "year": "2005" + }, + { + "id": 189, + "model_id": 188, + "year": "2006" + }, + { + "id": 190, + "model_id": 188, + "year": "2007" + }, + { + "id": 191, + "model_id": 188, + "year": "2008" + }, + { + "id": 192, + "model_id": 188, + "year": "2009" + }, + { + "id": 193, + "model_id": 188, + "year": "2010" + }, + { + "id": 194, + "model_id": 188, + "year": "2011" + }, + { + "id": 195, + "model_id": 188, + "year": "2012" + }, + { + "id": 196, + "model_id": 196, + "year": "2014" + }, + { + "id": 197, + "model_id": 196, + "year": "2015" + }, + { + "id": 198, + "model_id": 196, + "year": "2016" + }, + { + "id": 199, + "model_id": 199, + "year": "2014" + }, + { + "id": 200, + "model_id": 199, + "year": "2016" + }, + { + "id": 201, + "model_id": 201, + "year": "2002" + }, + { + "id": 204, + "model_id": 201, + "year": "2003" + }, + { + "id": 207, + "model_id": 201, + "year": "2004" + }, + { + "id": 210, + "model_id": 201, + "year": "2005" + }, + { + "id": 213, + "model_id": 201, + "year": "2006" + }, + { + "id": 216, + "model_id": 216, + "year": "1996" + }, + { + "id": 218, + "model_id": 216, + "year": "1997" + }, + { + "id": 220, + "model_id": 216, + "year": "1998" + }, + { + "id": 221, + "model_id": 216, + "year": "1999" + }, + { + "id": 222, + "model_id": 222, + "year": "2004" + }, + { + "id": 224, + "model_id": 222, + "year": "2005" + }, + { + "id": 226, + "model_id": 222, + "year": "2006" + }, + { + "id": 228, + "model_id": 222, + "year": "2007" + }, + { + "id": 231, + "model_id": 222, + "year": "2008" + }, + { + "id": 234, + "model_id": 222, + "year": "2009" + }, + { + "id": 236, + "model_id": 222, + "year": "2010" + }, + { + "id": 239, + "model_id": 222, + "year": "2011" + }, + { + "id": 242, + "model_id": 222, + "year": "2012" + }, + { + "id": 245, + "model_id": 222, + "year": "2013" + }, + { + "id": 248, + "model_id": 222, + "year": "2014" + }, + { + "id": 251, + "model_id": 251, + "year": "2015" + }, + { + "id": 254, + "model_id": 251, + "year": "2016" + }, + { + "id": 257, + "model_id": 257, + "year": "2004" + }, + { + "id": 259, + "model_id": 257, + "year": "2005" + }, + { + "id": 261, + "model_id": 257, + "year": "2006" + }, + { + "id": 263, + "model_id": 257, + "year": "2007" + }, + { + "id": 265, + "model_id": 257, + "year": "2008" + }, + { + "id": 267, + "model_id": 257, + "year": "2009" + }, + { + "id": 269, + "model_id": 257, + "year": "2010" + }, + { + "id": 272, + "model_id": 257, + "year": "2011" + }, + { + "id": 275, + "model_id": 257, + "year": "2012" + }, + { + "id": 278, + "model_id": 257, + "year": "2013" + }, + { + "id": 281, + "model_id": 257, + "year": "2014" + }, + { + "id": 284, + "model_id": 284, + "year": "2011" + }, + { + "id": 285, + "model_id": 284, + "year": "2012" + }, + { + "id": 286, + "model_id": 284, + "year": "2013" + }, + { + "id": 287, + "model_id": 284, + "year": "2014" + }, + { + "id": 288, + "model_id": 288, + "year": "1992" + }, + { + "id": 290, + "model_id": 288, + "year": "1993" + }, + { + "id": 292, + "model_id": 288, + "year": "1994" + }, + { + "id": 294, + "model_id": 294, + "year": "2010" + }, + { + "id": 295, + "model_id": 294, + "year": "2011" + }, + { + "id": 296, + "model_id": 294, + "year": "2012" + }, + { + "id": 297, + "model_id": 294, + "year": "2013" + }, + { + "id": 298, + "model_id": 298, + "year": "1991" + }, + { + "id": 301, + "model_id": 298, + "year": "1992" + }, + { + "id": 304, + "model_id": 298, + "year": "1993" + }, + { + "id": 307, + "model_id": 298, + "year": "1994" + }, + { + "id": 309, + "model_id": 298, + "year": "1995" + }, + { + "id": 311, + "model_id": 311, + "year": "2015" + }, + { + "id": 312, + "model_id": 311, + "year": "2016" + }, + { + "id": 313, + "model_id": 313, + "year": "2009" + }, + { + "id": 314, + "model_id": 314, + "year": "1984" + }, + { + "id": 316, + "model_id": 314, + "year": "1985" + }, + { + "id": 317, + "model_id": 317, + "year": "1986" + }, + { + "id": 318, + "model_id": 317, + "year": "1987" + }, + { + "id": 319, + "model_id": 319, + "year": "1987" + }, + { + "id": 322, + "model_id": 319, + "year": "1988" + }, + { + "id": 325, + "model_id": 319, + "year": "1989" + }, + { + "id": 328, + "model_id": 328, + "year": "1986" + }, + { + "id": 329, + "model_id": 328, + "year": "1987" + }, + { + "id": 330, + "model_id": 328, + "year": "1988" + }, + { + "id": 331, + "model_id": 328, + "year": "1989" + }, + { + "id": 332, + "model_id": 328, + "year": "1990" + }, + { + "id": 333, + "model_id": 328, + "year": "1991" + }, + { + "id": 335, + "model_id": 328, + "year": "1992" + }, + { + "id": 337, + "model_id": 328, + "year": "1993" + }, + { + "id": 339, + "model_id": 328, + "year": "1994" + }, + { + "id": 340, + "model_id": 340, + "year": "1984" + }, + { + "id": 342, + "model_id": 340, + "year": "1985" + }, + { + "id": 343, + "model_id": 343, + "year": "1984" + }, + { + "id": 345, + "model_id": 345, + "year": "1984" + }, + { + "id": 347, + "model_id": 347, + "year": "1985" + }, + { + "id": 348, + "model_id": 348, + "year": "1985" + }, + { + "id": 349, + "model_id": 349, + "year": "1984" + }, + { + "id": 358, + "model_id": 349, + "year": "1986" + }, + { + "id": 360, + "model_id": 349, + "year": "1987" + }, + { + "id": 362, + "model_id": 362, + "year": "1985" + }, + { + "id": 365, + "model_id": 365, + "year": "1984" + }, + { + "id": 376, + "model_id": 376, + "year": "1987" + }, + { + "id": 377, + "model_id": 377, + "year": "2003" + }, + { + "id": 379, + "model_id": 379, + "year": "2003" + }, + { + "id": 380, + "model_id": 380, + "year": "2003" + }, + { + "id": 381, + "model_id": 381, + "year": "2000" + }, + { + "id": 383, + "model_id": 381, + "year": "2003" + }, + { + "id": 385, + "model_id": 385, + "year": "2000" + }, + { + "id": 387, + "model_id": 385, + "year": "2003" + }, + { + "id": 389, + "model_id": 389, + "year": "1997" + }, + { + "id": 391, + "model_id": 389, + "year": "1998" + }, + { + "id": 393, + "model_id": 393, + "year": "1997" + }, + { + "id": 395, + "model_id": 393, + "year": "1998" + }, + { + "id": 397, + "model_id": 397, + "year": "2005" + }, + { + "id": 398, + "model_id": 397, + "year": "2009" + }, + { + "id": 400, + "model_id": 397, + "year": "2010" + }, + { + "id": 402, + "model_id": 397, + "year": "2011" + }, + { + "id": 404, + "model_id": 397, + "year": "2012" + }, + { + "id": 406, + "model_id": 397, + "year": "2013" + }, + { + "id": 407, + "model_id": 397, + "year": "2014" + }, + { + "id": 408, + "model_id": 397, + "year": "2015" + }, + { + "id": 409, + "model_id": 397, + "year": "2016" + }, + { + "id": 410, + "model_id": 410, + "year": "2006" + }, + { + "id": 411, + "model_id": 410, + "year": "2007" + }, + { + "id": 412, + "model_id": 410, + "year": "2008" + }, + { + "id": 414, + "model_id": 414, + "year": "2005" + }, + { + "id": 415, + "model_id": 414, + "year": "2006" + }, + { + "id": 416, + "model_id": 414, + "year": "2007" + }, + { + "id": 417, + "model_id": 417, + "year": "2005" + }, + { + "id": 418, + "model_id": 417, + "year": "2006" + }, + { + "id": 419, + "model_id": 417, + "year": "2007" + }, + { + "id": 420, + "model_id": 417, + "year": "2008" + }, + { + "id": 422, + "model_id": 422, + "year": "2005" + }, + { + "id": 423, + "model_id": 422, + "year": "2006" + }, + { + "id": 424, + "model_id": 422, + "year": "2007" + }, + { + "id": 425, + "model_id": 425, + "year": "2010" + }, + { + "id": 427, + "model_id": 425, + "year": "2011" + }, + { + "id": 429, + "model_id": 425, + "year": "2012" + }, + { + "id": 431, + "model_id": 431, + "year": "2009" + }, + { + "id": 433, + "model_id": 433, + "year": "1984" + }, + { + "id": 435, + "model_id": 433, + "year": "1985" + }, + { + "id": 437, + "model_id": 433, + "year": "1987" + }, + { + "id": 438, + "model_id": 433, + "year": "1988" + }, + { + "id": 439, + "model_id": 433, + "year": "1989" + }, + { + "id": 440, + "model_id": 440, + "year": "2010" + }, + { + "id": 441, + "model_id": 440, + "year": "2011" + }, + { + "id": 442, + "model_id": 440, + "year": "2012" + }, + { + "id": 443, + "model_id": 443, + "year": "2014" + }, + { + "id": 444, + "model_id": 443, + "year": "2015" + }, + { + "id": 445, + "model_id": 443, + "year": "2016" + }, + { + "id": 446, + "model_id": 446, + "year": "1984" + }, + { + "id": 448, + "model_id": 448, + "year": "1984" + }, + { + "id": 450, + "model_id": 448, + "year": "1985" + }, + { + "id": 454, + "model_id": 448, + "year": "1987" + }, + { + "id": 456, + "model_id": 448, + "year": "1988" + }, + { + "id": 458, + "model_id": 448, + "year": "1989" + }, + { + "id": 460, + "model_id": 460, + "year": "2004" + }, + { + "id": 461, + "model_id": 461, + "year": "2005" + }, + { + "id": 462, + "model_id": 461, + "year": "2006" + }, + { + "id": 463, + "model_id": 463, + "year": "2011" + }, + { + "id": 464, + "model_id": 463, + "year": "2012" + }, + { + "id": 465, + "model_id": 465, + "year": "2015" + }, + { + "id": 466, + "model_id": 465, + "year": "2016" + }, + { + "id": 467, + "model_id": 467, + "year": "2006" + }, + { + "id": 468, + "model_id": 467, + "year": "2007" + }, + { + "id": 469, + "model_id": 467, + "year": "2008" + }, + { + "id": 471, + "model_id": 467, + "year": "2009" + }, + { + "id": 473, + "model_id": 467, + "year": "2010" + }, + { + "id": 475, + "model_id": 467, + "year": "2011" + }, + { + "id": 477, + "model_id": 467, + "year": "2012" + }, + { + "id": 480, + "model_id": 467, + "year": "2013" + }, + { + "id": 482, + "model_id": 467, + "year": "2014" + }, + { + "id": 484, + "model_id": 467, + "year": "2015" + }, + { + "id": 486, + "model_id": 467, + "year": "2016" + }, + { + "id": 488, + "model_id": 488, + "year": "2007" + }, + { + "id": 489, + "model_id": 489, + "year": "2011" + }, + { + "id": 490, + "model_id": 489, + "year": "2012" + }, + { + "id": 491, + "model_id": 489, + "year": "2013" + }, + { + "id": 493, + "model_id": 489, + "year": "2014" + }, + { + "id": 495, + "model_id": 489, + "year": "2015" + }, + { + "id": 497, + "model_id": 489, + "year": "2016" + }, + { + "id": 499, + "model_id": 499, + "year": "2002" + }, + { + "id": 500, + "model_id": 499, + "year": "2003" + }, + { + "id": 501, + "model_id": 499, + "year": "2014" + }, + { + "id": 502, + "model_id": 499, + "year": "2015" + }, + { + "id": 503, + "model_id": 499, + "year": "2016" + }, + { + "id": 504, + "model_id": 504, + "year": "2015" + }, + { + "id": 506, + "model_id": 504, + "year": "2016" + }, + { + "id": 508, + "model_id": 508, + "year": "2012" + }, + { + "id": 509, + "model_id": 509, + "year": "1991" + }, + { + "id": 511, + "model_id": 509, + "year": "1992" + }, + { + "id": 513, + "model_id": 513, + "year": "1993" + }, + { + "id": 515, + "model_id": 515, + "year": "1990" + }, + { + "id": 517, + "model_id": 515, + "year": "1992" + }, + { + "id": 519, + "model_id": 519, + "year": "1990" + }, + { + "id": 521, + "model_id": 519, + "year": "1993" + }, + { + "id": 523, + "model_id": 519, + "year": "1994" + }, + { + "id": 525, + "model_id": 519, + "year": "1995" + }, + { + "id": 528, + "model_id": 528, + "year": "1989" + }, + { + "id": 530, + "model_id": 528, + "year": "1990" + }, + { + "id": 532, + "model_id": 528, + "year": "1991" + }, + { + "id": 533, + "model_id": 528, + "year": "1992" + }, + { + "id": 536, + "model_id": 528, + "year": "1993" + }, + { + "id": 538, + "model_id": 528, + "year": "1994" + }, + { + "id": 540, + "model_id": 540, + "year": "1989" + }, + { + "id": 542, + "model_id": 540, + "year": "1990" + }, + { + "id": 543, + "model_id": 540, + "year": "1991" + }, + { + "id": 544, + "model_id": 544, + "year": "1984" + }, + { + "id": 548, + "model_id": 544, + "year": "1987" + }, + { + "id": 550, + "model_id": 550, + "year": "1989" + }, + { + "id": 551, + "model_id": 550, + "year": "1990" + }, + { + "id": 552, + "model_id": 550, + "year": "1991" + }, + { + "id": 553, + "model_id": 550, + "year": "1992" + }, + { + "id": 555, + "model_id": 550, + "year": "1993" + }, + { + "id": 557, + "model_id": 550, + "year": "1994" + }, + { + "id": 559, + "model_id": 559, + "year": "1992" + }, + { + "id": 560, + "model_id": 559, + "year": "1993" + }, + { + "id": 561, + "model_id": 559, + "year": "1994" + }, + { + "id": 562, + "model_id": 562, + "year": "1989" + }, + { + "id": 564, + "model_id": 562, + "year": "1994" + }, + { + "id": 565, + "model_id": 565, + "year": "1989" + }, + { + "id": 566, + "model_id": 565, + "year": "1990" + }, + { + "id": 567, + "model_id": 567, + "year": "1991" + }, + { + "id": 568, + "model_id": 568, + "year": "1991" + }, + { + "id": 569, + "model_id": 569, + "year": "1989" + }, + { + "id": 570, + "model_id": 569, + "year": "1990" + }, + { + "id": 571, + "model_id": 571, + "year": "1986" + }, + { + "id": 572, + "model_id": 571, + "year": "1987" + }, + { + "id": 573, + "model_id": 573, + "year": "1986" + }, + { + "id": 575, + "model_id": 575, + "year": "1984" + }, + { + "id": 577, + "model_id": 577, + "year": "1985" + }, + { + "id": 579, + "model_id": 579, + "year": "1985" + }, + { + "id": 581, + "model_id": 581, + "year": "1986" + }, + { + "id": 582, + "model_id": 581, + "year": "1987" + }, + { + "id": 583, + "model_id": 581, + "year": "1988" + }, + { + "id": 584, + "model_id": 584, + "year": "1986" + }, + { + "id": 585, + "model_id": 584, + "year": "1987" + }, + { + "id": 586, + "model_id": 584, + "year": "1988" + }, + { + "id": 587, + "model_id": 587, + "year": "1987" + }, + { + "id": 589, + "model_id": 587, + "year": "1988" + }, + { + "id": 591, + "model_id": 591, + "year": "1986" + }, + { + "id": 595, + "model_id": 591, + "year": "1987" + }, + { + "id": 599, + "model_id": 591, + "year": "1988" + }, + { + "id": 601, + "model_id": 601, + "year": "1987" + }, + { + "id": 602, + "model_id": 601, + "year": "1988" + }, + { + "id": 603, + "model_id": 603, + "year": "1984" + }, + { + "id": 609, + "model_id": 603, + "year": "1985" + }, + { + "id": 613, + "model_id": 613, + "year": "1984" + }, + { + "id": 617, + "model_id": 613, + "year": "1985" + }, + { + "id": 619, + "model_id": 613, + "year": "1986" + }, + { + "id": 621, + "model_id": 613, + "year": "1987" + }, + { + "id": 625, + "model_id": 613, + "year": "1988" + }, + { + "id": 627, + "model_id": 627, + "year": "1990" + }, + { + "id": 628, + "model_id": 627, + "year": "1991" + }, + { + "id": 629, + "model_id": 627, + "year": "1992" + }, + { + "id": 630, + "model_id": 630, + "year": "1988" + }, + { + "id": 633, + "model_id": 630, + "year": "1989" + }, + { + "id": 637, + "model_id": 630, + "year": "1991" + }, + { + "id": 639, + "model_id": 639, + "year": "1988" + }, + { + "id": 640, + "model_id": 639, + "year": "1989" + }, + { + "id": 641, + "model_id": 641, + "year": "1993" + }, + { + "id": 642, + "model_id": 641, + "year": "1994" + }, + { + "id": 643, + "model_id": 641, + "year": "1995" + }, + { + "id": 644, + "model_id": 644, + "year": "1990" + }, + { + "id": 645, + "model_id": 644, + "year": "1991" + }, + { + "id": 646, + "model_id": 646, + "year": "2006" + }, + { + "id": 648, + "model_id": 646, + "year": "2007" + }, + { + "id": 650, + "model_id": 646, + "year": "2008" + }, + { + "id": 652, + "model_id": 646, + "year": "2009" + }, + { + "id": 654, + "model_id": 646, + "year": "2010" + }, + { + "id": 657, + "model_id": 646, + "year": "2011" + }, + { + "id": 660, + "model_id": 646, + "year": "2012" + }, + { + "id": 663, + "model_id": 646, + "year": "2013" + }, + { + "id": 666, + "model_id": 646, + "year": "2015" + }, + { + "id": 668, + "model_id": 646, + "year": "2016" + }, + { + "id": 669, + "model_id": 669, + "year": "2015" + }, + { + "id": 670, + "model_id": 669, + "year": "2016" + }, + { + "id": 671, + "model_id": 671, + "year": "2015" + }, + { + "id": 672, + "model_id": 671, + "year": "2016" + }, + { + "id": 673, + "model_id": 673, + "year": "2016" + }, + { + "id": 674, + "model_id": 674, + "year": "2016" + }, + { + "id": 675, + "model_id": 675, + "year": "2006" + }, + { + "id": 676, + "model_id": 675, + "year": "2007" + }, + { + "id": 677, + "model_id": 675, + "year": "2008" + }, + { + "id": 678, + "model_id": 675, + "year": "2009" + }, + { + "id": 680, + "model_id": 675, + "year": "2010" + }, + { + "id": 681, + "model_id": 675, + "year": "2011" + }, + { + "id": 682, + "model_id": 675, + "year": "2012" + }, + { + "id": 683, + "model_id": 675, + "year": "2013" + }, + { + "id": 684, + "model_id": 675, + "year": "2015" + }, + { + "id": 685, + "model_id": 675, + "year": "2016" + }, + { + "id": 686, + "model_id": 686, + "year": "1996" + }, + { + "id": 688, + "model_id": 686, + "year": "1997" + }, + { + "id": 691, + "model_id": 686, + "year": "1998" + }, + { + "id": 695, + "model_id": 686, + "year": "1999" + }, + { + "id": 699, + "model_id": 686, + "year": "2000" + }, + { + "id": 703, + "model_id": 686, + "year": "2001" + }, + { + "id": 706, + "model_id": 686, + "year": "2002" + }, + { + "id": 709, + "model_id": 686, + "year": "2003" + }, + { + "id": 712, + "model_id": 686, + "year": "2004" + }, + { + "id": 715, + "model_id": 686, + "year": "2005" + }, + { + "id": 720, + "model_id": 686, + "year": "2006" + }, + { + "id": 723, + "model_id": 686, + "year": "2007" + }, + { + "id": 726, + "model_id": 686, + "year": "2008" + }, + { + "id": 729, + "model_id": 686, + "year": "2009" + }, + { + "id": 730, + "model_id": 686, + "year": "2010" + }, + { + "id": 731, + "model_id": 686, + "year": "2011" + }, + { + "id": 732, + "model_id": 686, + "year": "2012" + }, + { + "id": 733, + "model_id": 686, + "year": "2013" + }, + { + "id": 734, + "model_id": 686, + "year": "2014" + }, + { + "id": 735, + "model_id": 686, + "year": "2015" + }, + { + "id": 736, + "model_id": 686, + "year": "2016" + }, + { + "id": 737, + "model_id": 686, + "year": "2017" + }, + { + "id": 738, + "model_id": 738, + "year": "1998" + }, + { + "id": 739, + "model_id": 738, + "year": "2000" + }, + { + "id": 740, + "model_id": 740, + "year": "1998" + }, + { + "id": 742, + "model_id": 740, + "year": "1999" + }, + { + "id": 746, + "model_id": 740, + "year": "2000" + }, + { + "id": 750, + "model_id": 740, + "year": "2001" + }, + { + "id": 754, + "model_id": 740, + "year": "2002" + }, + { + "id": 758, + "model_id": 740, + "year": "2003" + }, + { + "id": 762, + "model_id": 740, + "year": "2004" + }, + { + "id": 766, + "model_id": 740, + "year": "2005" + }, + { + "id": 773, + "model_id": 740, + "year": "2006" + }, + { + "id": 777, + "model_id": 740, + "year": "2007" + }, + { + "id": 781, + "model_id": 740, + "year": "2008" + }, + { + "id": 785, + "model_id": 740, + "year": "2009" + }, + { + "id": 786, + "model_id": 740, + "year": "2010" + }, + { + "id": 787, + "model_id": 740, + "year": "2011" + }, + { + "id": 788, + "model_id": 740, + "year": "2012" + }, + { + "id": 789, + "model_id": 789, + "year": "2003" + }, + { + "id": 791, + "model_id": 789, + "year": "2004" + }, + { + "id": 793, + "model_id": 789, + "year": "2005" + }, + { + "id": 795, + "model_id": 789, + "year": "2006" + }, + { + "id": 796, + "model_id": 789, + "year": "2007" + }, + { + "id": 797, + "model_id": 789, + "year": "2008" + }, + { + "id": 798, + "model_id": 789, + "year": "2009" + }, + { + "id": 799, + "model_id": 799, + "year": "2004" + }, + { + "id": 800, + "model_id": 799, + "year": "2005" + }, + { + "id": 801, + "model_id": 799, + "year": "2006" + }, + { + "id": 802, + "model_id": 799, + "year": "2007" + }, + { + "id": 804, + "model_id": 799, + "year": "2008" + }, + { + "id": 806, + "model_id": 799, + "year": "2009" + }, + { + "id": 808, + "model_id": 808, + "year": "1996" + }, + { + "id": 810, + "model_id": 808, + "year": "1997" + }, + { + "id": 813, + "model_id": 808, + "year": "1998" + }, + { + "id": 817, + "model_id": 808, + "year": "1999" + }, + { + "id": 821, + "model_id": 808, + "year": "2000" + }, + { + "id": 825, + "model_id": 808, + "year": "2001" + }, + { + "id": 829, + "model_id": 808, + "year": "2002" + }, + { + "id": 833, + "model_id": 808, + "year": "2003" + }, + { + "id": 837, + "model_id": 808, + "year": "2004" + }, + { + "id": 841, + "model_id": 808, + "year": "2005" + }, + { + "id": 848, + "model_id": 808, + "year": "2006" + }, + { + "id": 852, + "model_id": 808, + "year": "2007" + }, + { + "id": 856, + "model_id": 808, + "year": "2008" + }, + { + "id": 860, + "model_id": 808, + "year": "2009" + }, + { + "id": 863, + "model_id": 808, + "year": "2010" + }, + { + "id": 865, + "model_id": 808, + "year": "2011" + }, + { + "id": 867, + "model_id": 808, + "year": "2012" + }, + { + "id": 869, + "model_id": 808, + "year": "2013" + }, + { + "id": 872, + "model_id": 808, + "year": "2014" + }, + { + "id": 874, + "model_id": 808, + "year": "2015" + }, + { + "id": 876, + "model_id": 808, + "year": "2016" + }, + { + "id": 878, + "model_id": 808, + "year": "2017" + }, + { + "id": 879, + "model_id": 879, + "year": "2010" + }, + { + "id": 880, + "model_id": 879, + "year": "2011" + }, + { + "id": 881, + "model_id": 879, + "year": "2012" + }, + { + "id": 882, + "model_id": 879, + "year": "2013" + }, + { + "id": 883, + "model_id": 879, + "year": "2014" + }, + { + "id": 884, + "model_id": 884, + "year": "2010" + }, + { + "id": 885, + "model_id": 884, + "year": "2011" + }, + { + "id": 886, + "model_id": 884, + "year": "2012" + }, + { + "id": 887, + "model_id": 884, + "year": "2013" + }, + { + "id": 889, + "model_id": 884, + "year": "2014" + }, + { + "id": 890, + "model_id": 884, + "year": "2015" + }, + { + "id": 891, + "model_id": 884, + "year": "2016" + }, + { + "id": 892, + "model_id": 892, + "year": "2008" + }, + { + "id": 894, + "model_id": 892, + "year": "2009" + }, + { + "id": 896, + "model_id": 892, + "year": "2010" + }, + { + "id": 899, + "model_id": 892, + "year": "2011" + }, + { + "id": 901, + "model_id": 892, + "year": "2012" + }, + { + "id": 903, + "model_id": 892, + "year": "2013" + }, + { + "id": 906, + "model_id": 892, + "year": "2014" + }, + { + "id": 908, + "model_id": 892, + "year": "2015" + }, + { + "id": 910, + "model_id": 892, + "year": "2016" + }, + { + "id": 912, + "model_id": 912, + "year": "1995" + }, + { + "id": 914, + "model_id": 912, + "year": "1996" + }, + { + "id": 915, + "model_id": 912, + "year": "1997" + }, + { + "id": 916, + "model_id": 912, + "year": "1998" + }, + { + "id": 917, + "model_id": 912, + "year": "1999" + }, + { + "id": 918, + "model_id": 912, + "year": "2000" + }, + { + "id": 919, + "model_id": 912, + "year": "2001" + }, + { + "id": 920, + "model_id": 912, + "year": "2002" + }, + { + "id": 921, + "model_id": 912, + "year": "2003" + }, + { + "id": 922, + "model_id": 912, + "year": "2004" + }, + { + "id": 923, + "model_id": 912, + "year": "2006" + }, + { + "id": 924, + "model_id": 912, + "year": "2007" + }, + { + "id": 925, + "model_id": 912, + "year": "2008" + }, + { + "id": 926, + "model_id": 912, + "year": "2009" + }, + { + "id": 927, + "model_id": 912, + "year": "2010" + }, + { + "id": 928, + "model_id": 912, + "year": "2011" + }, + { + "id": 929, + "model_id": 912, + "year": "2012" + }, + { + "id": 930, + "model_id": 912, + "year": "2013" + }, + { + "id": 931, + "model_id": 912, + "year": "2014" + }, + { + "id": 932, + "model_id": 912, + "year": "2015" + }, + { + "id": 933, + "model_id": 912, + "year": "2016" + }, + { + "id": 934, + "model_id": 934, + "year": "1999" + }, + { + "id": 935, + "model_id": 934, + "year": "2000" + }, + { + "id": 936, + "model_id": 934, + "year": "2001" + }, + { + "id": 937, + "model_id": 934, + "year": "2002" + }, + { + "id": 938, + "model_id": 934, + "year": "2003" + }, + { + "id": 939, + "model_id": 934, + "year": "2004" + }, + { + "id": 940, + "model_id": 934, + "year": "2006" + }, + { + "id": 941, + "model_id": 934, + "year": "2007" + }, + { + "id": 942, + "model_id": 934, + "year": "2008" + }, + { + "id": 943, + "model_id": 934, + "year": "2009" + }, + { + "id": 944, + "model_id": 934, + "year": "2010" + }, + { + "id": 945, + "model_id": 934, + "year": "2011" + }, + { + "id": 946, + "model_id": 946, + "year": "1995" + }, + { + "id": 948, + "model_id": 946, + "year": "1996" + }, + { + "id": 949, + "model_id": 946, + "year": "1997" + }, + { + "id": 950, + "model_id": 946, + "year": "1998" + }, + { + "id": 951, + "model_id": 946, + "year": "1999" + }, + { + "id": 952, + "model_id": 946, + "year": "2000" + }, + { + "id": 957, + "model_id": 946, + "year": "2001" + }, + { + "id": 961, + "model_id": 946, + "year": "2002" + }, + { + "id": 965, + "model_id": 946, + "year": "2003" + }, + { + "id": 969, + "model_id": 946, + "year": "2004" + }, + { + "id": 973, + "model_id": 946, + "year": "2005" + }, + { + "id": 974, + "model_id": 946, + "year": "2006" + }, + { + "id": 976, + "model_id": 946, + "year": "2007" + }, + { + "id": 978, + "model_id": 946, + "year": "2008" + }, + { + "id": 980, + "model_id": 946, + "year": "2009" + }, + { + "id": 982, + "model_id": 946, + "year": "2010" + }, + { + "id": 984, + "model_id": 946, + "year": "2011" + }, + { + "id": 986, + "model_id": 946, + "year": "2012" + }, + { + "id": 987, + "model_id": 946, + "year": "2013" + }, + { + "id": 989, + "model_id": 946, + "year": "2014" + }, + { + "id": 992, + "model_id": 946, + "year": "2015" + }, + { + "id": 995, + "model_id": 946, + "year": "2016" + }, + { + "id": 998, + "model_id": 998, + "year": "1995" + }, + { + "id": 999, + "model_id": 998, + "year": "1996" + }, + { + "id": 1000, + "model_id": 998, + "year": "1997" + }, + { + "id": 1001, + "model_id": 1001, + "year": "1995" + }, + { + "id": 1002, + "model_id": 1001, + "year": "1996" + }, + { + "id": 1003, + "model_id": 1001, + "year": "1997" + }, + { + "id": 1004, + "model_id": 1004, + "year": "1998" + }, + { + "id": 1005, + "model_id": 1005, + "year": "2012" + }, + { + "id": 1006, + "model_id": 1005, + "year": "2013" + }, + { + "id": 1007, + "model_id": 1005, + "year": "2014" + }, + { + "id": 1009, + "model_id": 1005, + "year": "2015" + }, + { + "id": 1011, + "model_id": 1005, + "year": "2016" + }, + { + "id": 1013, + "model_id": 1013, + "year": "1997" + }, + { + "id": 1015, + "model_id": 1013, + "year": "1998" + }, + { + "id": 1017, + "model_id": 1013, + "year": "1999" + }, + { + "id": 1018, + "model_id": 1013, + "year": "2003" + }, + { + "id": 1019, + "model_id": 1013, + "year": "2005" + }, + { + "id": 1020, + "model_id": 1013, + "year": "2006" + }, + { + "id": 1021, + "model_id": 1013, + "year": "2007" + }, + { + "id": 1022, + "model_id": 1013, + "year": "2008" + }, + { + "id": 1023, + "model_id": 1013, + "year": "2009" + }, + { + "id": 1024, + "model_id": 1013, + "year": "2010" + }, + { + "id": 1025, + "model_id": 1013, + "year": "2011" + }, + { + "id": 1026, + "model_id": 1013, + "year": "2012" + }, + { + "id": 1027, + "model_id": 1013, + "year": "2013" + }, + { + "id": 1029, + "model_id": 1013, + "year": "2014" + }, + { + "id": 1031, + "model_id": 1013, + "year": "2015" + }, + { + "id": 1033, + "model_id": 1033, + "year": "2000" + }, + { + "id": 1034, + "model_id": 1033, + "year": "2001" + }, + { + "id": 1035, + "model_id": 1033, + "year": "2002" + }, + { + "id": 1036, + "model_id": 1033, + "year": "2003" + }, + { + "id": 1037, + "model_id": 1033, + "year": "2004" + }, + { + "id": 1038, + "model_id": 1033, + "year": "2005" + }, + { + "id": 1040, + "model_id": 1033, + "year": "2006" + }, + { + "id": 1042, + "model_id": 1033, + "year": "2007" + }, + { + "id": 1044, + "model_id": 1033, + "year": "2008" + }, + { + "id": 1046, + "model_id": 1033, + "year": "2009" + }, + { + "id": 1048, + "model_id": 1033, + "year": "2010" + }, + { + "id": 1049, + "model_id": 1033, + "year": "2011" + }, + { + "id": 1050, + "model_id": 1033, + "year": "2012" + }, + { + "id": 1052, + "model_id": 1033, + "year": "2013" + }, + { + "id": 1055, + "model_id": 1033, + "year": "2014" + }, + { + "id": 1059, + "model_id": 1033, + "year": "2015" + }, + { + "id": 1063, + "model_id": 1033, + "year": "2016" + }, + { + "id": 1067, + "model_id": 1067, + "year": "1999" + }, + { + "id": 1068, + "model_id": 1067, + "year": "2000" + }, + { + "id": 1069, + "model_id": 1067, + "year": "2001" + }, + { + "id": 1070, + "model_id": 1067, + "year": "2002" + }, + { + "id": 1071, + "model_id": 1071, + "year": "2001" + }, + { + "id": 1073, + "model_id": 1071, + "year": "2002" + }, + { + "id": 1075, + "model_id": 1075, + "year": "2003" + }, + { + "id": 1077, + "model_id": 1075, + "year": "2004" + }, + { + "id": 1080, + "model_id": 1075, + "year": "2005" + }, + { + "id": 1083, + "model_id": 1083, + "year": "2013" + }, + { + "id": 1085, + "model_id": 1083, + "year": "2014" + }, + { + "id": 1086, + "model_id": 1083, + "year": "2015" + }, + { + "id": 1087, + "model_id": 1083, + "year": "2016" + }, + { + "id": 1088, + "model_id": 1088, + "year": "1994" + }, + { + "id": 1089, + "model_id": 1088, + "year": "1995" + }, + { + "id": 1091, + "model_id": 1088, + "year": "1996" + }, + { + "id": 1092, + "model_id": 1088, + "year": "1997" + }, + { + "id": 1093, + "model_id": 1088, + "year": "1998" + }, + { + "id": 1094, + "model_id": 1094, + "year": "1984" + }, + { + "id": 1102, + "model_id": 1094, + "year": "1985" + }, + { + "id": 1104, + "model_id": 1094, + "year": "1986" + }, + { + "id": 1106, + "model_id": 1094, + "year": "1987" + }, + { + "id": 1110, + "model_id": 1110, + "year": "1990" + }, + { + "id": 1111, + "model_id": 1110, + "year": "1991" + }, + { + "id": 1112, + "model_id": 1112, + "year": "2015" + }, + { + "id": 1113, + "model_id": 1112, + "year": "2016" + }, + { + "id": 1114, + "model_id": 1114, + "year": "2015" + }, + { + "id": 1115, + "model_id": 1114, + "year": "2016" + }, + { + "id": 1116, + "model_id": 1116, + "year": "2009" + }, + { + "id": 1117, + "model_id": 1116, + "year": "2010" + }, + { + "id": 1118, + "model_id": 1116, + "year": "2011" + }, + { + "id": 1120, + "model_id": 1116, + "year": "2012" + }, + { + "id": 1122, + "model_id": 1116, + "year": "2013" + }, + { + "id": 1125, + "model_id": 1116, + "year": "2014" + }, + { + "id": 1128, + "model_id": 1116, + "year": "2015" + }, + { + "id": 1131, + "model_id": 1116, + "year": "2016" + }, + { + "id": 1134, + "model_id": 1134, + "year": "2013" + }, + { + "id": 1135, + "model_id": 1134, + "year": "2014" + }, + { + "id": 1136, + "model_id": 1134, + "year": "2015" + }, + { + "id": 1137, + "model_id": 1134, + "year": "2016" + }, + { + "id": 1138, + "model_id": 1138, + "year": "2007" + }, + { + "id": 1140, + "model_id": 1138, + "year": "2008" + }, + { + "id": 1142, + "model_id": 1138, + "year": "2009" + }, + { + "id": 1145, + "model_id": 1138, + "year": "2010" + }, + { + "id": 1148, + "model_id": 1138, + "year": "2011" + }, + { + "id": 1150, + "model_id": 1138, + "year": "2012" + }, + { + "id": 1152, + "model_id": 1138, + "year": "2013" + }, + { + "id": 1154, + "model_id": 1138, + "year": "2014" + }, + { + "id": 1156, + "model_id": 1138, + "year": "2015" + }, + { + "id": 1158, + "model_id": 1138, + "year": "2017" + }, + { + "id": 1159, + "model_id": 1159, + "year": "1984" + }, + { + "id": 1161, + "model_id": 1159, + "year": "1985" + }, + { + "id": 1162, + "model_id": 1162, + "year": "2008" + }, + { + "id": 1164, + "model_id": 1162, + "year": "2009" + }, + { + "id": 1166, + "model_id": 1162, + "year": "2010" + }, + { + "id": 1170, + "model_id": 1162, + "year": "2011" + }, + { + "id": 1174, + "model_id": 1162, + "year": "2012" + }, + { + "id": 1178, + "model_id": 1162, + "year": "2014" + }, + { + "id": 1182, + "model_id": 1162, + "year": "2015" + }, + { + "id": 1186, + "model_id": 1162, + "year": "2017" + }, + { + "id": 1187, + "model_id": 1187, + "year": "2011" + }, + { + "id": 1191, + "model_id": 1187, + "year": "2012" + }, + { + "id": 1195, + "model_id": 1187, + "year": "2014" + }, + { + "id": 1199, + "model_id": 1187, + "year": "2015" + }, + { + "id": 1203, + "model_id": 1187, + "year": "2017" + }, + { + "id": 1204, + "model_id": 1204, + "year": "2013" + }, + { + "id": 1205, + "model_id": 1204, + "year": "2014" + }, + { + "id": 1206, + "model_id": 1204, + "year": "2015" + }, + { + "id": 1207, + "model_id": 1207, + "year": "2013" + }, + { + "id": 1208, + "model_id": 1207, + "year": "2014" + }, + { + "id": 1209, + "model_id": 1207, + "year": "2015" + }, + { + "id": 1210, + "model_id": 1210, + "year": "2014" + }, + { + "id": 1211, + "model_id": 1210, + "year": "2015" + }, + { + "id": 1212, + "model_id": 1210, + "year": "2016" + }, + { + "id": 1213, + "model_id": 1213, + "year": "2007" + }, + { + "id": 1214, + "model_id": 1213, + "year": "2008" + }, + { + "id": 1215, + "model_id": 1215, + "year": "2008" + }, + { + "id": 1216, + "model_id": 1216, + "year": "2003" + }, + { + "id": 1217, + "model_id": 1217, + "year": "2015" + }, + { + "id": 1218, + "model_id": 1217, + "year": "2016" + }, + { + "id": 1219, + "model_id": 1219, + "year": "1992" + }, + { + "id": 1220, + "model_id": 1219, + "year": "1993" + }, + { + "id": 1221, + "model_id": 1219, + "year": "1994" + }, + { + "id": 1222, + "model_id": 1219, + "year": "2000" + }, + { + "id": 1224, + "model_id": 1219, + "year": "2001" + }, + { + "id": 1226, + "model_id": 1219, + "year": "2002" + }, + { + "id": 1228, + "model_id": 1219, + "year": "2004" + }, + { + "id": 1230, + "model_id": 1219, + "year": "2005" + }, + { + "id": 1232, + "model_id": 1219, + "year": "2006" + }, + { + "id": 1234, + "model_id": 1219, + "year": "2007" + }, + { + "id": 1236, + "model_id": 1219, + "year": "2008" + }, + { + "id": 1238, + "model_id": 1219, + "year": "2010" + }, + { + "id": 1240, + "model_id": 1219, + "year": "2011" + }, + { + "id": 1242, + "model_id": 1219, + "year": "2012" + }, + { + "id": 1244, + "model_id": 1219, + "year": "2013" + }, + { + "id": 1246, + "model_id": 1219, + "year": "2014" + }, + { + "id": 1248, + "model_id": 1219, + "year": "2015" + }, + { + "id": 1250, + "model_id": 1219, + "year": "2016" + }, + { + "id": 1252, + "model_id": 1252, + "year": "2001" + }, + { + "id": 1254, + "model_id": 1252, + "year": "2002" + }, + { + "id": 1256, + "model_id": 1252, + "year": "2004" + }, + { + "id": 1258, + "model_id": 1252, + "year": "2005" + }, + { + "id": 1260, + "model_id": 1252, + "year": "2006" + }, + { + "id": 1262, + "model_id": 1252, + "year": "2007" + }, + { + "id": 1264, + "model_id": 1252, + "year": "2008" + }, + { + "id": 1266, + "model_id": 1266, + "year": "2004" + }, + { + "id": 1268, + "model_id": 1266, + "year": "2005" + }, + { + "id": 1270, + "model_id": 1266, + "year": "2006" + }, + { + "id": 1272, + "model_id": 1266, + "year": "2007" + }, + { + "id": 1274, + "model_id": 1266, + "year": "2008" + }, + { + "id": 1276, + "model_id": 1266, + "year": "2009" + }, + { + "id": 1278, + "model_id": 1278, + "year": "2008" + }, + { + "id": 1280, + "model_id": 1278, + "year": "2009" + }, + { + "id": 1282, + "model_id": 1278, + "year": "2010" + }, + { + "id": 1284, + "model_id": 1278, + "year": "2011" + }, + { + "id": 1286, + "model_id": 1278, + "year": "2012" + }, + { + "id": 1288, + "model_id": 1278, + "year": "2013" + }, + { + "id": 1290, + "model_id": 1278, + "year": "2014" + }, + { + "id": 1292, + "model_id": 1278, + "year": "2015" + }, + { + "id": 1294, + "model_id": 1278, + "year": "2016" + }, + { + "id": 1296, + "model_id": 1296, + "year": "2010" + }, + { + "id": 1297, + "model_id": 1296, + "year": "2011" + }, + { + "id": 1298, + "model_id": 1296, + "year": "2012" + }, + { + "id": 1299, + "model_id": 1296, + "year": "2013" + }, + { + "id": 1300, + "model_id": 1296, + "year": "2014" + }, + { + "id": 1301, + "model_id": 1296, + "year": "2015" + }, + { + "id": 1302, + "model_id": 1296, + "year": "2016" + }, + { + "id": 1303, + "model_id": 1303, + "year": "1995" + }, + { + "id": 1304, + "model_id": 1303, + "year": "2007" + }, + { + "id": 1305, + "model_id": 1303, + "year": "2008" + }, + { + "id": 1306, + "model_id": 1303, + "year": "2009" + }, + { + "id": 1307, + "model_id": 1303, + "year": "2010" + }, + { + "id": 1308, + "model_id": 1303, + "year": "2011" + }, + { + "id": 1309, + "model_id": 1303, + "year": "2013" + }, + { + "id": 1310, + "model_id": 1303, + "year": "2014" + }, + { + "id": 1311, + "model_id": 1303, + "year": "2015" + }, + { + "id": 1312, + "model_id": 1303, + "year": "2016" + }, + { + "id": 1313, + "model_id": 1313, + "year": "2002" + }, + { + "id": 1314, + "model_id": 1313, + "year": "2003" + }, + { + "id": 1315, + "model_id": 1315, + "year": "1995" + }, + { + "id": 1316, + "model_id": 1316, + "year": "2013" + }, + { + "id": 1317, + "model_id": 1316, + "year": "2014" + }, + { + "id": 1318, + "model_id": 1316, + "year": "2015" + }, + { + "id": 1319, + "model_id": 1316, + "year": "2016" + }, + { + "id": 1320, + "model_id": 1320, + "year": "2003" + }, + { + "id": 1321, + "model_id": 1320, + "year": "2007" + }, + { + "id": 1322, + "model_id": 1320, + "year": "2008" + }, + { + "id": 1323, + "model_id": 1320, + "year": "2009" + }, + { + "id": 1324, + "model_id": 1320, + "year": "2013" + }, + { + "id": 1325, + "model_id": 1320, + "year": "2014" + }, + { + "id": 1326, + "model_id": 1320, + "year": "2015" + }, + { + "id": 1327, + "model_id": 1320, + "year": "2016" + }, + { + "id": 1328, + "model_id": 1328, + "year": "2001" + }, + { + "id": 1329, + "model_id": 1328, + "year": "2002" + }, + { + "id": 1330, + "model_id": 1330, + "year": "2014" + }, + { + "id": 1331, + "model_id": 1330, + "year": "2015" + }, + { + "id": 1332, + "model_id": 1330, + "year": "2016" + }, + { + "id": 1333, + "model_id": 1333, + "year": "2000" + }, + { + "id": 1334, + "model_id": 1333, + "year": "2001" + }, + { + "id": 1335, + "model_id": 1333, + "year": "2002" + }, + { + "id": 1336, + "model_id": 1333, + "year": "2003" + }, + { + "id": 1337, + "model_id": 1333, + "year": "2004" + }, + { + "id": 1338, + "model_id": 1333, + "year": "2005" + }, + { + "id": 1339, + "model_id": 1333, + "year": "2006" + }, + { + "id": 1340, + "model_id": 1333, + "year": "2008" + }, + { + "id": 1341, + "model_id": 1333, + "year": "2009" + }, + { + "id": 1342, + "model_id": 1342, + "year": "2000" + }, + { + "id": 1343, + "model_id": 1342, + "year": "2001" + }, + { + "id": 1345, + "model_id": 1342, + "year": "2002" + }, + { + "id": 1347, + "model_id": 1342, + "year": "2003" + }, + { + "id": 1348, + "model_id": 1342, + "year": "2004" + }, + { + "id": 1350, + "model_id": 1342, + "year": "2005" + }, + { + "id": 1352, + "model_id": 1342, + "year": "2006" + }, + { + "id": 1354, + "model_id": 1342, + "year": "2008" + }, + { + "id": 1356, + "model_id": 1342, + "year": "2009" + }, + { + "id": 1359, + "model_id": 1342, + "year": "2010" + }, + { + "id": 1360, + "model_id": 1342, + "year": "2011" + }, + { + "id": 1361, + "model_id": 1342, + "year": "2012" + }, + { + "id": 1362, + "model_id": 1342, + "year": "2013" + }, + { + "id": 1363, + "model_id": 1342, + "year": "2014" + }, + { + "id": 1364, + "model_id": 1342, + "year": "2015" + }, + { + "id": 1365, + "model_id": 1342, + "year": "2016" + }, + { + "id": 1366, + "model_id": 1366, + "year": "2001" + }, + { + "id": 1367, + "model_id": 1366, + "year": "2002" + }, + { + "id": 1368, + "model_id": 1366, + "year": "2003" + }, + { + "id": 1369, + "model_id": 1366, + "year": "2004" + }, + { + "id": 1370, + "model_id": 1366, + "year": "2005" + }, + { + "id": 1371, + "model_id": 1366, + "year": "2006" + }, + { + "id": 1372, + "model_id": 1366, + "year": "2008" + }, + { + "id": 1373, + "model_id": 1366, + "year": "2009" + }, + { + "id": 1374, + "model_id": 1374, + "year": "2001" + }, + { + "id": 1375, + "model_id": 1374, + "year": "2002" + }, + { + "id": 1376, + "model_id": 1374, + "year": "2003" + }, + { + "id": 1377, + "model_id": 1374, + "year": "2004" + }, + { + "id": 1379, + "model_id": 1374, + "year": "2005" + }, + { + "id": 1381, + "model_id": 1374, + "year": "2006" + }, + { + "id": 1383, + "model_id": 1374, + "year": "2008" + }, + { + "id": 1385, + "model_id": 1374, + "year": "2009" + }, + { + "id": 1388, + "model_id": 1374, + "year": "2010" + }, + { + "id": 1389, + "model_id": 1374, + "year": "2011" + }, + { + "id": 1390, + "model_id": 1374, + "year": "2012" + }, + { + "id": 1391, + "model_id": 1374, + "year": "2013" + }, + { + "id": 1392, + "model_id": 1374, + "year": "2014" + }, + { + "id": 1393, + "model_id": 1374, + "year": "2015" + }, + { + "id": 1394, + "model_id": 1374, + "year": "2016" + }, + { + "id": 1395, + "model_id": 1395, + "year": "2012" + }, + { + "id": 1396, + "model_id": 1395, + "year": "2013" + }, + { + "id": 1397, + "model_id": 1397, + "year": "2016" + }, + { + "id": 1398, + "model_id": 1398, + "year": "1990" + }, + { + "id": 1400, + "model_id": 1398, + "year": "1991" + }, + { + "id": 1402, + "model_id": 1398, + "year": "1992" + }, + { + "id": 1403, + "model_id": 1398, + "year": "1993" + }, + { + "id": 1404, + "model_id": 1398, + "year": "1994" + }, + { + "id": 1405, + "model_id": 1405, + "year": "1988" + }, + { + "id": 1406, + "model_id": 1406, + "year": "1992" + }, + { + "id": 1407, + "model_id": 1406, + "year": "1993" + }, + { + "id": 1408, + "model_id": 1408, + "year": "1986" + }, + { + "id": 1409, + "model_id": 1408, + "year": "1987" + }, + { + "id": 1410, + "model_id": 1410, + "year": "1984" + }, + { + "id": 1412, + "model_id": 1412, + "year": "2012" + }, + { + "id": 1413, + "model_id": 1413, + "year": "2012" + }, + { + "id": 1414, + "model_id": 1414, + "year": "1999" + }, + { + "id": 1415, + "model_id": 1414, + "year": "2000" + }, + { + "id": 1417, + "model_id": 1414, + "year": "2001" + }, + { + "id": 1418, + "model_id": 1414, + "year": "2002" + }, + { + "id": 1419, + "model_id": 1414, + "year": "2003" + }, + { + "id": 1420, + "model_id": 1414, + "year": "2004" + }, + { + "id": 1421, + "model_id": 1414, + "year": "2005" + }, + { + "id": 1422, + "model_id": 1414, + "year": "2006" + }, + { + "id": 1423, + "model_id": 1414, + "year": "2007" + }, + { + "id": 1424, + "model_id": 1414, + "year": "2008" + }, + { + "id": 1425, + "model_id": 1414, + "year": "2009" + }, + { + "id": 1426, + "model_id": 1426, + "year": "2003" + }, + { + "id": 1427, + "model_id": 1426, + "year": "2004" + }, + { + "id": 1428, + "model_id": 1426, + "year": "2005" + }, + { + "id": 1429, + "model_id": 1426, + "year": "2006" + }, + { + "id": 1430, + "model_id": 1426, + "year": "2007" + }, + { + "id": 1431, + "model_id": 1431, + "year": "2008" + }, + { + "id": 1432, + "model_id": 1431, + "year": "2009" + }, + { + "id": 1433, + "model_id": 1433, + "year": "1998" + }, + { + "id": 1434, + "model_id": 1433, + "year": "1999" + }, + { + "id": 1435, + "model_id": 1433, + "year": "2000" + }, + { + "id": 1436, + "model_id": 1433, + "year": "2001" + }, + { + "id": 1437, + "model_id": 1433, + "year": "2003" + }, + { + "id": 1438, + "model_id": 1433, + "year": "2007" + }, + { + "id": 1439, + "model_id": 1433, + "year": "2008" + }, + { + "id": 1440, + "model_id": 1433, + "year": "2009" + }, + { + "id": 1441, + "model_id": 1433, + "year": "2010" + }, + { + "id": 1442, + "model_id": 1442, + "year": "2009" + }, + { + "id": 1443, + "model_id": 1442, + "year": "2010" + }, + { + "id": 1444, + "model_id": 1444, + "year": "1998" + }, + { + "id": 1445, + "model_id": 1445, + "year": "1998" + }, + { + "id": 1446, + "model_id": 1445, + "year": "1999" + }, + { + "id": 1447, + "model_id": 1447, + "year": "2006" + }, + { + "id": 1448, + "model_id": 1447, + "year": "2007" + }, + { + "id": 1449, + "model_id": 1447, + "year": "2008" + }, + { + "id": 1450, + "model_id": 1447, + "year": "2009" + }, + { + "id": 1451, + "model_id": 1447, + "year": "2010" + }, + { + "id": 1452, + "model_id": 1447, + "year": "2011" + }, + { + "id": 1453, + "model_id": 1447, + "year": "2012" + }, + { + "id": 1454, + "model_id": 1447, + "year": "2013" + }, + { + "id": 1455, + "model_id": 1455, + "year": "2004" + }, + { + "id": 1456, + "model_id": 1455, + "year": "2005" + }, + { + "id": 1457, + "model_id": 1455, + "year": "2006" + }, + { + "id": 1458, + "model_id": 1455, + "year": "2007" + }, + { + "id": 1459, + "model_id": 1455, + "year": "2008" + }, + { + "id": 1460, + "model_id": 1455, + "year": "2009" + }, + { + "id": 1461, + "model_id": 1455, + "year": "2010" + }, + { + "id": 1462, + "model_id": 1455, + "year": "2012" + }, + { + "id": 1463, + "model_id": 1455, + "year": "2013" + }, + { + "id": 1466, + "model_id": 1455, + "year": "2014" + }, + { + "id": 1468, + "model_id": 1455, + "year": "2015" + }, + { + "id": 1470, + "model_id": 1455, + "year": "2016" + }, + { + "id": 1472, + "model_id": 1472, + "year": "2015" + }, + { + "id": 1474, + "model_id": 1472, + "year": "2016" + }, + { + "id": 1476, + "model_id": 1476, + "year": "2014" + }, + { + "id": 1477, + "model_id": 1477, + "year": "2015" + }, + { + "id": 1478, + "model_id": 1478, + "year": "2007" + }, + { + "id": 1479, + "model_id": 1478, + "year": "2008" + }, + { + "id": 1480, + "model_id": 1478, + "year": "2009" + }, + { + "id": 1481, + "model_id": 1478, + "year": "2010" + }, + { + "id": 1482, + "model_id": 1478, + "year": "2011" + }, + { + "id": 1483, + "model_id": 1478, + "year": "2012" + }, + { + "id": 1484, + "model_id": 1478, + "year": "2013" + }, + { + "id": 1487, + "model_id": 1478, + "year": "2014" + }, + { + "id": 1489, + "model_id": 1489, + "year": "1998" + }, + { + "id": 1490, + "model_id": 1489, + "year": "1999" + }, + { + "id": 1491, + "model_id": 1489, + "year": "2000" + }, + { + "id": 1492, + "model_id": 1489, + "year": "2001" + }, + { + "id": 1493, + "model_id": 1489, + "year": "2003" + }, + { + "id": 1494, + "model_id": 1494, + "year": "1998" + }, + { + "id": 1495, + "model_id": 1494, + "year": "1999" + }, + { + "id": 1496, + "model_id": 1494, + "year": "2000" + }, + { + "id": 1497, + "model_id": 1494, + "year": "2001" + }, + { + "id": 1498, + "model_id": 1498, + "year": "2010" + }, + { + "id": 1499, + "model_id": 1498, + "year": "2011" + }, + { + "id": 1500, + "model_id": 1498, + "year": "2012" + }, + { + "id": 1501, + "model_id": 1501, + "year": "2011" + }, + { + "id": 1502, + "model_id": 1501, + "year": "2012" + }, + { + "id": 1503, + "model_id": 1501, + "year": "2013" + }, + { + "id": 1504, + "model_id": 1504, + "year": "1998" + }, + { + "id": 1505, + "model_id": 1504, + "year": "1999" + }, + { + "id": 1506, + "model_id": 1504, + "year": "2000" + }, + { + "id": 1507, + "model_id": 1504, + "year": "2001" + }, + { + "id": 1508, + "model_id": 1504, + "year": "2003" + }, + { + "id": 1509, + "model_id": 1509, + "year": "2014" + }, + { + "id": 1510, + "model_id": 1509, + "year": "2015" + }, + { + "id": 1512, + "model_id": 1509, + "year": "2016" + }, + { + "id": 1514, + "model_id": 1514, + "year": "2011" + }, + { + "id": 1515, + "model_id": 1514, + "year": "2012" + }, + { + "id": 1516, + "model_id": 1514, + "year": "2013" + }, + { + "id": 1517, + "model_id": 1514, + "year": "2014" + }, + { + "id": 1518, + "model_id": 1514, + "year": "2015" + }, + { + "id": 1519, + "model_id": 1514, + "year": "2016" + }, + { + "id": 1520, + "model_id": 1520, + "year": "1998" + }, + { + "id": 1521, + "model_id": 1520, + "year": "1999" + }, + { + "id": 1522, + "model_id": 1522, + "year": "1984" + }, + { + "id": 1524, + "model_id": 1522, + "year": "1985" + }, + { + "id": 1525, + "model_id": 1522, + "year": "1986" + }, + { + "id": 1526, + "model_id": 1522, + "year": "1987" + }, + { + "id": 1527, + "model_id": 1522, + "year": "1988" + }, + { + "id": 1528, + "model_id": 1522, + "year": "1989" + }, + { + "id": 1529, + "model_id": 1529, + "year": "1984" + }, + { + "id": 1530, + "model_id": 1529, + "year": "1985" + }, + { + "id": 1531, + "model_id": 1531, + "year": "1984" + }, + { + "id": 1532, + "model_id": 1531, + "year": "1985" + }, + { + "id": 1533, + "model_id": 1533, + "year": "1986" + }, + { + "id": 1534, + "model_id": 1533, + "year": "1987" + }, + { + "id": 1536, + "model_id": 1536, + "year": "1984" + }, + { + "id": 1538, + "model_id": 1538, + "year": "2010" + }, + { + "id": 1540, + "model_id": 1538, + "year": "2011" + }, + { + "id": 1542, + "model_id": 1538, + "year": "2012" + }, + { + "id": 1544, + "model_id": 1538, + "year": "2013" + }, + { + "id": 1546, + "model_id": 1546, + "year": "2008" + }, + { + "id": 1548, + "model_id": 1546, + "year": "2009" + }, + { + "id": 1550, + "model_id": 1546, + "year": "2010" + }, + { + "id": 1552, + "model_id": 1546, + "year": "2011" + }, + { + "id": 1554, + "model_id": 1546, + "year": "2012" + }, + { + "id": 1556, + "model_id": 1546, + "year": "2013" + }, + { + "id": 1558, + "model_id": 1558, + "year": "2008" + }, + { + "id": 1560, + "model_id": 1558, + "year": "2009" + }, + { + "id": 1562, + "model_id": 1562, + "year": "2008" + }, + { + "id": 1564, + "model_id": 1562, + "year": "2009" + }, + { + "id": 1566, + "model_id": 1562, + "year": "2010" + }, + { + "id": 1568, + "model_id": 1562, + "year": "2011" + }, + { + "id": 1570, + "model_id": 1562, + "year": "2012" + }, + { + "id": 1572, + "model_id": 1562, + "year": "2013" + }, + { + "id": 1574, + "model_id": 1574, + "year": "2008" + }, + { + "id": 1576, + "model_id": 1574, + "year": "2009" + }, + { + "id": 1578, + "model_id": 1574, + "year": "2010" + }, + { + "id": 1580, + "model_id": 1574, + "year": "2011" + }, + { + "id": 1582, + "model_id": 1574, + "year": "2012" + }, + { + "id": 1584, + "model_id": 1574, + "year": "2013" + }, + { + "id": 1586, + "model_id": 1586, + "year": "2014" + }, + { + "id": 1588, + "model_id": 1586, + "year": "2015" + }, + { + "id": 1590, + "model_id": 1586, + "year": "2016" + }, + { + "id": 1592, + "model_id": 1592, + "year": "2015" + }, + { + "id": 1593, + "model_id": 1592, + "year": "2016" + }, + { + "id": 1594, + "model_id": 1594, + "year": "2015" + }, + { + "id": 1595, + "model_id": 1594, + "year": "2016" + }, + { + "id": 1596, + "model_id": 1596, + "year": "2015" + }, + { + "id": 1597, + "model_id": 1596, + "year": "2016" + }, + { + "id": 1598, + "model_id": 1598, + "year": "1984" + }, + { + "id": 1606, + "model_id": 1598, + "year": "1985" + }, + { + "id": 1610, + "model_id": 1598, + "year": "1986" + }, + { + "id": 1612, + "model_id": 1598, + "year": "1987" + }, + { + "id": 1616, + "model_id": 1598, + "year": "1988" + }, + { + "id": 1624, + "model_id": 1624, + "year": "1991" + }, + { + "id": 1625, + "model_id": 1625, + "year": "1992" + }, + { + "id": 1626, + "model_id": 1625, + "year": "1994" + }, + { + "id": 1628, + "model_id": 1625, + "year": "1995" + }, + { + "id": 1630, + "model_id": 1625, + "year": "1996" + }, + { + "id": 1632, + "model_id": 1625, + "year": "1997" + }, + { + "id": 1635, + "model_id": 1635, + "year": "1992" + }, + { + "id": 1636, + "model_id": 1636, + "year": "1993" + }, + { + "id": 1638, + "model_id": 1636, + "year": "1994" + }, + { + "id": 1642, + "model_id": 1636, + "year": "1995" + }, + { + "id": 1644, + "model_id": 1636, + "year": "1996" + }, + { + "id": 1646, + "model_id": 1636, + "year": "1997" + }, + { + "id": 1650, + "model_id": 1636, + "year": "1998" + }, + { + "id": 1652, + "model_id": 1652, + "year": "1991" + }, + { + "id": 1655, + "model_id": 1655, + "year": "1991" + }, + { + "id": 1656, + "model_id": 1656, + "year": "1995" + }, + { + "id": 1658, + "model_id": 1656, + "year": "1996" + }, + { + "id": 1660, + "model_id": 1656, + "year": "1997" + }, + { + "id": 1664, + "model_id": 1656, + "year": "1998" + }, + { + "id": 1666, + "model_id": 1656, + "year": "1999" + }, + { + "id": 1668, + "model_id": 1668, + "year": "2013" + }, + { + "id": 1670, + "model_id": 1668, + "year": "2014" + }, + { + "id": 1672, + "model_id": 1668, + "year": "2015" + }, + { + "id": 1674, + "model_id": 1668, + "year": "2016" + }, + { + "id": 1676, + "model_id": 1676, + "year": "2013" + }, + { + "id": 1678, + "model_id": 1676, + "year": "2014" + }, + { + "id": 1679, + "model_id": 1676, + "year": "2015" + }, + { + "id": 1680, + "model_id": 1676, + "year": "2016" + }, + { + "id": 1681, + "model_id": 1681, + "year": "2000" + }, + { + "id": 1683, + "model_id": 1683, + "year": "1999" + }, + { + "id": 1685, + "model_id": 1683, + "year": "2000" + }, + { + "id": 1688, + "model_id": 1688, + "year": "1998" + }, + { + "id": 1690, + "model_id": 1688, + "year": "1999" + }, + { + "id": 1692, + "model_id": 1688, + "year": "2000" + }, + { + "id": 1694, + "model_id": 1694, + "year": "2000" + }, + { + "id": 1696, + "model_id": 1696, + "year": "1998" + }, + { + "id": 1698, + "model_id": 1696, + "year": "1999" + }, + { + "id": 1700, + "model_id": 1700, + "year": "2001" + }, + { + "id": 1702, + "model_id": 1700, + "year": "2002" + }, + { + "id": 1704, + "model_id": 1700, + "year": "2003" + }, + { + "id": 1706, + "model_id": 1700, + "year": "2004" + }, + { + "id": 1709, + "model_id": 1700, + "year": "2005" + }, + { + "id": 1711, + "model_id": 1700, + "year": "2006" + }, + { + "id": 1713, + "model_id": 1713, + "year": "2001" + }, + { + "id": 1715, + "model_id": 1713, + "year": "2002" + }, + { + "id": 1717, + "model_id": 1713, + "year": "2003" + }, + { + "id": 1719, + "model_id": 1713, + "year": "2004" + }, + { + "id": 1722, + "model_id": 1713, + "year": "2005" + }, + { + "id": 1724, + "model_id": 1713, + "year": "2006" + }, + { + "id": 1726, + "model_id": 1726, + "year": "1991" + }, + { + "id": 1727, + "model_id": 1726, + "year": "2001" + }, + { + "id": 1729, + "model_id": 1726, + "year": "2002" + }, + { + "id": 1731, + "model_id": 1726, + "year": "2003" + }, + { + "id": 1733, + "model_id": 1726, + "year": "2004" + }, + { + "id": 1736, + "model_id": 1726, + "year": "2005" + }, + { + "id": 1739, + "model_id": 1726, + "year": "2006" + }, + { + "id": 1741, + "model_id": 1741, + "year": "1989" + }, + { + "id": 1743, + "model_id": 1741, + "year": "1990" + }, + { + "id": 1745, + "model_id": 1741, + "year": "1991" + }, + { + "id": 1747, + "model_id": 1741, + "year": "1992" + }, + { + "id": 1749, + "model_id": 1741, + "year": "1993" + }, + { + "id": 1750, + "model_id": 1741, + "year": "1994" + }, + { + "id": 1752, + "model_id": 1741, + "year": "1995" + }, + { + "id": 1754, + "model_id": 1754, + "year": "2001" + }, + { + "id": 1756, + "model_id": 1754, + "year": "2002" + }, + { + "id": 1758, + "model_id": 1754, + "year": "2003" + }, + { + "id": 1760, + "model_id": 1754, + "year": "2004" + }, + { + "id": 1763, + "model_id": 1754, + "year": "2005" + }, + { + "id": 1765, + "model_id": 1765, + "year": "1989" + }, + { + "id": 1767, + "model_id": 1765, + "year": "1990" + }, + { + "id": 1769, + "model_id": 1765, + "year": "1991" + }, + { + "id": 1771, + "model_id": 1771, + "year": "1992" + }, + { + "id": 1773, + "model_id": 1765, + "year": "1993" + }, + { + "id": 1775, + "model_id": 1765, + "year": "1994" + }, + { + "id": 1777, + "model_id": 1765, + "year": "1995" + }, + { + "id": 1779, + "model_id": 1779, + "year": "1991" + }, + { + "id": 1780, + "model_id": 1780, + "year": "1991" + }, + { + "id": 1781, + "model_id": 1781, + "year": "1989" + }, + { + "id": 1783, + "model_id": 1781, + "year": "1990" + }, + { + "id": 1785, + "model_id": 1781, + "year": "1991" + }, + { + "id": 1787, + "model_id": 1787, + "year": "2001" + }, + { + "id": 1789, + "model_id": 1787, + "year": "2002" + }, + { + "id": 1791, + "model_id": 1787, + "year": "2003" + }, + { + "id": 1793, + "model_id": 1787, + "year": "2004" + }, + { + "id": 1795, + "model_id": 1787, + "year": "2005" + }, + { + "id": 1797, + "model_id": 1787, + "year": "2006" + }, + { + "id": 1799, + "model_id": 1799, + "year": "2001" + }, + { + "id": 1801, + "model_id": 1799, + "year": "2002" + }, + { + "id": 1803, + "model_id": 1799, + "year": "2003" + }, + { + "id": 1805, + "model_id": 1799, + "year": "2004" + }, + { + "id": 1807, + "model_id": 1799, + "year": "2005" + }, + { + "id": 1809, + "model_id": 1799, + "year": "2006" + }, + { + "id": 1811, + "model_id": 1811, + "year": "2000" + }, + { + "id": 1813, + "model_id": 1811, + "year": "2007" + }, + { + "id": 1815, + "model_id": 1811, + "year": "2008" + }, + { + "id": 1817, + "model_id": 1811, + "year": "2009" + }, + { + "id": 1819, + "model_id": 1811, + "year": "2010" + }, + { + "id": 1821, + "model_id": 1811, + "year": "2011" + }, + { + "id": 1823, + "model_id": 1823, + "year": "2007" + }, + { + "id": 1825, + "model_id": 1823, + "year": "2008" + }, + { + "id": 1827, + "model_id": 1823, + "year": "2009" + }, + { + "id": 1829, + "model_id": 1823, + "year": "2010" + }, + { + "id": 1831, + "model_id": 1823, + "year": "2011" + }, + { + "id": 1833, + "model_id": 1823, + "year": "2012" + }, + { + "id": 1835, + "model_id": 1835, + "year": "2009" + }, + { + "id": 1837, + "model_id": 1835, + "year": "2010" + }, + { + "id": 1839, + "model_id": 1835, + "year": "2011" + }, + { + "id": 1841, + "model_id": 1841, + "year": "2007" + }, + { + "id": 1843, + "model_id": 1841, + "year": "2008" + }, + { + "id": 1845, + "model_id": 1845, + "year": "2014" + }, + { + "id": 1846, + "model_id": 1845, + "year": "2015" + }, + { + "id": 1847, + "model_id": 1845, + "year": "2016" + }, + { + "id": 1848, + "model_id": 1848, + "year": "2014" + }, + { + "id": 1849, + "model_id": 1848, + "year": "2015" + }, + { + "id": 1850, + "model_id": 1848, + "year": "2016" + }, + { + "id": 1851, + "model_id": 1851, + "year": "2014" + }, + { + "id": 1852, + "model_id": 1851, + "year": "2015" + }, + { + "id": 1853, + "model_id": 1851, + "year": "2016" + }, + { + "id": 1854, + "model_id": 1854, + "year": "1999" + }, + { + "id": 1856, + "model_id": 1854, + "year": "2000" + }, + { + "id": 1859, + "model_id": 1854, + "year": "2007" + }, + { + "id": 1861, + "model_id": 1854, + "year": "2008" + }, + { + "id": 1863, + "model_id": 1854, + "year": "2009" + }, + { + "id": 1865, + "model_id": 1854, + "year": "2010" + }, + { + "id": 1867, + "model_id": 1854, + "year": "2011" + }, + { + "id": 1869, + "model_id": 1854, + "year": "2012" + }, + { + "id": 1871, + "model_id": 1854, + "year": "2013" + }, + { + "id": 1873, + "model_id": 1854, + "year": "2014" + }, + { + "id": 1875, + "model_id": 1854, + "year": "2015" + }, + { + "id": 1877, + "model_id": 1854, + "year": "2016" + }, + { + "id": 1879, + "model_id": 1879, + "year": "1996" + }, + { + "id": 1881, + "model_id": 1879, + "year": "1998" + }, + { + "id": 1883, + "model_id": 1879, + "year": "1999" + }, + { + "id": 1885, + "model_id": 1879, + "year": "2013" + }, + { + "id": 1887, + "model_id": 1887, + "year": "2012" + }, + { + "id": 1889, + "model_id": 1887, + "year": "2013" + }, + { + "id": 1891, + "model_id": 1891, + "year": "2012" + }, + { + "id": 1893, + "model_id": 1891, + "year": "2013" + }, + { + "id": 1895, + "model_id": 1895, + "year": "2007" + }, + { + "id": 1897, + "model_id": 1895, + "year": "2008" + }, + { + "id": 1899, + "model_id": 1895, + "year": "2009" + }, + { + "id": 1901, + "model_id": 1895, + "year": "2010" + }, + { + "id": 1903, + "model_id": 1895, + "year": "2012" + }, + { + "id": 1905, + "model_id": 1905, + "year": "2009" + }, + { + "id": 1907, + "model_id": 1905, + "year": "2010" + }, + { + "id": 1909, + "model_id": 1909, + "year": "2011" + }, + { + "id": 1911, + "model_id": 1911, + "year": "2009" + }, + { + "id": 1913, + "model_id": 1911, + "year": "2010" + }, + { + "id": 1915, + "model_id": 1911, + "year": "2011" + }, + { + "id": 1917, + "model_id": 1911, + "year": "2013" + }, + { + "id": 1918, + "model_id": 1911, + "year": "2014" + }, + { + "id": 1919, + "model_id": 1911, + "year": "2015" + }, + { + "id": 1920, + "model_id": 1911, + "year": "2016" + }, + { + "id": 1921, + "model_id": 1921, + "year": "2014" + }, + { + "id": 1922, + "model_id": 1921, + "year": "2015" + }, + { + "id": 1923, + "model_id": 1921, + "year": "2016" + }, + { + "id": 1924, + "model_id": 1924, + "year": "2012" + }, + { + "id": 1926, + "model_id": 1926, + "year": "2011" + }, + { + "id": 1928, + "model_id": 1926, + "year": "2014" + }, + { + "id": 1929, + "model_id": 1926, + "year": "2015" + }, + { + "id": 1930, + "model_id": 1926, + "year": "2016" + }, + { + "id": 1931, + "model_id": 1931, + "year": "1996" + }, + { + "id": 1933, + "model_id": 1931, + "year": "1997" + }, + { + "id": 1935, + "model_id": 1931, + "year": "1998" + }, + { + "id": 1937, + "model_id": 1937, + "year": "1997" + }, + { + "id": 1939, + "model_id": 1939, + "year": "1999" + }, + { + "id": 1941, + "model_id": 1941, + "year": "2007" + }, + { + "id": 1943, + "model_id": 1941, + "year": "2008" + }, + { + "id": 1945, + "model_id": 1945, + "year": "2007" + }, + { + "id": 1947, + "model_id": 1945, + "year": "2008" + }, + { + "id": 1949, + "model_id": 1949, + "year": "2001" + }, + { + "id": 1951, + "model_id": 1949, + "year": "2002" + }, + { + "id": 1953, + "model_id": 1949, + "year": "2003" + }, + { + "id": 1955, + "model_id": 1949, + "year": "2004" + }, + { + "id": 1958, + "model_id": 1949, + "year": "2005" + }, + { + "id": 1961, + "model_id": 1949, + "year": "2006" + }, + { + "id": 1963, + "model_id": 1963, + "year": "2001" + }, + { + "id": 1965, + "model_id": 1963, + "year": "2002" + }, + { + "id": 1967, + "model_id": 1963, + "year": "2003" + }, + { + "id": 1969, + "model_id": 1963, + "year": "2004" + }, + { + "id": 1972, + "model_id": 1963, + "year": "2005" + }, + { + "id": 1975, + "model_id": 1963, + "year": "2006" + }, + { + "id": 1977, + "model_id": 1977, + "year": "2016" + }, + { + "id": 1978, + "model_id": 1978, + "year": "2001" + }, + { + "id": 1980, + "model_id": 1978, + "year": "2002" + }, + { + "id": 1982, + "model_id": 1978, + "year": "2003" + }, + { + "id": 1985, + "model_id": 1978, + "year": "2004" + }, + { + "id": 1988, + "model_id": 1978, + "year": "2005" + }, + { + "id": 1991, + "model_id": 1978, + "year": "2006" + }, + { + "id": 1994, + "model_id": 1994, + "year": "2001" + }, + { + "id": 1996, + "model_id": 1994, + "year": "2002" + }, + { + "id": 1998, + "model_id": 1994, + "year": "2003" + }, + { + "id": 2001, + "model_id": 1994, + "year": "2004" + }, + { + "id": 2003, + "model_id": 1994, + "year": "2005" + }, + { + "id": 2005, + "model_id": 1994, + "year": "2006" + }, + { + "id": 2007, + "model_id": 2007, + "year": "2007" + }, + { + "id": 2009, + "model_id": 2007, + "year": "2008" + }, + { + "id": 2011, + "model_id": 2007, + "year": "2009" + }, + { + "id": 2013, + "model_id": 2007, + "year": "2010" + }, + { + "id": 2015, + "model_id": 2007, + "year": "2011" + }, + { + "id": 2017, + "model_id": 2017, + "year": "2007" + }, + { + "id": 2019, + "model_id": 2017, + "year": "2008" + }, + { + "id": 2021, + "model_id": 2017, + "year": "2009" + }, + { + "id": 2023, + "model_id": 2017, + "year": "2010" + }, + { + "id": 2025, + "model_id": 2017, + "year": "2011" + }, + { + "id": 2027, + "model_id": 2017, + "year": "2012" + }, + { + "id": 2029, + "model_id": 2029, + "year": "2009" + }, + { + "id": 2031, + "model_id": 2029, + "year": "2010" + }, + { + "id": 2033, + "model_id": 2029, + "year": "2011" + }, + { + "id": 2035, + "model_id": 2035, + "year": "2008" + }, + { + "id": 2037, + "model_id": 2037, + "year": "2009" + }, + { + "id": 2038, + "model_id": 2037, + "year": "2010" + }, + { + "id": 2039, + "model_id": 2037, + "year": "2011" + }, + { + "id": 2040, + "model_id": 2040, + "year": "2007" + }, + { + "id": 2042, + "model_id": 2040, + "year": "2008" + }, + { + "id": 2044, + "model_id": 2040, + "year": "2009" + }, + { + "id": 2046, + "model_id": 2040, + "year": "2010" + }, + { + "id": 2048, + "model_id": 2040, + "year": "2011" + }, + { + "id": 2050, + "model_id": 2040, + "year": "2012" + }, + { + "id": 2052, + "model_id": 2040, + "year": "2013" + }, + { + "id": 2054, + "model_id": 2040, + "year": "2014" + }, + { + "id": 2056, + "model_id": 2040, + "year": "2015" + }, + { + "id": 2058, + "model_id": 2058, + "year": "2013" + }, + { + "id": 2060, + "model_id": 2060, + "year": "2012" + }, + { + "id": 2062, + "model_id": 2060, + "year": "2013" + }, + { + "id": 2064, + "model_id": 2064, + "year": "2012" + }, + { + "id": 2066, + "model_id": 2064, + "year": "2013" + }, + { + "id": 2068, + "model_id": 2068, + "year": "2009" + }, + { + "id": 2070, + "model_id": 2068, + "year": "2010" + }, + { + "id": 2072, + "model_id": 2068, + "year": "2011" + }, + { + "id": 2074, + "model_id": 2068, + "year": "2013" + }, + { + "id": 2076, + "model_id": 2068, + "year": "2014" + }, + { + "id": 2078, + "model_id": 2068, + "year": "2015" + }, + { + "id": 2080, + "model_id": 2080, + "year": "2014" + }, + { + "id": 2081, + "model_id": 2080, + "year": "2015" + }, + { + "id": 2082, + "model_id": 2080, + "year": "2016" + }, + { + "id": 2083, + "model_id": 2083, + "year": "2011" + }, + { + "id": 2085, + "model_id": 2083, + "year": "2012" + }, + { + "id": 2087, + "model_id": 2083, + "year": "2013" + }, + { + "id": 2089, + "model_id": 2089, + "year": "2011" + }, + { + "id": 2091, + "model_id": 2089, + "year": "2012" + }, + { + "id": 2093, + "model_id": 2089, + "year": "2013" + }, + { + "id": 2095, + "model_id": 2095, + "year": "2007" + }, + { + "id": 2097, + "model_id": 2095, + "year": "2008" + }, + { + "id": 2099, + "model_id": 2099, + "year": "2016" + }, + { + "id": 2101, + "model_id": 2101, + "year": "2016" + }, + { + "id": 2103, + "model_id": 2103, + "year": "2014" + }, + { + "id": 2104, + "model_id": 2103, + "year": "2015" + }, + { + "id": 2105, + "model_id": 2103, + "year": "2016" + }, + { + "id": 2106, + "model_id": 2106, + "year": "2014" + }, + { + "id": 2108, + "model_id": 2106, + "year": "2015" + }, + { + "id": 2110, + "model_id": 2106, + "year": "2016" + }, + { + "id": 2112, + "model_id": 2112, + "year": "2015" + }, + { + "id": 2113, + "model_id": 2112, + "year": "2016" + }, + { + "id": 2114, + "model_id": 2114, + "year": "2014" + }, + { + "id": 2115, + "model_id": 2114, + "year": "2015" + }, + { + "id": 2116, + "model_id": 2114, + "year": "2016" + }, + { + "id": 2117, + "model_id": 2117, + "year": "2014" + }, + { + "id": 2118, + "model_id": 2117, + "year": "2015" + }, + { + "id": 2119, + "model_id": 2117, + "year": "2016" + }, + { + "id": 2120, + "model_id": 2120, + "year": "2015" + }, + { + "id": 2121, + "model_id": 2120, + "year": "2016" + }, + { + "id": 2122, + "model_id": 2122, + "year": "2014" + }, + { + "id": 2123, + "model_id": 2122, + "year": "2015" + }, + { + "id": 2124, + "model_id": 2122, + "year": "2016" + }, + { + "id": 2125, + "model_id": 2125, + "year": "2014" + }, + { + "id": 2127, + "model_id": 2125, + "year": "2015" + }, + { + "id": 2129, + "model_id": 2125, + "year": "2016" + }, + { + "id": 2131, + "model_id": 2131, + "year": "2015" + }, + { + "id": 2132, + "model_id": 2131, + "year": "2016" + }, + { + "id": 2133, + "model_id": 2133, + "year": "2015" + }, + { + "id": 2134, + "model_id": 2133, + "year": "2016" + }, + { + "id": 2135, + "model_id": 2135, + "year": "2014" + }, + { + "id": 2137, + "model_id": 2135, + "year": "2015" + }, + { + "id": 2139, + "model_id": 2135, + "year": "2016" + }, + { + "id": 2141, + "model_id": 2141, + "year": "2015" + }, + { + "id": 2142, + "model_id": 2141, + "year": "2016" + }, + { + "id": 2143, + "model_id": 2143, + "year": "1984" + }, + { + "id": 2147, + "model_id": 2143, + "year": "1985" + }, + { + "id": 2152, + "model_id": 2143, + "year": "1986" + }, + { + "id": 2157, + "model_id": 2143, + "year": "1987" + }, + { + "id": 2161, + "model_id": 2143, + "year": "1988" + }, + { + "id": 2166, + "model_id": 2166, + "year": "1989" + }, + { + "id": 2168, + "model_id": 2166, + "year": "1990" + }, + { + "id": 2170, + "model_id": 2166, + "year": "1991" + }, + { + "id": 2173, + "model_id": 2166, + "year": "1992" + }, + { + "id": 2175, + "model_id": 2166, + "year": "1993" + }, + { + "id": 2177, + "model_id": 2166, + "year": "1994" + }, + { + "id": 2179, + "model_id": 2166, + "year": "1995" + }, + { + "id": 2181, + "model_id": 2166, + "year": "2001" + }, + { + "id": 2183, + "model_id": 2166, + "year": "2002" + }, + { + "id": 2185, + "model_id": 2166, + "year": "2003" + }, + { + "id": 2187, + "model_id": 2166, + "year": "2004" + }, + { + "id": 2190, + "model_id": 2166, + "year": "2005" + }, + { + "id": 2192, + "model_id": 2166, + "year": "2006" + }, + { + "id": 2194, + "model_id": 2166, + "year": "2007" + }, + { + "id": 2196, + "model_id": 2196, + "year": "2001" + }, + { + "id": 2198, + "model_id": 2196, + "year": "2002" + }, + { + "id": 2200, + "model_id": 2196, + "year": "2003" + }, + { + "id": 2202, + "model_id": 2202, + "year": "1992" + }, + { + "id": 2203, + "model_id": 2202, + "year": "1993" + }, + { + "id": 2204, + "model_id": 2202, + "year": "1994" + }, + { + "id": 2205, + "model_id": 2202, + "year": "1995" + }, + { + "id": 2206, + "model_id": 2206, + "year": "2006" + }, + { + "id": 2208, + "model_id": 2206, + "year": "2007" + }, + { + "id": 2210, + "model_id": 2210, + "year": "1997" + }, + { + "id": 2212, + "model_id": 2210, + "year": "1998" + }, + { + "id": 2214, + "model_id": 2210, + "year": "1999" + }, + { + "id": 2216, + "model_id": 2210, + "year": "2000" + }, + { + "id": 2219, + "model_id": 2210, + "year": "2008" + }, + { + "id": 2221, + "model_id": 2210, + "year": "2009" + }, + { + "id": 2223, + "model_id": 2210, + "year": "2010" + }, + { + "id": 2225, + "model_id": 2210, + "year": "2011" + }, + { + "id": 2226, + "model_id": 2210, + "year": "2012" + }, + { + "id": 2227, + "model_id": 2210, + "year": "2013" + }, + { + "id": 2228, + "model_id": 2210, + "year": "2014" + }, + { + "id": 2229, + "model_id": 2210, + "year": "2015" + }, + { + "id": 2230, + "model_id": 2210, + "year": "2016" + }, + { + "id": 2231, + "model_id": 2231, + "year": "2000" + }, + { + "id": 2234, + "model_id": 2234, + "year": "1999" + }, + { + "id": 2236, + "model_id": 2236, + "year": "2009" + }, + { + "id": 2238, + "model_id": 2236, + "year": "2010" + }, + { + "id": 2240, + "model_id": 2236, + "year": "2012" + }, + { + "id": 2241, + "model_id": 2236, + "year": "2013" + }, + { + "id": 2242, + "model_id": 2236, + "year": "2014" + }, + { + "id": 2243, + "model_id": 2236, + "year": "2015" + }, + { + "id": 2244, + "model_id": 2236, + "year": "2016" + }, + { + "id": 2245, + "model_id": 2245, + "year": "2008" + }, + { + "id": 2247, + "model_id": 2247, + "year": "1994" + }, + { + "id": 2251, + "model_id": 2247, + "year": "1995" + }, + { + "id": 2253, + "model_id": 2247, + "year": "2001" + }, + { + "id": 2255, + "model_id": 2247, + "year": "2002" + }, + { + "id": 2257, + "model_id": 2247, + "year": "2003" + }, + { + "id": 2259, + "model_id": 2247, + "year": "2004" + }, + { + "id": 2262, + "model_id": 2247, + "year": "2005" + }, + { + "id": 2265, + "model_id": 2247, + "year": "2006" + }, + { + "id": 2268, + "model_id": 2247, + "year": "2007" + }, + { + "id": 2271, + "model_id": 2271, + "year": "1994" + }, + { + "id": 2273, + "model_id": 2271, + "year": "1995" + }, + { + "id": 2274, + "model_id": 2274, + "year": "2006" + }, + { + "id": 2276, + "model_id": 2274, + "year": "2007" + }, + { + "id": 2278, + "model_id": 2278, + "year": "2006" + }, + { + "id": 2280, + "model_id": 2278, + "year": "2007" + }, + { + "id": 2282, + "model_id": 2282, + "year": "2014" + }, + { + "id": 2283, + "model_id": 2282, + "year": "2015" + }, + { + "id": 2284, + "model_id": 2282, + "year": "2016" + }, + { + "id": 2285, + "model_id": 2285, + "year": "2014" + }, + { + "id": 2286, + "model_id": 2285, + "year": "2015" + }, + { + "id": 2287, + "model_id": 2285, + "year": "2016" + }, + { + "id": 2288, + "model_id": 2288, + "year": "1989" + }, + { + "id": 2291, + "model_id": 2288, + "year": "1990" + }, + { + "id": 2293, + "model_id": 2288, + "year": "1991" + }, + { + "id": 2295, + "model_id": 2288, + "year": "1992" + }, + { + "id": 2297, + "model_id": 2288, + "year": "1993" + }, + { + "id": 2299, + "model_id": 2288, + "year": "2008" + }, + { + "id": 2301, + "model_id": 2288, + "year": "2009" + }, + { + "id": 2303, + "model_id": 2288, + "year": "2010" + }, + { + "id": 2305, + "model_id": 2288, + "year": "2011" + }, + { + "id": 2307, + "model_id": 2288, + "year": "2012" + }, + { + "id": 2309, + "model_id": 2288, + "year": "2013" + }, + { + "id": 2311, + "model_id": 2288, + "year": "2014" + }, + { + "id": 2313, + "model_id": 2288, + "year": "2015" + }, + { + "id": 2314, + "model_id": 2288, + "year": "2016" + }, + { + "id": 2315, + "model_id": 2315, + "year": "2010" + }, + { + "id": 2316, + "model_id": 2315, + "year": "2011" + }, + { + "id": 2317, + "model_id": 2315, + "year": "2012" + }, + { + "id": 2318, + "model_id": 2315, + "year": "2013" + }, + { + "id": 2319, + "model_id": 2315, + "year": "2014" + }, + { + "id": 2320, + "model_id": 2315, + "year": "2015" + }, + { + "id": 2321, + "model_id": 2315, + "year": "2016" + }, + { + "id": 2322, + "model_id": 2322, + "year": "2009" + }, + { + "id": 2324, + "model_id": 2322, + "year": "2010" + }, + { + "id": 2326, + "model_id": 2326, + "year": "2009" + }, + { + "id": 2328, + "model_id": 2326, + "year": "2010" + }, + { + "id": 2330, + "model_id": 2326, + "year": "2011" + }, + { + "id": 2331, + "model_id": 2326, + "year": "2012" + }, + { + "id": 2332, + "model_id": 2326, + "year": "2013" + }, + { + "id": 2333, + "model_id": 2326, + "year": "2014" + }, + { + "id": 2334, + "model_id": 2326, + "year": "2015" + }, + { + "id": 2335, + "model_id": 2326, + "year": "2016" + }, + { + "id": 2336, + "model_id": 2336, + "year": "2011" + }, + { + "id": 2337, + "model_id": 2336, + "year": "2012" + }, + { + "id": 2338, + "model_id": 2336, + "year": "2013" + }, + { + "id": 2339, + "model_id": 2336, + "year": "2014" + }, + { + "id": 2340, + "model_id": 2336, + "year": "2015" + }, + { + "id": 2341, + "model_id": 2336, + "year": "2016" + }, + { + "id": 2342, + "model_id": 2342, + "year": "2008" + }, + { + "id": 2344, + "model_id": 2344, + "year": "2008" + }, + { + "id": 2346, + "model_id": 2346, + "year": "1994" + }, + { + "id": 2347, + "model_id": 2346, + "year": "1995" + }, + { + "id": 2349, + "model_id": 2346, + "year": "1997" + }, + { + "id": 2351, + "model_id": 2346, + "year": "1998" + }, + { + "id": 2353, + "model_id": 2346, + "year": "1999" + }, + { + "id": 2356, + "model_id": 2346, + "year": "2000" + }, + { + "id": 2359, + "model_id": 2346, + "year": "2001" + }, + { + "id": 2362, + "model_id": 2346, + "year": "2002" + }, + { + "id": 2365, + "model_id": 2346, + "year": "2003" + }, + { + "id": 2368, + "model_id": 2368, + "year": "2000" + }, + { + "id": 2369, + "model_id": 2368, + "year": "2001" + }, + { + "id": 2370, + "model_id": 2368, + "year": "2002" + }, + { + "id": 2371, + "model_id": 2368, + "year": "2003" + }, + { + "id": 2372, + "model_id": 2372, + "year": "1999" + }, + { + "id": 2373, + "model_id": 2373, + "year": "2004" + }, + { + "id": 2376, + "model_id": 2373, + "year": "2005" + }, + { + "id": 2379, + "model_id": 2379, + "year": "2010" + }, + { + "id": 2380, + "model_id": 2380, + "year": "2006" + }, + { + "id": 2383, + "model_id": 2380, + "year": "2007" + }, + { + "id": 2386, + "model_id": 2380, + "year": "2008" + }, + { + "id": 2388, + "model_id": 2380, + "year": "2009" + }, + { + "id": 2390, + "model_id": 2380, + "year": "2010" + }, + { + "id": 2392, + "model_id": 2380, + "year": "2011" + }, + { + "id": 2394, + "model_id": 2380, + "year": "2012" + }, + { + "id": 2396, + "model_id": 2380, + "year": "2013" + }, + { + "id": 2398, + "model_id": 2380, + "year": "2014" + }, + { + "id": 2399, + "model_id": 2380, + "year": "2015" + }, + { + "id": 2400, + "model_id": 2380, + "year": "2016" + }, + { + "id": 2401, + "model_id": 2401, + "year": "2011" + }, + { + "id": 2402, + "model_id": 2401, + "year": "2012" + }, + { + "id": 2403, + "model_id": 2401, + "year": "2013" + }, + { + "id": 2404, + "model_id": 2401, + "year": "2014" + }, + { + "id": 2405, + "model_id": 2401, + "year": "2015" + }, + { + "id": 2406, + "model_id": 2406, + "year": "2011" + }, + { + "id": 2407, + "model_id": 2406, + "year": "2012" + }, + { + "id": 2408, + "model_id": 2406, + "year": "2013" + }, + { + "id": 2409, + "model_id": 2406, + "year": "2014" + }, + { + "id": 2410, + "model_id": 2406, + "year": "2015" + }, + { + "id": 2411, + "model_id": 2406, + "year": "2016" + }, + { + "id": 2412, + "model_id": 2412, + "year": "2011" + }, + { + "id": 2413, + "model_id": 2412, + "year": "2012" + }, + { + "id": 2414, + "model_id": 2412, + "year": "2013" + }, + { + "id": 2415, + "model_id": 2412, + "year": "2014" + }, + { + "id": 2416, + "model_id": 2412, + "year": "2015" + }, + { + "id": 2417, + "model_id": 2412, + "year": "2017" + }, + { + "id": 2418, + "model_id": 2418, + "year": "2010" + }, + { + "id": 2419, + "model_id": 2419, + "year": "1984" + }, + { + "id": 2421, + "model_id": 2419, + "year": "1985" + }, + { + "id": 2423, + "model_id": 2419, + "year": "1986" + }, + { + "id": 2425, + "model_id": 2419, + "year": "1987" + }, + { + "id": 2428, + "model_id": 2419, + "year": "1988" + }, + { + "id": 2431, + "model_id": 2431, + "year": "1989" + }, + { + "id": 2433, + "model_id": 2433, + "year": "2012" + }, + { + "id": 2434, + "model_id": 2433, + "year": "2013" + }, + { + "id": 2435, + "model_id": 2433, + "year": "2014" + }, + { + "id": 2436, + "model_id": 2433, + "year": "2015" + }, + { + "id": 2437, + "model_id": 2433, + "year": "2016" + }, + { + "id": 2438, + "model_id": 2433, + "year": "2017" + }, + { + "id": 2439, + "model_id": 2439, + "year": "2012" + }, + { + "id": 2440, + "model_id": 2439, + "year": "2013" + }, + { + "id": 2441, + "model_id": 2439, + "year": "2014" + }, + { + "id": 2442, + "model_id": 2439, + "year": "2015" + }, + { + "id": 2443, + "model_id": 2439, + "year": "2016" + }, + { + "id": 2444, + "model_id": 2439, + "year": "2017" + }, + { + "id": 2445, + "model_id": 2445, + "year": "2013" + }, + { + "id": 2446, + "model_id": 2445, + "year": "2014" + }, + { + "id": 2447, + "model_id": 2445, + "year": "2015" + }, + { + "id": 2448, + "model_id": 2445, + "year": "2016" + }, + { + "id": 2449, + "model_id": 2445, + "year": "2017" + }, + { + "id": 2450, + "model_id": 2450, + "year": "2014" + }, + { + "id": 2451, + "model_id": 2450, + "year": "2015" + }, + { + "id": 2452, + "model_id": 2450, + "year": "2016" + }, + { + "id": 2453, + "model_id": 2450, + "year": "2017" + }, + { + "id": 2454, + "model_id": 2454, + "year": "2014" + }, + { + "id": 2455, + "model_id": 2454, + "year": "2015" + }, + { + "id": 2456, + "model_id": 2454, + "year": "2016" + }, + { + "id": 2457, + "model_id": 2454, + "year": "2017" + }, + { + "id": 2458, + "model_id": 2458, + "year": "2014" + }, + { + "id": 2459, + "model_id": 2458, + "year": "2015" + }, + { + "id": 2460, + "model_id": 2458, + "year": "2016" + }, + { + "id": 2461, + "model_id": 2458, + "year": "2017" + }, + { + "id": 2462, + "model_id": 2462, + "year": "2004" + }, + { + "id": 2465, + "model_id": 2462, + "year": "2005" + }, + { + "id": 2468, + "model_id": 2468, + "year": "2004" + }, + { + "id": 2471, + "model_id": 2468, + "year": "2005" + }, + { + "id": 2474, + "model_id": 2474, + "year": "2006" + }, + { + "id": 2477, + "model_id": 2474, + "year": "2007" + }, + { + "id": 2480, + "model_id": 2474, + "year": "2008" + }, + { + "id": 2482, + "model_id": 2474, + "year": "2009" + }, + { + "id": 2484, + "model_id": 2474, + "year": "2010" + }, + { + "id": 2486, + "model_id": 2486, + "year": "2006" + }, + { + "id": 2489, + "model_id": 2486, + "year": "2007" + }, + { + "id": 2492, + "model_id": 2486, + "year": "2008" + }, + { + "id": 2494, + "model_id": 2486, + "year": "2009" + }, + { + "id": 2496, + "model_id": 2486, + "year": "2010" + }, + { + "id": 2498, + "model_id": 2498, + "year": "2012" + }, + { + "id": 2500, + "model_id": 2498, + "year": "2013" + }, + { + "id": 2501, + "model_id": 2498, + "year": "2014" + }, + { + "id": 2502, + "model_id": 2498, + "year": "2015" + }, + { + "id": 2503, + "model_id": 2498, + "year": "2016" + }, + { + "id": 2504, + "model_id": 2504, + "year": "2012" + }, + { + "id": 2505, + "model_id": 2504, + "year": "2013" + }, + { + "id": 2506, + "model_id": 2506, + "year": "2012" + }, + { + "id": 2508, + "model_id": 2506, + "year": "2013" + }, + { + "id": 2509, + "model_id": 2506, + "year": "2014" + }, + { + "id": 2510, + "model_id": 2506, + "year": "2015" + }, + { + "id": 2511, + "model_id": 2506, + "year": "2016" + }, + { + "id": 2512, + "model_id": 2512, + "year": "2012" + }, + { + "id": 2513, + "model_id": 2512, + "year": "2013" + }, + { + "id": 2514, + "model_id": 2514, + "year": "2013" + }, + { + "id": 2515, + "model_id": 2514, + "year": "2014" + }, + { + "id": 2516, + "model_id": 2514, + "year": "2015" + }, + { + "id": 2517, + "model_id": 2514, + "year": "2016" + }, + { + "id": 2518, + "model_id": 2518, + "year": "2014" + }, + { + "id": 2519, + "model_id": 2518, + "year": "2015" + }, + { + "id": 2520, + "model_id": 2518, + "year": "2016" + }, + { + "id": 2521, + "model_id": 2518, + "year": "2017" + }, + { + "id": 2522, + "model_id": 2522, + "year": "2014" + }, + { + "id": 2523, + "model_id": 2522, + "year": "2015" + }, + { + "id": 2524, + "model_id": 2522, + "year": "2016" + }, + { + "id": 2525, + "model_id": 2522, + "year": "2017" + }, + { + "id": 2526, + "model_id": 2526, + "year": "2013" + }, + { + "id": 2527, + "model_id": 2526, + "year": "2014" + }, + { + "id": 2528, + "model_id": 2526, + "year": "2015" + }, + { + "id": 2529, + "model_id": 2526, + "year": "2016" + }, + { + "id": 2530, + "model_id": 2526, + "year": "2017" + }, + { + "id": 2531, + "model_id": 2531, + "year": "1984" + }, + { + "id": 2533, + "model_id": 2531, + "year": "1985" + }, + { + "id": 2535, + "model_id": 2531, + "year": "1986" + }, + { + "id": 2537, + "model_id": 2531, + "year": "1987" + }, + { + "id": 2539, + "model_id": 2531, + "year": "1988" + }, + { + "id": 2541, + "model_id": 2541, + "year": "1989" + }, + { + "id": 2544, + "model_id": 2541, + "year": "1990" + }, + { + "id": 2546, + "model_id": 2541, + "year": "1991" + }, + { + "id": 2548, + "model_id": 2541, + "year": "1992" + }, + { + "id": 2549, + "model_id": 2549, + "year": "1991" + }, + { + "id": 2550, + "model_id": 2550, + "year": "1989" + }, + { + "id": 2552, + "model_id": 2550, + "year": "1990" + }, + { + "id": 2553, + "model_id": 2550, + "year": "1991" + }, + { + "id": 2555, + "model_id": 2550, + "year": "1992" + }, + { + "id": 2557, + "model_id": 2557, + "year": "1993" + }, + { + "id": 2558, + "model_id": 2557, + "year": "1994" + }, + { + "id": 2559, + "model_id": 2557, + "year": "1995" + }, + { + "id": 2560, + "model_id": 2557, + "year": "1998" + }, + { + "id": 2561, + "model_id": 2557, + "year": "1999" + }, + { + "id": 2563, + "model_id": 2557, + "year": "2001" + }, + { + "id": 2565, + "model_id": 2557, + "year": "2011" + }, + { + "id": 2566, + "model_id": 2557, + "year": "2012" + }, + { + "id": 2567, + "model_id": 2557, + "year": "2013" + }, + { + "id": 2568, + "model_id": 2557, + "year": "2014" + }, + { + "id": 2569, + "model_id": 2557, + "year": "2015" + }, + { + "id": 2570, + "model_id": 2557, + "year": "2016" + }, + { + "id": 2571, + "model_id": 2571, + "year": "2017" + }, + { + "id": 2572, + "model_id": 2572, + "year": "2000" + }, + { + "id": 2574, + "model_id": 2574, + "year": "1993" + }, + { + "id": 2575, + "model_id": 2574, + "year": "1994" + }, + { + "id": 2576, + "model_id": 2574, + "year": "1995" + }, + { + "id": 2577, + "model_id": 2574, + "year": "1996" + }, + { + "id": 2578, + "model_id": 2574, + "year": "1997" + }, + { + "id": 2579, + "model_id": 2574, + "year": "1998" + }, + { + "id": 2580, + "model_id": 2574, + "year": "1999" + }, + { + "id": 2581, + "model_id": 2574, + "year": "2001" + }, + { + "id": 2582, + "model_id": 2582, + "year": "2000" + }, + { + "id": 2583, + "model_id": 2583, + "year": "2015" + }, + { + "id": 2584, + "model_id": 2584, + "year": "2011" + }, + { + "id": 2585, + "model_id": 2584, + "year": "2012" + }, + { + "id": 2586, + "model_id": 2584, + "year": "2013" + }, + { + "id": 2587, + "model_id": 2584, + "year": "2014" + }, + { + "id": 2588, + "model_id": 2584, + "year": "2015" + }, + { + "id": 2589, + "model_id": 2589, + "year": "2013" + }, + { + "id": 2590, + "model_id": 2589, + "year": "2014" + }, + { + "id": 2591, + "model_id": 2589, + "year": "2015" + }, + { + "id": 2592, + "model_id": 2592, + "year": "2002" + }, + { + "id": 2593, + "model_id": 2592, + "year": "2003" + }, + { + "id": 2594, + "model_id": 2592, + "year": "2004" + }, + { + "id": 2595, + "model_id": 2592, + "year": "2005" + }, + { + "id": 2596, + "model_id": 2596, + "year": "2002" + }, + { + "id": 2597, + "model_id": 2596, + "year": "2003" + }, + { + "id": 2598, + "model_id": 2596, + "year": "2004" + }, + { + "id": 2599, + "model_id": 2596, + "year": "2005" + }, + { + "id": 2600, + "model_id": 2600, + "year": "1988" + }, + { + "id": 2601, + "model_id": 2601, + "year": "1991" + }, + { + "id": 2602, + "model_id": 2601, + "year": "2006" + }, + { + "id": 2603, + "model_id": 2601, + "year": "2007" + }, + { + "id": 2604, + "model_id": 2601, + "year": "2008" + }, + { + "id": 2605, + "model_id": 2601, + "year": "2009" + }, + { + "id": 2606, + "model_id": 2601, + "year": "2010" + }, + { + "id": 2607, + "model_id": 2601, + "year": "2011" + }, + { + "id": 2608, + "model_id": 2601, + "year": "2012" + }, + { + "id": 2609, + "model_id": 2601, + "year": "2013" + }, + { + "id": 2610, + "model_id": 2601, + "year": "2014" + }, + { + "id": 2611, + "model_id": 2601, + "year": "2015" + }, + { + "id": 2612, + "model_id": 2601, + "year": "2016" + }, + { + "id": 2613, + "model_id": 2613, + "year": "2010" + }, + { + "id": 2614, + "model_id": 2613, + "year": "2011" + }, + { + "id": 2615, + "model_id": 2613, + "year": "2012" + }, + { + "id": 2616, + "model_id": 2613, + "year": "2013" + }, + { + "id": 2617, + "model_id": 2613, + "year": "2014" + }, + { + "id": 2618, + "model_id": 2613, + "year": "2015" + }, + { + "id": 2619, + "model_id": 2613, + "year": "2016" + }, + { + "id": 2620, + "model_id": 2620, + "year": "1989" + }, + { + "id": 2622, + "model_id": 2620, + "year": "1990" + }, + { + "id": 2623, + "model_id": 2620, + "year": "1991" + }, + { + "id": 2625, + "model_id": 2620, + "year": "1992" + }, + { + "id": 2626, + "model_id": 2620, + "year": "1993" + }, + { + "id": 2627, + "model_id": 2620, + "year": "1994" + }, + { + "id": 2628, + "model_id": 2620, + "year": "1995" + }, + { + "id": 2629, + "model_id": 2620, + "year": "1996" + }, + { + "id": 2630, + "model_id": 2620, + "year": "1997" + }, + { + "id": 2631, + "model_id": 2620, + "year": "1998" + }, + { + "id": 2632, + "model_id": 2620, + "year": "1999" + }, + { + "id": 2633, + "model_id": 2620, + "year": "2001" + }, + { + "id": 2634, + "model_id": 2634, + "year": "2000" + }, + { + "id": 2635, + "model_id": 2635, + "year": "2006" + }, + { + "id": 2636, + "model_id": 2635, + "year": "2007" + }, + { + "id": 2637, + "model_id": 2635, + "year": "2008" + }, + { + "id": 2638, + "model_id": 2635, + "year": "2009" + }, + { + "id": 2639, + "model_id": 2639, + "year": "2010" + }, + { + "id": 2640, + "model_id": 2639, + "year": "2011" + }, + { + "id": 2641, + "model_id": 2639, + "year": "2012" + }, + { + "id": 2642, + "model_id": 2639, + "year": "2013" + }, + { + "id": 2643, + "model_id": 2639, + "year": "2014" + }, + { + "id": 2644, + "model_id": 2639, + "year": "2015" + }, + { + "id": 2645, + "model_id": 2645, + "year": "2010" + }, + { + "id": 2646, + "model_id": 2645, + "year": "2011" + }, + { + "id": 2647, + "model_id": 2645, + "year": "2012" + }, + { + "id": 2648, + "model_id": 2645, + "year": "2013" + }, + { + "id": 2649, + "model_id": 2645, + "year": "2014" + }, + { + "id": 2650, + "model_id": 2645, + "year": "2015" + }, + { + "id": 2651, + "model_id": 2651, + "year": "2004" + }, + { + "id": 2652, + "model_id": 2651, + "year": "2005" + }, + { + "id": 2653, + "model_id": 2651, + "year": "2006" + }, + { + "id": 2654, + "model_id": 2654, + "year": "2003" + }, + { + "id": 2655, + "model_id": 2654, + "year": "2004" + }, + { + "id": 2656, + "model_id": 2654, + "year": "2005" + }, + { + "id": 2657, + "model_id": 2654, + "year": "2006" + }, + { + "id": 2658, + "model_id": 2654, + "year": "2007" + }, + { + "id": 2659, + "model_id": 2654, + "year": "2008" + }, + { + "id": 2660, + "model_id": 2660, + "year": "2010" + }, + { + "id": 2661, + "model_id": 2660, + "year": "2011" + }, + { + "id": 2662, + "model_id": 2660, + "year": "2012" + }, + { + "id": 2663, + "model_id": 2660, + "year": "2013" + }, + { + "id": 2664, + "model_id": 2660, + "year": "2014" + }, + { + "id": 2665, + "model_id": 2660, + "year": "2015" + }, + { + "id": 2666, + "model_id": 2666, + "year": "1994" + }, + { + "id": 2667, + "model_id": 2666, + "year": "1995" + }, + { + "id": 2668, + "model_id": 2666, + "year": "1996" + }, + { + "id": 2669, + "model_id": 2666, + "year": "1997" + }, + { + "id": 2670, + "model_id": 2670, + "year": "1993" + }, + { + "id": 2672, + "model_id": 2670, + "year": "1994" + }, + { + "id": 2673, + "model_id": 2670, + "year": "1995" + }, + { + "id": 2674, + "model_id": 2670, + "year": "1996" + }, + { + "id": 2675, + "model_id": 2670, + "year": "1997" + }, + { + "id": 2676, + "model_id": 2676, + "year": "1994" + }, + { + "id": 2677, + "model_id": 2676, + "year": "1995" + }, + { + "id": 2678, + "model_id": 2678, + "year": "1991" + }, + { + "id": 2680, + "model_id": 2678, + "year": "1992" + }, + { + "id": 2682, + "model_id": 2682, + "year": "2011" + }, + { + "id": 2683, + "model_id": 2683, + "year": "2013" + }, + { + "id": 2684, + "model_id": 2683, + "year": "2014" + }, + { + "id": 2685, + "model_id": 2683, + "year": "2015" + }, + { + "id": 2686, + "model_id": 2686, + "year": "2012" + }, + { + "id": 2687, + "model_id": 2686, + "year": "2013" + }, + { + "id": 2688, + "model_id": 2686, + "year": "2014" + }, + { + "id": 2689, + "model_id": 2686, + "year": "2015" + }, + { + "id": 2690, + "model_id": 2686, + "year": "2016" + }, + { + "id": 2691, + "model_id": 2691, + "year": "2012" + }, + { + "id": 2692, + "model_id": 2692, + "year": "2011" + }, + { + "id": 2693, + "model_id": 2693, + "year": "2012" + }, + { + "id": 2694, + "model_id": 2693, + "year": "2013" + }, + { + "id": 2695, + "model_id": 2693, + "year": "2014" + }, + { + "id": 2696, + "model_id": 2693, + "year": "2015" + }, + { + "id": 2697, + "model_id": 2697, + "year": "2011" + }, + { + "id": 2698, + "model_id": 2698, + "year": "2010" + }, + { + "id": 2699, + "model_id": 2698, + "year": "2011" + }, + { + "id": 2700, + "model_id": 2700, + "year": "2015" + }, + { + "id": 2701, + "model_id": 2700, + "year": "2016" + }, + { + "id": 2702, + "model_id": 2702, + "year": "2017" + }, + { + "id": 2703, + "model_id": 2703, + "year": "2011" + }, + { + "id": 2704, + "model_id": 2703, + "year": "2012" + }, + { + "id": 2705, + "model_id": 2703, + "year": "2013" + }, + { + "id": 2706, + "model_id": 2703, + "year": "2014" + }, + { + "id": 2707, + "model_id": 2703, + "year": "2015" + }, + { + "id": 2708, + "model_id": 2708, + "year": "2011" + }, + { + "id": 2709, + "model_id": 2708, + "year": "2012" + }, + { + "id": 2710, + "model_id": 2708, + "year": "2013" + }, + { + "id": 2711, + "model_id": 2708, + "year": "2014" + }, + { + "id": 2712, + "model_id": 2708, + "year": "2015" + }, + { + "id": 2713, + "model_id": 2713, + "year": "2011" + }, + { + "id": 2714, + "model_id": 2713, + "year": "2012" + }, + { + "id": 2715, + "model_id": 2713, + "year": "2013" + }, + { + "id": 2716, + "model_id": 2713, + "year": "2014" + }, + { + "id": 2717, + "model_id": 2713, + "year": "2015" + }, + { + "id": 2718, + "model_id": 2718, + "year": "2011" + }, + { + "id": 2719, + "model_id": 2718, + "year": "2012" + }, + { + "id": 2720, + "model_id": 2718, + "year": "2013" + }, + { + "id": 2721, + "model_id": 2718, + "year": "2014" + }, + { + "id": 2722, + "model_id": 2718, + "year": "2015" + }, + { + "id": 2723, + "model_id": 2723, + "year": "2014" + }, + { + "id": 2724, + "model_id": 2723, + "year": "2015" + }, + { + "id": 2725, + "model_id": 2723, + "year": "2016" + }, + { + "id": 2726, + "model_id": 2726, + "year": "2014" + }, + { + "id": 2727, + "model_id": 2726, + "year": "2015" + }, + { + "id": 2728, + "model_id": 2726, + "year": "2016" + }, + { + "id": 2729, + "model_id": 2729, + "year": "2014" + }, + { + "id": 2730, + "model_id": 2729, + "year": "2015" + }, + { + "id": 2731, + "model_id": 2729, + "year": "2016" + }, + { + "id": 2732, + "model_id": 2732, + "year": "1999" + }, + { + "id": 2733, + "model_id": 2732, + "year": "2000" + }, + { + "id": 2734, + "model_id": 2732, + "year": "2001" + }, + { + "id": 2735, + "model_id": 2735, + "year": "1998" + }, + { + "id": 2736, + "model_id": 2735, + "year": "1999" + }, + { + "id": 2737, + "model_id": 2735, + "year": "2000" + }, + { + "id": 2738, + "model_id": 2735, + "year": "2001" + }, + { + "id": 2739, + "model_id": 2739, + "year": "2011" + }, + { + "id": 2740, + "model_id": 2740, + "year": "2016" + }, + { + "id": 2742, + "model_id": 2742, + "year": "2014" + }, + { + "id": 2744, + "model_id": 2742, + "year": "2015" + }, + { + "id": 2746, + "model_id": 2742, + "year": "2016" + }, + { + "id": 2748, + "model_id": 2748, + "year": "2015" + }, + { + "id": 2750, + "model_id": 2748, + "year": "2016" + }, + { + "id": 2752, + "model_id": 2752, + "year": "2015" + }, + { + "id": 2753, + "model_id": 2752, + "year": "2016" + }, + { + "id": 2754, + "model_id": 2754, + "year": "2016" + }, + { + "id": 2755, + "model_id": 2755, + "year": "1989" + }, + { + "id": 2756, + "model_id": 2755, + "year": "1990" + }, + { + "id": 2757, + "model_id": 2755, + "year": "1991" + }, + { + "id": 2758, + "model_id": 2755, + "year": "1995" + }, + { + "id": 2760, + "model_id": 2755, + "year": "1996" + }, + { + "id": 2761, + "model_id": 2755, + "year": "1997" + }, + { + "id": 2763, + "model_id": 2755, + "year": "1998" + }, + { + "id": 2765, + "model_id": 2755, + "year": "1999" + }, + { + "id": 2766, + "model_id": 2755, + "year": "2001" + }, + { + "id": 2767, + "model_id": 2755, + "year": "2002" + }, + { + "id": 2768, + "model_id": 2755, + "year": "2003" + }, + { + "id": 2770, + "model_id": 2755, + "year": "2004" + }, + { + "id": 2772, + "model_id": 2755, + "year": "2005" + }, + { + "id": 2774, + "model_id": 2755, + "year": "2006" + }, + { + "id": 2776, + "model_id": 2755, + "year": "2008" + }, + { + "id": 2778, + "model_id": 2755, + "year": "2009" + }, + { + "id": 2780, + "model_id": 2755, + "year": "2010" + }, + { + "id": 2782, + "model_id": 2755, + "year": "2015" + }, + { + "id": 2784, + "model_id": 2755, + "year": "2016" + }, + { + "id": 2786, + "model_id": 2786, + "year": "1998" + }, + { + "id": 2788, + "model_id": 2786, + "year": "1999" + }, + { + "id": 2790, + "model_id": 2786, + "year": "2001" + }, + { + "id": 2791, + "model_id": 2786, + "year": "2002" + }, + { + "id": 2792, + "model_id": 2786, + "year": "2003" + }, + { + "id": 2794, + "model_id": 2786, + "year": "2004" + }, + { + "id": 2796, + "model_id": 2786, + "year": "2005" + }, + { + "id": 2798, + "model_id": 2786, + "year": "2006" + }, + { + "id": 2800, + "model_id": 2786, + "year": "2008" + }, + { + "id": 2802, + "model_id": 2786, + "year": "2009" + }, + { + "id": 2804, + "model_id": 2786, + "year": "2010" + }, + { + "id": 2806, + "model_id": 2786, + "year": "2011" + }, + { + "id": 2808, + "model_id": 2786, + "year": "2012" + }, + { + "id": 2810, + "model_id": 2786, + "year": "2013" + }, + { + "id": 2812, + "model_id": 2812, + "year": "2008" + }, + { + "id": 2814, + "model_id": 2812, + "year": "2009" + }, + { + "id": 2816, + "model_id": 2812, + "year": "2010" + }, + { + "id": 2818, + "model_id": 2812, + "year": "2011" + }, + { + "id": 2820, + "model_id": 2812, + "year": "2012" + }, + { + "id": 2822, + "model_id": 2812, + "year": "2013" + }, + { + "id": 2824, + "model_id": 2824, + "year": "2011" + }, + { + "id": 2826, + "model_id": 2826, + "year": "2015" + }, + { + "id": 2828, + "model_id": 2826, + "year": "2016" + }, + { + "id": 2830, + "model_id": 2830, + "year": "2015" + }, + { + "id": 2832, + "model_id": 2830, + "year": "2016" + }, + { + "id": 2834, + "model_id": 2834, + "year": "2016" + }, + { + "id": 2835, + "model_id": 2835, + "year": "1991" + }, + { + "id": 2836, + "model_id": 2835, + "year": "1992" + }, + { + "id": 2837, + "model_id": 2835, + "year": "1993" + }, + { + "id": 2838, + "model_id": 2835, + "year": "2000" + }, + { + "id": 2839, + "model_id": 2835, + "year": "2001" + }, + { + "id": 2840, + "model_id": 2835, + "year": "2002" + }, + { + "id": 2841, + "model_id": 2835, + "year": "2003" + }, + { + "id": 2842, + "model_id": 2835, + "year": "2006" + }, + { + "id": 2843, + "model_id": 2835, + "year": "2007" + }, + { + "id": 2845, + "model_id": 2835, + "year": "2008" + }, + { + "id": 2847, + "model_id": 2835, + "year": "2009" + }, + { + "id": 2849, + "model_id": 2835, + "year": "2010" + }, + { + "id": 2851, + "model_id": 2835, + "year": "2013" + }, + { + "id": 2853, + "model_id": 2835, + "year": "2014" + }, + { + "id": 2855, + "model_id": 2835, + "year": "2015" + }, + { + "id": 2857, + "model_id": 2835, + "year": "2016" + }, + { + "id": 2859, + "model_id": 2859, + "year": "1989" + }, + { + "id": 2860, + "model_id": 2859, + "year": "2006" + }, + { + "id": 2861, + "model_id": 2859, + "year": "2007" + }, + { + "id": 2863, + "model_id": 2859, + "year": "2008" + }, + { + "id": 2865, + "model_id": 2859, + "year": "2009" + }, + { + "id": 2867, + "model_id": 2859, + "year": "2010" + }, + { + "id": 2869, + "model_id": 2869, + "year": "2007" + }, + { + "id": 2871, + "model_id": 2869, + "year": "2008" + }, + { + "id": 2873, + "model_id": 2869, + "year": "2009" + }, + { + "id": 2875, + "model_id": 2869, + "year": "2010" + }, + { + "id": 2877, + "model_id": 2869, + "year": "2012" + }, + { + "id": 2878, + "model_id": 2869, + "year": "2013" + }, + { + "id": 2880, + "model_id": 2869, + "year": "2014" + }, + { + "id": 2882, + "model_id": 2869, + "year": "2015" + }, + { + "id": 2884, + "model_id": 2869, + "year": "2016" + }, + { + "id": 2886, + "model_id": 2869, + "year": "2017" + }, + { + "id": 2888, + "model_id": 2888, + "year": "2013" + }, + { + "id": 2890, + "model_id": 2888, + "year": "2014" + }, + { + "id": 2892, + "model_id": 2888, + "year": "2015" + }, + { + "id": 2894, + "model_id": 2888, + "year": "2016" + }, + { + "id": 2896, + "model_id": 2888, + "year": "2017" + }, + { + "id": 2898, + "model_id": 2898, + "year": "2013" + }, + { + "id": 2900, + "model_id": 2898, + "year": "2014" + }, + { + "id": 2902, + "model_id": 2898, + "year": "2015" + }, + { + "id": 2904, + "model_id": 2898, + "year": "2016" + }, + { + "id": 2906, + "model_id": 2898, + "year": "2017" + }, + { + "id": 2908, + "model_id": 2908, + "year": "2013" + }, + { + "id": 2909, + "model_id": 2908, + "year": "2014" + }, + { + "id": 2910, + "model_id": 2908, + "year": "2015" + }, + { + "id": 2911, + "model_id": 2911, + "year": "2013" + }, + { + "id": 2912, + "model_id": 2911, + "year": "2014" + }, + { + "id": 2913, + "model_id": 2911, + "year": "2015" + }, + { + "id": 2914, + "model_id": 2911, + "year": "2016" + }, + { + "id": 2915, + "model_id": 2915, + "year": "2013" + }, + { + "id": 2916, + "model_id": 2915, + "year": "2014" + }, + { + "id": 2917, + "model_id": 2915, + "year": "2015" + }, + { + "id": 2918, + "model_id": 2918, + "year": "2004" + }, + { + "id": 2922, + "model_id": 2918, + "year": "2005" + }, + { + "id": 2926, + "model_id": 2918, + "year": "2006" + }, + { + "id": 2928, + "model_id": 2928, + "year": "2007" + }, + { + "id": 2930, + "model_id": 2930, + "year": "2007" + }, + { + "id": 2932, + "model_id": 2930, + "year": "2008" + }, + { + "id": 2934, + "model_id": 2934, + "year": "2016" + }, + { + "id": 2935, + "model_id": 2934, + "year": "2017" + }, + { + "id": 2936, + "model_id": 2936, + "year": "2015" + }, + { + "id": 2937, + "model_id": 2937, + "year": "2015" + }, + { + "id": 2938, + "model_id": 2937, + "year": "2016" + }, + { + "id": 2939, + "model_id": 2939, + "year": "2011" + }, + { + "id": 2940, + "model_id": 2939, + "year": "2012" + }, + { + "id": 2941, + "model_id": 2939, + "year": "2013" + }, + { + "id": 2942, + "model_id": 2939, + "year": "2014" + }, + { + "id": 2943, + "model_id": 2939, + "year": "2015" + }, + { + "id": 2944, + "model_id": 2939, + "year": "2016" + }, + { + "id": 2945, + "model_id": 2939, + "year": "2017" + }, + { + "id": 2946, + "model_id": 2946, + "year": "2009" + }, + { + "id": 2948, + "model_id": 2946, + "year": "2010" + }, + { + "id": 2950, + "model_id": 2950, + "year": "2011" + }, + { + "id": 2951, + "model_id": 2950, + "year": "2012" + }, + { + "id": 2952, + "model_id": 2950, + "year": "2013" + }, + { + "id": 2953, + "model_id": 2950, + "year": "2014" + }, + { + "id": 2954, + "model_id": 2950, + "year": "2015" + }, + { + "id": 2955, + "model_id": 2950, + "year": "2016" + }, + { + "id": 2956, + "model_id": 2950, + "year": "2017" + }, + { + "id": 2957, + "model_id": 2957, + "year": "2016" + }, + { + "id": 2958, + "model_id": 2957, + "year": "2017" + }, + { + "id": 2959, + "model_id": 2959, + "year": "2015" + }, + { + "id": 2960, + "model_id": 2959, + "year": "2016" + }, + { + "id": 2961, + "model_id": 2961, + "year": "2015" + }, + { + "id": 2962, + "model_id": 2961, + "year": "2016" + }, + { + "id": 2963, + "model_id": 2963, + "year": "2000" + }, + { + "id": 2964, + "model_id": 2963, + "year": "2001" + }, + { + "id": 2969, + "model_id": 2963, + "year": "2002" + }, + { + "id": 2972, + "model_id": 2963, + "year": "2003" + }, + { + "id": 2975, + "model_id": 2963, + "year": "2004" + }, + { + "id": 2978, + "model_id": 2963, + "year": "2005" + }, + { + "id": 2981, + "model_id": 2963, + "year": "2006" + }, + { + "id": 2984, + "model_id": 2984, + "year": "2007" + }, + { + "id": 2985, + "model_id": 2984, + "year": "2008" + }, + { + "id": 2986, + "model_id": 2986, + "year": "2002" + }, + { + "id": 2987, + "model_id": 2986, + "year": "2003" + }, + { + "id": 2988, + "model_id": 2988, + "year": "2007" + }, + { + "id": 2989, + "model_id": 2988, + "year": "2008" + }, + { + "id": 2990, + "model_id": 2990, + "year": "2004" + }, + { + "id": 2991, + "model_id": 2991, + "year": "2005" + }, + { + "id": 2992, + "model_id": 2991, + "year": "2006" + }, + { + "id": 2993, + "model_id": 2993, + "year": "2013" + }, + { + "id": 2994, + "model_id": 2993, + "year": "2015" + }, + { + "id": 2995, + "model_id": 2993, + "year": "2016" + }, + { + "id": 2996, + "model_id": 2996, + "year": "2014" + }, + { + "id": 2997, + "model_id": 2996, + "year": "2015" + }, + { + "id": 2998, + "model_id": 2996, + "year": "2016" + }, + { + "id": 2999, + "model_id": 2999, + "year": "2009" + }, + { + "id": 3000, + "model_id": 2999, + "year": "2010" + }, + { + "id": 3001, + "model_id": 3001, + "year": "2009" + }, + { + "id": 3002, + "model_id": 3001, + "year": "2010" + }, + { + "id": 3003, + "model_id": 3001, + "year": "2011" + }, + { + "id": 3004, + "model_id": 3001, + "year": "2012" + }, + { + "id": 3005, + "model_id": 3001, + "year": "2013" + }, + { + "id": 3006, + "model_id": 3001, + "year": "2014" + }, + { + "id": 3007, + "model_id": 3001, + "year": "2015" + }, + { + "id": 3008, + "model_id": 3001, + "year": "2016" + }, + { + "id": 3009, + "model_id": 3009, + "year": "2011" + }, + { + "id": 3010, + "model_id": 3009, + "year": "2012" + }, + { + "id": 3011, + "model_id": 3009, + "year": "2013" + }, + { + "id": 3012, + "model_id": 3009, + "year": "2014" + }, + { + "id": 3013, + "model_id": 3009, + "year": "2015" + }, + { + "id": 3014, + "model_id": 3009, + "year": "2016" + }, + { + "id": 3015, + "model_id": 3015, + "year": "2016" + }, + { + "id": 3016, + "model_id": 3016, + "year": "2009" + }, + { + "id": 3017, + "model_id": 3016, + "year": "2010" + }, + { + "id": 3018, + "model_id": 3018, + "year": "2011" + }, + { + "id": 3019, + "model_id": 3018, + "year": "2012" + }, + { + "id": 3020, + "model_id": 3018, + "year": "2013" + }, + { + "id": 3021, + "model_id": 3018, + "year": "2014" + }, + { + "id": 3022, + "model_id": 3018, + "year": "2015" + }, + { + "id": 3023, + "model_id": 3018, + "year": "2016" + }, + { + "id": 3024, + "model_id": 3024, + "year": "2010" + }, + { + "id": 3025, + "model_id": 3024, + "year": "2011" + }, + { + "id": 3026, + "model_id": 3024, + "year": "2012" + }, + { + "id": 3027, + "model_id": 3027, + "year": "2013" + }, + { + "id": 3028, + "model_id": 3027, + "year": "2014" + }, + { + "id": 3029, + "model_id": 3027, + "year": "2015" + }, + { + "id": 3030, + "model_id": 3027, + "year": "2016" + }, + { + "id": 3031, + "model_id": 3031, + "year": "2015" + }, + { + "id": 3032, + "model_id": 3031, + "year": "2016" + }, + { + "id": 3033, + "model_id": 3033, + "year": "2008" + }, + { + "id": 3034, + "model_id": 3033, + "year": "2009" + }, + { + "id": 3035, + "model_id": 3033, + "year": "2010" + }, + { + "id": 3036, + "model_id": 3033, + "year": "2011" + }, + { + "id": 3037, + "model_id": 3033, + "year": "2012" + }, + { + "id": 3038, + "model_id": 3033, + "year": "2013" + }, + { + "id": 3039, + "model_id": 3033, + "year": "2014" + }, + { + "id": 3040, + "model_id": 3033, + "year": "2015" + }, + { + "id": 3041, + "model_id": 3033, + "year": "2016" + }, + { + "id": 3042, + "model_id": 3042, + "year": "2008" + }, + { + "id": 3043, + "model_id": 3042, + "year": "2009" + }, + { + "id": 3044, + "model_id": 3042, + "year": "2010" + }, + { + "id": 3045, + "model_id": 3042, + "year": "2011" + }, + { + "id": 3046, + "model_id": 3042, + "year": "2012" + }, + { + "id": 3047, + "model_id": 3042, + "year": "2013" + }, + { + "id": 3048, + "model_id": 3042, + "year": "2014" + }, + { + "id": 3049, + "model_id": 3042, + "year": "2015" + }, + { + "id": 3050, + "model_id": 3042, + "year": "2016" + }, + { + "id": 3051, + "model_id": 3051, + "year": "2010" + }, + { + "id": 3052, + "model_id": 3051, + "year": "2011" + }, + { + "id": 3053, + "model_id": 3051, + "year": "2012" + }, + { + "id": 3054, + "model_id": 3054, + "year": "1999" + }, + { + "id": 3056, + "model_id": 3054, + "year": "2000" + }, + { + "id": 3058, + "model_id": 3054, + "year": "2001" + }, + { + "id": 3060, + "model_id": 3054, + "year": "2002" + }, + { + "id": 3062, + "model_id": 3062, + "year": "1996" + }, + { + "id": 3064, + "model_id": 3062, + "year": "1997" + }, + { + "id": 3070, + "model_id": 3062, + "year": "1998" + }, + { + "id": 3074, + "model_id": 3062, + "year": "1999" + }, + { + "id": 3078, + "model_id": 3062, + "year": "2000" + }, + { + "id": 3082, + "model_id": 3062, + "year": "2001" + }, + { + "id": 3086, + "model_id": 3062, + "year": "2002" + }, + { + "id": 3090, + "model_id": 3090, + "year": "2006" + }, + { + "id": 3092, + "model_id": 3090, + "year": "2007" + }, + { + "id": 3094, + "model_id": 3090, + "year": "2008" + }, + { + "id": 3096, + "model_id": 3096, + "year": "2006" + }, + { + "id": 3098, + "model_id": 3096, + "year": "2007" + }, + { + "id": 3100, + "model_id": 3096, + "year": "2008" + }, + { + "id": 3102, + "model_id": 3102, + "year": "2006" + }, + { + "id": 3104, + "model_id": 3104, + "year": "2007" + }, + { + "id": 3106, + "model_id": 3104, + "year": "2008" + }, + { + "id": 3108, + "model_id": 3108, + "year": "2006" + }, + { + "id": 3109, + "model_id": 3108, + "year": "2007" + }, + { + "id": 3110, + "model_id": 3108, + "year": "2008" + }, + { + "id": 3111, + "model_id": 3111, + "year": "2006" + }, + { + "id": 3112, + "model_id": 3111, + "year": "2007" + }, + { + "id": 3113, + "model_id": 3111, + "year": "2008" + }, + { + "id": 3114, + "model_id": 3114, + "year": "2003" + }, + { + "id": 3120, + "model_id": 3114, + "year": "2004" + }, + { + "id": 3126, + "model_id": 3114, + "year": "2005" + }, + { + "id": 3131, + "model_id": 3131, + "year": "2012" + }, + { + "id": 3133, + "model_id": 3131, + "year": "2013" + }, + { + "id": 3135, + "model_id": 3131, + "year": "2014" + }, + { + "id": 3137, + "model_id": 3131, + "year": "2015" + }, + { + "id": 3139, + "model_id": 3131, + "year": "2016" + }, + { + "id": 3141, + "model_id": 3141, + "year": "2009" + }, + { + "id": 3143, + "model_id": 3141, + "year": "2010" + }, + { + "id": 3145, + "model_id": 3141, + "year": "2011" + }, + { + "id": 3147, + "model_id": 3147, + "year": "2009" + }, + { + "id": 3149, + "model_id": 3147, + "year": "2010" + }, + { + "id": 3151, + "model_id": 3147, + "year": "2011" + }, + { + "id": 3153, + "model_id": 3147, + "year": "2012" + }, + { + "id": 3155, + "model_id": 3147, + "year": "2013" + }, + { + "id": 3157, + "model_id": 3147, + "year": "2014" + }, + { + "id": 3159, + "model_id": 3147, + "year": "2015" + }, + { + "id": 3160, + "model_id": 3147, + "year": "2016" + }, + { + "id": 3161, + "model_id": 3161, + "year": "2011" + }, + { + "id": 3162, + "model_id": 3161, + "year": "2012" + }, + { + "id": 3163, + "model_id": 3161, + "year": "2013" + }, + { + "id": 3164, + "model_id": 3161, + "year": "2014" + }, + { + "id": 3165, + "model_id": 3161, + "year": "2015" + }, + { + "id": 3166, + "model_id": 3161, + "year": "2016" + }, + { + "id": 3167, + "model_id": 3167, + "year": "2000" + }, + { + "id": 3168, + "model_id": 3167, + "year": "2001" + }, + { + "id": 3169, + "model_id": 3167, + "year": "2002" + }, + { + "id": 3170, + "model_id": 3167, + "year": "2003" + }, + { + "id": 3171, + "model_id": 3171, + "year": "2007" + }, + { + "id": 3172, + "model_id": 3171, + "year": "2008" + }, + { + "id": 3173, + "model_id": 3173, + "year": "2003" + }, + { + "id": 3174, + "model_id": 3174, + "year": "2006" + }, + { + "id": 3175, + "model_id": 3174, + "year": "2008" + }, + { + "id": 3176, + "model_id": 3174, + "year": "2010" + }, + { + "id": 3177, + "model_id": 3174, + "year": "2011" + }, + { + "id": 3178, + "model_id": 3174, + "year": "2012" + }, + { + "id": 3179, + "model_id": 3174, + "year": "2013" + }, + { + "id": 3180, + "model_id": 3174, + "year": "2014" + }, + { + "id": 3181, + "model_id": 3174, + "year": "2015" + }, + { + "id": 3182, + "model_id": 3182, + "year": "2016" + }, + { + "id": 3183, + "model_id": 3183, + "year": "1984" + }, + { + "id": 3192, + "model_id": 3183, + "year": "1985" + }, + { + "id": 3200, + "model_id": 3183, + "year": "1986" + }, + { + "id": 3204, + "model_id": 3183, + "year": "1987" + }, + { + "id": 3208, + "model_id": 3183, + "year": "1988" + }, + { + "id": 3212, + "model_id": 3183, + "year": "1989" + }, + { + "id": 3217, + "model_id": 3183, + "year": "1990" + }, + { + "id": 3220, + "model_id": 3183, + "year": "1991" + }, + { + "id": 3223, + "model_id": 3183, + "year": "1992" + }, + { + "id": 3226, + "model_id": 3183, + "year": "1993" + }, + { + "id": 3229, + "model_id": 3183, + "year": "1994" + }, + { + "id": 3231, + "model_id": 3183, + "year": "1995" + }, + { + "id": 3233, + "model_id": 3183, + "year": "1996" + }, + { + "id": 3235, + "model_id": 3183, + "year": "1998" + }, + { + "id": 3236, + "model_id": 3183, + "year": "1999" + }, + { + "id": 3237, + "model_id": 3183, + "year": "2000" + }, + { + "id": 3238, + "model_id": 3183, + "year": "2001" + }, + { + "id": 3239, + "model_id": 3183, + "year": "2002" + }, + { + "id": 3240, + "model_id": 3183, + "year": "2003" + }, + { + "id": 3241, + "model_id": 3183, + "year": "2004" + }, + { + "id": 3242, + "model_id": 3183, + "year": "2005" + }, + { + "id": 3243, + "model_id": 3243, + "year": "1984" + }, + { + "id": 3252, + "model_id": 3252, + "year": "1985" + }, + { + "id": 3261, + "model_id": 3252, + "year": "1986" + }, + { + "id": 3265, + "model_id": 3252, + "year": "1987" + }, + { + "id": 3269, + "model_id": 3252, + "year": "1988" + }, + { + "id": 3272, + "model_id": 3252, + "year": "1989" + }, + { + "id": 3276, + "model_id": 3252, + "year": "1990" + }, + { + "id": 3279, + "model_id": 3252, + "year": "1991" + }, + { + "id": 3282, + "model_id": 3252, + "year": "1992" + }, + { + "id": 3285, + "model_id": 3252, + "year": "1993" + }, + { + "id": 3288, + "model_id": 3252, + "year": "1994" + }, + { + "id": 3290, + "model_id": 3252, + "year": "1995" + }, + { + "id": 3292, + "model_id": 3252, + "year": "1996" + }, + { + "id": 3293, + "model_id": 3293, + "year": "1990" + }, + { + "id": 3294, + "model_id": 3293, + "year": "1991" + }, + { + "id": 3295, + "model_id": 3293, + "year": "1992" + }, + { + "id": 3297, + "model_id": 3293, + "year": "1993" + }, + { + "id": 3298, + "model_id": 3293, + "year": "1994" + }, + { + "id": 3299, + "model_id": 3293, + "year": "1995" + }, + { + "id": 3300, + "model_id": 3300, + "year": "1984" + }, + { + "id": 3303, + "model_id": 3303, + "year": "1984" + }, + { + "id": 3309, + "model_id": 3303, + "year": "1985" + }, + { + "id": 3314, + "model_id": 3303, + "year": "1986" + }, + { + "id": 3315, + "model_id": 3303, + "year": "1987" + }, + { + "id": 3316, + "model_id": 3303, + "year": "1988" + }, + { + "id": 3317, + "model_id": 3303, + "year": "1989" + }, + { + "id": 3318, + "model_id": 3303, + "year": "1990" + }, + { + "id": 3319, + "model_id": 3319, + "year": "2008" + }, + { + "id": 3321, + "model_id": 3319, + "year": "2009" + }, + { + "id": 3323, + "model_id": 3319, + "year": "2010" + }, + { + "id": 3325, + "model_id": 3319, + "year": "2011" + }, + { + "id": 3327, + "model_id": 3319, + "year": "2012" + }, + { + "id": 3329, + "model_id": 3319, + "year": "2013" + }, + { + "id": 3331, + "model_id": 3319, + "year": "2014" + }, + { + "id": 3333, + "model_id": 3319, + "year": "2015" + }, + { + "id": 3335, + "model_id": 3319, + "year": "2016" + }, + { + "id": 3337, + "model_id": 3319, + "year": "2017" + }, + { + "id": 3339, + "model_id": 3339, + "year": "2013" + }, + { + "id": 3341, + "model_id": 3339, + "year": "2014" + }, + { + "id": 3343, + "model_id": 3339, + "year": "2015" + }, + { + "id": 3345, + "model_id": 3339, + "year": "2016" + }, + { + "id": 3349, + "model_id": 3349, + "year": "2016" + }, + { + "id": 3350, + "model_id": 3350, + "year": "1990" + }, + { + "id": 3351, + "model_id": 3351, + "year": "1996" + }, + { + "id": 3352, + "model_id": 3352, + "year": "2011" + }, + { + "id": 3355, + "model_id": 3352, + "year": "2012" + }, + { + "id": 3358, + "model_id": 3352, + "year": "2013" + }, + { + "id": 3361, + "model_id": 3352, + "year": "2014" + }, + { + "id": 3364, + "model_id": 3352, + "year": "2015" + }, + { + "id": 3367, + "model_id": 3352, + "year": "2016" + }, + { + "id": 3370, + "model_id": 3370, + "year": "2012" + }, + { + "id": 3371, + "model_id": 3370, + "year": "2013" + }, + { + "id": 3372, + "model_id": 3370, + "year": "2014" + }, + { + "id": 3373, + "model_id": 3370, + "year": "2015" + }, + { + "id": 3374, + "model_id": 3370, + "year": "2016" + }, + { + "id": 3375, + "model_id": 3375, + "year": "2005" + }, + { + "id": 3377, + "model_id": 3375, + "year": "2006" + }, + { + "id": 3379, + "model_id": 3375, + "year": "2007" + }, + { + "id": 3381, + "model_id": 3375, + "year": "2008" + }, + { + "id": 3384, + "model_id": 3375, + "year": "2009" + }, + { + "id": 3386, + "model_id": 3375, + "year": "2010" + }, + { + "id": 3390, + "model_id": 3390, + "year": "1984" + }, + { + "id": 3399, + "model_id": 3390, + "year": "1985" + }, + { + "id": 3404, + "model_id": 3390, + "year": "1986" + }, + { + "id": 3406, + "model_id": 3390, + "year": "1987" + }, + { + "id": 3407, + "model_id": 3390, + "year": "1988" + }, + { + "id": 3408, + "model_id": 3390, + "year": "1989" + }, + { + "id": 3409, + "model_id": 3390, + "year": "1990" + }, + { + "id": 3410, + "model_id": 3390, + "year": "1991" + }, + { + "id": 3411, + "model_id": 3390, + "year": "1992" + }, + { + "id": 3412, + "model_id": 3390, + "year": "1993" + }, + { + "id": 3413, + "model_id": 3390, + "year": "1994" + }, + { + "id": 3414, + "model_id": 3390, + "year": "1995" + }, + { + "id": 3415, + "model_id": 3390, + "year": "1996" + }, + { + "id": 3416, + "model_id": 3390, + "year": "1997" + }, + { + "id": 3417, + "model_id": 3390, + "year": "1998" + }, + { + "id": 3418, + "model_id": 3390, + "year": "1999" + }, + { + "id": 3419, + "model_id": 3390, + "year": "2000" + }, + { + "id": 3420, + "model_id": 3390, + "year": "2001" + }, + { + "id": 3421, + "model_id": 3390, + "year": "2002" + }, + { + "id": 3422, + "model_id": 3390, + "year": "2003" + }, + { + "id": 3423, + "model_id": 3390, + "year": "2004" + }, + { + "id": 3424, + "model_id": 3390, + "year": "2005" + }, + { + "id": 3425, + "model_id": 3425, + "year": "1985" + }, + { + "id": 3428, + "model_id": 3425, + "year": "1986" + }, + { + "id": 3429, + "model_id": 3425, + "year": "1987" + }, + { + "id": 3430, + "model_id": 3425, + "year": "1988" + }, + { + "id": 3431, + "model_id": 3425, + "year": "1989" + }, + { + "id": 3432, + "model_id": 3432, + "year": "2006" + }, + { + "id": 3434, + "model_id": 3432, + "year": "2007" + }, + { + "id": 3436, + "model_id": 3432, + "year": "2008" + }, + { + "id": 3439, + "model_id": 3432, + "year": "2009" + }, + { + "id": 3442, + "model_id": 3432, + "year": "2010" + }, + { + "id": 3445, + "model_id": 3432, + "year": "2011" + }, + { + "id": 3447, + "model_id": 3447, + "year": "1991" + }, + { + "id": 3448, + "model_id": 3447, + "year": "1992" + }, + { + "id": 3450, + "model_id": 3447, + "year": "1993" + }, + { + "id": 3452, + "model_id": 3447, + "year": "1994" + }, + { + "id": 3454, + "model_id": 3447, + "year": "1995" + }, + { + "id": 3455, + "model_id": 3447, + "year": "1996" + }, + { + "id": 3457, + "model_id": 3447, + "year": "1997" + }, + { + "id": 3459, + "model_id": 3447, + "year": "1998" + }, + { + "id": 3461, + "model_id": 3447, + "year": "1999" + }, + { + "id": 3463, + "model_id": 3447, + "year": "2000" + }, + { + "id": 3465, + "model_id": 3447, + "year": "2001" + }, + { + "id": 3467, + "model_id": 3447, + "year": "2002" + }, + { + "id": 3469, + "model_id": 3447, + "year": "2003" + }, + { + "id": 3471, + "model_id": 3447, + "year": "2004" + }, + { + "id": 3473, + "model_id": 3447, + "year": "2005" + }, + { + "id": 3475, + "model_id": 3475, + "year": "2004" + }, + { + "id": 3479, + "model_id": 3475, + "year": "2005" + }, + { + "id": 3483, + "model_id": 3475, + "year": "2006" + }, + { + "id": 3487, + "model_id": 3475, + "year": "2007" + }, + { + "id": 3491, + "model_id": 3491, + "year": "1988" + }, + { + "id": 3492, + "model_id": 3491, + "year": "1989" + }, + { + "id": 3493, + "model_id": 3491, + "year": "1990" + }, + { + "id": 3494, + "model_id": 3491, + "year": "1991" + }, + { + "id": 3495, + "model_id": 3495, + "year": "1984" + }, + { + "id": 3504, + "model_id": 3495, + "year": "1985" + }, + { + "id": 3512, + "model_id": 3495, + "year": "1986" + }, + { + "id": 3516, + "model_id": 3495, + "year": "1987" + }, + { + "id": 3520, + "model_id": 3495, + "year": "1988" + }, + { + "id": 3521, + "model_id": 3495, + "year": "1989" + }, + { + "id": 3523, + "model_id": 3495, + "year": "1990" + }, + { + "id": 3525, + "model_id": 3495, + "year": "1991" + }, + { + "id": 3527, + "model_id": 3495, + "year": "1992" + }, + { + "id": 3530, + "model_id": 3495, + "year": "1993" + }, + { + "id": 3533, + "model_id": 3495, + "year": "1994" + }, + { + "id": 3535, + "model_id": 3495, + "year": "1995" + }, + { + "id": 3538, + "model_id": 3495, + "year": "1996" + }, + { + "id": 3540, + "model_id": 3495, + "year": "1998" + }, + { + "id": 3542, + "model_id": 3495, + "year": "1999" + }, + { + "id": 3544, + "model_id": 3495, + "year": "2000" + }, + { + "id": 3546, + "model_id": 3495, + "year": "2001" + }, + { + "id": 3548, + "model_id": 3495, + "year": "2002" + }, + { + "id": 3550, + "model_id": 3495, + "year": "2003" + }, + { + "id": 3552, + "model_id": 3495, + "year": "2004" + }, + { + "id": 3554, + "model_id": 3495, + "year": "2011" + }, + { + "id": 3557, + "model_id": 3495, + "year": "2012" + }, + { + "id": 3564, + "model_id": 3495, + "year": "2013" + }, + { + "id": 3571, + "model_id": 3495, + "year": "2014" + }, + { + "id": 3575, + "model_id": 3495, + "year": "2015" + }, + { + "id": 3579, + "model_id": 3495, + "year": "2016" + }, + { + "id": 3583, + "model_id": 3495, + "year": "2017" + }, + { + "id": 3585, + "model_id": 3585, + "year": "2012" + }, + { + "id": 3586, + "model_id": 3585, + "year": "2013" + }, + { + "id": 3587, + "model_id": 3585, + "year": "2014" + }, + { + "id": 3588, + "model_id": 3585, + "year": "2015" + }, + { + "id": 3589, + "model_id": 3585, + "year": "2016" + }, + { + "id": 3590, + "model_id": 3590, + "year": "1997" + }, + { + "id": 3593, + "model_id": 3593, + "year": "2002" + }, + { + "id": 3595, + "model_id": 3593, + "year": "2003" + }, + { + "id": 3597, + "model_id": 3593, + "year": "2004" + }, + { + "id": 3600, + "model_id": 3593, + "year": "2005" + }, + { + "id": 3604, + "model_id": 3593, + "year": "2006" + }, + { + "id": 3608, + "model_id": 3593, + "year": "2007" + }, + { + "id": 3610, + "model_id": 3610, + "year": "1984" + }, + { + "id": 3616, + "model_id": 3610, + "year": "1985" + }, + { + "id": 3620, + "model_id": 3610, + "year": "1986" + }, + { + "id": 3621, + "model_id": 3610, + "year": "1987" + }, + { + "id": 3622, + "model_id": 3610, + "year": "1988" + }, + { + "id": 3623, + "model_id": 3610, + "year": "1989" + }, + { + "id": 3624, + "model_id": 3610, + "year": "1990" + }, + { + "id": 3625, + "model_id": 3610, + "year": "1991" + }, + { + "id": 3626, + "model_id": 3610, + "year": "1992" + }, + { + "id": 3627, + "model_id": 3610, + "year": "1993" + }, + { + "id": 3628, + "model_id": 3610, + "year": "1995" + }, + { + "id": 3629, + "model_id": 3610, + "year": "1996" + }, + { + "id": 3631, + "model_id": 3610, + "year": "1997" + }, + { + "id": 3633, + "model_id": 3610, + "year": "1998" + }, + { + "id": 3634, + "model_id": 3610, + "year": "1999" + }, + { + "id": 3635, + "model_id": 3635, + "year": "1984" + }, + { + "id": 3640, + "model_id": 3635, + "year": "1985" + }, + { + "id": 3643, + "model_id": 3643, + "year": "1992" + }, + { + "id": 3644, + "model_id": 3643, + "year": "1993" + }, + { + "id": 3645, + "model_id": 3643, + "year": "1994" + }, + { + "id": 3646, + "model_id": 3643, + "year": "1995" + }, + { + "id": 3647, + "model_id": 3643, + "year": "1996" + }, + { + "id": 3648, + "model_id": 3648, + "year": "1991" + }, + { + "id": 3649, + "model_id": 3648, + "year": "1992" + }, + { + "id": 3651, + "model_id": 3648, + "year": "1993" + }, + { + "id": 3652, + "model_id": 3648, + "year": "1994" + }, + { + "id": 3653, + "model_id": 3648, + "year": "1995" + }, + { + "id": 3654, + "model_id": 3648, + "year": "1996" + }, + { + "id": 3655, + "model_id": 3655, + "year": "1984" + }, + { + "id": 3667, + "model_id": 3655, + "year": "1985" + }, + { + "id": 3677, + "model_id": 3655, + "year": "1986" + }, + { + "id": 3683, + "model_id": 3655, + "year": "1987" + }, + { + "id": 3689, + "model_id": 3655, + "year": "1988" + }, + { + "id": 3693, + "model_id": 3655, + "year": "1989" + }, + { + "id": 3695, + "model_id": 3695, + "year": "1984" + }, + { + "id": 3703, + "model_id": 3695, + "year": "1985" + }, + { + "id": 3709, + "model_id": 3695, + "year": "1986" + }, + { + "id": 3713, + "model_id": 3695, + "year": "1987" + }, + { + "id": 3717, + "model_id": 3695, + "year": "1988" + }, + { + "id": 3721, + "model_id": 3695, + "year": "1989" + }, + { + "id": 3723, + "model_id": 3723, + "year": "1984" + }, + { + "id": 3731, + "model_id": 3723, + "year": "1985" + }, + { + "id": 3739, + "model_id": 3723, + "year": "1988" + }, + { + "id": 3743, + "model_id": 3723, + "year": "1989" + }, + { + "id": 3746, + "model_id": 3723, + "year": "1990" + }, + { + "id": 3749, + "model_id": 3723, + "year": "1991" + }, + { + "id": 3752, + "model_id": 3723, + "year": "1992" + }, + { + "id": 3754, + "model_id": 3723, + "year": "1993" + }, + { + "id": 3756, + "model_id": 3723, + "year": "1994" + }, + { + "id": 3759, + "model_id": 3723, + "year": "1995" + }, + { + "id": 3763, + "model_id": 3723, + "year": "1996" + }, + { + "id": 3765, + "model_id": 3723, + "year": "1997" + }, + { + "id": 3767, + "model_id": 3723, + "year": "1998" + }, + { + "id": 3769, + "model_id": 3769, + "year": "1985" + }, + { + "id": 3773, + "model_id": 3773, + "year": "1986" + }, + { + "id": 3776, + "model_id": 3773, + "year": "1987" + }, + { + "id": 3779, + "model_id": 3779, + "year": "2005" + }, + { + "id": 3781, + "model_id": 3779, + "year": "2006" + }, + { + "id": 3784, + "model_id": 3779, + "year": "2007" + }, + { + "id": 3786, + "model_id": 3779, + "year": "2008" + }, + { + "id": 3787, + "model_id": 3787, + "year": "2012" + }, + { + "id": 3788, + "model_id": 3787, + "year": "2013" + }, + { + "id": 3791, + "model_id": 3787, + "year": "2014" + }, + { + "id": 3794, + "model_id": 3787, + "year": "2015" + }, + { + "id": 3797, + "model_id": 3787, + "year": "2016" + }, + { + "id": 3800, + "model_id": 3800, + "year": "2012" + }, + { + "id": 3801, + "model_id": 3800, + "year": "2013" + }, + { + "id": 3802, + "model_id": 3800, + "year": "2014" + }, + { + "id": 3803, + "model_id": 3800, + "year": "2015" + }, + { + "id": 3804, + "model_id": 3804, + "year": "1987" + }, + { + "id": 3805, + "model_id": 3804, + "year": "1988" + }, + { + "id": 3806, + "model_id": 3804, + "year": "1989" + }, + { + "id": 3807, + "model_id": 3804, + "year": "1990" + }, + { + "id": 3808, + "model_id": 3804, + "year": "1991" + }, + { + "id": 3809, + "model_id": 3804, + "year": "1992" + }, + { + "id": 3810, + "model_id": 3804, + "year": "1993" + }, + { + "id": 3811, + "model_id": 3811, + "year": "2004" + }, + { + "id": 3812, + "model_id": 3811, + "year": "2005" + }, + { + "id": 3813, + "model_id": 3813, + "year": "2006" + }, + { + "id": 3814, + "model_id": 3814, + "year": "2013" + }, + { + "id": 3822, + "model_id": 3814, + "year": "2014" + }, + { + "id": 3828, + "model_id": 3814, + "year": "2015" + }, + { + "id": 3834, + "model_id": 3814, + "year": "2016" + }, + { + "id": 3840, + "model_id": 3840, + "year": "2016" + }, + { + "id": 3842, + "model_id": 3842, + "year": "1987" + }, + { + "id": 3843, + "model_id": 3842, + "year": "1988" + }, + { + "id": 3844, + "model_id": 3842, + "year": "1989" + }, + { + "id": 3845, + "model_id": 3842, + "year": "1990" + }, + { + "id": 3847, + "model_id": 3842, + "year": "1991" + }, + { + "id": 3849, + "model_id": 3842, + "year": "1992" + }, + { + "id": 3851, + "model_id": 3851, + "year": "1984" + }, + { + "id": 3854, + "model_id": 3854, + "year": "1997" + }, + { + "id": 3855, + "model_id": 3854, + "year": "1998" + }, + { + "id": 3856, + "model_id": 3854, + "year": "1999" + }, + { + "id": 3857, + "model_id": 3854, + "year": "2000" + }, + { + "id": 3858, + "model_id": 3854, + "year": "2001" + }, + { + "id": 3859, + "model_id": 3859, + "year": "1984" + }, + { + "id": 3863, + "model_id": 3859, + "year": "1985" + }, + { + "id": 3871, + "model_id": 3859, + "year": "1986" + }, + { + "id": 3875, + "model_id": 3859, + "year": "1987" + }, + { + "id": 3879, + "model_id": 3859, + "year": "1988" + }, + { + "id": 3881, + "model_id": 3881, + "year": "1988" + }, + { + "id": 3882, + "model_id": 3881, + "year": "1989" + }, + { + "id": 3883, + "model_id": 3881, + "year": "1990" + }, + { + "id": 3884, + "model_id": 3881, + "year": "1991" + }, + { + "id": 3885, + "model_id": 3881, + "year": "1992" + }, + { + "id": 3886, + "model_id": 3881, + "year": "1993" + }, + { + "id": 3887, + "model_id": 3887, + "year": "2016" + }, + { + "id": 3890, + "model_id": 3890, + "year": "2003" + }, + { + "id": 3892, + "model_id": 3890, + "year": "2004" + }, + { + "id": 3895, + "model_id": 3890, + "year": "2005" + }, + { + "id": 3899, + "model_id": 3890, + "year": "2006" + }, + { + "id": 3903, + "model_id": 3890, + "year": "2007" + }, + { + "id": 3907, + "model_id": 3890, + "year": "2008" + }, + { + "id": 3913, + "model_id": 3890, + "year": "2009" + }, + { + "id": 3919, + "model_id": 3890, + "year": "2010" + }, + { + "id": 3925, + "model_id": 3890, + "year": "2011" + }, + { + "id": 3933, + "model_id": 3890, + "year": "2012" + }, + { + "id": 3940, + "model_id": 3890, + "year": "2013" + }, + { + "id": 3947, + "model_id": 3890, + "year": "2014" + }, + { + "id": 3951, + "model_id": 3890, + "year": "2015" + }, + { + "id": 3953, + "model_id": 3953, + "year": "2014" + }, + { + "id": 3958, + "model_id": 3953, + "year": "2015" + }, + { + "id": 3963, + "model_id": 3953, + "year": "2016" + }, + { + "id": 3968, + "model_id": 3968, + "year": "2014" + }, + { + "id": 3970, + "model_id": 3970, + "year": "2010" + }, + { + "id": 3974, + "model_id": 3970, + "year": "2011" + }, + { + "id": 3980, + "model_id": 3970, + "year": "2012" + }, + { + "id": 3986, + "model_id": 3970, + "year": "2013" + }, + { + "id": 3992, + "model_id": 3970, + "year": "2014" + }, + { + "id": 3998, + "model_id": 3998, + "year": "2004" + }, + { + "id": 3999, + "model_id": 3998, + "year": "2005" + }, + { + "id": 4000, + "model_id": 3998, + "year": "2006" + }, + { + "id": 4001, + "model_id": 3998, + "year": "2007" + }, + { + "id": 4002, + "model_id": 3998, + "year": "2010" + }, + { + "id": 4004, + "model_id": 3998, + "year": "2016" + }, + { + "id": 4005, + "model_id": 4005, + "year": "1988" + }, + { + "id": 4006, + "model_id": 4005, + "year": "1996" + }, + { + "id": 4007, + "model_id": 4005, + "year": "1997" + }, + { + "id": 4008, + "model_id": 4005, + "year": "1998" + }, + { + "id": 4009, + "model_id": 4005, + "year": "1999" + }, + { + "id": 4010, + "model_id": 4005, + "year": "2000" + }, + { + "id": 4011, + "model_id": 4005, + "year": "2001" + }, + { + "id": 4012, + "model_id": 4005, + "year": "2002" + }, + { + "id": 4013, + "model_id": 4005, + "year": "2003" + }, + { + "id": 4014, + "model_id": 4005, + "year": "2004" + }, + { + "id": 4016, + "model_id": 4005, + "year": "2005" + }, + { + "id": 4018, + "model_id": 4018, + "year": "1993" + }, + { + "id": 4019, + "model_id": 4019, + "year": "1994" + }, + { + "id": 4021, + "model_id": 4019, + "year": "1995" + }, + { + "id": 4023, + "model_id": 4023, + "year": "2006" + }, + { + "id": 4025, + "model_id": 4023, + "year": "2007" + }, + { + "id": 4027, + "model_id": 4023, + "year": "2008" + }, + { + "id": 4029, + "model_id": 4023, + "year": "2009" + }, + { + "id": 4031, + "model_id": 4023, + "year": "2010" + }, + { + "id": 4033, + "model_id": 4023, + "year": "2011" + }, + { + "id": 4034, + "model_id": 4034, + "year": "1984" + }, + { + "id": 4037, + "model_id": 4034, + "year": "1985" + }, + { + "id": 4040, + "model_id": 4034, + "year": "1986" + }, + { + "id": 4041, + "model_id": 4034, + "year": "1987" + }, + { + "id": 4042, + "model_id": 4034, + "year": "1988" + }, + { + "id": 4043, + "model_id": 4034, + "year": "1989" + }, + { + "id": 4044, + "model_id": 4034, + "year": "1990" + }, + { + "id": 4045, + "model_id": 4034, + "year": "1991" + }, + { + "id": 4046, + "model_id": 4034, + "year": "1992" + }, + { + "id": 4047, + "model_id": 4034, + "year": "1993" + }, + { + "id": 4049, + "model_id": 4034, + "year": "1994" + }, + { + "id": 4050, + "model_id": 4034, + "year": "1995" + }, + { + "id": 4051, + "model_id": 4034, + "year": "1996" + }, + { + "id": 4052, + "model_id": 4034, + "year": "1997" + }, + { + "id": 4053, + "model_id": 4034, + "year": "1998" + }, + { + "id": 4054, + "model_id": 4034, + "year": "1999" + }, + { + "id": 4055, + "model_id": 4034, + "year": "2000" + }, + { + "id": 4056, + "model_id": 4034, + "year": "2001" + }, + { + "id": 4057, + "model_id": 4034, + "year": "2002" + }, + { + "id": 4058, + "model_id": 4058, + "year": "1984" + }, + { + "id": 4060, + "model_id": 4058, + "year": "1985" + }, + { + "id": 4061, + "model_id": 4061, + "year": "2014" + }, + { + "id": 4062, + "model_id": 4061, + "year": "2015" + }, + { + "id": 4063, + "model_id": 4061, + "year": "2016" + }, + { + "id": 4064, + "model_id": 4064, + "year": "2016" + }, + { + "id": 4065, + "model_id": 4065, + "year": "1999" + }, + { + "id": 4066, + "model_id": 4065, + "year": "2000" + }, + { + "id": 4067, + "model_id": 4065, + "year": "2002" + }, + { + "id": 4069, + "model_id": 4065, + "year": "2003" + }, + { + "id": 4071, + "model_id": 4065, + "year": "2004" + }, + { + "id": 4073, + "model_id": 4065, + "year": "2005" + }, + { + "id": 4076, + "model_id": 4065, + "year": "2006" + }, + { + "id": 4078, + "model_id": 4065, + "year": "2007" + }, + { + "id": 4080, + "model_id": 4065, + "year": "2008" + }, + { + "id": 4082, + "model_id": 4065, + "year": "2009" + }, + { + "id": 4084, + "model_id": 4065, + "year": "2010" + }, + { + "id": 4086, + "model_id": 4065, + "year": "2011" + }, + { + "id": 4088, + "model_id": 4065, + "year": "2012" + }, + { + "id": 4090, + "model_id": 4065, + "year": "2013" + }, + { + "id": 4092, + "model_id": 4065, + "year": "2014" + }, + { + "id": 4094, + "model_id": 4065, + "year": "2015" + }, + { + "id": 4098, + "model_id": 4065, + "year": "2016" + }, + { + "id": 4100, + "model_id": 4100, + "year": "2003" + }, + { + "id": 4101, + "model_id": 4100, + "year": "2004" + }, + { + "id": 4102, + "model_id": 4100, + "year": "2005" + }, + { + "id": 4103, + "model_id": 4100, + "year": "2006" + }, + { + "id": 4104, + "model_id": 4100, + "year": "2008" + }, + { + "id": 4105, + "model_id": 4100, + "year": "2009" + }, + { + "id": 4106, + "model_id": 4100, + "year": "2010" + }, + { + "id": 4107, + "model_id": 4100, + "year": "2011" + }, + { + "id": 4109, + "model_id": 4100, + "year": "2012" + }, + { + "id": 4111, + "model_id": 4100, + "year": "2013" + }, + { + "id": 4113, + "model_id": 4100, + "year": "2014" + }, + { + "id": 4115, + "model_id": 4100, + "year": "2015" + }, + { + "id": 4119, + "model_id": 4119, + "year": "2002" + }, + { + "id": 4120, + "model_id": 4119, + "year": "2003" + }, + { + "id": 4121, + "model_id": 4119, + "year": "2004" + }, + { + "id": 4122, + "model_id": 4119, + "year": "2005" + }, + { + "id": 4123, + "model_id": 4119, + "year": "2006" + }, + { + "id": 4124, + "model_id": 4119, + "year": "2011" + }, + { + "id": 4125, + "model_id": 4119, + "year": "2012" + }, + { + "id": 4126, + "model_id": 4119, + "year": "2013" + }, + { + "id": 4127, + "model_id": 4127, + "year": "2009" + }, + { + "id": 4128, + "model_id": 4127, + "year": "2010" + }, + { + "id": 4129, + "model_id": 4127, + "year": "2011" + }, + { + "id": 4131, + "model_id": 4127, + "year": "2012" + }, + { + "id": 4133, + "model_id": 4127, + "year": "2013" + }, + { + "id": 4135, + "model_id": 4135, + "year": "1988" + }, + { + "id": 4136, + "model_id": 4135, + "year": "1993" + }, + { + "id": 4137, + "model_id": 4135, + "year": "1994" + }, + { + "id": 4138, + "model_id": 4135, + "year": "1995" + }, + { + "id": 4139, + "model_id": 4135, + "year": "1996" + }, + { + "id": 4140, + "model_id": 4140, + "year": "1985" + }, + { + "id": 4142, + "model_id": 4140, + "year": "1986" + }, + { + "id": 4143, + "model_id": 4143, + "year": "1984" + }, + { + "id": 4144, + "model_id": 4143, + "year": "1985" + }, + { + "id": 4148, + "model_id": 4143, + "year": "1986" + }, + { + "id": 4149, + "model_id": 4143, + "year": "1987" + }, + { + "id": 4150, + "model_id": 4143, + "year": "1989" + }, + { + "id": 4151, + "model_id": 4143, + "year": "1990" + }, + { + "id": 4152, + "model_id": 4143, + "year": "1991" + }, + { + "id": 4153, + "model_id": 4143, + "year": "1992" + }, + { + "id": 4154, + "model_id": 4154, + "year": "2003" + }, + { + "id": 4155, + "model_id": 4154, + "year": "2004" + }, + { + "id": 4156, + "model_id": 4154, + "year": "2005" + }, + { + "id": 4157, + "model_id": 4154, + "year": "2006" + }, + { + "id": 4158, + "model_id": 4154, + "year": "2007" + }, + { + "id": 4159, + "model_id": 4154, + "year": "2008" + }, + { + "id": 4160, + "model_id": 4154, + "year": "2009" + }, + { + "id": 4161, + "model_id": 4154, + "year": "2010" + }, + { + "id": 4162, + "model_id": 4154, + "year": "2011" + }, + { + "id": 4163, + "model_id": 4163, + "year": "1998" + }, + { + "id": 4164, + "model_id": 4163, + "year": "1999" + }, + { + "id": 4165, + "model_id": 4165, + "year": "1984" + }, + { + "id": 4166, + "model_id": 4165, + "year": "1985" + }, + { + "id": 4167, + "model_id": 4165, + "year": "1986" + }, + { + "id": 4168, + "model_id": 4165, + "year": "1987" + }, + { + "id": 4169, + "model_id": 4165, + "year": "1998" + }, + { + "id": 4170, + "model_id": 4165, + "year": "1999" + }, + { + "id": 4171, + "model_id": 4165, + "year": "2002" + }, + { + "id": 4172, + "model_id": 4165, + "year": "2003" + }, + { + "id": 4173, + "model_id": 4165, + "year": "2004" + }, + { + "id": 4174, + "model_id": 4165, + "year": "2005" + }, + { + "id": 4175, + "model_id": 4165, + "year": "2006" + }, + { + "id": 4176, + "model_id": 4165, + "year": "2007" + }, + { + "id": 4177, + "model_id": 4165, + "year": "2008" + }, + { + "id": 4178, + "model_id": 4165, + "year": "2009" + }, + { + "id": 4179, + "model_id": 4165, + "year": "2010" + }, + { + "id": 4180, + "model_id": 4165, + "year": "2011" + }, + { + "id": 4181, + "model_id": 4181, + "year": "1984" + }, + { + "id": 4184, + "model_id": 4181, + "year": "1985" + }, + { + "id": 4187, + "model_id": 4181, + "year": "1986" + }, + { + "id": 4188, + "model_id": 4181, + "year": "1987" + }, + { + "id": 4189, + "model_id": 4181, + "year": "1988" + }, + { + "id": 4190, + "model_id": 4181, + "year": "1989" + }, + { + "id": 4191, + "model_id": 4181, + "year": "1990" + }, + { + "id": 4192, + "model_id": 4181, + "year": "1991" + }, + { + "id": 4193, + "model_id": 4181, + "year": "1992" + }, + { + "id": 4194, + "model_id": 4181, + "year": "1993" + }, + { + "id": 4196, + "model_id": 4181, + "year": "1994" + }, + { + "id": 4197, + "model_id": 4181, + "year": "1995" + }, + { + "id": 4198, + "model_id": 4181, + "year": "1996" + }, + { + "id": 4199, + "model_id": 4181, + "year": "1997" + }, + { + "id": 4200, + "model_id": 4181, + "year": "1998" + }, + { + "id": 4201, + "model_id": 4181, + "year": "1999" + }, + { + "id": 4202, + "model_id": 4181, + "year": "2000" + }, + { + "id": 4203, + "model_id": 4181, + "year": "2001" + }, + { + "id": 4204, + "model_id": 4181, + "year": "2002" + }, + { + "id": 4205, + "model_id": 4181, + "year": "2003" + }, + { + "id": 4206, + "model_id": 4181, + "year": "2004" + }, + { + "id": 4208, + "model_id": 4208, + "year": "2004" + }, + { + "id": 4212, + "model_id": 4208, + "year": "2005" + }, + { + "id": 4216, + "model_id": 4208, + "year": "2006" + }, + { + "id": 4220, + "model_id": 4208, + "year": "2007" + }, + { + "id": 4224, + "model_id": 4208, + "year": "2008" + }, + { + "id": 4228, + "model_id": 4208, + "year": "2009" + }, + { + "id": 4232, + "model_id": 4208, + "year": "2010" + }, + { + "id": 4235, + "model_id": 4208, + "year": "2011" + }, + { + "id": 4238, + "model_id": 4208, + "year": "2012" + }, + { + "id": 4240, + "model_id": 4208, + "year": "2013" + }, + { + "id": 4242, + "model_id": 4208, + "year": "2014" + }, + { + "id": 4244, + "model_id": 4208, + "year": "2015" + }, + { + "id": 4246, + "model_id": 4208, + "year": "2016" + }, + { + "id": 4248, + "model_id": 4248, + "year": "2005" + }, + { + "id": 4251, + "model_id": 4248, + "year": "2006" + }, + { + "id": 4255, + "model_id": 4248, + "year": "2007" + }, + { + "id": 4259, + "model_id": 4248, + "year": "2008" + }, + { + "id": 4263, + "model_id": 4248, + "year": "2009" + }, + { + "id": 4267, + "model_id": 4248, + "year": "2010" + }, + { + "id": 4271, + "model_id": 4248, + "year": "2011" + }, + { + "id": 4273, + "model_id": 4273, + "year": "2006" + }, + { + "id": 4274, + "model_id": 4273, + "year": "2007" + }, + { + "id": 4275, + "model_id": 4273, + "year": "2008" + }, + { + "id": 4276, + "model_id": 4273, + "year": "2009" + }, + { + "id": 4277, + "model_id": 4277, + "year": "2004" + }, + { + "id": 4278, + "model_id": 4277, + "year": "2005" + }, + { + "id": 4279, + "model_id": 4277, + "year": "2006" + }, + { + "id": 4280, + "model_id": 4277, + "year": "2007" + }, + { + "id": 4281, + "model_id": 4277, + "year": "2008" + }, + { + "id": 4282, + "model_id": 4277, + "year": "2009" + }, + { + "id": 4283, + "model_id": 4283, + "year": "2006" + }, + { + "id": 4284, + "model_id": 4283, + "year": "2007" + }, + { + "id": 4285, + "model_id": 4283, + "year": "2008" + }, + { + "id": 4286, + "model_id": 4283, + "year": "2009" + }, + { + "id": 4287, + "model_id": 4287, + "year": "2017" + }, + { + "id": 4289, + "model_id": 4289, + "year": "2013" + }, + { + "id": 4291, + "model_id": 4289, + "year": "2014" + }, + { + "id": 4294, + "model_id": 4289, + "year": "2015" + }, + { + "id": 4297, + "model_id": 4289, + "year": "2016" + }, + { + "id": 4300, + "model_id": 4289, + "year": "2017" + }, + { + "id": 4302, + "model_id": 4302, + "year": "2013" + }, + { + "id": 4303, + "model_id": 4302, + "year": "2014" + }, + { + "id": 4304, + "model_id": 4302, + "year": "2015" + }, + { + "id": 4305, + "model_id": 4302, + "year": "2016" + }, + { + "id": 4306, + "model_id": 4306, + "year": "2013" + }, + { + "id": 4307, + "model_id": 4306, + "year": "2014" + }, + { + "id": 4308, + "model_id": 4306, + "year": "2015" + }, + { + "id": 4309, + "model_id": 4306, + "year": "2016" + }, + { + "id": 4310, + "model_id": 4306, + "year": "2017" + }, + { + "id": 4311, + "model_id": 4311, + "year": "1987" + }, + { + "id": 4312, + "model_id": 4311, + "year": "1988" + }, + { + "id": 4313, + "model_id": 4313, + "year": "1985" + }, + { + "id": 4323, + "model_id": 4313, + "year": "1986" + }, + { + "id": 4329, + "model_id": 4313, + "year": "1987" + }, + { + "id": 4334, + "model_id": 4313, + "year": "1988" + }, + { + "id": 4338, + "model_id": 4313, + "year": "1989" + }, + { + "id": 4342, + "model_id": 4313, + "year": "1990" + }, + { + "id": 4346, + "model_id": 4313, + "year": "1991" + }, + { + "id": 4348, + "model_id": 4313, + "year": "1992" + }, + { + "id": 4352, + "model_id": 4313, + "year": "1993" + }, + { + "id": 4355, + "model_id": 4313, + "year": "1994" + }, + { + "id": 4358, + "model_id": 4313, + "year": "1995" + }, + { + "id": 4360, + "model_id": 4313, + "year": "1996" + }, + { + "id": 4362, + "model_id": 4313, + "year": "1997" + }, + { + "id": 4364, + "model_id": 4313, + "year": "1998" + }, + { + "id": 4366, + "model_id": 4313, + "year": "1999" + }, + { + "id": 4368, + "model_id": 4313, + "year": "2000" + }, + { + "id": 4370, + "model_id": 4313, + "year": "2001" + }, + { + "id": 4372, + "model_id": 4313, + "year": "2002" + }, + { + "id": 4374, + "model_id": 4313, + "year": "2003" + }, + { + "id": 4376, + "model_id": 4313, + "year": "2004" + }, + { + "id": 4378, + "model_id": 4313, + "year": "2005" + }, + { + "id": 4380, + "model_id": 4380, + "year": "2003" + }, + { + "id": 4382, + "model_id": 4380, + "year": "2004" + }, + { + "id": 4384, + "model_id": 4380, + "year": "2005" + }, + { + "id": 4386, + "model_id": 4386, + "year": "1985" + }, + { + "id": 4396, + "model_id": 4386, + "year": "1986" + }, + { + "id": 4402, + "model_id": 4386, + "year": "1987" + }, + { + "id": 4404, + "model_id": 4386, + "year": "1988" + }, + { + "id": 4406, + "model_id": 4386, + "year": "1989" + }, + { + "id": 4408, + "model_id": 4386, + "year": "1990" + }, + { + "id": 4410, + "model_id": 4386, + "year": "1991" + }, + { + "id": 4412, + "model_id": 4386, + "year": "1992" + }, + { + "id": 4416, + "model_id": 4386, + "year": "1993" + }, + { + "id": 4419, + "model_id": 4386, + "year": "1994" + }, + { + "id": 4422, + "model_id": 4386, + "year": "1995" + }, + { + "id": 4424, + "model_id": 4386, + "year": "1996" + }, + { + "id": 4426, + "model_id": 4386, + "year": "1997" + }, + { + "id": 4428, + "model_id": 4386, + "year": "1998" + }, + { + "id": 4430, + "model_id": 4386, + "year": "1999" + }, + { + "id": 4432, + "model_id": 4386, + "year": "2000" + }, + { + "id": 4434, + "model_id": 4386, + "year": "2001" + }, + { + "id": 4436, + "model_id": 4386, + "year": "2002" + }, + { + "id": 4438, + "model_id": 4386, + "year": "2003" + }, + { + "id": 4440, + "model_id": 4386, + "year": "2004" + }, + { + "id": 4442, + "model_id": 4386, + "year": "2005" + }, + { + "id": 4444, + "model_id": 4444, + "year": "2002" + }, + { + "id": 4446, + "model_id": 4444, + "year": "2003" + }, + { + "id": 4452, + "model_id": 4444, + "year": "2004" + }, + { + "id": 4457, + "model_id": 4444, + "year": "2005" + }, + { + "id": 4459, + "model_id": 4444, + "year": "2006" + }, + { + "id": 4461, + "model_id": 4444, + "year": "2007" + }, + { + "id": 4466, + "model_id": 4444, + "year": "2008" + }, + { + "id": 4471, + "model_id": 4444, + "year": "2009" + }, + { + "id": 4474, + "model_id": 4444, + "year": "2010" + }, + { + "id": 4476, + "model_id": 4444, + "year": "2011" + }, + { + "id": 4478, + "model_id": 4444, + "year": "2012" + }, + { + "id": 4480, + "model_id": 4444, + "year": "2013" + }, + { + "id": 4482, + "model_id": 4482, + "year": "2004" + }, + { + "id": 4484, + "model_id": 4482, + "year": "2005" + }, + { + "id": 4486, + "model_id": 4482, + "year": "2007" + }, + { + "id": 4488, + "model_id": 4482, + "year": "2008" + }, + { + "id": 4490, + "model_id": 4482, + "year": "2009" + }, + { + "id": 4492, + "model_id": 4482, + "year": "2010" + }, + { + "id": 4494, + "model_id": 4482, + "year": "2011" + }, + { + "id": 4496, + "model_id": 4496, + "year": "2005" + }, + { + "id": 4498, + "model_id": 4496, + "year": "2006" + }, + { + "id": 4500, + "model_id": 4496, + "year": "2007" + }, + { + "id": 4502, + "model_id": 4496, + "year": "2008" + }, + { + "id": 4504, + "model_id": 4496, + "year": "2009" + }, + { + "id": 4506, + "model_id": 4496, + "year": "2010" + }, + { + "id": 4508, + "model_id": 4496, + "year": "2011" + }, + { + "id": 4510, + "model_id": 4510, + "year": "1987" + }, + { + "id": 4514, + "model_id": 4510, + "year": "1988" + }, + { + "id": 4519, + "model_id": 4510, + "year": "1989" + }, + { + "id": 4523, + "model_id": 4510, + "year": "1990" + }, + { + "id": 4528, + "model_id": 4510, + "year": "1991" + }, + { + "id": 4533, + "model_id": 4510, + "year": "1992" + }, + { + "id": 4538, + "model_id": 4510, + "year": "1993" + }, + { + "id": 4543, + "model_id": 4510, + "year": "1994" + }, + { + "id": 4549, + "model_id": 4510, + "year": "1995" + }, + { + "id": 4552, + "model_id": 4510, + "year": "1996" + }, + { + "id": 4555, + "model_id": 4555, + "year": "1995" + }, + { + "id": 4559, + "model_id": 4555, + "year": "1996" + }, + { + "id": 4564, + "model_id": 4555, + "year": "1997" + }, + { + "id": 4569, + "model_id": 4555, + "year": "1998" + }, + { + "id": 4574, + "model_id": 4555, + "year": "1999" + }, + { + "id": 4578, + "model_id": 4555, + "year": "2000" + }, + { + "id": 4582, + "model_id": 4555, + "year": "2001" + }, + { + "id": 4586, + "model_id": 4555, + "year": "2002" + }, + { + "id": 4590, + "model_id": 4555, + "year": "2003" + }, + { + "id": 4594, + "model_id": 4555, + "year": "2004" + }, + { + "id": 4598, + "model_id": 4555, + "year": "2005" + }, + { + "id": 4602, + "model_id": 4602, + "year": "1992" + }, + { + "id": 4604, + "model_id": 4602, + "year": "1993" + }, + { + "id": 4606, + "model_id": 4602, + "year": "1994" + }, + { + "id": 4609, + "model_id": 4609, + "year": "1989" + }, + { + "id": 4613, + "model_id": 4609, + "year": "1990" + }, + { + "id": 4616, + "model_id": 4609, + "year": "1991" + }, + { + "id": 4619, + "model_id": 4619, + "year": "1984" + }, + { + "id": 4638, + "model_id": 4619, + "year": "1985" + }, + { + "id": 4656, + "model_id": 4619, + "year": "1986" + }, + { + "id": 4673, + "model_id": 4619, + "year": "1988" + }, + { + "id": 4686, + "model_id": 4686, + "year": "1989" + }, + { + "id": 4698, + "model_id": 4686, + "year": "1990" + }, + { + "id": 4710, + "model_id": 4686, + "year": "1991" + }, + { + "id": 4724, + "model_id": 4686, + "year": "1992" + }, + { + "id": 4736, + "model_id": 4686, + "year": "1993" + }, + { + "id": 4748, + "model_id": 4686, + "year": "1994" + }, + { + "id": 4760, + "model_id": 4686, + "year": "1995" + }, + { + "id": 4771, + "model_id": 4686, + "year": "1996" + }, + { + "id": 4778, + "model_id": 4686, + "year": "1997" + }, + { + "id": 4784, + "model_id": 4686, + "year": "1998" + }, + { + "id": 4790, + "model_id": 4686, + "year": "1999" + }, + { + "id": 4792, + "model_id": 4792, + "year": "1984" + }, + { + "id": 4802, + "model_id": 4792, + "year": "1985" + }, + { + "id": 4810, + "model_id": 4792, + "year": "1986" + }, + { + "id": 4817, + "model_id": 4792, + "year": "1988" + }, + { + "id": 4829, + "model_id": 4829, + "year": "1989" + }, + { + "id": 4841, + "model_id": 4829, + "year": "1990" + }, + { + "id": 4852, + "model_id": 4829, + "year": "1991" + }, + { + "id": 4865, + "model_id": 4829, + "year": "1992" + }, + { + "id": 4875, + "model_id": 4829, + "year": "1993" + }, + { + "id": 4877, + "model_id": 4877, + "year": "1984" + }, + { + "id": 4891, + "model_id": 4877, + "year": "1985" + }, + { + "id": 4900, + "model_id": 4877, + "year": "1986" + }, + { + "id": 4906, + "model_id": 4877, + "year": "1987" + }, + { + "id": 4914, + "model_id": 4877, + "year": "1988" + }, + { + "id": 4921, + "model_id": 4877, + "year": "1989" + }, + { + "id": 4928, + "model_id": 4877, + "year": "1990" + }, + { + "id": 4935, + "model_id": 4877, + "year": "1991" + }, + { + "id": 4942, + "model_id": 4877, + "year": "1992" + }, + { + "id": 4949, + "model_id": 4877, + "year": "1993" + }, + { + "id": 4953, + "model_id": 4877, + "year": "1994" + }, + { + "id": 4957, + "model_id": 4877, + "year": "1995" + }, + { + "id": 4962, + "model_id": 4877, + "year": "1996" + }, + { + "id": 4966, + "model_id": 4877, + "year": "1997" + }, + { + "id": 4970, + "model_id": 4877, + "year": "1998" + }, + { + "id": 4974, + "model_id": 4877, + "year": "1999" + }, + { + "id": 4978, + "model_id": 4877, + "year": "2000" + }, + { + "id": 4982, + "model_id": 4877, + "year": "2001" + }, + { + "id": 4986, + "model_id": 4877, + "year": "2002" + }, + { + "id": 4990, + "model_id": 4877, + "year": "2010" + }, + { + "id": 4994, + "model_id": 4877, + "year": "2011" + }, + { + "id": 4999, + "model_id": 4877, + "year": "2012" + }, + { + "id": 5006, + "model_id": 4877, + "year": "2013" + }, + { + "id": 5013, + "model_id": 4877, + "year": "2014" + }, + { + "id": 5021, + "model_id": 4877, + "year": "2015" + }, + { + "id": 5029, + "model_id": 4877, + "year": "2016" + }, + { + "id": 5035, + "model_id": 5035, + "year": "1986" + }, + { + "id": 5040, + "model_id": 5035, + "year": "1987" + }, + { + "id": 5045, + "model_id": 5035, + "year": "1988" + }, + { + "id": 5048, + "model_id": 5035, + "year": "1989" + }, + { + "id": 5051, + "model_id": 5035, + "year": "1990" + }, + { + "id": 5054, + "model_id": 5035, + "year": "1991" + }, + { + "id": 5056, + "model_id": 5035, + "year": "1992" + }, + { + "id": 5059, + "model_id": 5035, + "year": "1993" + }, + { + "id": 5063, + "model_id": 5063, + "year": "1984" + }, + { + "id": 5066, + "model_id": 5063, + "year": "1985" + }, + { + "id": 5069, + "model_id": 5063, + "year": "1986" + }, + { + "id": 5071, + "model_id": 5063, + "year": "1987" + }, + { + "id": 5072, + "model_id": 5063, + "year": "1988" + }, + { + "id": 5073, + "model_id": 5063, + "year": "1989" + }, + { + "id": 5074, + "model_id": 5063, + "year": "1990" + }, + { + "id": 5075, + "model_id": 5063, + "year": "1991" + }, + { + "id": 5076, + "model_id": 5063, + "year": "1992" + }, + { + "id": 5078, + "model_id": 5063, + "year": "1993" + }, + { + "id": 5080, + "model_id": 5080, + "year": "1994" + }, + { + "id": 5082, + "model_id": 5080, + "year": "1995" + }, + { + "id": 5084, + "model_id": 5080, + "year": "1996" + }, + { + "id": 5086, + "model_id": 5086, + "year": "1994" + }, + { + "id": 5088, + "model_id": 5086, + "year": "1995" + }, + { + "id": 5089, + "model_id": 5086, + "year": "1996" + }, + { + "id": 5090, + "model_id": 5090, + "year": "2012" + }, + { + "id": 5093, + "model_id": 5090, + "year": "2013" + }, + { + "id": 5096, + "model_id": 5090, + "year": "2014" + }, + { + "id": 5099, + "model_id": 5090, + "year": "2015" + }, + { + "id": 5100, + "model_id": 5100, + "year": "1984" + }, + { + "id": 5107, + "model_id": 5100, + "year": "1985" + }, + { + "id": 5117, + "model_id": 5100, + "year": "1986" + }, + { + "id": 5122, + "model_id": 5100, + "year": "1987" + }, + { + "id": 5127, + "model_id": 5100, + "year": "1988" + }, + { + "id": 5131, + "model_id": 5100, + "year": "1989" + }, + { + "id": 5135, + "model_id": 5100, + "year": "1990" + }, + { + "id": 5139, + "model_id": 5100, + "year": "1991" + }, + { + "id": 5143, + "model_id": 5100, + "year": "1992" + }, + { + "id": 5147, + "model_id": 5100, + "year": "1993" + }, + { + "id": 5151, + "model_id": 5100, + "year": "1994" + }, + { + "id": 5155, + "model_id": 5100, + "year": "1995" + }, + { + "id": 5158, + "model_id": 5100, + "year": "1996" + }, + { + "id": 5163, + "model_id": 5100, + "year": "1997" + }, + { + "id": 5169, + "model_id": 5100, + "year": "1998" + }, + { + "id": 5174, + "model_id": 5100, + "year": "1999" + }, + { + "id": 5179, + "model_id": 5100, + "year": "2000" + }, + { + "id": 5184, + "model_id": 5100, + "year": "2001" + }, + { + "id": 5189, + "model_id": 5100, + "year": "2002" + }, + { + "id": 5195, + "model_id": 5100, + "year": "2003" + }, + { + "id": 5197, + "model_id": 5100, + "year": "2004" + }, + { + "id": 5199, + "model_id": 5100, + "year": "2005" + }, + { + "id": 5201, + "model_id": 5201, + "year": "2000" + }, + { + "id": 5202, + "model_id": 5201, + "year": "2001" + }, + { + "id": 5203, + "model_id": 5203, + "year": "1984" + }, + { + "id": 5209, + "model_id": 5203, + "year": "1985" + }, + { + "id": 5219, + "model_id": 5203, + "year": "1986" + }, + { + "id": 5224, + "model_id": 5203, + "year": "1987" + }, + { + "id": 5229, + "model_id": 5203, + "year": "1988" + }, + { + "id": 5231, + "model_id": 5203, + "year": "1989" + }, + { + "id": 5233, + "model_id": 5203, + "year": "1991" + }, + { + "id": 5235, + "model_id": 5235, + "year": "2002" + }, + { + "id": 5236, + "model_id": 5235, + "year": "2003" + }, + { + "id": 5237, + "model_id": 5235, + "year": "2004" + }, + { + "id": 5238, + "model_id": 5238, + "year": "1984" + }, + { + "id": 5244, + "model_id": 5238, + "year": "1985" + }, + { + "id": 5254, + "model_id": 5238, + "year": "1986" + }, + { + "id": 5259, + "model_id": 5238, + "year": "1987" + }, + { + "id": 5264, + "model_id": 5238, + "year": "1988" + }, + { + "id": 5268, + "model_id": 5238, + "year": "1989" + }, + { + "id": 5272, + "model_id": 5238, + "year": "1990" + }, + { + "id": 5276, + "model_id": 5238, + "year": "1991" + }, + { + "id": 5279, + "model_id": 5238, + "year": "1992" + }, + { + "id": 5281, + "model_id": 5238, + "year": "1993" + }, + { + "id": 5283, + "model_id": 5238, + "year": "1994" + }, + { + "id": 5285, + "model_id": 5285, + "year": "1984" + }, + { + "id": 5294, + "model_id": 5285, + "year": "1985" + }, + { + "id": 5303, + "model_id": 5285, + "year": "1986" + }, + { + "id": 5309, + "model_id": 5285, + "year": "1987" + }, + { + "id": 5313, + "model_id": 5285, + "year": "1988" + }, + { + "id": 5317, + "model_id": 5285, + "year": "1989" + }, + { + "id": 5320, + "model_id": 5320, + "year": "1984" + }, + { + "id": 5331, + "model_id": 5320, + "year": "1985" + }, + { + "id": 5340, + "model_id": 5320, + "year": "1986" + }, + { + "id": 5346, + "model_id": 5320, + "year": "1987" + }, + { + "id": 5350, + "model_id": 5320, + "year": "1988" + }, + { + "id": 5353, + "model_id": 5320, + "year": "1989" + }, + { + "id": 5355, + "model_id": 5320, + "year": "1990" + }, + { + "id": 5357, + "model_id": 5357, + "year": "1984" + }, + { + "id": 5365, + "model_id": 5357, + "year": "1985" + }, + { + "id": 5372, + "model_id": 5372, + "year": "1986" + }, + { + "id": 5376, + "model_id": 5372, + "year": "1987" + }, + { + "id": 5379, + "model_id": 5379, + "year": "1984" + }, + { + "id": 5387, + "model_id": 5379, + "year": "1985" + }, + { + "id": 5395, + "model_id": 5395, + "year": "2015" + }, + { + "id": 5396, + "model_id": 5395, + "year": "2016" + }, + { + "id": 5397, + "model_id": 5397, + "year": "2004" + }, + { + "id": 5398, + "model_id": 5397, + "year": "2005" + }, + { + "id": 5399, + "model_id": 5397, + "year": "2008" + }, + { + "id": 5401, + "model_id": 5401, + "year": "1992" + }, + { + "id": 5403, + "model_id": 5401, + "year": "1993" + }, + { + "id": 5404, + "model_id": 5401, + "year": "1994" + }, + { + "id": 5405, + "model_id": 5405, + "year": "2005" + }, + { + "id": 5408, + "model_id": 5405, + "year": "2006" + }, + { + "id": 5413, + "model_id": 5405, + "year": "2007" + }, + { + "id": 5418, + "model_id": 5405, + "year": "2008" + }, + { + "id": 5423, + "model_id": 5405, + "year": "2009" + }, + { + "id": 5426, + "model_id": 5426, + "year": "2010" + }, + { + "id": 5428, + "model_id": 5428, + "year": "2010" + }, + { + "id": 5430, + "model_id": 5430, + "year": "2010" + }, + { + "id": 5431, + "model_id": 5431, + "year": "2008" + }, + { + "id": 5432, + "model_id": 5431, + "year": "2009" + }, + { + "id": 5433, + "model_id": 5433, + "year": "2010" + }, + { + "id": 5434, + "model_id": 5434, + "year": "2010" + }, + { + "id": 5435, + "model_id": 5435, + "year": "2004" + }, + { + "id": 5443, + "model_id": 5435, + "year": "2005" + }, + { + "id": 5451, + "model_id": 5435, + "year": "2006" + }, + { + "id": 5459, + "model_id": 5435, + "year": "2007" + }, + { + "id": 5465, + "model_id": 5435, + "year": "2008" + }, + { + "id": 5471, + "model_id": 5435, + "year": "2009" + }, + { + "id": 5479, + "model_id": 5435, + "year": "2010" + }, + { + "id": 5487, + "model_id": 5435, + "year": "2011" + }, + { + "id": 5495, + "model_id": 5435, + "year": "2012" + }, + { + "id": 5503, + "model_id": 5435, + "year": "2015" + }, + { + "id": 5508, + "model_id": 5435, + "year": "2016" + }, + { + "id": 5515, + "model_id": 5515, + "year": "2015" + }, + { + "id": 5516, + "model_id": 5515, + "year": "2016" + }, + { + "id": 5517, + "model_id": 5517, + "year": "2006" + }, + { + "id": 5519, + "model_id": 5517, + "year": "2007" + }, + { + "id": 5521, + "model_id": 5517, + "year": "2008" + }, + { + "id": 5523, + "model_id": 5517, + "year": "2009" + }, + { + "id": 5525, + "model_id": 5517, + "year": "2010" + }, + { + "id": 5527, + "model_id": 5517, + "year": "2011" + }, + { + "id": 5529, + "model_id": 5517, + "year": "2012" + }, + { + "id": 5531, + "model_id": 5531, + "year": "2004" + }, + { + "id": 5537, + "model_id": 5531, + "year": "2005" + }, + { + "id": 5543, + "model_id": 5531, + "year": "2006" + }, + { + "id": 5549, + "model_id": 5531, + "year": "2007" + }, + { + "id": 5553, + "model_id": 5531, + "year": "2008" + }, + { + "id": 5557, + "model_id": 5531, + "year": "2009" + }, + { + "id": 5563, + "model_id": 5531, + "year": "2010" + }, + { + "id": 5569, + "model_id": 5531, + "year": "2011" + }, + { + "id": 5575, + "model_id": 5531, + "year": "2012" + }, + { + "id": 5581, + "model_id": 5581, + "year": "1987" + }, + { + "id": 5585, + "model_id": 5581, + "year": "1988" + }, + { + "id": 5590, + "model_id": 5581, + "year": "1989" + }, + { + "id": 5594, + "model_id": 5581, + "year": "1990" + }, + { + "id": 5598, + "model_id": 5581, + "year": "1991" + }, + { + "id": 5602, + "model_id": 5581, + "year": "1992" + }, + { + "id": 5606, + "model_id": 5581, + "year": "1993" + }, + { + "id": 5609, + "model_id": 5581, + "year": "1994" + }, + { + "id": 5612, + "model_id": 5581, + "year": "1995" + }, + { + "id": 5614, + "model_id": 5581, + "year": "1996" + }, + { + "id": 5616, + "model_id": 5616, + "year": "1984" + }, + { + "id": 5620, + "model_id": 5616, + "year": "1985" + }, + { + "id": 5622, + "model_id": 5616, + "year": "1986" + }, + { + "id": 5624, + "model_id": 5616, + "year": "1987" + }, + { + "id": 5625, + "model_id": 5616, + "year": "1988" + }, + { + "id": 5627, + "model_id": 5616, + "year": "1989" + }, + { + "id": 5629, + "model_id": 5616, + "year": "1990" + }, + { + "id": 5632, + "model_id": 5616, + "year": "1991" + }, + { + "id": 5635, + "model_id": 5616, + "year": "1992" + }, + { + "id": 5638, + "model_id": 5616, + "year": "1993" + }, + { + "id": 5641, + "model_id": 5616, + "year": "1994" + }, + { + "id": 5644, + "model_id": 5616, + "year": "1995" + }, + { + "id": 5647, + "model_id": 5616, + "year": "1996" + }, + { + "id": 5649, + "model_id": 5616, + "year": "1997" + }, + { + "id": 5651, + "model_id": 5616, + "year": "1998" + }, + { + "id": 5653, + "model_id": 5616, + "year": "1999" + }, + { + "id": 5655, + "model_id": 5616, + "year": "2000" + }, + { + "id": 5657, + "model_id": 5616, + "year": "2001" + }, + { + "id": 5659, + "model_id": 5616, + "year": "2002" + }, + { + "id": 5661, + "model_id": 5616, + "year": "2003" + }, + { + "id": 5663, + "model_id": 5616, + "year": "2004" + }, + { + "id": 5665, + "model_id": 5616, + "year": "2005" + }, + { + "id": 5667, + "model_id": 5616, + "year": "2006" + }, + { + "id": 5670, + "model_id": 5616, + "year": "2007" + }, + { + "id": 5673, + "model_id": 5616, + "year": "2008" + }, + { + "id": 5676, + "model_id": 5616, + "year": "2009" + }, + { + "id": 5680, + "model_id": 5616, + "year": "2010" + }, + { + "id": 5684, + "model_id": 5616, + "year": "2011" + }, + { + "id": 5688, + "model_id": 5616, + "year": "2012" + }, + { + "id": 5692, + "model_id": 5616, + "year": "2013" + }, + { + "id": 5696, + "model_id": 5616, + "year": "2014" + }, + { + "id": 5698, + "model_id": 5616, + "year": "2015" + }, + { + "id": 5702, + "model_id": 5616, + "year": "2016" + }, + { + "id": 5706, + "model_id": 5706, + "year": "1986" + }, + { + "id": 5708, + "model_id": 5706, + "year": "1987" + }, + { + "id": 5709, + "model_id": 5706, + "year": "1988" + }, + { + "id": 5711, + "model_id": 5706, + "year": "1989" + }, + { + "id": 5713, + "model_id": 5713, + "year": "2011" + }, + { + "id": 5716, + "model_id": 5713, + "year": "2012" + }, + { + "id": 5720, + "model_id": 5713, + "year": "2013" + }, + { + "id": 5724, + "model_id": 5713, + "year": "2014" + }, + { + "id": 5729, + "model_id": 5713, + "year": "2015" + }, + { + "id": 5734, + "model_id": 5713, + "year": "2016" + }, + { + "id": 5736, + "model_id": 5736, + "year": "2011" + }, + { + "id": 5738, + "model_id": 5736, + "year": "2012" + }, + { + "id": 5740, + "model_id": 5736, + "year": "2013" + }, + { + "id": 5742, + "model_id": 5736, + "year": "2014" + }, + { + "id": 5744, + "model_id": 5736, + "year": "2015" + }, + { + "id": 5746, + "model_id": 5746, + "year": "2016" + }, + { + "id": 5750, + "model_id": 5750, + "year": "2016" + }, + { + "id": 5752, + "model_id": 5752, + "year": "2016" + }, + { + "id": 5753, + "model_id": 5753, + "year": "1984" + }, + { + "id": 5762, + "model_id": 5753, + "year": "1985" + }, + { + "id": 5769, + "model_id": 5753, + "year": "1986" + }, + { + "id": 5773, + "model_id": 5753, + "year": "1987" + }, + { + "id": 5777, + "model_id": 5777, + "year": "2004" + }, + { + "id": 5778, + "model_id": 5777, + "year": "2005" + }, + { + "id": 5779, + "model_id": 5777, + "year": "2006" + }, + { + "id": 5780, + "model_id": 5780, + "year": "2005" + }, + { + "id": 5782, + "model_id": 5780, + "year": "2006" + }, + { + "id": 5784, + "model_id": 5780, + "year": "2007" + }, + { + "id": 5786, + "model_id": 5780, + "year": "2008" + }, + { + "id": 5790, + "model_id": 5780, + "year": "2009" + }, + { + "id": 5794, + "model_id": 5780, + "year": "2010" + }, + { + "id": 5798, + "model_id": 5780, + "year": "2011" + }, + { + "id": 5804, + "model_id": 5780, + "year": "2012" + }, + { + "id": 5812, + "model_id": 5780, + "year": "2013" + }, + { + "id": 5820, + "model_id": 5780, + "year": "2014" + }, + { + "id": 5828, + "model_id": 5780, + "year": "2015" + }, + { + "id": 5834, + "model_id": 5780, + "year": "2016" + }, + { + "id": 5840, + "model_id": 5780, + "year": "2017" + }, + { + "id": 5846, + "model_id": 5846, + "year": "2003" + }, + { + "id": 5847, + "model_id": 5846, + "year": "2004" + }, + { + "id": 5848, + "model_id": 5846, + "year": "2005" + }, + { + "id": 5849, + "model_id": 5846, + "year": "2006" + }, + { + "id": 5850, + "model_id": 5846, + "year": "2007" + }, + { + "id": 5852, + "model_id": 5846, + "year": "2008" + }, + { + "id": 5854, + "model_id": 5854, + "year": "2010" + }, + { + "id": 5857, + "model_id": 5854, + "year": "2011" + }, + { + "id": 5860, + "model_id": 5854, + "year": "2012" + }, + { + "id": 5863, + "model_id": 5854, + "year": "2013" + }, + { + "id": 5866, + "model_id": 5854, + "year": "2014" + }, + { + "id": 5869, + "model_id": 5869, + "year": "2010" + }, + { + "id": 5871, + "model_id": 5869, + "year": "2011" + }, + { + "id": 5873, + "model_id": 5869, + "year": "2012" + }, + { + "id": 5875, + "model_id": 5869, + "year": "2013" + }, + { + "id": 5877, + "model_id": 5869, + "year": "2014" + }, + { + "id": 5879, + "model_id": 5879, + "year": "2009" + }, + { + "id": 5883, + "model_id": 5879, + "year": "2010" + }, + { + "id": 5885, + "model_id": 5879, + "year": "2011" + }, + { + "id": 5887, + "model_id": 5879, + "year": "2012" + }, + { + "id": 5889, + "model_id": 5879, + "year": "2013" + }, + { + "id": 5891, + "model_id": 5879, + "year": "2014" + }, + { + "id": 5893, + "model_id": 5893, + "year": "1996" + }, + { + "id": 5896, + "model_id": 5893, + "year": "1997" + }, + { + "id": 5899, + "model_id": 5893, + "year": "1998" + }, + { + "id": 5902, + "model_id": 5893, + "year": "1999" + }, + { + "id": 5905, + "model_id": 5893, + "year": "2000" + }, + { + "id": 5908, + "model_id": 5893, + "year": "2001" + }, + { + "id": 5911, + "model_id": 5893, + "year": "2002" + }, + { + "id": 5914, + "model_id": 5893, + "year": "2003" + }, + { + "id": 5916, + "model_id": 5893, + "year": "2004" + }, + { + "id": 5918, + "model_id": 5893, + "year": "2005" + }, + { + "id": 5920, + "model_id": 5893, + "year": "2006" + }, + { + "id": 5922, + "model_id": 5893, + "year": "2007" + }, + { + "id": 5924, + "model_id": 5893, + "year": "2008" + }, + { + "id": 5926, + "model_id": 5926, + "year": "2011" + }, + { + "id": 5927, + "model_id": 5926, + "year": "2012" + }, + { + "id": 5928, + "model_id": 5928, + "year": "2011" + }, + { + "id": 5929, + "model_id": 5928, + "year": "2012" + }, + { + "id": 5930, + "model_id": 5928, + "year": "2013" + }, + { + "id": 5931, + "model_id": 5928, + "year": "2014" + }, + { + "id": 5932, + "model_id": 5928, + "year": "2015" + }, + { + "id": 5934, + "model_id": 5934, + "year": "2011" + }, + { + "id": 5936, + "model_id": 5934, + "year": "2012" + }, + { + "id": 5938, + "model_id": 5934, + "year": "2013" + }, + { + "id": 5940, + "model_id": 5934, + "year": "2014" + }, + { + "id": 5942, + "model_id": 5934, + "year": "2015" + }, + { + "id": 5945, + "model_id": 5934, + "year": "2016" + }, + { + "id": 5946, + "model_id": 5946, + "year": "2011" + }, + { + "id": 5947, + "model_id": 5946, + "year": "2012" + }, + { + "id": 5948, + "model_id": 5948, + "year": "2011" + }, + { + "id": 5949, + "model_id": 5948, + "year": "2012" + }, + { + "id": 5951, + "model_id": 5948, + "year": "2013" + }, + { + "id": 5953, + "model_id": 5948, + "year": "2014" + }, + { + "id": 5955, + "model_id": 5948, + "year": "2015" + }, + { + "id": 5958, + "model_id": 5948, + "year": "2016" + }, + { + "id": 5959, + "model_id": 5959, + "year": "2004" + }, + { + "id": 5960, + "model_id": 5960, + "year": "2004" + }, + { + "id": 5961, + "model_id": 5961, + "year": "2004" + }, + { + "id": 5962, + "model_id": 5962, + "year": "2004" + }, + { + "id": 5963, + "model_id": 5963, + "year": "1984" + }, + { + "id": 5974, + "model_id": 5963, + "year": "1985" + }, + { + "id": 5986, + "model_id": 5963, + "year": "1986" + }, + { + "id": 5997, + "model_id": 5963, + "year": "1987" + }, + { + "id": 6003, + "model_id": 5963, + "year": "1988" + }, + { + "id": 6009, + "model_id": 5963, + "year": "1989" + }, + { + "id": 6015, + "model_id": 5963, + "year": "1990" + }, + { + "id": 6019, + "model_id": 5963, + "year": "1991" + }, + { + "id": 6023, + "model_id": 5963, + "year": "1992" + }, + { + "id": 6027, + "model_id": 5963, + "year": "1993" + }, + { + "id": 6028, + "model_id": 6028, + "year": "1984" + }, + { + "id": 6044, + "model_id": 6028, + "year": "1985" + }, + { + "id": 6058, + "model_id": 6028, + "year": "1986" + }, + { + "id": 6072, + "model_id": 6028, + "year": "1987" + }, + { + "id": 6082, + "model_id": 6028, + "year": "1988" + }, + { + "id": 6091, + "model_id": 6028, + "year": "1989" + }, + { + "id": 6100, + "model_id": 6028, + "year": "1990" + }, + { + "id": 6105, + "model_id": 6028, + "year": "1991" + }, + { + "id": 6109, + "model_id": 6028, + "year": "1992" + }, + { + "id": 6113, + "model_id": 6028, + "year": "1993" + }, + { + "id": 6117, + "model_id": 6028, + "year": "1994" + }, + { + "id": 6121, + "model_id": 6028, + "year": "1995" + }, + { + "id": 6124, + "model_id": 6124, + "year": "1995" + }, + { + "id": 6125, + "model_id": 6125, + "year": "1984" + }, + { + "id": 6127, + "model_id": 6125, + "year": "1985" + }, + { + "id": 6129, + "model_id": 6125, + "year": "1986" + }, + { + "id": 6131, + "model_id": 6125, + "year": "1987" + }, + { + "id": 6132, + "model_id": 6125, + "year": "1988" + }, + { + "id": 6133, + "model_id": 6125, + "year": "1989" + }, + { + "id": 6134, + "model_id": 6125, + "year": "1990" + }, + { + "id": 6135, + "model_id": 6125, + "year": "1991" + }, + { + "id": 6136, + "model_id": 6125, + "year": "1992" + }, + { + "id": 6137, + "model_id": 6137, + "year": "1984" + }, + { + "id": 6139, + "model_id": 6137, + "year": "1985" + }, + { + "id": 6141, + "model_id": 6137, + "year": "1986" + }, + { + "id": 6143, + "model_id": 6137, + "year": "1987" + }, + { + "id": 6144, + "model_id": 6137, + "year": "1988" + }, + { + "id": 6145, + "model_id": 6137, + "year": "1989" + }, + { + "id": 6147, + "model_id": 6137, + "year": "1990" + }, + { + "id": 6148, + "model_id": 6137, + "year": "1991" + }, + { + "id": 6149, + "model_id": 6137, + "year": "1992" + }, + { + "id": 6151, + "model_id": 6137, + "year": "1993" + }, + { + "id": 6153, + "model_id": 6137, + "year": "1994" + }, + { + "id": 6155, + "model_id": 6137, + "year": "1995" + }, + { + "id": 6156, + "model_id": 6156, + "year": "1995" + }, + { + "id": 6157, + "model_id": 6157, + "year": "2006" + }, + { + "id": 6161, + "model_id": 6157, + "year": "2007" + }, + { + "id": 6165, + "model_id": 6157, + "year": "2008" + }, + { + "id": 6171, + "model_id": 6157, + "year": "2009" + }, + { + "id": 6177, + "model_id": 6157, + "year": "2010" + }, + { + "id": 6183, + "model_id": 6157, + "year": "2011" + }, + { + "id": 6187, + "model_id": 6187, + "year": "2007" + }, + { + "id": 6191, + "model_id": 6187, + "year": "2008" + }, + { + "id": 6195, + "model_id": 6187, + "year": "2009" + }, + { + "id": 6201, + "model_id": 6187, + "year": "2010" + }, + { + "id": 6205, + "model_id": 6187, + "year": "2011" + }, + { + "id": 6209, + "model_id": 6209, + "year": "2000" + }, + { + "id": 6212, + "model_id": 6209, + "year": "2001" + }, + { + "id": 6214, + "model_id": 6209, + "year": "2002" + }, + { + "id": 6217, + "model_id": 6209, + "year": "2003" + }, + { + "id": 6219, + "model_id": 6209, + "year": "2004" + }, + { + "id": 6222, + "model_id": 6209, + "year": "2005" + }, + { + "id": 6225, + "model_id": 6209, + "year": "2006" + }, + { + "id": 6229, + "model_id": 6209, + "year": "2007" + }, + { + "id": 6233, + "model_id": 6209, + "year": "2008" + }, + { + "id": 6237, + "model_id": 6209, + "year": "2009" + }, + { + "id": 6241, + "model_id": 6209, + "year": "2010" + }, + { + "id": 6244, + "model_id": 6209, + "year": "2011" + }, + { + "id": 6246, + "model_id": 6209, + "year": "2012" + }, + { + "id": 6248, + "model_id": 6209, + "year": "2013" + }, + { + "id": 6250, + "model_id": 6209, + "year": "2014" + }, + { + "id": 6253, + "model_id": 6209, + "year": "2015" + }, + { + "id": 6256, + "model_id": 6209, + "year": "2016" + }, + { + "id": 6259, + "model_id": 6209, + "year": "2017" + }, + { + "id": 6261, + "model_id": 6261, + "year": "2015" + }, + { + "id": 6262, + "model_id": 6261, + "year": "2016" + }, + { + "id": 6263, + "model_id": 6263, + "year": "2014" + }, + { + "id": 6264, + "model_id": 6264, + "year": "2014" + }, + { + "id": 6265, + "model_id": 6264, + "year": "2015" + }, + { + "id": 6266, + "model_id": 6264, + "year": "2016" + }, + { + "id": 6267, + "model_id": 6267, + "year": "2001" + }, + { + "id": 6268, + "model_id": 6267, + "year": "2003" + }, + { + "id": 6269, + "model_id": 6267, + "year": "2004" + }, + { + "id": 6270, + "model_id": 6267, + "year": "2005" + }, + { + "id": 6271, + "model_id": 6271, + "year": "1984" + }, + { + "id": 6280, + "model_id": 6271, + "year": "1985" + }, + { + "id": 6289, + "model_id": 6289, + "year": "1985" + }, + { + "id": 6294, + "model_id": 6289, + "year": "1986" + }, + { + "id": 6298, + "model_id": 6298, + "year": "1984" + }, + { + "id": 6310, + "model_id": 6298, + "year": "1985" + }, + { + "id": 6322, + "model_id": 6298, + "year": "1986" + }, + { + "id": 6335, + "model_id": 6298, + "year": "1988" + }, + { + "id": 6347, + "model_id": 6347, + "year": "1989" + }, + { + "id": 6359, + "model_id": 6347, + "year": "1990" + }, + { + "id": 6371, + "model_id": 6347, + "year": "1991" + }, + { + "id": 6384, + "model_id": 6347, + "year": "1992" + }, + { + "id": 6394, + "model_id": 6347, + "year": "1993" + }, + { + "id": 6403, + "model_id": 6347, + "year": "1994" + }, + { + "id": 6414, + "model_id": 6347, + "year": "1995" + }, + { + "id": 6425, + "model_id": 6347, + "year": "1996" + }, + { + "id": 6432, + "model_id": 6347, + "year": "1997" + }, + { + "id": 6439, + "model_id": 6347, + "year": "1998" + }, + { + "id": 6446, + "model_id": 6347, + "year": "1999" + }, + { + "id": 6448, + "model_id": 6448, + "year": "1984" + }, + { + "id": 6453, + "model_id": 6448, + "year": "1985" + }, + { + "id": 6457, + "model_id": 6448, + "year": "1986" + }, + { + "id": 6461, + "model_id": 6448, + "year": "1988" + }, + { + "id": 6473, + "model_id": 6473, + "year": "1989" + }, + { + "id": 6485, + "model_id": 6473, + "year": "1990" + }, + { + "id": 6497, + "model_id": 6473, + "year": "1991" + }, + { + "id": 6510, + "model_id": 6473, + "year": "1992" + }, + { + "id": 6520, + "model_id": 6473, + "year": "1993" + }, + { + "id": 6522, + "model_id": 6522, + "year": "1984" + }, + { + "id": 6527, + "model_id": 6527, + "year": "1990" + }, + { + "id": 6530, + "model_id": 6527, + "year": "1991" + }, + { + "id": 6535, + "model_id": 6527, + "year": "1992" + }, + { + "id": 6540, + "model_id": 6527, + "year": "1993" + }, + { + "id": 6545, + "model_id": 6527, + "year": "1994" + }, + { + "id": 6547, + "model_id": 6527, + "year": "2001" + }, + { + "id": 6548, + "model_id": 6548, + "year": "1994" + }, + { + "id": 6550, + "model_id": 6548, + "year": "1995" + }, + { + "id": 6552, + "model_id": 6548, + "year": "1996" + }, + { + "id": 6553, + "model_id": 6553, + "year": "1990" + }, + { + "id": 6554, + "model_id": 6553, + "year": "1991" + }, + { + "id": 6555, + "model_id": 6553, + "year": "1992" + }, + { + "id": 6557, + "model_id": 6553, + "year": "1993" + }, + { + "id": 6559, + "model_id": 6559, + "year": "1995" + }, + { + "id": 6562, + "model_id": 6559, + "year": "1996" + }, + { + "id": 6564, + "model_id": 6559, + "year": "1997" + }, + { + "id": 6566, + "model_id": 6559, + "year": "1998" + }, + { + "id": 6569, + "model_id": 6559, + "year": "1999" + }, + { + "id": 6572, + "model_id": 6559, + "year": "2000" + }, + { + "id": 6575, + "model_id": 6575, + "year": "1997" + }, + { + "id": 6576, + "model_id": 6575, + "year": "1998" + }, + { + "id": 6578, + "model_id": 6575, + "year": "1999" + }, + { + "id": 6580, + "model_id": 6575, + "year": "2000" + }, + { + "id": 6582, + "model_id": 6575, + "year": "2001" + }, + { + "id": 6583, + "model_id": 6575, + "year": "2002" + }, + { + "id": 6584, + "model_id": 6575, + "year": "2003" + }, + { + "id": 6585, + "model_id": 6575, + "year": "2004" + }, + { + "id": 6587, + "model_id": 6575, + "year": "2005" + }, + { + "id": 6589, + "model_id": 6575, + "year": "2006" + }, + { + "id": 6592, + "model_id": 6575, + "year": "2007" + }, + { + "id": 6595, + "model_id": 6575, + "year": "2008" + }, + { + "id": 6599, + "model_id": 6575, + "year": "2009" + }, + { + "id": 6604, + "model_id": 6575, + "year": "2010" + }, + { + "id": 6611, + "model_id": 6575, + "year": "2011" + }, + { + "id": 6614, + "model_id": 6575, + "year": "2012" + }, + { + "id": 6617, + "model_id": 6575, + "year": "2013" + }, + { + "id": 6619, + "model_id": 6575, + "year": "2014" + }, + { + "id": 6621, + "model_id": 6575, + "year": "2015" + }, + { + "id": 6623, + "model_id": 6575, + "year": "2016" + }, + { + "id": 6625, + "model_id": 6625, + "year": "2013" + }, + { + "id": 6626, + "model_id": 6625, + "year": "2014" + }, + { + "id": 6627, + "model_id": 6627, + "year": "2008" + }, + { + "id": 6628, + "model_id": 6627, + "year": "2009" + }, + { + "id": 6629, + "model_id": 6627, + "year": "2010" + }, + { + "id": 6630, + "model_id": 6627, + "year": "2016" + }, + { + "id": 6631, + "model_id": 6631, + "year": "2016" + }, + { + "id": 6632, + "model_id": 6632, + "year": "2004" + }, + { + "id": 6633, + "model_id": 6632, + "year": "2005" + }, + { + "id": 6634, + "model_id": 6632, + "year": "2006" + }, + { + "id": 6636, + "model_id": 6632, + "year": "2007" + }, + { + "id": 6638, + "model_id": 6638, + "year": "1998" + }, + { + "id": 6641, + "model_id": 6638, + "year": "1999" + }, + { + "id": 6644, + "model_id": 6638, + "year": "2000" + }, + { + "id": 6647, + "model_id": 6638, + "year": "2001" + }, + { + "id": 6648, + "model_id": 6648, + "year": "1984" + }, + { + "id": 6657, + "model_id": 6648, + "year": "1985" + }, + { + "id": 6664, + "model_id": 6648, + "year": "1986" + }, + { + "id": 6667, + "model_id": 6648, + "year": "1987" + }, + { + "id": 6670, + "model_id": 6648, + "year": "1988" + }, + { + "id": 6672, + "model_id": 6648, + "year": "2001" + }, + { + "id": 6674, + "model_id": 6648, + "year": "2002" + }, + { + "id": 6676, + "model_id": 6648, + "year": "2003" + }, + { + "id": 6678, + "model_id": 6648, + "year": "2004" + }, + { + "id": 6681, + "model_id": 6648, + "year": "2005" + }, + { + "id": 6684, + "model_id": 6648, + "year": "2006" + }, + { + "id": 6687, + "model_id": 6648, + "year": "2007" + }, + { + "id": 6690, + "model_id": 6690, + "year": "1985" + }, + { + "id": 6692, + "model_id": 6690, + "year": "1986" + }, + { + "id": 6694, + "model_id": 6690, + "year": "1987" + }, + { + "id": 6696, + "model_id": 6690, + "year": "1988" + }, + { + "id": 6700, + "model_id": 6700, + "year": "2004" + }, + { + "id": 6702, + "model_id": 6700, + "year": "2005" + }, + { + "id": 6704, + "model_id": 6700, + "year": "2006" + }, + { + "id": 6706, + "model_id": 6700, + "year": "2007" + }, + { + "id": 6708, + "model_id": 6708, + "year": "2005" + }, + { + "id": 6710, + "model_id": 6708, + "year": "2006" + }, + { + "id": 6712, + "model_id": 6708, + "year": "2007" + }, + { + "id": 6714, + "model_id": 6714, + "year": "2005" + }, + { + "id": 6716, + "model_id": 6714, + "year": "2006" + }, + { + "id": 6718, + "model_id": 6714, + "year": "2007" + }, + { + "id": 6720, + "model_id": 6720, + "year": "1993" + }, + { + "id": 6737, + "model_id": 6720, + "year": "1994" + }, + { + "id": 6759, + "model_id": 6720, + "year": "1995" + }, + { + "id": 6781, + "model_id": 6720, + "year": "1996" + }, + { + "id": 6786, + "model_id": 6720, + "year": "1997" + }, + { + "id": 6791, + "model_id": 6720, + "year": "1998" + }, + { + "id": 6796, + "model_id": 6796, + "year": "1991" + }, + { + "id": 6797, + "model_id": 6796, + "year": "1992" + }, + { + "id": 6798, + "model_id": 6796, + "year": "1993" + }, + { + "id": 6799, + "model_id": 6796, + "year": "1994" + }, + { + "id": 6800, + "model_id": 6800, + "year": "1998" + }, + { + "id": 6803, + "model_id": 6800, + "year": "1999" + }, + { + "id": 6806, + "model_id": 6800, + "year": "2000" + }, + { + "id": 6809, + "model_id": 6800, + "year": "2001" + }, + { + "id": 6812, + "model_id": 6800, + "year": "2002" + }, + { + "id": 6815, + "model_id": 6815, + "year": "1987" + }, + { + "id": 6828, + "model_id": 6828, + "year": "1987" + }, + { + "id": 6831, + "model_id": 6828, + "year": "1988" + }, + { + "id": 6833, + "model_id": 6833, + "year": "1989" + }, + { + "id": 6835, + "model_id": 6833, + "year": "1990" + }, + { + "id": 6837, + "model_id": 6833, + "year": "1991" + }, + { + "id": 6839, + "model_id": 6839, + "year": "1987" + }, + { + "id": 6849, + "model_id": 6849, + "year": "1984" + }, + { + "id": 6860, + "model_id": 6849, + "year": "1985" + }, + { + "id": 6870, + "model_id": 6849, + "year": "1986" + }, + { + "id": 6876, + "model_id": 6849, + "year": "1987" + }, + { + "id": 6884, + "model_id": 6849, + "year": "1988" + }, + { + "id": 6890, + "model_id": 6849, + "year": "1989" + }, + { + "id": 6895, + "model_id": 6849, + "year": "1990" + }, + { + "id": 6899, + "model_id": 6849, + "year": "1991" + }, + { + "id": 6903, + "model_id": 6849, + "year": "1992" + }, + { + "id": 6909, + "model_id": 6849, + "year": "1993" + }, + { + "id": 6913, + "model_id": 6849, + "year": "1994" + }, + { + "id": 6917, + "model_id": 6917, + "year": "1984" + }, + { + "id": 6921, + "model_id": 6917, + "year": "1985" + }, + { + "id": 6925, + "model_id": 6917, + "year": "1986" + }, + { + "id": 6928, + "model_id": 6917, + "year": "1987" + }, + { + "id": 6931, + "model_id": 6917, + "year": "1988" + }, + { + "id": 6933, + "model_id": 6917, + "year": "1989" + }, + { + "id": 6934, + "model_id": 6917, + "year": "1990" + }, + { + "id": 6935, + "model_id": 6917, + "year": "1991" + }, + { + "id": 6936, + "model_id": 6936, + "year": "1998" + }, + { + "id": 6938, + "model_id": 6938, + "year": "1984" + }, + { + "id": 6956, + "model_id": 6938, + "year": "1985" + }, + { + "id": 6970, + "model_id": 6938, + "year": "1986" + }, + { + "id": 6976, + "model_id": 6938, + "year": "1987" + }, + { + "id": 6984, + "model_id": 6938, + "year": "1988" + }, + { + "id": 6990, + "model_id": 6938, + "year": "1989" + }, + { + "id": 6997, + "model_id": 6938, + "year": "1990" + }, + { + "id": 7004, + "model_id": 6938, + "year": "1991" + }, + { + "id": 7011, + "model_id": 6938, + "year": "1992" + }, + { + "id": 7020, + "model_id": 6938, + "year": "1993" + }, + { + "id": 7027, + "model_id": 6938, + "year": "1994" + }, + { + "id": 7037, + "model_id": 6938, + "year": "1995" + }, + { + "id": 7046, + "model_id": 6938, + "year": "1996" + }, + { + "id": 7052, + "model_id": 6938, + "year": "1997" + }, + { + "id": 7058, + "model_id": 6938, + "year": "1998" + }, + { + "id": 7064, + "model_id": 6938, + "year": "1999" + }, + { + "id": 7070, + "model_id": 6938, + "year": "2000" + }, + { + "id": 7078, + "model_id": 6938, + "year": "2001" + }, + { + "id": 7084, + "model_id": 6938, + "year": "2002" + }, + { + "id": 7090, + "model_id": 6938, + "year": "2003" + }, + { + "id": 7096, + "model_id": 6938, + "year": "2004" + }, + { + "id": 7097, + "model_id": 7097, + "year": "1984" + }, + { + "id": 7099, + "model_id": 7099, + "year": "2004" + }, + { + "id": 7101, + "model_id": 7099, + "year": "2005" + }, + { + "id": 7103, + "model_id": 7099, + "year": "2006" + }, + { + "id": 7105, + "model_id": 7099, + "year": "2009" + }, + { + "id": 7107, + "model_id": 7099, + "year": "2010" + }, + { + "id": 7109, + "model_id": 7099, + "year": "2011" + }, + { + "id": 7111, + "model_id": 7099, + "year": "2012" + }, + { + "id": 7113, + "model_id": 7099, + "year": "2013" + }, + { + "id": 7115, + "model_id": 7099, + "year": "2016" + }, + { + "id": 7117, + "model_id": 7117, + "year": "1999" + }, + { + "id": 7127, + "model_id": 7117, + "year": "2000" + }, + { + "id": 7137, + "model_id": 7117, + "year": "2001" + }, + { + "id": 7147, + "model_id": 7117, + "year": "2002" + }, + { + "id": 7159, + "model_id": 7117, + "year": "2003" + }, + { + "id": 7171, + "model_id": 7117, + "year": "2004" + }, + { + "id": 7185, + "model_id": 7117, + "year": "2005" + }, + { + "id": 7199, + "model_id": 7117, + "year": "2006" + }, + { + "id": 7213, + "model_id": 7213, + "year": "1999" + }, + { + "id": 7215, + "model_id": 7213, + "year": "2000" + }, + { + "id": 7217, + "model_id": 7213, + "year": "2002" + }, + { + "id": 7219, + "model_id": 7219, + "year": "2003" + }, + { + "id": 7220, + "model_id": 7220, + "year": "2005" + }, + { + "id": 7221, + "model_id": 7221, + "year": "2004" + }, + { + "id": 7222, + "model_id": 7221, + "year": "2005" + }, + { + "id": 7224, + "model_id": 7224, + "year": "2007" + }, + { + "id": 7229, + "model_id": 7224, + "year": "2008" + }, + { + "id": 7234, + "model_id": 7224, + "year": "2009" + }, + { + "id": 7242, + "model_id": 7224, + "year": "2010" + }, + { + "id": 7246, + "model_id": 7224, + "year": "2011" + }, + { + "id": 7250, + "model_id": 7224, + "year": "2012" + }, + { + "id": 7254, + "model_id": 7224, + "year": "2013" + }, + { + "id": 7258, + "model_id": 7224, + "year": "2014" + }, + { + "id": 7261, + "model_id": 7224, + "year": "2015" + }, + { + "id": 7265, + "model_id": 7224, + "year": "2016" + }, + { + "id": 7270, + "model_id": 7270, + "year": "2015" + }, + { + "id": 7273, + "model_id": 7270, + "year": "2016" + }, + { + "id": 7274, + "model_id": 7274, + "year": "2009" + }, + { + "id": 7275, + "model_id": 7274, + "year": "2010" + }, + { + "id": 7276, + "model_id": 7274, + "year": "2011" + }, + { + "id": 7277, + "model_id": 7274, + "year": "2012" + }, + { + "id": 7278, + "model_id": 7274, + "year": "2013" + }, + { + "id": 7279, + "model_id": 7279, + "year": "2007" + }, + { + "id": 7281, + "model_id": 7281, + "year": "2007" + }, + { + "id": 7293, + "model_id": 7293, + "year": "2007" + }, + { + "id": 7298, + "model_id": 7293, + "year": "2008" + }, + { + "id": 7303, + "model_id": 7293, + "year": "2009" + }, + { + "id": 7311, + "model_id": 7293, + "year": "2010" + }, + { + "id": 7315, + "model_id": 7293, + "year": "2011" + }, + { + "id": 7319, + "model_id": 7293, + "year": "2012" + }, + { + "id": 7323, + "model_id": 7293, + "year": "2013" + }, + { + "id": 7327, + "model_id": 7293, + "year": "2014" + }, + { + "id": 7330, + "model_id": 7293, + "year": "2015" + }, + { + "id": 7334, + "model_id": 7293, + "year": "2016" + }, + { + "id": 7339, + "model_id": 7339, + "year": "2015" + }, + { + "id": 7342, + "model_id": 7339, + "year": "2016" + }, + { + "id": 7343, + "model_id": 7343, + "year": "2003" + }, + { + "id": 7344, + "model_id": 7344, + "year": "2012" + }, + { + "id": 7348, + "model_id": 7344, + "year": "2013" + }, + { + "id": 7352, + "model_id": 7344, + "year": "2014" + }, + { + "id": 7356, + "model_id": 7344, + "year": "2015" + }, + { + "id": 7360, + "model_id": 7344, + "year": "2016" + }, + { + "id": 7364, + "model_id": 7364, + "year": "2012" + }, + { + "id": 7368, + "model_id": 7364, + "year": "2013" + }, + { + "id": 7372, + "model_id": 7364, + "year": "2014" + }, + { + "id": 7376, + "model_id": 7364, + "year": "2015" + }, + { + "id": 7380, + "model_id": 7364, + "year": "2016" + }, + { + "id": 7384, + "model_id": 7384, + "year": "2014" + }, + { + "id": 7386, + "model_id": 7384, + "year": "2015" + }, + { + "id": 7388, + "model_id": 7384, + "year": "2016" + }, + { + "id": 7390, + "model_id": 7390, + "year": "2013" + }, + { + "id": 7392, + "model_id": 7390, + "year": "2014" + }, + { + "id": 7394, + "model_id": 7390, + "year": "2015" + }, + { + "id": 7396, + "model_id": 7390, + "year": "2016" + }, + { + "id": 7398, + "model_id": 7398, + "year": "2013" + }, + { + "id": 7400, + "model_id": 7398, + "year": "2014" + }, + { + "id": 7402, + "model_id": 7398, + "year": "2015" + }, + { + "id": 7404, + "model_id": 7398, + "year": "2016" + }, + { + "id": 7406, + "model_id": 7406, + "year": "2014" + }, + { + "id": 7407, + "model_id": 7406, + "year": "2015" + }, + { + "id": 7408, + "model_id": 7406, + "year": "2016" + }, + { + "id": 7409, + "model_id": 7409, + "year": "1985" + }, + { + "id": 7411, + "model_id": 7409, + "year": "1986" + }, + { + "id": 7413, + "model_id": 7409, + "year": "1987" + }, + { + "id": 7415, + "model_id": 7409, + "year": "1988" + }, + { + "id": 7417, + "model_id": 7417, + "year": "1987" + }, + { + "id": 7418, + "model_id": 7417, + "year": "1988" + }, + { + "id": 7419, + "model_id": 7419, + "year": "1993" + }, + { + "id": 7422, + "model_id": 7419, + "year": "1994" + }, + { + "id": 7426, + "model_id": 7419, + "year": "1995" + }, + { + "id": 7429, + "model_id": 7429, + "year": "1995" + }, + { + "id": 7430, + "model_id": 7430, + "year": "1993" + }, + { + "id": 7431, + "model_id": 7431, + "year": "1994" + }, + { + "id": 7432, + "model_id": 7432, + "year": "1995" + }, + { + "id": 7433, + "model_id": 7433, + "year": "1985" + }, + { + "id": 7435, + "model_id": 7433, + "year": "1986" + }, + { + "id": 7437, + "model_id": 7433, + "year": "1987" + }, + { + "id": 7439, + "model_id": 7433, + "year": "1988" + }, + { + "id": 7441, + "model_id": 7433, + "year": "1989" + }, + { + "id": 7443, + "model_id": 7433, + "year": "1990" + }, + { + "id": 7445, + "model_id": 7433, + "year": "1991" + }, + { + "id": 7447, + "model_id": 7433, + "year": "1992" + }, + { + "id": 7449, + "model_id": 7433, + "year": "1993" + }, + { + "id": 7451, + "model_id": 7433, + "year": "1994" + }, + { + "id": 7453, + "model_id": 7453, + "year": "1986" + }, + { + "id": 7454, + "model_id": 7453, + "year": "1987" + }, + { + "id": 7455, + "model_id": 7455, + "year": "1988" + }, + { + "id": 7456, + "model_id": 7456, + "year": "1986" + }, + { + "id": 7458, + "model_id": 7458, + "year": "2014" + }, + { + "id": 7459, + "model_id": 7458, + "year": "2015" + }, + { + "id": 7461, + "model_id": 7458, + "year": "2016" + }, + { + "id": 7463, + "model_id": 7463, + "year": "2003" + }, + { + "id": 7464, + "model_id": 7463, + "year": "2004" + }, + { + "id": 7465, + "model_id": 7463, + "year": "2005" + }, + { + "id": 7467, + "model_id": 7463, + "year": "2006" + }, + { + "id": 7469, + "model_id": 7469, + "year": "1992" + }, + { + "id": 7471, + "model_id": 7469, + "year": "1993" + }, + { + "id": 7473, + "model_id": 7469, + "year": "1994" + }, + { + "id": 7475, + "model_id": 7469, + "year": "1995" + }, + { + "id": 7477, + "model_id": 7469, + "year": "1996" + }, + { + "id": 7479, + "model_id": 7469, + "year": "1997" + }, + { + "id": 7481, + "model_id": 7469, + "year": "1998" + }, + { + "id": 7482, + "model_id": 7469, + "year": "1999" + }, + { + "id": 7483, + "model_id": 7469, + "year": "2000" + }, + { + "id": 7485, + "model_id": 7469, + "year": "2001" + }, + { + "id": 7487, + "model_id": 7469, + "year": "2002" + }, + { + "id": 7491, + "model_id": 7469, + "year": "2003" + }, + { + "id": 7497, + "model_id": 7469, + "year": "2004" + }, + { + "id": 7503, + "model_id": 7469, + "year": "2005" + }, + { + "id": 7507, + "model_id": 7469, + "year": "2006" + }, + { + "id": 7511, + "model_id": 7469, + "year": "2007" + }, + { + "id": 7516, + "model_id": 7469, + "year": "2008" + }, + { + "id": 7521, + "model_id": 7469, + "year": "2009" + }, + { + "id": 7524, + "model_id": 7469, + "year": "2010" + }, + { + "id": 7526, + "model_id": 7469, + "year": "2011" + }, + { + "id": 7528, + "model_id": 7469, + "year": "2012" + }, + { + "id": 7530, + "model_id": 7469, + "year": "2013" + }, + { + "id": 7532, + "model_id": 7532, + "year": "2011" + }, + { + "id": 7534, + "model_id": 7532, + "year": "2012" + }, + { + "id": 7536, + "model_id": 7532, + "year": "2013" + }, + { + "id": 7538, + "model_id": 7538, + "year": "1984" + }, + { + "id": 7543, + "model_id": 7538, + "year": "1985" + }, + { + "id": 7548, + "model_id": 7538, + "year": "1986" + }, + { + "id": 7552, + "model_id": 7538, + "year": "2014" + }, + { + "id": 7553, + "model_id": 7553, + "year": "2015" + }, + { + "id": 7555, + "model_id": 7553, + "year": "2016" + }, + { + "id": 7557, + "model_id": 7557, + "year": "1984" + }, + { + "id": 7562, + "model_id": 7557, + "year": "1985" + }, + { + "id": 7567, + "model_id": 7557, + "year": "1986" + }, + { + "id": 7571, + "model_id": 7557, + "year": "2014" + }, + { + "id": 7572, + "model_id": 7572, + "year": "2015" + }, + { + "id": 7574, + "model_id": 7572, + "year": "2016" + }, + { + "id": 7576, + "model_id": 7576, + "year": "1989" + }, + { + "id": 7580, + "model_id": 7576, + "year": "1990" + }, + { + "id": 7583, + "model_id": 7576, + "year": "1991" + }, + { + "id": 7585, + "model_id": 7585, + "year": "1984" + }, + { + "id": 7595, + "model_id": 7585, + "year": "1985" + }, + { + "id": 7604, + "model_id": 7585, + "year": "1986" + }, + { + "id": 7610, + "model_id": 7585, + "year": "1987" + }, + { + "id": 7616, + "model_id": 7585, + "year": "1988" + }, + { + "id": 7620, + "model_id": 7620, + "year": "1984" + }, + { + "id": 7630, + "model_id": 7620, + "year": "1985" + }, + { + "id": 7639, + "model_id": 7620, + "year": "1986" + }, + { + "id": 7645, + "model_id": 7620, + "year": "1987" + }, + { + "id": 7651, + "model_id": 7620, + "year": "1988" + }, + { + "id": 7657, + "model_id": 7657, + "year": "1995" + }, + { + "id": 7661, + "model_id": 7657, + "year": "1996" + }, + { + "id": 7664, + "model_id": 7657, + "year": "1997" + }, + { + "id": 7667, + "model_id": 7657, + "year": "1998" + }, + { + "id": 7671, + "model_id": 7657, + "year": "1999" + }, + { + "id": 7675, + "model_id": 7657, + "year": "2000" + }, + { + "id": 7682, + "model_id": 7657, + "year": "2001" + }, + { + "id": 7686, + "model_id": 7657, + "year": "2002" + }, + { + "id": 7692, + "model_id": 7657, + "year": "2003" + }, + { + "id": 7700, + "model_id": 7657, + "year": "2004" + }, + { + "id": 7708, + "model_id": 7657, + "year": "2005" + }, + { + "id": 7716, + "model_id": 7657, + "year": "2006" + }, + { + "id": 7722, + "model_id": 7657, + "year": "2007" + }, + { + "id": 7726, + "model_id": 7657, + "year": "2008" + }, + { + "id": 7731, + "model_id": 7657, + "year": "2009" + }, + { + "id": 7737, + "model_id": 7657, + "year": "2010" + }, + { + "id": 7739, + "model_id": 7657, + "year": "2011" + }, + { + "id": 7741, + "model_id": 7657, + "year": "2012" + }, + { + "id": 7743, + "model_id": 7657, + "year": "2013" + }, + { + "id": 7745, + "model_id": 7745, + "year": "2009" + }, + { + "id": 7746, + "model_id": 7746, + "year": "2014" + }, + { + "id": 7747, + "model_id": 7747, + "year": "2015" + }, + { + "id": 7749, + "model_id": 7747, + "year": "2016" + }, + { + "id": 7751, + "model_id": 7751, + "year": "2008" + }, + { + "id": 7753, + "model_id": 7751, + "year": "2009" + }, + { + "id": 7755, + "model_id": 7751, + "year": "2010" + }, + { + "id": 7757, + "model_id": 7751, + "year": "2011" + }, + { + "id": 7759, + "model_id": 7751, + "year": "2012" + }, + { + "id": 7761, + "model_id": 7751, + "year": "2013" + }, + { + "id": 7763, + "model_id": 7763, + "year": "2014" + }, + { + "id": 7764, + "model_id": 7764, + "year": "2015" + }, + { + "id": 7766, + "model_id": 7764, + "year": "2016" + }, + { + "id": 7768, + "model_id": 7768, + "year": "1998" + }, + { + "id": 7772, + "model_id": 7768, + "year": "1999" + }, + { + "id": 7778, + "model_id": 7768, + "year": "2000" + }, + { + "id": 7784, + "model_id": 7768, + "year": "2001" + }, + { + "id": 7788, + "model_id": 7768, + "year": "2002" + }, + { + "id": 7792, + "model_id": 7768, + "year": "2003" + }, + { + "id": 7796, + "model_id": 7796, + "year": "1998" + }, + { + "id": 7800, + "model_id": 7796, + "year": "1999" + }, + { + "id": 7804, + "model_id": 7796, + "year": "2000" + }, + { + "id": 7808, + "model_id": 7796, + "year": "2001" + }, + { + "id": 7812, + "model_id": 7796, + "year": "2002" + }, + { + "id": 7816, + "model_id": 7796, + "year": "2003" + }, + { + "id": 7822, + "model_id": 7796, + "year": "2004" + }, + { + "id": 7824, + "model_id": 7824, + "year": "2001" + }, + { + "id": 7826, + "model_id": 7824, + "year": "2002" + }, + { + "id": 7828, + "model_id": 7824, + "year": "2003" + }, + { + "id": 7830, + "model_id": 7824, + "year": "2004" + }, + { + "id": 7832, + "model_id": 7832, + "year": "2001" + }, + { + "id": 7833, + "model_id": 7832, + "year": "2002" + }, + { + "id": 7834, + "model_id": 7832, + "year": "2003" + }, + { + "id": 7835, + "model_id": 7832, + "year": "2004" + }, + { + "id": 7836, + "model_id": 7836, + "year": "2001" + }, + { + "id": 7838, + "model_id": 7836, + "year": "2002" + }, + { + "id": 7840, + "model_id": 7836, + "year": "2003" + }, + { + "id": 7842, + "model_id": 7842, + "year": "2002" + }, + { + "id": 7844, + "model_id": 7842, + "year": "2003" + }, + { + "id": 7846, + "model_id": 7842, + "year": "2004" + }, + { + "id": 7848, + "model_id": 7842, + "year": "2005" + }, + { + "id": 7850, + "model_id": 7842, + "year": "2006" + }, + { + "id": 7856, + "model_id": 7842, + "year": "2007" + }, + { + "id": 7862, + "model_id": 7842, + "year": "2008" + }, + { + "id": 7868, + "model_id": 7842, + "year": "2009" + }, + { + "id": 7874, + "model_id": 7874, + "year": "2002" + }, + { + "id": 7876, + "model_id": 7874, + "year": "2003" + }, + { + "id": 7880, + "model_id": 7874, + "year": "2004" + }, + { + "id": 7884, + "model_id": 7874, + "year": "2005" + }, + { + "id": 7888, + "model_id": 7874, + "year": "2006" + }, + { + "id": 7892, + "model_id": 7874, + "year": "2007" + }, + { + "id": 7893, + "model_id": 7893, + "year": "2009" + }, + { + "id": 7895, + "model_id": 7893, + "year": "2010" + }, + { + "id": 7897, + "model_id": 7893, + "year": "2011" + }, + { + "id": 7899, + "model_id": 7893, + "year": "2012" + }, + { + "id": 7901, + "model_id": 7893, + "year": "2013" + }, + { + "id": 7903, + "model_id": 7893, + "year": "2014" + }, + { + "id": 7905, + "model_id": 7893, + "year": "2015" + }, + { + "id": 7907, + "model_id": 7893, + "year": "2016" + }, + { + "id": 7909, + "model_id": 7893, + "year": "2017" + }, + { + "id": 7911, + "model_id": 7911, + "year": "2015" + }, + { + "id": 7913, + "model_id": 7911, + "year": "2016" + }, + { + "id": 7915, + "model_id": 7915, + "year": "1987" + }, + { + "id": 7916, + "model_id": 7915, + "year": "1988" + }, + { + "id": 7917, + "model_id": 7915, + "year": "1989" + }, + { + "id": 7918, + "model_id": 7915, + "year": "1990" + }, + { + "id": 7919, + "model_id": 7919, + "year": "1990" + }, + { + "id": 7920, + "model_id": 7919, + "year": "1991" + }, + { + "id": 7921, + "model_id": 7921, + "year": "2005" + }, + { + "id": 7923, + "model_id": 7921, + "year": "2006" + }, + { + "id": 7926, + "model_id": 7921, + "year": "2007" + }, + { + "id": 7928, + "model_id": 7921, + "year": "2008" + }, + { + "id": 7930, + "model_id": 7930, + "year": "1987" + }, + { + "id": 7935, + "model_id": 7935, + "year": "1987" + }, + { + "id": 7947, + "model_id": 7947, + "year": "1987" + }, + { + "id": 7951, + "model_id": 7951, + "year": "1988" + }, + { + "id": 7954, + "model_id": 7954, + "year": "1988" + }, + { + "id": 7957, + "model_id": 7957, + "year": "1987" + }, + { + "id": 7961, + "model_id": 7961, + "year": "2005" + }, + { + "id": 7962, + "model_id": 7962, + "year": "2003" + }, + { + "id": 7964, + "model_id": 7962, + "year": "2004" + }, + { + "id": 7966, + "model_id": 7962, + "year": "2005" + }, + { + "id": 7967, + "model_id": 7962, + "year": "2006" + }, + { + "id": 7969, + "model_id": 7962, + "year": "2007" + }, + { + "id": 7971, + "model_id": 7962, + "year": "2008" + }, + { + "id": 7973, + "model_id": 7973, + "year": "2009" + }, + { + "id": 7978, + "model_id": 7978, + "year": "2003" + }, + { + "id": 7979, + "model_id": 7978, + "year": "2004" + }, + { + "id": 7980, + "model_id": 7978, + "year": "2005" + }, + { + "id": 7981, + "model_id": 7978, + "year": "2006" + }, + { + "id": 7982, + "model_id": 7978, + "year": "2007" + }, + { + "id": 7984, + "model_id": 7978, + "year": "2008" + }, + { + "id": 7986, + "model_id": 7986, + "year": "2009" + }, + { + "id": 7990, + "model_id": 7990, + "year": "1996" + }, + { + "id": 7993, + "model_id": 7990, + "year": "1997" + }, + { + "id": 7996, + "model_id": 7990, + "year": "1998" + }, + { + "id": 7999, + "model_id": 7990, + "year": "1999" + }, + { + "id": 8002, + "model_id": 7990, + "year": "2000" + }, + { + "id": 8005, + "model_id": 7990, + "year": "2001" + }, + { + "id": 8008, + "model_id": 7990, + "year": "2002" + }, + { + "id": 8011, + "model_id": 7990, + "year": "2003" + }, + { + "id": 8014, + "model_id": 7990, + "year": "2004" + }, + { + "id": 8017, + "model_id": 7990, + "year": "2005" + }, + { + "id": 8020, + "model_id": 7990, + "year": "2006" + }, + { + "id": 8023, + "model_id": 7990, + "year": "2007" + }, + { + "id": 8028, + "model_id": 7990, + "year": "2008" + }, + { + "id": 8033, + "model_id": 8033, + "year": "1997" + }, + { + "id": 8034, + "model_id": 8033, + "year": "1998" + }, + { + "id": 8035, + "model_id": 8033, + "year": "1999" + }, + { + "id": 8036, + "model_id": 8033, + "year": "2000" + }, + { + "id": 8037, + "model_id": 8033, + "year": "2001" + }, + { + "id": 8038, + "model_id": 8033, + "year": "2002" + }, + { + "id": 8040, + "model_id": 8033, + "year": "2003" + }, + { + "id": 8042, + "model_id": 8033, + "year": "2004" + }, + { + "id": 8044, + "model_id": 8033, + "year": "2005" + }, + { + "id": 8045, + "model_id": 8045, + "year": "2011" + }, + { + "id": 8046, + "model_id": 8045, + "year": "2012" + }, + { + "id": 8047, + "model_id": 8045, + "year": "2013" + }, + { + "id": 8048, + "model_id": 8045, + "year": "2014" + }, + { + "id": 8049, + "model_id": 8045, + "year": "2015" + }, + { + "id": 8050, + "model_id": 8045, + "year": "2016" + }, + { + "id": 8051, + "model_id": 8045, + "year": "2017" + }, + { + "id": 8052, + "model_id": 8052, + "year": "2011" + }, + { + "id": 8055, + "model_id": 8052, + "year": "2012" + }, + { + "id": 8058, + "model_id": 8052, + "year": "2013" + }, + { + "id": 8061, + "model_id": 8052, + "year": "2014" + }, + { + "id": 8064, + "model_id": 8052, + "year": "2015" + }, + { + "id": 8070, + "model_id": 8052, + "year": "2016" + }, + { + "id": 8074, + "model_id": 8074, + "year": "2006" + }, + { + "id": 8078, + "model_id": 8074, + "year": "2007" + }, + { + "id": 8080, + "model_id": 8074, + "year": "2008" + }, + { + "id": 8082, + "model_id": 8074, + "year": "2009" + }, + { + "id": 8084, + "model_id": 8074, + "year": "2010" + }, + { + "id": 8086, + "model_id": 8074, + "year": "2011" + }, + { + "id": 8090, + "model_id": 8074, + "year": "2012" + }, + { + "id": 8095, + "model_id": 8074, + "year": "2013" + }, + { + "id": 8101, + "model_id": 8074, + "year": "2014" + }, + { + "id": 8107, + "model_id": 8074, + "year": "2015" + }, + { + "id": 8112, + "model_id": 8074, + "year": "2016" + }, + { + "id": 8117, + "model_id": 8117, + "year": "2011" + }, + { + "id": 8120, + "model_id": 8117, + "year": "2012" + }, + { + "id": 8122, + "model_id": 8117, + "year": "2013" + }, + { + "id": 8124, + "model_id": 8117, + "year": "2014" + }, + { + "id": 8126, + "model_id": 8126, + "year": "1999" + }, + { + "id": 8127, + "model_id": 8126, + "year": "2000" + }, + { + "id": 8128, + "model_id": 8126, + "year": "2002" + }, + { + "id": 8129, + "model_id": 8126, + "year": "2003" + }, + { + "id": 8130, + "model_id": 8126, + "year": "2004" + }, + { + "id": 8131, + "model_id": 8131, + "year": "2012" + }, + { + "id": 8132, + "model_id": 8131, + "year": "2013" + }, + { + "id": 8133, + "model_id": 8131, + "year": "2014" + }, + { + "id": 8134, + "model_id": 8134, + "year": "2007" + }, + { + "id": 8138, + "model_id": 8134, + "year": "2008" + }, + { + "id": 8143, + "model_id": 8134, + "year": "2009" + }, + { + "id": 8147, + "model_id": 8134, + "year": "2010" + }, + { + "id": 8151, + "model_id": 8151, + "year": "2005" + }, + { + "id": 8153, + "model_id": 8151, + "year": "2006" + }, + { + "id": 8155, + "model_id": 8155, + "year": "2005" + }, + { + "id": 8159, + "model_id": 8155, + "year": "2006" + }, + { + "id": 8160, + "model_id": 8160, + "year": "2001" + }, + { + "id": 8161, + "model_id": 8161, + "year": "2007" + }, + { + "id": 8165, + "model_id": 8161, + "year": "2008" + }, + { + "id": 8171, + "model_id": 8161, + "year": "2009" + }, + { + "id": 8175, + "model_id": 8175, + "year": "2009" + }, + { + "id": 8176, + "model_id": 8176, + "year": "1995" + }, + { + "id": 8178, + "model_id": 8176, + "year": "1996" + }, + { + "id": 8180, + "model_id": 8176, + "year": "1997" + }, + { + "id": 8183, + "model_id": 8176, + "year": "1998" + }, + { + "id": 8185, + "model_id": 8176, + "year": "1999" + }, + { + "id": 8187, + "model_id": 8176, + "year": "2000" + }, + { + "id": 8190, + "model_id": 8190, + "year": "1993" + }, + { + "id": 8192, + "model_id": 8190, + "year": "1994" + }, + { + "id": 8195, + "model_id": 8190, + "year": "1995" + }, + { + "id": 8198, + "model_id": 8190, + "year": "1996" + }, + { + "id": 8200, + "model_id": 8190, + "year": "1997" + }, + { + "id": 8202, + "model_id": 8190, + "year": "1998" + }, + { + "id": 8204, + "model_id": 8190, + "year": "1999" + }, + { + "id": 8206, + "model_id": 8190, + "year": "2000" + }, + { + "id": 8208, + "model_id": 8190, + "year": "2001" + }, + { + "id": 8210, + "model_id": 8190, + "year": "2002" + }, + { + "id": 8212, + "model_id": 8212, + "year": "2003" + }, + { + "id": 8214, + "model_id": 8212, + "year": "2004" + }, + { + "id": 8216, + "model_id": 8216, + "year": "1987" + }, + { + "id": 8218, + "model_id": 8216, + "year": "1988" + }, + { + "id": 8220, + "model_id": 8216, + "year": "1989" + }, + { + "id": 8222, + "model_id": 8222, + "year": "2004" + }, + { + "id": 8224, + "model_id": 8224, + "year": "2005" + }, + { + "id": 8227, + "model_id": 8224, + "year": "2006" + }, + { + "id": 8230, + "model_id": 8224, + "year": "2007" + }, + { + "id": 8232, + "model_id": 8224, + "year": "2008" + }, + { + "id": 8234, + "model_id": 8234, + "year": "2005" + }, + { + "id": 8237, + "model_id": 8234, + "year": "2006" + }, + { + "id": 8240, + "model_id": 8234, + "year": "2007" + }, + { + "id": 8242, + "model_id": 8234, + "year": "2008" + }, + { + "id": 8244, + "model_id": 8244, + "year": "1984" + }, + { + "id": 8250, + "model_id": 8250, + "year": "1984" + }, + { + "id": 8252, + "model_id": 8250, + "year": "1985" + }, + { + "id": 8253, + "model_id": 8253, + "year": "1993" + }, + { + "id": 8255, + "model_id": 8255, + "year": "1992" + }, + { + "id": 8257, + "model_id": 8257, + "year": "1998" + }, + { + "id": 8260, + "model_id": 8260, + "year": "1985" + }, + { + "id": 8268, + "model_id": 8268, + "year": "1984" + }, + { + "id": 8276, + "model_id": 8268, + "year": "1986" + }, + { + "id": 8282, + "model_id": 8268, + "year": "1987" + }, + { + "id": 8284, + "model_id": 8284, + "year": "1984" + }, + { + "id": 8296, + "model_id": 8284, + "year": "1985" + }, + { + "id": 8302, + "model_id": 8284, + "year": "1986" + }, + { + "id": 8305, + "model_id": 8284, + "year": "1987" + }, + { + "id": 8310, + "model_id": 8284, + "year": "1988" + }, + { + "id": 8315, + "model_id": 8284, + "year": "1989" + }, + { + "id": 8320, + "model_id": 8284, + "year": "1990" + }, + { + "id": 8325, + "model_id": 8284, + "year": "1991" + }, + { + "id": 8330, + "model_id": 8284, + "year": "1992" + }, + { + "id": 8336, + "model_id": 8284, + "year": "1993" + }, + { + "id": 8340, + "model_id": 8284, + "year": "1994" + }, + { + "id": 8343, + "model_id": 8343, + "year": "1984" + }, + { + "id": 8351, + "model_id": 8343, + "year": "1985" + }, + { + "id": 8357, + "model_id": 8343, + "year": "1986" + }, + { + "id": 8361, + "model_id": 8343, + "year": "1987" + }, + { + "id": 8365, + "model_id": 8343, + "year": "1988" + }, + { + "id": 8369, + "model_id": 8343, + "year": "1989" + }, + { + "id": 8374, + "model_id": 8343, + "year": "1990" + }, + { + "id": 8379, + "model_id": 8343, + "year": "1991" + }, + { + "id": 8384, + "model_id": 8343, + "year": "1992" + }, + { + "id": 8389, + "model_id": 8343, + "year": "1993" + }, + { + "id": 8392, + "model_id": 8343, + "year": "1994" + }, + { + "id": 8393, + "model_id": 8343, + "year": "1995" + }, + { + "id": 8394, + "model_id": 8394, + "year": "1985" + }, + { + "id": 8402, + "model_id": 8394, + "year": "1986" + }, + { + "id": 8408, + "model_id": 8394, + "year": "1987" + }, + { + "id": 8414, + "model_id": 8394, + "year": "1988" + }, + { + "id": 8420, + "model_id": 8394, + "year": "1989" + }, + { + "id": 8427, + "model_id": 8427, + "year": "1990" + }, + { + "id": 8428, + "model_id": 8428, + "year": "1999" + }, + { + "id": 8429, + "model_id": 8428, + "year": "2000" + }, + { + "id": 8430, + "model_id": 8428, + "year": "2001" + }, + { + "id": 8431, + "model_id": 8431, + "year": "1986" + }, + { + "id": 8432, + "model_id": 8432, + "year": "1985" + }, + { + "id": 8436, + "model_id": 8432, + "year": "1986" + }, + { + "id": 8438, + "model_id": 8432, + "year": "1987" + }, + { + "id": 8440, + "model_id": 8432, + "year": "1989" + }, + { + "id": 8441, + "model_id": 8432, + "year": "1990" + }, + { + "id": 8443, + "model_id": 8432, + "year": "1991" + }, + { + "id": 8444, + "model_id": 8432, + "year": "1992" + }, + { + "id": 8445, + "model_id": 8432, + "year": "1993" + }, + { + "id": 8446, + "model_id": 8446, + "year": "1989" + }, + { + "id": 8447, + "model_id": 8446, + "year": "1990" + }, + { + "id": 8448, + "model_id": 8446, + "year": "1991" + }, + { + "id": 8450, + "model_id": 8450, + "year": "1988" + }, + { + "id": 8451, + "model_id": 8451, + "year": "1988" + }, + { + "id": 8452, + "model_id": 8452, + "year": "1994" + }, + { + "id": 8453, + "model_id": 8452, + "year": "1995" + }, + { + "id": 8454, + "model_id": 8452, + "year": "1996" + }, + { + "id": 8455, + "model_id": 8452, + "year": "1997" + }, + { + "id": 8456, + "model_id": 8456, + "year": "1984" + }, + { + "id": 8458, + "model_id": 8456, + "year": "1985" + }, + { + "id": 8460, + "model_id": 8456, + "year": "1986" + }, + { + "id": 8461, + "model_id": 8456, + "year": "1987" + }, + { + "id": 8462, + "model_id": 8456, + "year": "1988" + }, + { + "id": 8463, + "model_id": 8456, + "year": "1989" + }, + { + "id": 8464, + "model_id": 8464, + "year": "2004" + }, + { + "id": 8466, + "model_id": 8464, + "year": "2005" + }, + { + "id": 8469, + "model_id": 8464, + "year": "2006" + }, + { + "id": 8472, + "model_id": 8464, + "year": "2007" + }, + { + "id": 8475, + "model_id": 8464, + "year": "2008" + }, + { + "id": 8478, + "model_id": 8464, + "year": "2017" + }, + { + "id": 8479, + "model_id": 8479, + "year": "2002" + }, + { + "id": 8480, + "model_id": 8480, + "year": "2001" + }, + { + "id": 8482, + "model_id": 8480, + "year": "2002" + }, + { + "id": 8484, + "model_id": 8480, + "year": "2003" + }, + { + "id": 8488, + "model_id": 8480, + "year": "2004" + }, + { + "id": 8492, + "model_id": 8480, + "year": "2005" + }, + { + "id": 8496, + "model_id": 8480, + "year": "2006" + }, + { + "id": 8500, + "model_id": 8480, + "year": "2007" + }, + { + "id": 8504, + "model_id": 8480, + "year": "2008" + }, + { + "id": 8508, + "model_id": 8480, + "year": "2009" + }, + { + "id": 8511, + "model_id": 8480, + "year": "2010" + }, + { + "id": 8512, + "model_id": 8512, + "year": "2005" + }, + { + "id": 8516, + "model_id": 8512, + "year": "2006" + }, + { + "id": 8520, + "model_id": 8512, + "year": "2007" + }, + { + "id": 8524, + "model_id": 8512, + "year": "2008" + }, + { + "id": 8528, + "model_id": 8528, + "year": "1988" + }, + { + "id": 8529, + "model_id": 8529, + "year": "1995" + }, + { + "id": 8534, + "model_id": 8529, + "year": "1996" + }, + { + "id": 8537, + "model_id": 8529, + "year": "1997" + }, + { + "id": 8540, + "model_id": 8529, + "year": "1998" + }, + { + "id": 8546, + "model_id": 8529, + "year": "1999" + }, + { + "id": 8549, + "model_id": 8529, + "year": "2000" + }, + { + "id": 8550, + "model_id": 8529, + "year": "2001" + }, + { + "id": 8555, + "model_id": 8529, + "year": "2002" + }, + { + "id": 8563, + "model_id": 8529, + "year": "2003" + }, + { + "id": 8570, + "model_id": 8529, + "year": "2004" + }, + { + "id": 8575, + "model_id": 8529, + "year": "2005" + }, + { + "id": 8580, + "model_id": 8529, + "year": "2007" + }, + { + "id": 8583, + "model_id": 8529, + "year": "2008" + }, + { + "id": 8588, + "model_id": 8529, + "year": "2009" + }, + { + "id": 8591, + "model_id": 8529, + "year": "2010" + }, + { + "id": 8594, + "model_id": 8594, + "year": "2001" + }, + { + "id": 8597, + "model_id": 8594, + "year": "2002" + }, + { + "id": 8600, + "model_id": 8594, + "year": "2003" + }, + { + "id": 8604, + "model_id": 8594, + "year": "2004" + }, + { + "id": 8607, + "model_id": 8594, + "year": "2005" + }, + { + "id": 8610, + "model_id": 8594, + "year": "2006" + }, + { + "id": 8613, + "model_id": 8613, + "year": "1996" + }, + { + "id": 8615, + "model_id": 8613, + "year": "1997" + }, + { + "id": 8618, + "model_id": 8613, + "year": "1999" + }, + { + "id": 8621, + "model_id": 8613, + "year": "2000" + }, + { + "id": 8623, + "model_id": 8613, + "year": "2001" + }, + { + "id": 8625, + "model_id": 8613, + "year": "2002" + }, + { + "id": 8629, + "model_id": 8613, + "year": "2003" + }, + { + "id": 8634, + "model_id": 8613, + "year": "2004" + }, + { + "id": 8638, + "model_id": 8613, + "year": "2005" + }, + { + "id": 8641, + "model_id": 8613, + "year": "2006" + }, + { + "id": 8644, + "model_id": 8613, + "year": "2008" + }, + { + "id": 8648, + "model_id": 8613, + "year": "2009" + }, + { + "id": 8651, + "model_id": 8613, + "year": "2010" + }, + { + "id": 8654, + "model_id": 8654, + "year": "1989" + }, + { + "id": 8658, + "model_id": 8658, + "year": "1990" + }, + { + "id": 8660, + "model_id": 8660, + "year": "1991" + }, + { + "id": 8661, + "model_id": 8661, + "year": "1988" + }, + { + "id": 8662, + "model_id": 8661, + "year": "1989" + }, + { + "id": 8663, + "model_id": 8661, + "year": "1990" + }, + { + "id": 8664, + "model_id": 8661, + "year": "1991" + }, + { + "id": 8665, + "model_id": 8661, + "year": "1992" + }, + { + "id": 8667, + "model_id": 8661, + "year": "1993" + }, + { + "id": 8669, + "model_id": 8661, + "year": "1994" + }, + { + "id": 8671, + "model_id": 8661, + "year": "1995" + }, + { + "id": 8673, + "model_id": 8661, + "year": "1996" + }, + { + "id": 8676, + "model_id": 8661, + "year": "1997" + }, + { + "id": 8679, + "model_id": 8661, + "year": "1998" + }, + { + "id": 8683, + "model_id": 8661, + "year": "1999" + }, + { + "id": 8687, + "model_id": 8661, + "year": "2006" + }, + { + "id": 8689, + "model_id": 8661, + "year": "2009" + }, + { + "id": 8692, + "model_id": 8661, + "year": "2010" + }, + { + "id": 8695, + "model_id": 8661, + "year": "2011" + }, + { + "id": 8696, + "model_id": 8661, + "year": "2012" + }, + { + "id": 8697, + "model_id": 8661, + "year": "2013" + }, + { + "id": 8698, + "model_id": 8661, + "year": "2014" + }, + { + "id": 8700, + "model_id": 8661, + "year": "2015" + }, + { + "id": 8702, + "model_id": 8661, + "year": "2016" + }, + { + "id": 8704, + "model_id": 8704, + "year": "1984" + }, + { + "id": 8708, + "model_id": 8704, + "year": "1985" + }, + { + "id": 8712, + "model_id": 8704, + "year": "1986" + }, + { + "id": 8714, + "model_id": 8704, + "year": "1987" + }, + { + "id": 8716, + "model_id": 8704, + "year": "1988" + }, + { + "id": 8718, + "model_id": 8718, + "year": "2000" + }, + { + "id": 8722, + "model_id": 8718, + "year": "2001" + }, + { + "id": 8727, + "model_id": 8718, + "year": "2002" + }, + { + "id": 8733, + "model_id": 8718, + "year": "2003" + }, + { + "id": 8738, + "model_id": 8718, + "year": "2004" + }, + { + "id": 8742, + "model_id": 8718, + "year": "2007" + }, + { + "id": 8744, + "model_id": 8718, + "year": "2008" + }, + { + "id": 8748, + "model_id": 8748, + "year": "2005" + }, + { + "id": 8751, + "model_id": 8751, + "year": "2012" + }, + { + "id": 8752, + "model_id": 8751, + "year": "2013" + }, + { + "id": 8753, + "model_id": 8753, + "year": "1990" + }, + { + "id": 8754, + "model_id": 8753, + "year": "1991" + }, + { + "id": 8755, + "model_id": 8753, + "year": "1992" + }, + { + "id": 8756, + "model_id": 8756, + "year": "1988" + }, + { + "id": 8758, + "model_id": 8758, + "year": "1988" + }, + { + "id": 8759, + "model_id": 8759, + "year": "1987" + }, + { + "id": 8761, + "model_id": 8761, + "year": "1988" + }, + { + "id": 8763, + "model_id": 8761, + "year": "1989" + }, + { + "id": 8764, + "model_id": 8764, + "year": "1991" + }, + { + "id": 8765, + "model_id": 8764, + "year": "1992" + }, + { + "id": 8768, + "model_id": 8764, + "year": "1993" + }, + { + "id": 8769, + "model_id": 8769, + "year": "1992" + }, + { + "id": 8770, + "model_id": 8769, + "year": "1993" + }, + { + "id": 8771, + "model_id": 8771, + "year": "1992" + }, + { + "id": 8772, + "model_id": 8771, + "year": "1993" + }, + { + "id": 8773, + "model_id": 8773, + "year": "1995" + }, + { + "id": 8782, + "model_id": 8782, + "year": "1988" + }, + { + "id": 8783, + "model_id": 8783, + "year": "1988" + }, + { + "id": 8784, + "model_id": 8784, + "year": "1988" + }, + { + "id": 8785, + "model_id": 8785, + "year": "2004" + }, + { + "id": 8787, + "model_id": 8787, + "year": "2004" + }, + { + "id": 8789, + "model_id": 8789, + "year": "1998" + }, + { + "id": 8793, + "model_id": 8789, + "year": "1999" + }, + { + "id": 8797, + "model_id": 8789, + "year": "2000" + }, + { + "id": 8801, + "model_id": 8789, + "year": "2001" + }, + { + "id": 8805, + "model_id": 8789, + "year": "2002" + }, + { + "id": 8809, + "model_id": 8789, + "year": "2003" + }, + { + "id": 8811, + "model_id": 8811, + "year": "1998" + }, + { + "id": 8815, + "model_id": 8811, + "year": "1999" + }, + { + "id": 8817, + "model_id": 8811, + "year": "2000" + }, + { + "id": 8819, + "model_id": 8811, + "year": "2001" + }, + { + "id": 8821, + "model_id": 8811, + "year": "2002" + }, + { + "id": 8823, + "model_id": 8823, + "year": "2004" + }, + { + "id": 8824, + "model_id": 8824, + "year": "1998" + }, + { + "id": 8828, + "model_id": 8824, + "year": "1999" + }, + { + "id": 8830, + "model_id": 8824, + "year": "2000" + }, + { + "id": 8832, + "model_id": 8824, + "year": "2001" + }, + { + "id": 8834, + "model_id": 8824, + "year": "2002" + }, + { + "id": 8836, + "model_id": 8824, + "year": "2003" + }, + { + "id": 8838, + "model_id": 8838, + "year": "1999" + }, + { + "id": 8840, + "model_id": 8838, + "year": "2000" + }, + { + "id": 8842, + "model_id": 8838, + "year": "2001" + }, + { + "id": 8844, + "model_id": 8838, + "year": "2002" + }, + { + "id": 8846, + "model_id": 8838, + "year": "2003" + }, + { + "id": 8848, + "model_id": 8848, + "year": "1998" + }, + { + "id": 8852, + "model_id": 8852, + "year": "1988" + }, + { + "id": 8853, + "model_id": 8852, + "year": "1989" + }, + { + "id": 8856, + "model_id": 8852, + "year": "1990" + }, + { + "id": 8859, + "model_id": 8852, + "year": "1991" + }, + { + "id": 8862, + "model_id": 8852, + "year": "1992" + }, + { + "id": 8865, + "model_id": 8865, + "year": "1989" + }, + { + "id": 8866, + "model_id": 8866, + "year": "1990" + }, + { + "id": 8867, + "model_id": 8866, + "year": "1991" + }, + { + "id": 8868, + "model_id": 8866, + "year": "1992" + }, + { + "id": 8869, + "model_id": 8869, + "year": "1984" + }, + { + "id": 8883, + "model_id": 8869, + "year": "1985" + }, + { + "id": 8889, + "model_id": 8869, + "year": "1986" + }, + { + "id": 8892, + "model_id": 8869, + "year": "1987" + }, + { + "id": 8895, + "model_id": 8869, + "year": "1988" + }, + { + "id": 8898, + "model_id": 8869, + "year": "1989" + }, + { + "id": 8901, + "model_id": 8901, + "year": "1984" + }, + { + "id": 8909, + "model_id": 8901, + "year": "1985" + }, + { + "id": 8915, + "model_id": 8901, + "year": "1986" + }, + { + "id": 8919, + "model_id": 8919, + "year": "1984" + }, + { + "id": 8924, + "model_id": 8919, + "year": "1985" + }, + { + "id": 8929, + "model_id": 8919, + "year": "1986" + }, + { + "id": 8933, + "model_id": 8919, + "year": "1987" + }, + { + "id": 8937, + "model_id": 8919, + "year": "1988" + }, + { + "id": 8940, + "model_id": 8919, + "year": "1989" + }, + { + "id": 8943, + "model_id": 8919, + "year": "1990" + }, + { + "id": 8945, + "model_id": 8919, + "year": "1991" + }, + { + "id": 8947, + "model_id": 8947, + "year": "1984" + }, + { + "id": 8955, + "model_id": 8947, + "year": "1985" + }, + { + "id": 8966, + "model_id": 8947, + "year": "1986" + }, + { + "id": 8971, + "model_id": 8947, + "year": "1987" + }, + { + "id": 8976, + "model_id": 8947, + "year": "1988" + }, + { + "id": 8979, + "model_id": 8947, + "year": "1989" + }, + { + "id": 8982, + "model_id": 8982, + "year": "1984" + }, + { + "id": 8990, + "model_id": 8982, + "year": "1985" + }, + { + "id": 9001, + "model_id": 8982, + "year": "1986" + }, + { + "id": 9004, + "model_id": 8982, + "year": "1987" + }, + { + "id": 9007, + "model_id": 8982, + "year": "1988" + }, + { + "id": 9010, + "model_id": 9010, + "year": "1995" + }, + { + "id": 9015, + "model_id": 9010, + "year": "1996" + }, + { + "id": 9018, + "model_id": 9010, + "year": "1997" + }, + { + "id": 9021, + "model_id": 9010, + "year": "1998" + }, + { + "id": 9027, + "model_id": 9010, + "year": "1999" + }, + { + "id": 9030, + "model_id": 9010, + "year": "2000" + }, + { + "id": 9031, + "model_id": 9010, + "year": "2008" + }, + { + "id": 9036, + "model_id": 9010, + "year": "2009" + }, + { + "id": 9039, + "model_id": 9010, + "year": "2010" + }, + { + "id": 9042, + "model_id": 9010, + "year": "2011" + }, + { + "id": 9045, + "model_id": 9010, + "year": "2012" + }, + { + "id": 9048, + "model_id": 9010, + "year": "2013" + }, + { + "id": 9051, + "model_id": 9010, + "year": "2014" + }, + { + "id": 9054, + "model_id": 9054, + "year": "1984" + }, + { + "id": 9059, + "model_id": 9054, + "year": "1985" + }, + { + "id": 9063, + "model_id": 9054, + "year": "1986" + }, + { + "id": 9068, + "model_id": 9054, + "year": "1987" + }, + { + "id": 9073, + "model_id": 9054, + "year": "1988" + }, + { + "id": 9077, + "model_id": 9054, + "year": "1989" + }, + { + "id": 9081, + "model_id": 9054, + "year": "1990" + }, + { + "id": 9085, + "model_id": 9054, + "year": "1991" + }, + { + "id": 9089, + "model_id": 9089, + "year": "1984" + }, + { + "id": 9099, + "model_id": 9089, + "year": "1985" + }, + { + "id": 9110, + "model_id": 9089, + "year": "1986" + }, + { + "id": 9120, + "model_id": 9089, + "year": "1987" + }, + { + "id": 9130, + "model_id": 9089, + "year": "1988" + }, + { + "id": 9137, + "model_id": 9089, + "year": "1989" + }, + { + "id": 9145, + "model_id": 9089, + "year": "1990" + }, + { + "id": 9152, + "model_id": 9089, + "year": "1991" + }, + { + "id": 9159, + "model_id": 9089, + "year": "1992" + }, + { + "id": 9164, + "model_id": 9089, + "year": "1993" + }, + { + "id": 9170, + "model_id": 9089, + "year": "1994" + }, + { + "id": 9174, + "model_id": 9174, + "year": "1984" + }, + { + "id": 9183, + "model_id": 9174, + "year": "1985" + }, + { + "id": 9193, + "model_id": 9174, + "year": "1986" + }, + { + "id": 9202, + "model_id": 9174, + "year": "1987" + }, + { + "id": 9211, + "model_id": 9174, + "year": "1988" + }, + { + "id": 9218, + "model_id": 9174, + "year": "1989" + }, + { + "id": 9226, + "model_id": 9174, + "year": "1990" + }, + { + "id": 9233, + "model_id": 9174, + "year": "1991" + }, + { + "id": 9240, + "model_id": 9174, + "year": "1992" + }, + { + "id": 9245, + "model_id": 9174, + "year": "1993" + }, + { + "id": 9251, + "model_id": 9174, + "year": "1994" + }, + { + "id": 9255, + "model_id": 9255, + "year": "1998" + }, + { + "id": 9258, + "model_id": 9255, + "year": "1999" + }, + { + "id": 9261, + "model_id": 9255, + "year": "2000" + }, + { + "id": 9264, + "model_id": 9264, + "year": "1998" + }, + { + "id": 9266, + "model_id": 9264, + "year": "1999" + }, + { + "id": 9268, + "model_id": 9264, + "year": "2000" + }, + { + "id": 9270, + "model_id": 9270, + "year": "1995" + }, + { + "id": 9274, + "model_id": 9270, + "year": "1996" + }, + { + "id": 9278, + "model_id": 9270, + "year": "1997" + }, + { + "id": 9282, + "model_id": 9282, + "year": "1995" + }, + { + "id": 9286, + "model_id": 9282, + "year": "1996" + }, + { + "id": 9290, + "model_id": 9282, + "year": "1997" + }, + { + "id": 9293, + "model_id": 9293, + "year": "1998" + }, + { + "id": 9295, + "model_id": 9293, + "year": "1999" + }, + { + "id": 9297, + "model_id": 9293, + "year": "2000" + }, + { + "id": 9299, + "model_id": 9299, + "year": "1998" + }, + { + "id": 9301, + "model_id": 9299, + "year": "1999" + }, + { + "id": 9303, + "model_id": 9299, + "year": "2000" + }, + { + "id": 9305, + "model_id": 9305, + "year": "1984" + }, + { + "id": 9309, + "model_id": 9305, + "year": "1985" + }, + { + "id": 9313, + "model_id": 9305, + "year": "1986" + }, + { + "id": 9316, + "model_id": 9305, + "year": "1987" + }, + { + "id": 9319, + "model_id": 9305, + "year": "1988" + }, + { + "id": 9322, + "model_id": 9305, + "year": "1989" + }, + { + "id": 9325, + "model_id": 9305, + "year": "1990" + }, + { + "id": 9329, + "model_id": 9305, + "year": "1991" + }, + { + "id": 9333, + "model_id": 9305, + "year": "1992" + }, + { + "id": 9336, + "model_id": 9305, + "year": "1993" + }, + { + "id": 9339, + "model_id": 9305, + "year": "1994" + }, + { + "id": 9341, + "model_id": 9341, + "year": "1984" + }, + { + "id": 9344, + "model_id": 9341, + "year": "1985" + }, + { + "id": 9347, + "model_id": 9341, + "year": "1986" + }, + { + "id": 9350, + "model_id": 9341, + "year": "1987" + }, + { + "id": 9353, + "model_id": 9341, + "year": "1988" + }, + { + "id": 9356, + "model_id": 9341, + "year": "1989" + }, + { + "id": 9359, + "model_id": 9341, + "year": "1990" + }, + { + "id": 9362, + "model_id": 9341, + "year": "1991" + }, + { + "id": 9365, + "model_id": 9341, + "year": "1992" + }, + { + "id": 9367, + "model_id": 9341, + "year": "1993" + }, + { + "id": 9369, + "model_id": 9341, + "year": "1994" + }, + { + "id": 9371, + "model_id": 9371, + "year": "1995" + }, + { + "id": 9373, + "model_id": 9371, + "year": "1996" + }, + { + "id": 9375, + "model_id": 9371, + "year": "1997" + }, + { + "id": 9377, + "model_id": 9377, + "year": "1995" + }, + { + "id": 9379, + "model_id": 9377, + "year": "1996" + }, + { + "id": 9381, + "model_id": 9377, + "year": "1997" + }, + { + "id": 9383, + "model_id": 9383, + "year": "2007" + }, + { + "id": 9388, + "model_id": 9383, + "year": "2008" + }, + { + "id": 9394, + "model_id": 9383, + "year": "2009" + }, + { + "id": 9399, + "model_id": 9383, + "year": "2010" + }, + { + "id": 9403, + "model_id": 9383, + "year": "2011" + }, + { + "id": 9407, + "model_id": 9383, + "year": "2012" + }, + { + "id": 9410, + "model_id": 9410, + "year": "1992" + }, + { + "id": 9415, + "model_id": 9410, + "year": "1993" + }, + { + "id": 9419, + "model_id": 9410, + "year": "1994" + }, + { + "id": 9423, + "model_id": 9410, + "year": "1995" + }, + { + "id": 9427, + "model_id": 9427, + "year": "1991" + }, + { + "id": 9432, + "model_id": 9427, + "year": "1992" + }, + { + "id": 9438, + "model_id": 9427, + "year": "1993" + }, + { + "id": 9444, + "model_id": 9427, + "year": "1994" + }, + { + "id": 9453, + "model_id": 9427, + "year": "1995" + }, + { + "id": 9463, + "model_id": 9427, + "year": "1996" + }, + { + "id": 9469, + "model_id": 9427, + "year": "1997" + }, + { + "id": 9475, + "model_id": 9427, + "year": "1998" + }, + { + "id": 9482, + "model_id": 9427, + "year": "1999" + }, + { + "id": 9491, + "model_id": 9427, + "year": "2000" + }, + { + "id": 9499, + "model_id": 9427, + "year": "2001" + }, + { + "id": 9506, + "model_id": 9427, + "year": "2002" + }, + { + "id": 9513, + "model_id": 9427, + "year": "2003" + }, + { + "id": 9517, + "model_id": 9427, + "year": "2004" + }, + { + "id": 9521, + "model_id": 9427, + "year": "2005" + }, + { + "id": 9525, + "model_id": 9427, + "year": "2006" + }, + { + "id": 9528, + "model_id": 9427, + "year": "2007" + }, + { + "id": 9531, + "model_id": 9427, + "year": "2008" + }, + { + "id": 9535, + "model_id": 9427, + "year": "2009" + }, + { + "id": 9538, + "model_id": 9538, + "year": "1987" + }, + { + "id": 9546, + "model_id": 9538, + "year": "1988" + }, + { + "id": 9549, + "model_id": 9538, + "year": "1989" + }, + { + "id": 9555, + "model_id": 9538, + "year": "1990" + }, + { + "id": 9562, + "model_id": 9562, + "year": "1984" + }, + { + "id": 9569, + "model_id": 9562, + "year": "1985" + }, + { + "id": 9579, + "model_id": 9562, + "year": "1986" + }, + { + "id": 9586, + "model_id": 9586, + "year": "2008" + }, + { + "id": 9587, + "model_id": 9586, + "year": "2009" + }, + { + "id": 9593, + "model_id": 9586, + "year": "2010" + }, + { + "id": 9598, + "model_id": 9586, + "year": "2011" + }, + { + "id": 9601, + "model_id": 9586, + "year": "2012" + }, + { + "id": 9604, + "model_id": 9586, + "year": "2013" + }, + { + "id": 9607, + "model_id": 9586, + "year": "2014" + }, + { + "id": 9610, + "model_id": 9586, + "year": "2015" + }, + { + "id": 9615, + "model_id": 9586, + "year": "2016" + }, + { + "id": 9620, + "model_id": 9620, + "year": "2011" + }, + { + "id": 9622, + "model_id": 9620, + "year": "2012" + }, + { + "id": 9624, + "model_id": 9620, + "year": "2013" + }, + { + "id": 9626, + "model_id": 9620, + "year": "2014" + }, + { + "id": 9628, + "model_id": 9620, + "year": "2015" + }, + { + "id": 9632, + "model_id": 9620, + "year": "2016" + }, + { + "id": 9636, + "model_id": 9636, + "year": "1984" + }, + { + "id": 9642, + "model_id": 9636, + "year": "1985" + }, + { + "id": 9651, + "model_id": 9636, + "year": "1986" + }, + { + "id": 9657, + "model_id": 9636, + "year": "1987" + }, + { + "id": 9660, + "model_id": 9636, + "year": "2006" + }, + { + "id": 9664, + "model_id": 9636, + "year": "2007" + }, + { + "id": 9670, + "model_id": 9636, + "year": "2008" + }, + { + "id": 9677, + "model_id": 9636, + "year": "2009" + }, + { + "id": 9684, + "model_id": 9636, + "year": "2010" + }, + { + "id": 9690, + "model_id": 9636, + "year": "2011" + }, + { + "id": 9694, + "model_id": 9636, + "year": "2012" + }, + { + "id": 9699, + "model_id": 9636, + "year": "2013" + }, + { + "id": 9707, + "model_id": 9636, + "year": "2014" + }, + { + "id": 9715, + "model_id": 9636, + "year": "2015" + }, + { + "id": 9720, + "model_id": 9636, + "year": "2016" + }, + { + "id": 9726, + "model_id": 9726, + "year": "1987" + }, + { + "id": 9728, + "model_id": 9728, + "year": "2012" + }, + { + "id": 9729, + "model_id": 9728, + "year": "2013" + }, + { + "id": 9730, + "model_id": 9728, + "year": "2014" + }, + { + "id": 9731, + "model_id": 9728, + "year": "2015" + }, + { + "id": 9733, + "model_id": 9728, + "year": "2016" + }, + { + "id": 9735, + "model_id": 9735, + "year": "1984" + }, + { + "id": 9743, + "model_id": 9735, + "year": "1985" + }, + { + "id": 9752, + "model_id": 9735, + "year": "1986" + }, + { + "id": 9757, + "model_id": 9735, + "year": "1987" + }, + { + "id": 9762, + "model_id": 9735, + "year": "1988" + }, + { + "id": 9767, + "model_id": 9735, + "year": "1989" + }, + { + "id": 9771, + "model_id": 9735, + "year": "1990" + }, + { + "id": 9776, + "model_id": 9735, + "year": "1991" + }, + { + "id": 9779, + "model_id": 9735, + "year": "1992" + }, + { + "id": 9782, + "model_id": 9735, + "year": "1993" + }, + { + "id": 9786, + "model_id": 9735, + "year": "1994" + }, + { + "id": 9790, + "model_id": 9790, + "year": "1984" + }, + { + "id": 9796, + "model_id": 9790, + "year": "1985" + }, + { + "id": 9802, + "model_id": 9790, + "year": "1986" + }, + { + "id": 9805, + "model_id": 9790, + "year": "1987" + }, + { + "id": 9811, + "model_id": 9790, + "year": "1988" + }, + { + "id": 9814, + "model_id": 9790, + "year": "1989" + }, + { + "id": 9817, + "model_id": 9790, + "year": "1990" + }, + { + "id": 9820, + "model_id": 9790, + "year": "1991" + }, + { + "id": 9823, + "model_id": 9823, + "year": "1988" + }, + { + "id": 9825, + "model_id": 9823, + "year": "1989" + }, + { + "id": 9828, + "model_id": 9823, + "year": "1990" + }, + { + "id": 9831, + "model_id": 9831, + "year": "1984" + }, + { + "id": 9837, + "model_id": 9831, + "year": "1985" + }, + { + "id": 9843, + "model_id": 9831, + "year": "1986" + }, + { + "id": 9845, + "model_id": 9845, + "year": "1989" + }, + { + "id": 9846, + "model_id": 9846, + "year": "1984" + }, + { + "id": 9860, + "model_id": 9846, + "year": "1985" + }, + { + "id": 9875, + "model_id": 9846, + "year": "1986" + }, + { + "id": 9889, + "model_id": 9846, + "year": "1987" + }, + { + "id": 9903, + "model_id": 9846, + "year": "1988" + }, + { + "id": 9912, + "model_id": 9846, + "year": "1989" + }, + { + "id": 9923, + "model_id": 9846, + "year": "1990" + }, + { + "id": 9934, + "model_id": 9846, + "year": "1991" + }, + { + "id": 9944, + "model_id": 9846, + "year": "1992" + }, + { + "id": 9951, + "model_id": 9846, + "year": "1993" + }, + { + "id": 9958, + "model_id": 9958, + "year": "1985" + }, + { + "id": 9959, + "model_id": 9958, + "year": "1986" + }, + { + "id": 9960, + "model_id": 9958, + "year": "1987" + }, + { + "id": 9961, + "model_id": 9958, + "year": "1988" + }, + { + "id": 9962, + "model_id": 9958, + "year": "1989" + }, + { + "id": 9963, + "model_id": 9958, + "year": "1990" + }, + { + "id": 9964, + "model_id": 9958, + "year": "1991" + }, + { + "id": 9965, + "model_id": 9958, + "year": "1992" + }, + { + "id": 9966, + "model_id": 9958, + "year": "1993" + }, + { + "id": 9967, + "model_id": 9967, + "year": "1984" + }, + { + "id": 9975, + "model_id": 9967, + "year": "1985" + }, + { + "id": 9984, + "model_id": 9967, + "year": "1986" + }, + { + "id": 9992, + "model_id": 9967, + "year": "1987" + }, + { + "id": 10000, + "model_id": 9967, + "year": "1988" + }, + { + "id": 10007, + "model_id": 9967, + "year": "1989" + }, + { + "id": 10014, + "model_id": 9967, + "year": "1990" + }, + { + "id": 10021, + "model_id": 9967, + "year": "1991" + }, + { + "id": 10028, + "model_id": 9967, + "year": "1992" + }, + { + "id": 10034, + "model_id": 9967, + "year": "1993" + }, + { + "id": 10040, + "model_id": 10040, + "year": "1984" + }, + { + "id": 10041, + "model_id": 10041, + "year": "1987" + }, + { + "id": 10042, + "model_id": 10041, + "year": "1988" + }, + { + "id": 10045, + "model_id": 10041, + "year": "1989" + }, + { + "id": 10047, + "model_id": 10041, + "year": "1990" + }, + { + "id": 10049, + "model_id": 10041, + "year": "1991" + }, + { + "id": 10052, + "model_id": 10041, + "year": "1992" + }, + { + "id": 10055, + "model_id": 10041, + "year": "1993" + }, + { + "id": 10058, + "model_id": 10041, + "year": "1994" + }, + { + "id": 10062, + "model_id": 10041, + "year": "1995" + }, + { + "id": 10064, + "model_id": 10064, + "year": "1987" + }, + { + "id": 10069, + "model_id": 10064, + "year": "1988" + }, + { + "id": 10076, + "model_id": 10064, + "year": "1989" + }, + { + "id": 10083, + "model_id": 10064, + "year": "1990" + }, + { + "id": 10088, + "model_id": 10064, + "year": "1991" + }, + { + "id": 10095, + "model_id": 10064, + "year": "1992" + }, + { + "id": 10102, + "model_id": 10064, + "year": "1993" + }, + { + "id": 10109, + "model_id": 10064, + "year": "1994" + }, + { + "id": 10118, + "model_id": 10064, + "year": "1995" + }, + { + "id": 10127, + "model_id": 10064, + "year": "1996" + }, + { + "id": 10136, + "model_id": 10064, + "year": "1997" + }, + { + "id": 10145, + "model_id": 10064, + "year": "1998" + }, + { + "id": 10155, + "model_id": 10064, + "year": "1999" + }, + { + "id": 10165, + "model_id": 10064, + "year": "2000" + }, + { + "id": 10176, + "model_id": 10064, + "year": "2001" + }, + { + "id": 10187, + "model_id": 10064, + "year": "2002" + }, + { + "id": 10198, + "model_id": 10064, + "year": "2003" + }, + { + "id": 10208, + "model_id": 10064, + "year": "2004" + }, + { + "id": 10216, + "model_id": 10064, + "year": "2005" + }, + { + "id": 10224, + "model_id": 10064, + "year": "2006" + }, + { + "id": 10232, + "model_id": 10064, + "year": "2007" + }, + { + "id": 10240, + "model_id": 10064, + "year": "2008" + }, + { + "id": 10248, + "model_id": 10064, + "year": "2009" + }, + { + "id": 10254, + "model_id": 10064, + "year": "2010" + }, + { + "id": 10258, + "model_id": 10064, + "year": "2011" + }, + { + "id": 10262, + "model_id": 10262, + "year": "2013" + }, + { + "id": 10269, + "model_id": 10262, + "year": "2014" + }, + { + "id": 10274, + "model_id": 10262, + "year": "2015" + }, + { + "id": 10279, + "model_id": 10262, + "year": "2016" + }, + { + "id": 10285, + "model_id": 10285, + "year": "2013" + }, + { + "id": 10287, + "model_id": 10285, + "year": "2014" + }, + { + "id": 10289, + "model_id": 10285, + "year": "2015" + }, + { + "id": 10291, + "model_id": 10285, + "year": "2016" + }, + { + "id": 10293, + "model_id": 10293, + "year": "2014" + }, + { + "id": 10295, + "model_id": 10293, + "year": "2015" + }, + { + "id": 10297, + "model_id": 10293, + "year": "2016" + }, + { + "id": 10299, + "model_id": 10299, + "year": "1984" + }, + { + "id": 10307, + "model_id": 10299, + "year": "1985" + }, + { + "id": 10314, + "model_id": 10299, + "year": "1986" + }, + { + "id": 10320, + "model_id": 10299, + "year": "1987" + }, + { + "id": 10324, + "model_id": 10299, + "year": "1988" + }, + { + "id": 10328, + "model_id": 10299, + "year": "1989" + }, + { + "id": 10333, + "model_id": 10299, + "year": "1990" + }, + { + "id": 10340, + "model_id": 10299, + "year": "1991" + }, + { + "id": 10346, + "model_id": 10299, + "year": "1992" + }, + { + "id": 10353, + "model_id": 10299, + "year": "1993" + }, + { + "id": 10358, + "model_id": 10358, + "year": "1984" + }, + { + "id": 10361, + "model_id": 10358, + "year": "1985" + }, + { + "id": 10364, + "model_id": 10358, + "year": "1986" + }, + { + "id": 10367, + "model_id": 10358, + "year": "1987" + }, + { + "id": 10370, + "model_id": 10358, + "year": "1988" + }, + { + "id": 10373, + "model_id": 10358, + "year": "1989" + }, + { + "id": 10376, + "model_id": 10376, + "year": "1998" + }, + { + "id": 10378, + "model_id": 10376, + "year": "1999" + }, + { + "id": 10384, + "model_id": 10376, + "year": "2000" + }, + { + "id": 10389, + "model_id": 10376, + "year": "2001" + }, + { + "id": 10393, + "model_id": 10376, + "year": "2002" + }, + { + "id": 10399, + "model_id": 10376, + "year": "2003" + }, + { + "id": 10403, + "model_id": 10376, + "year": "2004" + }, + { + "id": 10408, + "model_id": 10376, + "year": "2005" + }, + { + "id": 10413, + "model_id": 10376, + "year": "2006" + }, + { + "id": 10420, + "model_id": 10376, + "year": "2007" + }, + { + "id": 10425, + "model_id": 10376, + "year": "2008" + }, + { + "id": 10432, + "model_id": 10376, + "year": "2009" + }, + { + "id": 10437, + "model_id": 10376, + "year": "2011" + }, + { + "id": 10441, + "model_id": 10376, + "year": "2012" + }, + { + "id": 10445, + "model_id": 10376, + "year": "2013" + }, + { + "id": 10449, + "model_id": 10376, + "year": "2014" + }, + { + "id": 10451, + "model_id": 10376, + "year": "2015" + }, + { + "id": 10453, + "model_id": 10376, + "year": "2016" + }, + { + "id": 10455, + "model_id": 10455, + "year": "2009" + }, + { + "id": 10456, + "model_id": 10456, + "year": "2014" + }, + { + "id": 10458, + "model_id": 10456, + "year": "2015" + }, + { + "id": 10460, + "model_id": 10456, + "year": "2016" + }, + { + "id": 10462, + "model_id": 10462, + "year": "1988" + }, + { + "id": 10464, + "model_id": 10462, + "year": "1989" + }, + { + "id": 10466, + "model_id": 10462, + "year": "1990" + }, + { + "id": 10469, + "model_id": 10462, + "year": "1991" + }, + { + "id": 10472, + "model_id": 10462, + "year": "1992" + }, + { + "id": 10475, + "model_id": 10462, + "year": "1993" + }, + { + "id": 10478, + "model_id": 10478, + "year": "1986" + }, + { + "id": 10479, + "model_id": 10479, + "year": "2010" + }, + { + "id": 10482, + "model_id": 10479, + "year": "2011" + }, + { + "id": 10483, + "model_id": 10479, + "year": "2012" + }, + { + "id": 10484, + "model_id": 10479, + "year": "2013" + }, + { + "id": 10486, + "model_id": 10479, + "year": "2014" + }, + { + "id": 10488, + "model_id": 10479, + "year": "2015" + }, + { + "id": 10490, + "model_id": 10479, + "year": "2016" + }, + { + "id": 10492, + "model_id": 10492, + "year": "1993" + }, + { + "id": 10494, + "model_id": 10492, + "year": "1994" + }, + { + "id": 10497, + "model_id": 10492, + "year": "1995" + }, + { + "id": 10500, + "model_id": 10492, + "year": "1996" + }, + { + "id": 10503, + "model_id": 10492, + "year": "1997" + }, + { + "id": 10506, + "model_id": 10492, + "year": "1998" + }, + { + "id": 10508, + "model_id": 10492, + "year": "1999" + }, + { + "id": 10510, + "model_id": 10492, + "year": "2000" + }, + { + "id": 10514, + "model_id": 10492, + "year": "2001" + }, + { + "id": 10518, + "model_id": 10492, + "year": "2002" + }, + { + "id": 10522, + "model_id": 10492, + "year": "2003" + }, + { + "id": 10525, + "model_id": 10492, + "year": "2004" + }, + { + "id": 10528, + "model_id": 10528, + "year": "2011" + }, + { + "id": 10531, + "model_id": 10528, + "year": "2012" + }, + { + "id": 10534, + "model_id": 10528, + "year": "2013" + }, + { + "id": 10537, + "model_id": 10528, + "year": "2014" + }, + { + "id": 10540, + "model_id": 10528, + "year": "2015" + }, + { + "id": 10543, + "model_id": 10528, + "year": "2016" + }, + { + "id": 10546, + "model_id": 10546, + "year": "2009" + }, + { + "id": 10549, + "model_id": 10546, + "year": "2010" + }, + { + "id": 10552, + "model_id": 10552, + "year": "1985" + }, + { + "id": 10560, + "model_id": 10552, + "year": "1986" + }, + { + "id": 10566, + "model_id": 10552, + "year": "1987" + }, + { + "id": 10575, + "model_id": 10552, + "year": "1988" + }, + { + "id": 10581, + "model_id": 10552, + "year": "1989" + }, + { + "id": 10588, + "model_id": 10588, + "year": "1987" + }, + { + "id": 10590, + "model_id": 10590, + "year": "2005" + }, + { + "id": 10595, + "model_id": 10590, + "year": "2006" + }, + { + "id": 10603, + "model_id": 10590, + "year": "2007" + }, + { + "id": 10609, + "model_id": 10590, + "year": "2008" + }, + { + "id": 10616, + "model_id": 10616, + "year": "1990" + }, + { + "id": 10617, + "model_id": 10616, + "year": "1991" + }, + { + "id": 10618, + "model_id": 10616, + "year": "1992" + }, + { + "id": 10619, + "model_id": 10619, + "year": "1995" + }, + { + "id": 10621, + "model_id": 10619, + "year": "1996" + }, + { + "id": 10623, + "model_id": 10619, + "year": "1997" + }, + { + "id": 10625, + "model_id": 10619, + "year": "1998" + }, + { + "id": 10627, + "model_id": 10619, + "year": "1999" + }, + { + "id": 10629, + "model_id": 10619, + "year": "2000" + }, + { + "id": 10631, + "model_id": 10619, + "year": "2001" + }, + { + "id": 10633, + "model_id": 10619, + "year": "2002" + }, + { + "id": 10635, + "model_id": 10635, + "year": "2003" + }, + { + "id": 10638, + "model_id": 10635, + "year": "2004" + }, + { + "id": 10641, + "model_id": 10635, + "year": "2005" + }, + { + "id": 10644, + "model_id": 10644, + "year": "2007" + }, + { + "id": 10650, + "model_id": 10644, + "year": "2008" + }, + { + "id": 10656, + "model_id": 10644, + "year": "2009" + }, + { + "id": 10660, + "model_id": 10644, + "year": "2010" + }, + { + "id": 10664, + "model_id": 10644, + "year": "2011" + }, + { + "id": 10668, + "model_id": 10668, + "year": "1984" + }, + { + "id": 10674, + "model_id": 10668, + "year": "1985" + }, + { + "id": 10686, + "model_id": 10668, + "year": "1986" + }, + { + "id": 10692, + "model_id": 10668, + "year": "1987" + }, + { + "id": 10695, + "model_id": 10668, + "year": "1988" + }, + { + "id": 10697, + "model_id": 10668, + "year": "1989" + }, + { + "id": 10699, + "model_id": 10668, + "year": "1990" + }, + { + "id": 10701, + "model_id": 10701, + "year": "1990" + }, + { + "id": 10705, + "model_id": 10701, + "year": "1991" + }, + { + "id": 10709, + "model_id": 10701, + "year": "1992" + }, + { + "id": 10713, + "model_id": 10701, + "year": "1993" + }, + { + "id": 10715, + "model_id": 10715, + "year": "1984" + }, + { + "id": 10726, + "model_id": 10715, + "year": "1985" + }, + { + "id": 10732, + "model_id": 10732, + "year": "1986" + }, + { + "id": 10734, + "model_id": 10732, + "year": "1987" + }, + { + "id": 10736, + "model_id": 10732, + "year": "1988" + }, + { + "id": 10738, + "model_id": 10732, + "year": "1989" + }, + { + "id": 10740, + "model_id": 10740, + "year": "1987" + }, + { + "id": 10742, + "model_id": 10740, + "year": "1988" + }, + { + "id": 10744, + "model_id": 10740, + "year": "1989" + }, + { + "id": 10747, + "model_id": 10740, + "year": "1990" + }, + { + "id": 10750, + "model_id": 10750, + "year": "1994" + }, + { + "id": 10758, + "model_id": 10750, + "year": "1995" + }, + { + "id": 10766, + "model_id": 10750, + "year": "1996" + }, + { + "id": 10774, + "model_id": 10750, + "year": "1997" + }, + { + "id": 10782, + "model_id": 10750, + "year": "1998" + }, + { + "id": 10791, + "model_id": 10750, + "year": "1999" + }, + { + "id": 10799, + "model_id": 10750, + "year": "2000" + }, + { + "id": 10807, + "model_id": 10750, + "year": "2001" + }, + { + "id": 10815, + "model_id": 10750, + "year": "2002" + }, + { + "id": 10823, + "model_id": 10750, + "year": "2003" + }, + { + "id": 10833, + "model_id": 10750, + "year": "2004" + }, + { + "id": 10844, + "model_id": 10750, + "year": "2005" + }, + { + "id": 10856, + "model_id": 10750, + "year": "2006" + }, + { + "id": 10868, + "model_id": 10750, + "year": "2007" + }, + { + "id": 10876, + "model_id": 10750, + "year": "2008" + }, + { + "id": 10888, + "model_id": 10750, + "year": "2009" + }, + { + "id": 10893, + "model_id": 10750, + "year": "2010" + }, + { + "id": 10898, + "model_id": 10750, + "year": "2011" + }, + { + "id": 10903, + "model_id": 10750, + "year": "2012" + }, + { + "id": 10908, + "model_id": 10908, + "year": "1994" + }, + { + "id": 10916, + "model_id": 10908, + "year": "1995" + }, + { + "id": 10924, + "model_id": 10908, + "year": "1996" + }, + { + "id": 10932, + "model_id": 10932, + "year": "1984" + }, + { + "id": 10949, + "model_id": 10932, + "year": "1985" + }, + { + "id": 10955, + "model_id": 10932, + "year": "1986" + }, + { + "id": 10959, + "model_id": 10932, + "year": "1987" + }, + { + "id": 10963, + "model_id": 10932, + "year": "1988" + }, + { + "id": 10967, + "model_id": 10932, + "year": "1989" + }, + { + "id": 10971, + "model_id": 10932, + "year": "1990" + }, + { + "id": 10973, + "model_id": 10932, + "year": "1991" + }, + { + "id": 10975, + "model_id": 10932, + "year": "1992" + }, + { + "id": 10977, + "model_id": 10932, + "year": "1993" + }, + { + "id": 10979, + "model_id": 10979, + "year": "2001" + }, + { + "id": 10982, + "model_id": 10979, + "year": "2002" + }, + { + "id": 10985, + "model_id": 10979, + "year": "2003" + }, + { + "id": 10988, + "model_id": 10988, + "year": "2001" + }, + { + "id": 10991, + "model_id": 10988, + "year": "2002" + }, + { + "id": 10994, + "model_id": 10988, + "year": "2003" + }, + { + "id": 10997, + "model_id": 10997, + "year": "2001" + }, + { + "id": 10998, + "model_id": 10997, + "year": "2002" + }, + { + "id": 10999, + "model_id": 10997, + "year": "2003" + }, + { + "id": 11000, + "model_id": 11000, + "year": "2001" + }, + { + "id": 11002, + "model_id": 11000, + "year": "2002" + }, + { + "id": 11003, + "model_id": 11003, + "year": "2001" + }, + { + "id": 11005, + "model_id": 11003, + "year": "2002" + }, + { + "id": 11006, + "model_id": 11006, + "year": "2001" + }, + { + "id": 11007, + "model_id": 11006, + "year": "2002" + }, + { + "id": 11008, + "model_id": 11008, + "year": "1992" + }, + { + "id": 11015, + "model_id": 11008, + "year": "1993" + }, + { + "id": 11019, + "model_id": 11019, + "year": "1984" + }, + { + "id": 11024, + "model_id": 11024, + "year": "1987" + }, + { + "id": 11033, + "model_id": 11024, + "year": "1988" + }, + { + "id": 11039, + "model_id": 11024, + "year": "1989" + }, + { + "id": 11045, + "model_id": 11024, + "year": "1990" + }, + { + "id": 11052, + "model_id": 11024, + "year": "1991" + }, + { + "id": 11058, + "model_id": 11024, + "year": "1992" + }, + { + "id": 11066, + "model_id": 11024, + "year": "1993" + }, + { + "id": 11072, + "model_id": 11024, + "year": "1994" + }, + { + "id": 11078, + "model_id": 11078, + "year": "1989" + }, + { + "id": 11083, + "model_id": 11078, + "year": "1991" + }, + { + "id": 11088, + "model_id": 11078, + "year": "1992" + }, + { + "id": 11094, + "model_id": 11078, + "year": "1993" + }, + { + "id": 11098, + "model_id": 11098, + "year": "1989" + }, + { + "id": 11104, + "model_id": 11098, + "year": "1990" + }, + { + "id": 11109, + "model_id": 11098, + "year": "1991" + }, + { + "id": 11115, + "model_id": 11098, + "year": "1992" + }, + { + "id": 11122, + "model_id": 11098, + "year": "1993" + }, + { + "id": 11127, + "model_id": 11098, + "year": "1994" + }, + { + "id": 11132, + "model_id": 11098, + "year": "1995" + }, + { + "id": 11134, + "model_id": 11134, + "year": "1991" + }, + { + "id": 11139, + "model_id": 11134, + "year": "1992" + }, + { + "id": 11144, + "model_id": 11134, + "year": "1993" + }, + { + "id": 11149, + "model_id": 11134, + "year": "1994" + }, + { + "id": 11154, + "model_id": 11134, + "year": "1995" + }, + { + "id": 11159, + "model_id": 11134, + "year": "1996" + }, + { + "id": 11164, + "model_id": 11164, + "year": "1995" + }, + { + "id": 11166, + "model_id": 11164, + "year": "1996" + }, + { + "id": 11171, + "model_id": 11164, + "year": "1997" + }, + { + "id": 11176, + "model_id": 11164, + "year": "1998" + }, + { + "id": 11180, + "model_id": 11164, + "year": "1999" + }, + { + "id": 11184, + "model_id": 11164, + "year": "2000" + }, + { + "id": 11188, + "model_id": 11164, + "year": "2001" + }, + { + "id": 11193, + "model_id": 11164, + "year": "2002" + }, + { + "id": 11201, + "model_id": 11164, + "year": "2003" + }, + { + "id": 11208, + "model_id": 11164, + "year": "2004" + }, + { + "id": 11213, + "model_id": 11164, + "year": "2005" + }, + { + "id": 11218, + "model_id": 11218, + "year": "2001" + }, + { + "id": 11221, + "model_id": 11218, + "year": "2002" + }, + { + "id": 11225, + "model_id": 11218, + "year": "2003" + }, + { + "id": 11230, + "model_id": 11218, + "year": "2004" + }, + { + "id": 11234, + "model_id": 11218, + "year": "2005" + }, + { + "id": 11237, + "model_id": 11218, + "year": "2006" + }, + { + "id": 11240, + "model_id": 11240, + "year": "1992" + }, + { + "id": 11241, + "model_id": 11240, + "year": "1993" + }, + { + "id": 11242, + "model_id": 11240, + "year": "1994" + }, + { + "id": 11243, + "model_id": 11240, + "year": "1995" + }, + { + "id": 11244, + "model_id": 11240, + "year": "1996" + }, + { + "id": 11245, + "model_id": 11245, + "year": "1998" + }, + { + "id": 11246, + "model_id": 11245, + "year": "1999" + }, + { + "id": 11247, + "model_id": 11245, + "year": "2000" + }, + { + "id": 11248, + "model_id": 11245, + "year": "2001" + }, + { + "id": 11249, + "model_id": 11245, + "year": "2002" + }, + { + "id": 11250, + "model_id": 11245, + "year": "2003" + }, + { + "id": 11251, + "model_id": 11245, + "year": "2004" + }, + { + "id": 11252, + "model_id": 11245, + "year": "2005" + }, + { + "id": 11253, + "model_id": 11245, + "year": "2006" + }, + { + "id": 11254, + "model_id": 11245, + "year": "2008" + }, + { + "id": 11255, + "model_id": 11245, + "year": "2009" + }, + { + "id": 11256, + "model_id": 11245, + "year": "2010" + }, + { + "id": 11257, + "model_id": 11257, + "year": "1998" + }, + { + "id": 11258, + "model_id": 11257, + "year": "1999" + }, + { + "id": 11259, + "model_id": 11257, + "year": "2000" + }, + { + "id": 11260, + "model_id": 11257, + "year": "2001" + }, + { + "id": 11261, + "model_id": 11257, + "year": "2002" + }, + { + "id": 11262, + "model_id": 11257, + "year": "2008" + }, + { + "id": 11263, + "model_id": 11257, + "year": "2009" + }, + { + "id": 11264, + "model_id": 11257, + "year": "2010" + }, + { + "id": 11265, + "model_id": 11265, + "year": "2015" + }, + { + "id": 11266, + "model_id": 11265, + "year": "2016" + }, + { + "id": 11267, + "model_id": 11267, + "year": "1984" + }, + { + "id": 11275, + "model_id": 11267, + "year": "1985" + }, + { + "id": 11282, + "model_id": 11267, + "year": "1986" + }, + { + "id": 11289, + "model_id": 11267, + "year": "1987" + }, + { + "id": 11296, + "model_id": 11267, + "year": "1988" + }, + { + "id": 11300, + "model_id": 11267, + "year": "1989" + }, + { + "id": 11306, + "model_id": 11267, + "year": "1990" + }, + { + "id": 11312, + "model_id": 11267, + "year": "1991" + }, + { + "id": 11318, + "model_id": 11267, + "year": "1992" + }, + { + "id": 11325, + "model_id": 11267, + "year": "1993" + }, + { + "id": 11331, + "model_id": 11331, + "year": "1984" + }, + { + "id": 11334, + "model_id": 11331, + "year": "1985" + }, + { + "id": 11339, + "model_id": 11331, + "year": "1986" + }, + { + "id": 11343, + "model_id": 11331, + "year": "1987" + }, + { + "id": 11347, + "model_id": 11331, + "year": "1988" + }, + { + "id": 11351, + "model_id": 11331, + "year": "1989" + }, + { + "id": 11355, + "model_id": 11331, + "year": "1990" + }, + { + "id": 11359, + "model_id": 11331, + "year": "1991" + }, + { + "id": 11363, + "model_id": 11331, + "year": "1992" + }, + { + "id": 11368, + "model_id": 11331, + "year": "1993" + }, + { + "id": 11372, + "model_id": 11372, + "year": "1985" + }, + { + "id": 11373, + "model_id": 11373, + "year": "1989" + }, + { + "id": 11375, + "model_id": 11375, + "year": "1989" + }, + { + "id": 11377, + "model_id": 11377, + "year": "1988" + }, + { + "id": 11380, + "model_id": 11377, + "year": "1989" + }, + { + "id": 11382, + "model_id": 11377, + "year": "1990" + }, + { + "id": 11383, + "model_id": 11377, + "year": "1991" + }, + { + "id": 11384, + "model_id": 11377, + "year": "1992" + }, + { + "id": 11385, + "model_id": 11385, + "year": "1988" + }, + { + "id": 11387, + "model_id": 11387, + "year": "1988" + }, + { + "id": 11389, + "model_id": 11389, + "year": "1989" + }, + { + "id": 11393, + "model_id": 11389, + "year": "1990" + }, + { + "id": 11397, + "model_id": 11389, + "year": "1991" + }, + { + "id": 11401, + "model_id": 11389, + "year": "1992" + }, + { + "id": 11405, + "model_id": 11389, + "year": "1993" + }, + { + "id": 11409, + "model_id": 11389, + "year": "1994" + }, + { + "id": 11413, + "model_id": 11389, + "year": "1995" + }, + { + "id": 11417, + "model_id": 11389, + "year": "1996" + }, + { + "id": 11421, + "model_id": 11421, + "year": "1992" + }, + { + "id": 11429, + "model_id": 11421, + "year": "1993" + }, + { + "id": 11437, + "model_id": 11421, + "year": "1994" + }, + { + "id": 11443, + "model_id": 11421, + "year": "1995" + }, + { + "id": 11449, + "model_id": 11421, + "year": "1996" + }, + { + "id": 11455, + "model_id": 11455, + "year": "1990" + }, + { + "id": 11459, + "model_id": 11455, + "year": "1991" + }, + { + "id": 11465, + "model_id": 11455, + "year": "1992" + }, + { + "id": 11471, + "model_id": 11455, + "year": "1993" + }, + { + "id": 11479, + "model_id": 11455, + "year": "1994" + }, + { + "id": 11487, + "model_id": 11455, + "year": "1995" + }, + { + "id": 11495, + "model_id": 11455, + "year": "1996" + }, + { + "id": 11501, + "model_id": 11455, + "year": "1997" + }, + { + "id": 11507, + "model_id": 11455, + "year": "1998" + }, + { + "id": 11519, + "model_id": 11519, + "year": "1993" + }, + { + "id": 11521, + "model_id": 11519, + "year": "1994" + }, + { + "id": 11524, + "model_id": 11519, + "year": "1995" + }, + { + "id": 11527, + "model_id": 11519, + "year": "1996" + }, + { + "id": 11530, + "model_id": 11519, + "year": "1997" + }, + { + "id": 11533, + "model_id": 11533, + "year": "1988" + }, + { + "id": 11534, + "model_id": 11534, + "year": "1989" + }, + { + "id": 11535, + "model_id": 11535, + "year": "1990" + }, + { + "id": 11536, + "model_id": 11535, + "year": "1991" + }, + { + "id": 11537, + "model_id": 11537, + "year": "1989" + }, + { + "id": 11538, + "model_id": 11538, + "year": "1987" + }, + { + "id": 11539, + "model_id": 11539, + "year": "1995" + }, + { + "id": 11540, + "model_id": 11540, + "year": "1995" + }, + { + "id": 11541, + "model_id": 11541, + "year": "1995" + }, + { + "id": 11542, + "model_id": 11542, + "year": "1995" + }, + { + "id": 11543, + "model_id": 11543, + "year": "1995" + }, + { + "id": 11544, + "model_id": 11544, + "year": "1995" + }, + { + "id": 11545, + "model_id": 11545, + "year": "1995" + }, + { + "id": 11546, + "model_id": 11546, + "year": "1995" + }, + { + "id": 11547, + "model_id": 11547, + "year": "1995" + }, + { + "id": 11548, + "model_id": 11548, + "year": "1995" + }, + { + "id": 11549, + "model_id": 11549, + "year": "1995" + }, + { + "id": 11550, + "model_id": 11550, + "year": "1995" + }, + { + "id": 11551, + "model_id": 11551, + "year": "1995" + }, + { + "id": 11552, + "model_id": 11552, + "year": "1995" + }, + { + "id": 11553, + "model_id": 11553, + "year": "1985" + }, + { + "id": 11554, + "model_id": 11554, + "year": "2002" + }, + { + "id": 11556, + "model_id": 11556, + "year": "1987" + }, + { + "id": 11557, + "model_id": 11556, + "year": "1988" + }, + { + "id": 11558, + "model_id": 11556, + "year": "1989" + }, + { + "id": 11559, + "model_id": 11559, + "year": "1986" + }, + { + "id": 11560, + "model_id": 11559, + "year": "1987" + }, + { + "id": 11561, + "model_id": 11559, + "year": "1988" + }, + { + "id": 11562, + "model_id": 11559, + "year": "1989" + }, + { + "id": 11563, + "model_id": 11563, + "year": "1989" + }, + { + "id": 11564, + "model_id": 11563, + "year": "1990" + }, + { + "id": 11565, + "model_id": 11563, + "year": "1991" + }, + { + "id": 11566, + "model_id": 11563, + "year": "1992" + }, + { + "id": 11567, + "model_id": 11563, + "year": "1993" + }, + { + "id": 11568, + "model_id": 11568, + "year": "1999" + }, + { + "id": 11570, + "model_id": 11570, + "year": "2000" + }, + { + "id": 11572, + "model_id": 11570, + "year": "2001" + }, + { + "id": 11574, + "model_id": 11570, + "year": "2002" + }, + { + "id": 11576, + "model_id": 11570, + "year": "2003" + }, + { + "id": 11579, + "model_id": 11579, + "year": "2004" + }, + { + "id": 11582, + "model_id": 11579, + "year": "2005" + }, + { + "id": 11584, + "model_id": 11584, + "year": "1999" + }, + { + "id": 11586, + "model_id": 11584, + "year": "2000" + }, + { + "id": 11588, + "model_id": 11584, + "year": "2001" + }, + { + "id": 11590, + "model_id": 11584, + "year": "2002" + }, + { + "id": 11592, + "model_id": 11584, + "year": "2003" + }, + { + "id": 11594, + "model_id": 11594, + "year": "2010" + }, + { + "id": 11595, + "model_id": 11594, + "year": "2011" + }, + { + "id": 11596, + "model_id": 11594, + "year": "2013" + }, + { + "id": 11598, + "model_id": 11594, + "year": "2014" + }, + { + "id": 11600, + "model_id": 11594, + "year": "2015" + }, + { + "id": 11602, + "model_id": 11602, + "year": "2012" + }, + { + "id": 11604, + "model_id": 11604, + "year": "2012" + }, + { + "id": 11606, + "model_id": 11606, + "year": "2014" + }, + { + "id": 11608, + "model_id": 11606, + "year": "2015" + }, + { + "id": 11610, + "model_id": 11610, + "year": "2015" + }, + { + "id": 11612, + "model_id": 11612, + "year": "2013" + }, + { + "id": 11614, + "model_id": 11612, + "year": "2014" + }, + { + "id": 11616, + "model_id": 11612, + "year": "2015" + }, + { + "id": 11618, + "model_id": 11618, + "year": "2016" + }, + { + "id": 11620, + "model_id": 11620, + "year": "1999" + }, + { + "id": 11621, + "model_id": 11620, + "year": "2000" + }, + { + "id": 11622, + "model_id": 11622, + "year": "2001" + }, + { + "id": 11623, + "model_id": 11623, + "year": "2003" + }, + { + "id": 11625, + "model_id": 11623, + "year": "2004" + }, + { + "id": 11627, + "model_id": 11627, + "year": "2005" + }, + { + "id": 11629, + "model_id": 11629, + "year": "2007" + }, + { + "id": 11631, + "model_id": 11631, + "year": "2008" + }, + { + "id": 11633, + "model_id": 11631, + "year": "2009" + }, + { + "id": 11635, + "model_id": 11631, + "year": "2010" + }, + { + "id": 11637, + "model_id": 11631, + "year": "2011" + }, + { + "id": 11639, + "model_id": 11639, + "year": "2011" + }, + { + "id": 11640, + "model_id": 11640, + "year": "2011" + }, + { + "id": 11641, + "model_id": 11641, + "year": "2005" + }, + { + "id": 11643, + "model_id": 11641, + "year": "2006" + }, + { + "id": 11645, + "model_id": 11641, + "year": "2007" + }, + { + "id": 11647, + "model_id": 11641, + "year": "2008" + }, + { + "id": 11649, + "model_id": 11641, + "year": "2009" + }, + { + "id": 11651, + "model_id": 11641, + "year": "2010" + }, + { + "id": 11653, + "model_id": 11641, + "year": "2011" + }, + { + "id": 11655, + "model_id": 11655, + "year": "2009" + }, + { + "id": 11656, + "model_id": 11655, + "year": "2010" + }, + { + "id": 11657, + "model_id": 11655, + "year": "2011" + }, + { + "id": 11659, + "model_id": 11655, + "year": "2012" + }, + { + "id": 11661, + "model_id": 11655, + "year": "2013" + }, + { + "id": 11663, + "model_id": 11655, + "year": "2014" + }, + { + "id": 11665, + "model_id": 11665, + "year": "2015" + }, + { + "id": 11667, + "model_id": 11665, + "year": "2016" + }, + { + "id": 11669, + "model_id": 11669, + "year": "2003" + }, + { + "id": 11670, + "model_id": 11670, + "year": "1990" + }, + { + "id": 11671, + "model_id": 11671, + "year": "2013" + }, + { + "id": 11673, + "model_id": 11671, + "year": "2014" + }, + { + "id": 11675, + "model_id": 11671, + "year": "2015" + }, + { + "id": 11677, + "model_id": 11671, + "year": "2016" + }, + { + "id": 11679, + "model_id": 11679, + "year": "2016" + }, + { + "id": 11681, + "model_id": 11681, + "year": "2006" + }, + { + "id": 11683, + "model_id": 11683, + "year": "1999" + }, + { + "id": 11685, + "model_id": 11685, + "year": "1991" + }, + { + "id": 11686, + "model_id": 11685, + "year": "1992" + }, + { + "id": 11687, + "model_id": 11687, + "year": "2005" + }, + { + "id": 11689, + "model_id": 11687, + "year": "2006" + }, + { + "id": 11691, + "model_id": 11687, + "year": "2007" + }, + { + "id": 11693, + "model_id": 11687, + "year": "2008" + }, + { + "id": 11695, + "model_id": 11687, + "year": "2009" + }, + { + "id": 11697, + "model_id": 11697, + "year": "2016" + }, + { + "id": 11699, + "model_id": 11699, + "year": "1993" + }, + { + "id": 11700, + "model_id": 11700, + "year": "1994" + }, + { + "id": 11702, + "model_id": 11700, + "year": "1995" + }, + { + "id": 11703, + "model_id": 11703, + "year": "1997" + }, + { + "id": 11705, + "model_id": 11705, + "year": "1995" + }, + { + "id": 11706, + "model_id": 11706, + "year": "1998" + }, + { + "id": 11708, + "model_id": 11708, + "year": "1993" + }, + { + "id": 11709, + "model_id": 11708, + "year": "1994" + }, + { + "id": 11710, + "model_id": 11710, + "year": "1998" + }, + { + "id": 11711, + "model_id": 11711, + "year": "1997" + }, + { + "id": 11712, + "model_id": 11712, + "year": "1995" + }, + { + "id": 11713, + "model_id": 11712, + "year": "1996" + }, + { + "id": 11714, + "model_id": 11714, + "year": "1998" + }, + { + "id": 11716, + "model_id": 11716, + "year": "1995" + }, + { + "id": 11717, + "model_id": 11717, + "year": "1995" + }, + { + "id": 11718, + "model_id": 11718, + "year": "1993" + }, + { + "id": 11720, + "model_id": 11718, + "year": "1994" + }, + { + "id": 11722, + "model_id": 11722, + "year": "2012" + }, + { + "id": 11724, + "model_id": 11722, + "year": "2013" + }, + { + "id": 11726, + "model_id": 11722, + "year": "2014" + }, + { + "id": 11728, + "model_id": 11722, + "year": "2015" + }, + { + "id": 11730, + "model_id": 11722, + "year": "2016" + }, + { + "id": 11732, + "model_id": 11732, + "year": "2014" + }, + { + "id": 11733, + "model_id": 11733, + "year": "1985" + }, + { + "id": 11734, + "model_id": 11734, + "year": "1989" + }, + { + "id": 11735, + "model_id": 11734, + "year": "1990" + }, + { + "id": 11736, + "model_id": 11734, + "year": "1991" + }, + { + "id": 11737, + "model_id": 11734, + "year": "1992" + }, + { + "id": 11739, + "model_id": 11739, + "year": "1986" + }, + { + "id": 11740, + "model_id": 11740, + "year": "1985" + }, + { + "id": 11741, + "model_id": 11740, + "year": "1986" + }, + { + "id": 11742, + "model_id": 11740, + "year": "1987" + }, + { + "id": 11743, + "model_id": 11740, + "year": "1988" + }, + { + "id": 11744, + "model_id": 11740, + "year": "1989" + }, + { + "id": 11745, + "model_id": 11740, + "year": "1990" + }, + { + "id": 11746, + "model_id": 11740, + "year": "1991" + }, + { + "id": 11747, + "model_id": 11740, + "year": "1992" + }, + { + "id": 11748, + "model_id": 11748, + "year": "1991" + }, + { + "id": 11749, + "model_id": 11749, + "year": "2012" + }, + { + "id": 11751, + "model_id": 11749, + "year": "2013" + }, + { + "id": 11754, + "model_id": 11749, + "year": "2014" + }, + { + "id": 11757, + "model_id": 11749, + "year": "2015" + }, + { + "id": 11761, + "model_id": 11749, + "year": "2016" + }, + { + "id": 11765, + "model_id": 11765, + "year": "2017" + }, + { + "id": 11767, + "model_id": 11767, + "year": "2012" + }, + { + "id": 11768, + "model_id": 11767, + "year": "2013" + }, + { + "id": 11769, + "model_id": 11767, + "year": "2014" + }, + { + "id": 11770, + "model_id": 11767, + "year": "2015" + }, + { + "id": 11772, + "model_id": 11767, + "year": "2016" + }, + { + "id": 11774, + "model_id": 11774, + "year": "2012" + }, + { + "id": 11775, + "model_id": 11775, + "year": "2014" + }, + { + "id": 11777, + "model_id": 11775, + "year": "2015" + }, + { + "id": 11780, + "model_id": 11775, + "year": "2016" + }, + { + "id": 11782, + "model_id": 11782, + "year": "2016" + }, + { + "id": 11785, + "model_id": 11785, + "year": "2013" + }, + { + "id": 11786, + "model_id": 11785, + "year": "2014" + }, + { + "id": 11787, + "model_id": 11785, + "year": "2015" + }, + { + "id": 11788, + "model_id": 11785, + "year": "2016" + }, + { + "id": 11789, + "model_id": 11789, + "year": "2012" + }, + { + "id": 11790, + "model_id": 11790, + "year": "1986" + }, + { + "id": 11796, + "model_id": 11790, + "year": "1987" + }, + { + "id": 11800, + "model_id": 11790, + "year": "1988" + }, + { + "id": 11802, + "model_id": 11790, + "year": "1989" + }, + { + "id": 11804, + "model_id": 11790, + "year": "1990" + }, + { + "id": 11808, + "model_id": 11790, + "year": "1991" + }, + { + "id": 11812, + "model_id": 11790, + "year": "1992" + }, + { + "id": 11816, + "model_id": 11790, + "year": "1993" + }, + { + "id": 11820, + "model_id": 11790, + "year": "1994" + }, + { + "id": 11824, + "model_id": 11790, + "year": "1995" + }, + { + "id": 11825, + "model_id": 11790, + "year": "1996" + }, + { + "id": 11826, + "model_id": 11790, + "year": "1997" + }, + { + "id": 11827, + "model_id": 11827, + "year": "1986" + }, + { + "id": 11832, + "model_id": 11827, + "year": "1987" + }, + { + "id": 11835, + "model_id": 11827, + "year": "1988" + }, + { + "id": 11837, + "model_id": 11827, + "year": "1989" + }, + { + "id": 11839, + "model_id": 11827, + "year": "1990" + }, + { + "id": 11843, + "model_id": 11827, + "year": "1991" + }, + { + "id": 11847, + "model_id": 11827, + "year": "1992" + }, + { + "id": 11851, + "model_id": 11827, + "year": "1993" + }, + { + "id": 11855, + "model_id": 11827, + "year": "1994" + }, + { + "id": 11859, + "model_id": 11827, + "year": "1995" + }, + { + "id": 11862, + "model_id": 11827, + "year": "1996" + }, + { + "id": 11865, + "model_id": 11827, + "year": "1997" + }, + { + "id": 11868, + "model_id": 11868, + "year": "1994" + }, + { + "id": 11870, + "model_id": 11868, + "year": "1995" + }, + { + "id": 11872, + "model_id": 11868, + "year": "1996" + }, + { + "id": 11874, + "model_id": 11868, + "year": "1997" + }, + { + "id": 11876, + "model_id": 11876, + "year": "1984" + }, + { + "id": 11891, + "model_id": 11876, + "year": "1985" + }, + { + "id": 11901, + "model_id": 11876, + "year": "1986" + }, + { + "id": 11907, + "model_id": 11876, + "year": "1987" + }, + { + "id": 11915, + "model_id": 11876, + "year": "1988" + }, + { + "id": 11924, + "model_id": 11876, + "year": "1989" + }, + { + "id": 11933, + "model_id": 11876, + "year": "1990" + }, + { + "id": 11940, + "model_id": 11876, + "year": "1991" + }, + { + "id": 11945, + "model_id": 11876, + "year": "1992" + }, + { + "id": 11950, + "model_id": 11876, + "year": "1993" + }, + { + "id": 11953, + "model_id": 11876, + "year": "1994" + }, + { + "id": 11956, + "model_id": 11876, + "year": "1995" + }, + { + "id": 11959, + "model_id": 11876, + "year": "1996" + }, + { + "id": 11962, + "model_id": 11962, + "year": "1984" + }, + { + "id": 11968, + "model_id": 11962, + "year": "1985" + }, + { + "id": 11973, + "model_id": 11962, + "year": "1986" + }, + { + "id": 11978, + "model_id": 11962, + "year": "1987" + }, + { + "id": 11982, + "model_id": 11962, + "year": "1988" + }, + { + "id": 11986, + "model_id": 11962, + "year": "1989" + }, + { + "id": 11991, + "model_id": 11962, + "year": "1990" + }, + { + "id": 11995, + "model_id": 11995, + "year": "2013" + }, + { + "id": 11996, + "model_id": 11995, + "year": "2014" + }, + { + "id": 11997, + "model_id": 11995, + "year": "2015" + }, + { + "id": 11998, + "model_id": 11995, + "year": "2016" + }, + { + "id": 11999, + "model_id": 11999, + "year": "2013" + }, + { + "id": 12000, + "model_id": 11999, + "year": "2014" + }, + { + "id": 12001, + "model_id": 11999, + "year": "2015" + }, + { + "id": 12002, + "model_id": 11999, + "year": "2016" + }, + { + "id": 12003, + "model_id": 12003, + "year": "1995" + }, + { + "id": 12007, + "model_id": 12003, + "year": "1996" + }, + { + "id": 12011, + "model_id": 12003, + "year": "1997" + }, + { + "id": 12015, + "model_id": 12003, + "year": "1998" + }, + { + "id": 12019, + "model_id": 12003, + "year": "1999" + }, + { + "id": 12023, + "model_id": 12003, + "year": "2000" + }, + { + "id": 12027, + "model_id": 12027, + "year": "1987" + }, + { + "id": 12030, + "model_id": 12027, + "year": "1988" + }, + { + "id": 12032, + "model_id": 12027, + "year": "1989" + }, + { + "id": 12034, + "model_id": 12034, + "year": "1984" + }, + { + "id": 12035, + "model_id": 12034, + "year": "1986" + }, + { + "id": 12036, + "model_id": 12034, + "year": "1987" + }, + { + "id": 12037, + "model_id": 12034, + "year": "1988" + }, + { + "id": 12038, + "model_id": 12038, + "year": "1995" + }, + { + "id": 12039, + "model_id": 12038, + "year": "1996" + }, + { + "id": 12040, + "model_id": 12038, + "year": "1997" + }, + { + "id": 12041, + "model_id": 12038, + "year": "1998" + }, + { + "id": 12042, + "model_id": 12038, + "year": "1999" + }, + { + "id": 12043, + "model_id": 12038, + "year": "2000" + }, + { + "id": 12044, + "model_id": 12038, + "year": "2001" + }, + { + "id": 12045, + "model_id": 12038, + "year": "2002" + }, + { + "id": 12046, + "model_id": 12038, + "year": "2003" + }, + { + "id": 12047, + "model_id": 12038, + "year": "2004" + }, + { + "id": 12048, + "model_id": 12038, + "year": "2005" + }, + { + "id": 12049, + "model_id": 12038, + "year": "2006" + }, + { + "id": 12051, + "model_id": 12038, + "year": "2007" + }, + { + "id": 12053, + "model_id": 12038, + "year": "2008" + }, + { + "id": 12054, + "model_id": 12038, + "year": "2009" + }, + { + "id": 12055, + "model_id": 12038, + "year": "2010" + }, + { + "id": 12056, + "model_id": 12038, + "year": "2011" + }, + { + "id": 12057, + "model_id": 12057, + "year": "1996" + }, + { + "id": 12058, + "model_id": 12057, + "year": "1997" + }, + { + "id": 12059, + "model_id": 12057, + "year": "1999" + }, + { + "id": 12060, + "model_id": 12057, + "year": "2000" + }, + { + "id": 12061, + "model_id": 12057, + "year": "2001" + }, + { + "id": 12062, + "model_id": 12057, + "year": "2002" + }, + { + "id": 12063, + "model_id": 12057, + "year": "2003" + }, + { + "id": 12064, + "model_id": 12057, + "year": "2004" + }, + { + "id": 12065, + "model_id": 12065, + "year": "1993" + }, + { + "id": 12066, + "model_id": 12065, + "year": "1994" + }, + { + "id": 12067, + "model_id": 12065, + "year": "1995" + }, + { + "id": 12068, + "model_id": 12065, + "year": "1996" + }, + { + "id": 12069, + "model_id": 12065, + "year": "1997" + }, + { + "id": 12070, + "model_id": 12065, + "year": "1998" + }, + { + "id": 12071, + "model_id": 12065, + "year": "1999" + }, + { + "id": 12072, + "model_id": 12065, + "year": "2000" + }, + { + "id": 12073, + "model_id": 12065, + "year": "2001" + }, + { + "id": 12074, + "model_id": 12065, + "year": "2002" + }, + { + "id": 12075, + "model_id": 12065, + "year": "2003" + }, + { + "id": 12076, + "model_id": 12065, + "year": "2004" + }, + { + "id": 12077, + "model_id": 12065, + "year": "2005" + }, + { + "id": 12078, + "model_id": 12065, + "year": "2006" + }, + { + "id": 12079, + "model_id": 12079, + "year": "1984" + }, + { + "id": 12091, + "model_id": 12079, + "year": "1985" + }, + { + "id": 12099, + "model_id": 12079, + "year": "1986" + }, + { + "id": 12104, + "model_id": 12079, + "year": "1987" + }, + { + "id": 12111, + "model_id": 12079, + "year": "1988" + }, + { + "id": 12115, + "model_id": 12079, + "year": "1989" + }, + { + "id": 12119, + "model_id": 12079, + "year": "1990" + }, + { + "id": 12122, + "model_id": 12079, + "year": "1991" + }, + { + "id": 12125, + "model_id": 12079, + "year": "1992" + }, + { + "id": 12128, + "model_id": 12079, + "year": "1993" + }, + { + "id": 12132, + "model_id": 12079, + "year": "1994" + }, + { + "id": 12135, + "model_id": 12079, + "year": "1995" + }, + { + "id": 12138, + "model_id": 12079, + "year": "1996" + }, + { + "id": 12141, + "model_id": 12079, + "year": "1997" + }, + { + "id": 12144, + "model_id": 12079, + "year": "1998" + }, + { + "id": 12147, + "model_id": 12079, + "year": "1999" + }, + { + "id": 12150, + "model_id": 12079, + "year": "2000" + }, + { + "id": 12153, + "model_id": 12079, + "year": "2001" + }, + { + "id": 12156, + "model_id": 12079, + "year": "2002" + }, + { + "id": 12159, + "model_id": 12079, + "year": "2003" + }, + { + "id": 12162, + "model_id": 12079, + "year": "2004" + }, + { + "id": 12164, + "model_id": 12079, + "year": "2005" + }, + { + "id": 12166, + "model_id": 12079, + "year": "2006" + }, + { + "id": 12168, + "model_id": 12168, + "year": "1984" + }, + { + "id": 12183, + "model_id": 12168, + "year": "1985" + }, + { + "id": 12195, + "model_id": 12168, + "year": "1986" + }, + { + "id": 12201, + "model_id": 12168, + "year": "1987" + }, + { + "id": 12207, + "model_id": 12168, + "year": "1988" + }, + { + "id": 12212, + "model_id": 12168, + "year": "1989" + }, + { + "id": 12217, + "model_id": 12168, + "year": "1990" + }, + { + "id": 12221, + "model_id": 12168, + "year": "1991" + }, + { + "id": 12225, + "model_id": 12168, + "year": "1992" + }, + { + "id": 12229, + "model_id": 12168, + "year": "1993" + }, + { + "id": 12234, + "model_id": 12168, + "year": "1994" + }, + { + "id": 12238, + "model_id": 12168, + "year": "1995" + }, + { + "id": 12242, + "model_id": 12168, + "year": "1996" + }, + { + "id": 12246, + "model_id": 12168, + "year": "1997" + }, + { + "id": 12249, + "model_id": 12168, + "year": "1998" + }, + { + "id": 12252, + "model_id": 12168, + "year": "1999" + }, + { + "id": 12255, + "model_id": 12168, + "year": "2000" + }, + { + "id": 12258, + "model_id": 12168, + "year": "2001" + }, + { + "id": 12261, + "model_id": 12168, + "year": "2002" + }, + { + "id": 12264, + "model_id": 12168, + "year": "2003" + }, + { + "id": 12267, + "model_id": 12168, + "year": "2004" + }, + { + "id": 12269, + "model_id": 12168, + "year": "2005" + }, + { + "id": 12271, + "model_id": 12168, + "year": "2006" + }, + { + "id": 12273, + "model_id": 12273, + "year": "2011" + }, + { + "id": 12275, + "model_id": 12273, + "year": "2012" + }, + { + "id": 12277, + "model_id": 12273, + "year": "2013" + }, + { + "id": 12279, + "model_id": 12273, + "year": "2014" + }, + { + "id": 12281, + "model_id": 12281, + "year": "2011" + }, + { + "id": 12283, + "model_id": 12281, + "year": "2012" + }, + { + "id": 12285, + "model_id": 12281, + "year": "2013" + }, + { + "id": 12287, + "model_id": 12281, + "year": "2014" + }, + { + "id": 12289, + "model_id": 12289, + "year": "2001" + }, + { + "id": 12290, + "model_id": 12290, + "year": "1984" + }, + { + "id": 12301, + "model_id": 12290, + "year": "1985" + }, + { + "id": 12307, + "model_id": 12290, + "year": "1986" + }, + { + "id": 12310, + "model_id": 12290, + "year": "1987" + }, + { + "id": 12314, + "model_id": 12290, + "year": "1988" + }, + { + "id": 12317, + "model_id": 12290, + "year": "1989" + }, + { + "id": 12320, + "model_id": 12290, + "year": "1990" + }, + { + "id": 12325, + "model_id": 12290, + "year": "1991" + }, + { + "id": 12329, + "model_id": 12290, + "year": "1992" + }, + { + "id": 12332, + "model_id": 12290, + "year": "1993" + }, + { + "id": 12335, + "model_id": 12290, + "year": "1994" + }, + { + "id": 12338, + "model_id": 12290, + "year": "1995" + }, + { + "id": 12341, + "model_id": 12290, + "year": "1996" + }, + { + "id": 12344, + "model_id": 12290, + "year": "1997" + }, + { + "id": 12346, + "model_id": 12290, + "year": "1998" + }, + { + "id": 12348, + "model_id": 12290, + "year": "1999" + }, + { + "id": 12350, + "model_id": 12290, + "year": "2000" + }, + { + "id": 12352, + "model_id": 12290, + "year": "2001" + }, + { + "id": 12354, + "model_id": 12290, + "year": "2002" + }, + { + "id": 12356, + "model_id": 12290, + "year": "2003" + }, + { + "id": 12359, + "model_id": 12290, + "year": "2004" + }, + { + "id": 12360, + "model_id": 12290, + "year": "2005" + }, + { + "id": 12361, + "model_id": 12361, + "year": "1998" + }, + { + "id": 12362, + "model_id": 12361, + "year": "1999" + }, + { + "id": 12363, + "model_id": 12361, + "year": "2000" + }, + { + "id": 12364, + "model_id": 12364, + "year": "2011" + }, + { + "id": 12366, + "model_id": 12364, + "year": "2012" + }, + { + "id": 12368, + "model_id": 12364, + "year": "2013" + }, + { + "id": 12370, + "model_id": 12364, + "year": "2014" + }, + { + "id": 12372, + "model_id": 12372, + "year": "2011" + }, + { + "id": 12374, + "model_id": 12372, + "year": "2012" + }, + { + "id": 12376, + "model_id": 12372, + "year": "2013" + }, + { + "id": 12378, + "model_id": 12372, + "year": "2014" + }, + { + "id": 12380, + "model_id": 12380, + "year": "2011" + }, + { + "id": 12382, + "model_id": 12380, + "year": "2012" + }, + { + "id": 12384, + "model_id": 12380, + "year": "2013" + }, + { + "id": 12386, + "model_id": 12380, + "year": "2014" + }, + { + "id": 12388, + "model_id": 12388, + "year": "2007" + }, + { + "id": 12390, + "model_id": 12388, + "year": "2008" + }, + { + "id": 12392, + "model_id": 12388, + "year": "2009" + }, + { + "id": 12394, + "model_id": 12388, + "year": "2010" + }, + { + "id": 12396, + "model_id": 12388, + "year": "2011" + }, + { + "id": 12402, + "model_id": 12388, + "year": "2012" + }, + { + "id": 12407, + "model_id": 12388, + "year": "2013" + }, + { + "id": 12413, + "model_id": 12388, + "year": "2014" + }, + { + "id": 12418, + "model_id": 12388, + "year": "2015" + }, + { + "id": 12425, + "model_id": 12388, + "year": "2016" + }, + { + "id": 12431, + "model_id": 12431, + "year": "2001" + }, + { + "id": 12435, + "model_id": 12431, + "year": "2002" + }, + { + "id": 12439, + "model_id": 12431, + "year": "2003" + }, + { + "id": 12443, + "model_id": 12431, + "year": "2004" + }, + { + "id": 12446, + "model_id": 12431, + "year": "2005" + }, + { + "id": 12452, + "model_id": 12431, + "year": "2006" + }, + { + "id": 12458, + "model_id": 12431, + "year": "2007" + }, + { + "id": 12464, + "model_id": 12431, + "year": "2008" + }, + { + "id": 12469, + "model_id": 12431, + "year": "2009" + }, + { + "id": 12474, + "model_id": 12431, + "year": "2010" + }, + { + "id": 12479, + "model_id": 12431, + "year": "2011" + }, + { + "id": 12484, + "model_id": 12431, + "year": "2012" + }, + { + "id": 12489, + "model_id": 12431, + "year": "2013" + }, + { + "id": 12494, + "model_id": 12431, + "year": "2014" + }, + { + "id": 12499, + "model_id": 12431, + "year": "2015" + }, + { + "id": 12504, + "model_id": 12431, + "year": "2016" + }, + { + "id": 12509, + "model_id": 12431, + "year": "2017" + }, + { + "id": 12515, + "model_id": 12515, + "year": "2005" + }, + { + "id": 12517, + "model_id": 12515, + "year": "2006" + }, + { + "id": 12519, + "model_id": 12515, + "year": "2007" + }, + { + "id": 12521, + "model_id": 12515, + "year": "2008" + }, + { + "id": 12523, + "model_id": 12515, + "year": "2009" + }, + { + "id": 12525, + "model_id": 12515, + "year": "2010" + }, + { + "id": 12527, + "model_id": 12515, + "year": "2011" + }, + { + "id": 12529, + "model_id": 12515, + "year": "2012" + }, + { + "id": 12531, + "model_id": 12531, + "year": "1984" + }, + { + "id": 12547, + "model_id": 12531, + "year": "1985" + }, + { + "id": 12563, + "model_id": 12531, + "year": "1986" + }, + { + "id": 12569, + "model_id": 12531, + "year": "1987" + }, + { + "id": 12574, + "model_id": 12531, + "year": "1988" + }, + { + "id": 12578, + "model_id": 12531, + "year": "1989" + }, + { + "id": 12582, + "model_id": 12531, + "year": "1990" + }, + { + "id": 12586, + "model_id": 12531, + "year": "1991" + }, + { + "id": 12590, + "model_id": 12531, + "year": "1992" + }, + { + "id": 12594, + "model_id": 12531, + "year": "1993" + }, + { + "id": 12598, + "model_id": 12531, + "year": "1994" + }, + { + "id": 12602, + "model_id": 12531, + "year": "1995" + }, + { + "id": 12606, + "model_id": 12531, + "year": "1996" + }, + { + "id": 12610, + "model_id": 12531, + "year": "1997" + }, + { + "id": 12612, + "model_id": 12531, + "year": "1998" + }, + { + "id": 12614, + "model_id": 12531, + "year": "1999" + }, + { + "id": 12616, + "model_id": 12531, + "year": "2000" + }, + { + "id": 12618, + "model_id": 12531, + "year": "2001" + }, + { + "id": 12619, + "model_id": 12531, + "year": "2002" + }, + { + "id": 12620, + "model_id": 12620, + "year": "1986" + }, + { + "id": 12621, + "model_id": 12620, + "year": "1991" + }, + { + "id": 12622, + "model_id": 12620, + "year": "1992" + }, + { + "id": 12623, + "model_id": 12620, + "year": "1993" + }, + { + "id": 12624, + "model_id": 12624, + "year": "1984" + }, + { + "id": 12636, + "model_id": 12624, + "year": "1985" + }, + { + "id": 12649, + "model_id": 12624, + "year": "1986" + }, + { + "id": 12653, + "model_id": 12624, + "year": "1987" + }, + { + "id": 12656, + "model_id": 12624, + "year": "1988" + }, + { + "id": 12659, + "model_id": 12624, + "year": "1989" + }, + { + "id": 12661, + "model_id": 12624, + "year": "1990" + }, + { + "id": 12663, + "model_id": 12624, + "year": "1991" + }, + { + "id": 12665, + "model_id": 12624, + "year": "1992" + }, + { + "id": 12667, + "model_id": 12624, + "year": "1993" + }, + { + "id": 12669, + "model_id": 12624, + "year": "1994" + }, + { + "id": 12671, + "model_id": 12624, + "year": "1995" + }, + { + "id": 12673, + "model_id": 12624, + "year": "1996" + }, + { + "id": 12675, + "model_id": 12624, + "year": "1997" + }, + { + "id": 12677, + "model_id": 12624, + "year": "1998" + }, + { + "id": 12679, + "model_id": 12624, + "year": "1999" + }, + { + "id": 12681, + "model_id": 12681, + "year": "1998" + }, + { + "id": 12683, + "model_id": 12681, + "year": "1999" + }, + { + "id": 12685, + "model_id": 12681, + "year": "2000" + }, + { + "id": 12687, + "model_id": 12681, + "year": "2001" + }, + { + "id": 12689, + "model_id": 12681, + "year": "2002" + }, + { + "id": 12691, + "model_id": 12681, + "year": "2003" + }, + { + "id": 12693, + "model_id": 12693, + "year": "1984" + }, + { + "id": 12699, + "model_id": 12693, + "year": "1985" + }, + { + "id": 12702, + "model_id": 12693, + "year": "1986" + }, + { + "id": 12706, + "model_id": 12693, + "year": "1987" + }, + { + "id": 12709, + "model_id": 12693, + "year": "1988" + }, + { + "id": 12712, + "model_id": 12712, + "year": "1997" + }, + { + "id": 12716, + "model_id": 12712, + "year": "1998" + }, + { + "id": 12720, + "model_id": 12712, + "year": "1999" + }, + { + "id": 12724, + "model_id": 12712, + "year": "2000" + }, + { + "id": 12728, + "model_id": 12712, + "year": "2001" + }, + { + "id": 12732, + "model_id": 12712, + "year": "2002" + }, + { + "id": 12736, + "model_id": 12712, + "year": "2003" + }, + { + "id": 12740, + "model_id": 12712, + "year": "2004" + }, + { + "id": 12744, + "model_id": 12712, + "year": "2005" + }, + { + "id": 12746, + "model_id": 12712, + "year": "2006" + }, + { + "id": 12748, + "model_id": 12712, + "year": "2007" + }, + { + "id": 12749, + "model_id": 12712, + "year": "2008" + }, + { + "id": 12750, + "model_id": 12712, + "year": "2009" + }, + { + "id": 12751, + "model_id": 12712, + "year": "2010" + }, + { + "id": 12753, + "model_id": 12712, + "year": "2011" + }, + { + "id": 12755, + "model_id": 12712, + "year": "2012" + }, + { + "id": 12757, + "model_id": 12712, + "year": "2013" + }, + { + "id": 12759, + "model_id": 12712, + "year": "2014" + }, + { + "id": 12761, + "model_id": 12712, + "year": "2015" + }, + { + "id": 12763, + "model_id": 12712, + "year": "2016" + }, + { + "id": 12765, + "model_id": 12712, + "year": "2017" + }, + { + "id": 12767, + "model_id": 12767, + "year": "2015" + }, + { + "id": 12769, + "model_id": 12767, + "year": "2016" + }, + { + "id": 12771, + "model_id": 12767, + "year": "2017" + }, + { + "id": 12773, + "model_id": 12773, + "year": "2011" + }, + { + "id": 12774, + "model_id": 12774, + "year": "1991" + }, + { + "id": 12778, + "model_id": 12774, + "year": "1992" + }, + { + "id": 12782, + "model_id": 12774, + "year": "1993" + }, + { + "id": 12786, + "model_id": 12774, + "year": "1994" + }, + { + "id": 12790, + "model_id": 12774, + "year": "1995" + }, + { + "id": 12794, + "model_id": 12774, + "year": "1996" + }, + { + "id": 12800, + "model_id": 12774, + "year": "1997" + }, + { + "id": 12808, + "model_id": 12774, + "year": "1998" + }, + { + "id": 12816, + "model_id": 12774, + "year": "1999" + }, + { + "id": 12824, + "model_id": 12774, + "year": "2000" + }, + { + "id": 12833, + "model_id": 12774, + "year": "2001" + }, + { + "id": 12837, + "model_id": 12774, + "year": "2002" + }, + { + "id": 12845, + "model_id": 12774, + "year": "2003" + }, + { + "id": 12849, + "model_id": 12774, + "year": "2004" + }, + { + "id": 12855, + "model_id": 12774, + "year": "2005" + }, + { + "id": 12861, + "model_id": 12774, + "year": "2006" + }, + { + "id": 12865, + "model_id": 12774, + "year": "2007" + }, + { + "id": 12869, + "model_id": 12774, + "year": "2008" + }, + { + "id": 12873, + "model_id": 12774, + "year": "2009" + }, + { + "id": 12877, + "model_id": 12774, + "year": "2010" + }, + { + "id": 12881, + "model_id": 12774, + "year": "2011" + }, + { + "id": 12885, + "model_id": 12774, + "year": "2012" + }, + { + "id": 12888, + "model_id": 12774, + "year": "2013" + }, + { + "id": 12894, + "model_id": 12774, + "year": "2014" + }, + { + "id": 12900, + "model_id": 12774, + "year": "2015" + }, + { + "id": 12906, + "model_id": 12774, + "year": "2016" + }, + { + "id": 12913, + "model_id": 12774, + "year": "2017" + }, + { + "id": 12920, + "model_id": 12920, + "year": "2001" + }, + { + "id": 12926, + "model_id": 12920, + "year": "2002" + }, + { + "id": 12930, + "model_id": 12920, + "year": "2003" + }, + { + "id": 12934, + "model_id": 12934, + "year": "2001" + }, + { + "id": 12938, + "model_id": 12934, + "year": "2002" + }, + { + "id": 12942, + "model_id": 12934, + "year": "2003" + }, + { + "id": 12946, + "model_id": 12934, + "year": "2004" + }, + { + "id": 12948, + "model_id": 12934, + "year": "2005" + }, + { + "id": 12950, + "model_id": 12934, + "year": "2007" + }, + { + "id": 12954, + "model_id": 12934, + "year": "2008" + }, + { + "id": 12958, + "model_id": 12934, + "year": "2009" + }, + { + "id": 12962, + "model_id": 12934, + "year": "2010" + }, + { + "id": 12966, + "model_id": 12966, + "year": "2001" + }, + { + "id": 12970, + "model_id": 12970, + "year": "2001" + }, + { + "id": 12971, + "model_id": 12970, + "year": "2002" + }, + { + "id": 12972, + "model_id": 12972, + "year": "2016" + }, + { + "id": 12973, + "model_id": 12973, + "year": "2016" + }, + { + "id": 12974, + "model_id": 12974, + "year": "2016" + }, + { + "id": 12976, + "model_id": 12976, + "year": "2016" + }, + { + "id": 12978, + "model_id": 12978, + "year": "2001" + }, + { + "id": 12979, + "model_id": 12978, + "year": "2002" + }, + { + "id": 12980, + "model_id": 12978, + "year": "2003" + }, + { + "id": 12981, + "model_id": 12978, + "year": "2004" + }, + { + "id": 12982, + "model_id": 12982, + "year": "2001" + }, + { + "id": 12984, + "model_id": 12982, + "year": "2002" + }, + { + "id": 12986, + "model_id": 12982, + "year": "2003" + }, + { + "id": 12988, + "model_id": 12982, + "year": "2004" + }, + { + "id": 12990, + "model_id": 12990, + "year": "2001" + }, + { + "id": 12992, + "model_id": 12990, + "year": "2002" + }, + { + "id": 12994, + "model_id": 12990, + "year": "2003" + }, + { + "id": 12996, + "model_id": 12990, + "year": "2004" + }, + { + "id": 12998, + "model_id": 12998, + "year": "1984" + }, + { + "id": 13032, + "model_id": 12998, + "year": "1985" + }, + { + "id": 13062, + "model_id": 12998, + "year": "1986" + }, + { + "id": 13079, + "model_id": 12998, + "year": "1987" + }, + { + "id": 13098, + "model_id": 12998, + "year": "1988" + }, + { + "id": 13118, + "model_id": 12998, + "year": "1989" + }, + { + "id": 13136, + "model_id": 12998, + "year": "1990" + }, + { + "id": 13157, + "model_id": 12998, + "year": "1991" + }, + { + "id": 13173, + "model_id": 12998, + "year": "1992" + }, + { + "id": 13189, + "model_id": 12998, + "year": "1993" + }, + { + "id": 13205, + "model_id": 12998, + "year": "1994" + }, + { + "id": 13215, + "model_id": 12998, + "year": "1995" + }, + { + "id": 13226, + "model_id": 12998, + "year": "1996" + }, + { + "id": 13236, + "model_id": 12998, + "year": "1997" + }, + { + "id": 13246, + "model_id": 12998, + "year": "1998" + }, + { + "id": 13256, + "model_id": 12998, + "year": "1999" + }, + { + "id": 13267, + "model_id": 12998, + "year": "2000" + }, + { + "id": 13277, + "model_id": 12998, + "year": "2001" + }, + { + "id": 13288, + "model_id": 12998, + "year": "2002" + }, + { + "id": 13299, + "model_id": 12998, + "year": "2003" + }, + { + "id": 13310, + "model_id": 12998, + "year": "2004" + }, + { + "id": 13320, + "model_id": 12998, + "year": "2005" + }, + { + "id": 13326, + "model_id": 12998, + "year": "2006" + }, + { + "id": 13334, + "model_id": 12998, + "year": "2007" + }, + { + "id": 13342, + "model_id": 12998, + "year": "2008" + }, + { + "id": 13350, + "model_id": 12998, + "year": "2009" + }, + { + "id": 13356, + "model_id": 12998, + "year": "2010" + }, + { + "id": 13362, + "model_id": 12998, + "year": "2011" + }, + { + "id": 13376, + "model_id": 12998, + "year": "2012" + }, + { + "id": 13390, + "model_id": 12998, + "year": "2013" + }, + { + "id": 13404, + "model_id": 12998, + "year": "2014" + }, + { + "id": 13418, + "model_id": 12998, + "year": "2015" + }, + { + "id": 13426, + "model_id": 12998, + "year": "2016" + }, + { + "id": 13434, + "model_id": 13434, + "year": "2000" + }, + { + "id": 13435, + "model_id": 13435, + "year": "2011" + }, + { + "id": 13436, + "model_id": 13435, + "year": "2012" + }, + { + "id": 13437, + "model_id": 13435, + "year": "2013" + }, + { + "id": 13438, + "model_id": 13435, + "year": "2014" + }, + { + "id": 13439, + "model_id": 13439, + "year": "2009" + }, + { + "id": 13440, + "model_id": 13440, + "year": "2007" + }, + { + "id": 13442, + "model_id": 13440, + "year": "2008" + }, + { + "id": 13444, + "model_id": 13444, + "year": "1996" + }, + { + "id": 13449, + "model_id": 13449, + "year": "1984" + }, + { + "id": 13473, + "model_id": 13449, + "year": "1985" + }, + { + "id": 13497, + "model_id": 13449, + "year": "1986" + }, + { + "id": 13506, + "model_id": 13449, + "year": "1987" + }, + { + "id": 13517, + "model_id": 13449, + "year": "1988" + }, + { + "id": 13529, + "model_id": 13449, + "year": "1989" + }, + { + "id": 13541, + "model_id": 13449, + "year": "1990" + }, + { + "id": 13558, + "model_id": 13449, + "year": "1991" + }, + { + "id": 13570, + "model_id": 13449, + "year": "1992" + }, + { + "id": 13577, + "model_id": 13449, + "year": "1993" + }, + { + "id": 13584, + "model_id": 13449, + "year": "1994" + }, + { + "id": 13589, + "model_id": 13449, + "year": "1995" + }, + { + "id": 13594, + "model_id": 13449, + "year": "1997" + }, + { + "id": 13600, + "model_id": 13449, + "year": "1998" + }, + { + "id": 13606, + "model_id": 13449, + "year": "1999" + }, + { + "id": 13612, + "model_id": 13612, + "year": "1984" + }, + { + "id": 13615, + "model_id": 13615, + "year": "1998" + }, + { + "id": 13616, + "model_id": 13615, + "year": "1999" + }, + { + "id": 13617, + "model_id": 13617, + "year": "1988" + }, + { + "id": 13619, + "model_id": 13617, + "year": "1989" + }, + { + "id": 13622, + "model_id": 13617, + "year": "1990" + }, + { + "id": 13624, + "model_id": 13617, + "year": "1991" + }, + { + "id": 13626, + "model_id": 13617, + "year": "1992" + }, + { + "id": 13628, + "model_id": 13617, + "year": "1993" + }, + { + "id": 13630, + "model_id": 13630, + "year": "2011" + }, + { + "id": 13632, + "model_id": 13630, + "year": "2012" + }, + { + "id": 13634, + "model_id": 13630, + "year": "2013" + }, + { + "id": 13636, + "model_id": 13630, + "year": "2014" + }, + { + "id": 13638, + "model_id": 13630, + "year": "2015" + }, + { + "id": 13640, + "model_id": 13630, + "year": "2016" + }, + { + "id": 13642, + "model_id": 13642, + "year": "2011" + }, + { + "id": 13643, + "model_id": 13642, + "year": "2012" + }, + { + "id": 13644, + "model_id": 13642, + "year": "2013" + }, + { + "id": 13645, + "model_id": 13642, + "year": "2014" + }, + { + "id": 13647, + "model_id": 13642, + "year": "2015" + }, + { + "id": 13648, + "model_id": 13642, + "year": "2016" + }, + { + "id": 13649, + "model_id": 13649, + "year": "2014" + }, + { + "id": 13650, + "model_id": 13649, + "year": "2015" + }, + { + "id": 13651, + "model_id": 13649, + "year": "2016" + }, + { + "id": 13652, + "model_id": 13652, + "year": "2005" + }, + { + "id": 13655, + "model_id": 13652, + "year": "2006" + }, + { + "id": 13658, + "model_id": 13652, + "year": "2007" + }, + { + "id": 13660, + "model_id": 13660, + "year": "2009" + }, + { + "id": 13662, + "model_id": 13660, + "year": "2010" + }, + { + "id": 13665, + "model_id": 13660, + "year": "2011" + }, + { + "id": 13668, + "model_id": 13660, + "year": "2012" + }, + { + "id": 13671, + "model_id": 13660, + "year": "2013" + }, + { + "id": 13674, + "model_id": 13660, + "year": "2014" + }, + { + "id": 13677, + "model_id": 13660, + "year": "2015" + }, + { + "id": 13680, + "model_id": 13660, + "year": "2016" + }, + { + "id": 13683, + "model_id": 13683, + "year": "2000" + }, + { + "id": 13687, + "model_id": 13683, + "year": "2001" + }, + { + "id": 13691, + "model_id": 13683, + "year": "2002" + }, + { + "id": 13696, + "model_id": 13683, + "year": "2003" + }, + { + "id": 13703, + "model_id": 13683, + "year": "2004" + }, + { + "id": 13710, + "model_id": 13683, + "year": "2005" + }, + { + "id": 13713, + "model_id": 13683, + "year": "2006" + }, + { + "id": 13716, + "model_id": 13683, + "year": "2007" + }, + { + "id": 13719, + "model_id": 13683, + "year": "2008" + }, + { + "id": 13721, + "model_id": 13683, + "year": "2009" + }, + { + "id": 13723, + "model_id": 13683, + "year": "2010" + }, + { + "id": 13725, + "model_id": 13683, + "year": "2011" + }, + { + "id": 13727, + "model_id": 13683, + "year": "2012" + }, + { + "id": 13733, + "model_id": 13683, + "year": "2013" + }, + { + "id": 13740, + "model_id": 13683, + "year": "2014" + }, + { + "id": 13747, + "model_id": 13683, + "year": "2015" + }, + { + "id": 13755, + "model_id": 13683, + "year": "2016" + }, + { + "id": 13763, + "model_id": 13763, + "year": "2012" + }, + { + "id": 13764, + "model_id": 13763, + "year": "2013" + }, + { + "id": 13765, + "model_id": 13763, + "year": "2014" + }, + { + "id": 13766, + "model_id": 13763, + "year": "2015" + }, + { + "id": 13767, + "model_id": 13763, + "year": "2016" + }, + { + "id": 13768, + "model_id": 13768, + "year": "2016" + }, + { + "id": 13769, + "model_id": 13769, + "year": "2012" + }, + { + "id": 13771, + "model_id": 13769, + "year": "2013" + }, + { + "id": 13772, + "model_id": 13769, + "year": "2014" + }, + { + "id": 13773, + "model_id": 13769, + "year": "2015" + }, + { + "id": 13774, + "model_id": 13774, + "year": "2016" + }, + { + "id": 13775, + "model_id": 13775, + "year": "2000" + }, + { + "id": 13777, + "model_id": 13775, + "year": "2001" + }, + { + "id": 13781, + "model_id": 13775, + "year": "2002" + }, + { + "id": 13785, + "model_id": 13775, + "year": "2003" + }, + { + "id": 13791, + "model_id": 13775, + "year": "2004" + }, + { + "id": 13796, + "model_id": 13775, + "year": "2005" + }, + { + "id": 13798, + "model_id": 13775, + "year": "2006" + }, + { + "id": 13800, + "model_id": 13775, + "year": "2007" + }, + { + "id": 13802, + "model_id": 13802, + "year": "2004" + }, + { + "id": 13803, + "model_id": 13802, + "year": "2005" + }, + { + "id": 13805, + "model_id": 13802, + "year": "2006" + }, + { + "id": 13807, + "model_id": 13802, + "year": "2007" + }, + { + "id": 13809, + "model_id": 13809, + "year": "2004" + }, + { + "id": 13811, + "model_id": 13809, + "year": "2005" + }, + { + "id": 13813, + "model_id": 13809, + "year": "2006" + }, + { + "id": 13815, + "model_id": 13809, + "year": "2007" + }, + { + "id": 13817, + "model_id": 13817, + "year": "2005" + }, + { + "id": 13819, + "model_id": 13817, + "year": "2006" + }, + { + "id": 13821, + "model_id": 13817, + "year": "2007" + }, + { + "id": 13823, + "model_id": 13823, + "year": "2006" + }, + { + "id": 13826, + "model_id": 13823, + "year": "2007" + }, + { + "id": 13830, + "model_id": 13823, + "year": "2008" + }, + { + "id": 13834, + "model_id": 13823, + "year": "2009" + }, + { + "id": 13838, + "model_id": 13823, + "year": "2010" + }, + { + "id": 13844, + "model_id": 13823, + "year": "2011" + }, + { + "id": 13851, + "model_id": 13823, + "year": "2012" + }, + { + "id": 13858, + "model_id": 13823, + "year": "2013" + }, + { + "id": 13864, + "model_id": 13823, + "year": "2014" + }, + { + "id": 13870, + "model_id": 13823, + "year": "2015" + }, + { + "id": 13875, + "model_id": 13823, + "year": "2016" + }, + { + "id": 13880, + "model_id": 13823, + "year": "2017" + }, + { + "id": 13884, + "model_id": 13884, + "year": "2013" + }, + { + "id": 13885, + "model_id": 13884, + "year": "2014" + }, + { + "id": 13886, + "model_id": 13884, + "year": "2015" + }, + { + "id": 13887, + "model_id": 13884, + "year": "2016" + }, + { + "id": 13888, + "model_id": 13884, + "year": "2017" + }, + { + "id": 13889, + "model_id": 13889, + "year": "2010" + }, + { + "id": 13890, + "model_id": 13889, + "year": "2011" + }, + { + "id": 13891, + "model_id": 13889, + "year": "2012" + }, + { + "id": 13892, + "model_id": 13889, + "year": "2013" + }, + { + "id": 13893, + "model_id": 13889, + "year": "2014" + }, + { + "id": 13894, + "model_id": 13889, + "year": "2015" + }, + { + "id": 13895, + "model_id": 13889, + "year": "2016" + }, + { + "id": 13896, + "model_id": 13889, + "year": "2017" + }, + { + "id": 13897, + "model_id": 13897, + "year": "2010" + }, + { + "id": 13899, + "model_id": 13897, + "year": "2011" + }, + { + "id": 13900, + "model_id": 13897, + "year": "2012" + }, + { + "id": 13901, + "model_id": 13901, + "year": "2005" + }, + { + "id": 13902, + "model_id": 13901, + "year": "2006" + }, + { + "id": 13903, + "model_id": 13903, + "year": "1984" + }, + { + "id": 13905, + "model_id": 13903, + "year": "1985" + }, + { + "id": 13908, + "model_id": 13903, + "year": "1986" + }, + { + "id": 13910, + "model_id": 13903, + "year": "1987" + }, + { + "id": 13912, + "model_id": 13903, + "year": "1988" + }, + { + "id": 13914, + "model_id": 13903, + "year": "1989" + }, + { + "id": 13916, + "model_id": 13916, + "year": "1994" + }, + { + "id": 13917, + "model_id": 13916, + "year": "1995" + }, + { + "id": 13918, + "model_id": 13918, + "year": "2000" + }, + { + "id": 13919, + "model_id": 13919, + "year": "1984" + }, + { + "id": 13928, + "model_id": 13919, + "year": "1985" + }, + { + "id": 13933, + "model_id": 13919, + "year": "1986" + }, + { + "id": 13935, + "model_id": 13935, + "year": "1984" + }, + { + "id": 13938, + "model_id": 13935, + "year": "1985" + }, + { + "id": 13940, + "model_id": 13935, + "year": "1986" + }, + { + "id": 13943, + "model_id": 13935, + "year": "1987" + }, + { + "id": 13945, + "model_id": 13935, + "year": "1988" + }, + { + "id": 13947, + "model_id": 13935, + "year": "1989" + }, + { + "id": 13949, + "model_id": 13935, + "year": "1990" + }, + { + "id": 13951, + "model_id": 13935, + "year": "1991" + }, + { + "id": 13953, + "model_id": 13935, + "year": "1992" + }, + { + "id": 13955, + "model_id": 13935, + "year": "1993" + }, + { + "id": 13956, + "model_id": 13935, + "year": "1994" + }, + { + "id": 13957, + "model_id": 13957, + "year": "1984" + }, + { + "id": 13959, + "model_id": 13957, + "year": "1985" + }, + { + "id": 13960, + "model_id": 13957, + "year": "1986" + }, + { + "id": 13961, + "model_id": 13957, + "year": "1987" + }, + { + "id": 13962, + "model_id": 13957, + "year": "1988" + }, + { + "id": 13963, + "model_id": 13957, + "year": "1990" + }, + { + "id": 13964, + "model_id": 13957, + "year": "1991" + }, + { + "id": 13965, + "model_id": 13965, + "year": "1989" + }, + { + "id": 13966, + "model_id": 13966, + "year": "1984" + }, + { + "id": 13971, + "model_id": 13966, + "year": "1985" + }, + { + "id": 13973, + "model_id": 13966, + "year": "1986" + }, + { + "id": 13974, + "model_id": 13974, + "year": "1984" + }, + { + "id": 13986, + "model_id": 13974, + "year": "1985" + }, + { + "id": 13996, + "model_id": 13974, + "year": "1986" + }, + { + "id": 14002, + "model_id": 13974, + "year": "1987" + }, + { + "id": 14007, + "model_id": 13974, + "year": "1988" + }, + { + "id": 14011, + "model_id": 13974, + "year": "1989" + }, + { + "id": 14015, + "model_id": 13974, + "year": "1990" + }, + { + "id": 14019, + "model_id": 13974, + "year": "1991" + }, + { + "id": 14023, + "model_id": 13974, + "year": "1992" + }, + { + "id": 14027, + "model_id": 13974, + "year": "1993" + }, + { + "id": 14031, + "model_id": 13974, + "year": "1994" + }, + { + "id": 14035, + "model_id": 13974, + "year": "1995" + }, + { + "id": 14040, + "model_id": 13974, + "year": "1996" + }, + { + "id": 14045, + "model_id": 13974, + "year": "1997" + }, + { + "id": 14050, + "model_id": 13974, + "year": "1998" + }, + { + "id": 14055, + "model_id": 13974, + "year": "1999" + }, + { + "id": 14060, + "model_id": 13974, + "year": "2000" + }, + { + "id": 14066, + "model_id": 13974, + "year": "2001" + }, + { + "id": 14071, + "model_id": 13974, + "year": "2002" + }, + { + "id": 14075, + "model_id": 13974, + "year": "2003" + }, + { + "id": 14082, + "model_id": 13974, + "year": "2004" + }, + { + "id": 14091, + "model_id": 13974, + "year": "2005" + }, + { + "id": 14095, + "model_id": 13974, + "year": "2006" + }, + { + "id": 14099, + "model_id": 13974, + "year": "2007" + }, + { + "id": 14104, + "model_id": 13974, + "year": "2008" + }, + { + "id": 14109, + "model_id": 13974, + "year": "2009" + }, + { + "id": 14114, + "model_id": 13974, + "year": "2010" + }, + { + "id": 14119, + "model_id": 13974, + "year": "2011" + }, + { + "id": 14124, + "model_id": 13974, + "year": "2012" + }, + { + "id": 14129, + "model_id": 13974, + "year": "2013" + }, + { + "id": 14134, + "model_id": 13974, + "year": "2014" + }, + { + "id": 14139, + "model_id": 13974, + "year": "2015" + }, + { + "id": 14145, + "model_id": 13974, + "year": "2016" + }, + { + "id": 14151, + "model_id": 13974, + "year": "2017" + }, + { + "id": 14157, + "model_id": 14157, + "year": "2011" + }, + { + "id": 14158, + "model_id": 14157, + "year": "2012" + }, + { + "id": 14159, + "model_id": 14157, + "year": "2013" + }, + { + "id": 14160, + "model_id": 14157, + "year": "2014" + }, + { + "id": 14161, + "model_id": 14157, + "year": "2015" + }, + { + "id": 14163, + "model_id": 14157, + "year": "2016" + }, + { + "id": 14165, + "model_id": 14157, + "year": "2017" + }, + { + "id": 14169, + "model_id": 14169, + "year": "2017" + }, + { + "id": 14172, + "model_id": 14172, + "year": "2000" + }, + { + "id": 14173, + "model_id": 14173, + "year": "1989" + }, + { + "id": 14176, + "model_id": 14173, + "year": "1990" + }, + { + "id": 14182, + "model_id": 14173, + "year": "1991" + }, + { + "id": 14188, + "model_id": 14173, + "year": "1992" + }, + { + "id": 14194, + "model_id": 14173, + "year": "1993" + }, + { + "id": 14198, + "model_id": 14173, + "year": "1994" + }, + { + "id": 14202, + "model_id": 14173, + "year": "1995" + }, + { + "id": 14206, + "model_id": 14173, + "year": "1996" + }, + { + "id": 14210, + "model_id": 14173, + "year": "1997" + }, + { + "id": 14214, + "model_id": 14214, + "year": "1999" + }, + { + "id": 14217, + "model_id": 14214, + "year": "2000" + }, + { + "id": 14221, + "model_id": 14214, + "year": "2001" + }, + { + "id": 14222, + "model_id": 14214, + "year": "2002" + }, + { + "id": 14223, + "model_id": 14214, + "year": "2003" + }, + { + "id": 14224, + "model_id": 14214, + "year": "2010" + }, + { + "id": 14230, + "model_id": 14214, + "year": "2011" + }, + { + "id": 14236, + "model_id": 14236, + "year": "1984" + }, + { + "id": 14264, + "model_id": 14236, + "year": "1985" + }, + { + "id": 14280, + "model_id": 14236, + "year": "1986" + }, + { + "id": 14290, + "model_id": 14236, + "year": "1987" + }, + { + "id": 14300, + "model_id": 14236, + "year": "1988" + }, + { + "id": 14308, + "model_id": 14236, + "year": "1989" + }, + { + "id": 14317, + "model_id": 14236, + "year": "1990" + }, + { + "id": 14326, + "model_id": 14236, + "year": "1991" + }, + { + "id": 14337, + "model_id": 14236, + "year": "1992" + }, + { + "id": 14348, + "model_id": 14236, + "year": "1993" + }, + { + "id": 14359, + "model_id": 14236, + "year": "1994" + }, + { + "id": 14370, + "model_id": 14236, + "year": "1995" + }, + { + "id": 14381, + "model_id": 14236, + "year": "1996" + }, + { + "id": 14392, + "model_id": 14236, + "year": "1997" + }, + { + "id": 14402, + "model_id": 14236, + "year": "1998" + }, + { + "id": 14412, + "model_id": 14236, + "year": "1999" + }, + { + "id": 14420, + "model_id": 14236, + "year": "2000" + }, + { + "id": 14428, + "model_id": 14236, + "year": "2001" + }, + { + "id": 14441, + "model_id": 14236, + "year": "2002" + }, + { + "id": 14451, + "model_id": 14236, + "year": "2003" + }, + { + "id": 14461, + "model_id": 14236, + "year": "2004" + }, + { + "id": 14472, + "model_id": 14236, + "year": "2005" + }, + { + "id": 14482, + "model_id": 14236, + "year": "2006" + }, + { + "id": 14492, + "model_id": 14236, + "year": "2007" + }, + { + "id": 14502, + "model_id": 14236, + "year": "2008" + }, + { + "id": 14512, + "model_id": 14236, + "year": "2009" + }, + { + "id": 14518, + "model_id": 14518, + "year": "1984" + }, + { + "id": 14521, + "model_id": 14518, + "year": "1985" + }, + { + "id": 14526, + "model_id": 14518, + "year": "1986" + }, + { + "id": 14528, + "model_id": 14528, + "year": "1999" + }, + { + "id": 14529, + "model_id": 14529, + "year": "2016" + }, + { + "id": 14530, + "model_id": 14529, + "year": "2017" + }, + { + "id": 14531, + "model_id": 14531, + "year": "2014" + }, + { + "id": 14532, + "model_id": 14531, + "year": "2015" + }, + { + "id": 14533, + "model_id": 14531, + "year": "2016" + }, + { + "id": 14534, + "model_id": 14534, + "year": "1986" + }, + { + "id": 14537, + "model_id": 14534, + "year": "1987" + }, + { + "id": 14540, + "model_id": 14534, + "year": "1988" + }, + { + "id": 14544, + "model_id": 14534, + "year": "1989" + }, + { + "id": 14548, + "model_id": 14534, + "year": "1990" + }, + { + "id": 14551, + "model_id": 14534, + "year": "1991" + }, + { + "id": 14553, + "model_id": 14534, + "year": "1992" + }, + { + "id": 14555, + "model_id": 14534, + "year": "1993" + }, + { + "id": 14558, + "model_id": 14534, + "year": "1994" + }, + { + "id": 14561, + "model_id": 14534, + "year": "1995" + }, + { + "id": 14564, + "model_id": 14534, + "year": "1996" + }, + { + "id": 14567, + "model_id": 14534, + "year": "1997" + }, + { + "id": 14569, + "model_id": 14534, + "year": "1998" + }, + { + "id": 14573, + "model_id": 14534, + "year": "1999" + }, + { + "id": 14576, + "model_id": 14534, + "year": "2000" + }, + { + "id": 14579, + "model_id": 14534, + "year": "2001" + }, + { + "id": 14582, + "model_id": 14534, + "year": "2002" + }, + { + "id": 14585, + "model_id": 14534, + "year": "2003" + }, + { + "id": 14588, + "model_id": 14534, + "year": "2004" + }, + { + "id": 14591, + "model_id": 14534, + "year": "2005" + }, + { + "id": 14594, + "model_id": 14534, + "year": "2006" + }, + { + "id": 14596, + "model_id": 14534, + "year": "2007" + }, + { + "id": 14597, + "model_id": 14534, + "year": "2008" + }, + { + "id": 14599, + "model_id": 14534, + "year": "2009" + }, + { + "id": 14601, + "model_id": 14534, + "year": "2010" + }, + { + "id": 14605, + "model_id": 14534, + "year": "2011" + }, + { + "id": 14609, + "model_id": 14534, + "year": "2012" + }, + { + "id": 14613, + "model_id": 14534, + "year": "2013" + }, + { + "id": 14619, + "model_id": 14534, + "year": "2014" + }, + { + "id": 14625, + "model_id": 14534, + "year": "2015" + }, + { + "id": 14631, + "model_id": 14534, + "year": "2016" + }, + { + "id": 14637, + "model_id": 14637, + "year": "1990" + }, + { + "id": 14638, + "model_id": 14637, + "year": "1991" + }, + { + "id": 14639, + "model_id": 14637, + "year": "1992" + }, + { + "id": 14640, + "model_id": 14637, + "year": "1993" + }, + { + "id": 14642, + "model_id": 14637, + "year": "1994" + }, + { + "id": 14644, + "model_id": 14637, + "year": "1995" + }, + { + "id": 14646, + "model_id": 14637, + "year": "1996" + }, + { + "id": 14647, + "model_id": 14637, + "year": "1997" + }, + { + "id": 14648, + "model_id": 14637, + "year": "1998" + }, + { + "id": 14649, + "model_id": 14637, + "year": "1999" + }, + { + "id": 14650, + "model_id": 14650, + "year": "1986" + }, + { + "id": 14653, + "model_id": 14650, + "year": "1987" + }, + { + "id": 14655, + "model_id": 14650, + "year": "1988" + }, + { + "id": 14657, + "model_id": 14650, + "year": "1989" + }, + { + "id": 14659, + "model_id": 14650, + "year": "1990" + }, + { + "id": 14661, + "model_id": 14650, + "year": "1991" + }, + { + "id": 14663, + "model_id": 14650, + "year": "1992" + }, + { + "id": 14665, + "model_id": 14650, + "year": "1993" + }, + { + "id": 14667, + "model_id": 14650, + "year": "1994" + }, + { + "id": 14669, + "model_id": 14650, + "year": "1995" + }, + { + "id": 14671, + "model_id": 14650, + "year": "1996" + }, + { + "id": 14673, + "model_id": 14650, + "year": "1997" + }, + { + "id": 14675, + "model_id": 14650, + "year": "1998" + }, + { + "id": 14677, + "model_id": 14650, + "year": "1999" + }, + { + "id": 14679, + "model_id": 14650, + "year": "2000" + }, + { + "id": 14682, + "model_id": 14650, + "year": "2001" + }, + { + "id": 14685, + "model_id": 14650, + "year": "2002" + }, + { + "id": 14688, + "model_id": 14650, + "year": "2003" + }, + { + "id": 14691, + "model_id": 14650, + "year": "2004" + }, + { + "id": 14694, + "model_id": 14650, + "year": "2005" + }, + { + "id": 14697, + "model_id": 14697, + "year": "1987" + }, + { + "id": 14698, + "model_id": 14698, + "year": "1988" + }, + { + "id": 14701, + "model_id": 14698, + "year": "1989" + }, + { + "id": 14703, + "model_id": 14698, + "year": "1990" + }, + { + "id": 14704, + "model_id": 14704, + "year": "2008" + }, + { + "id": 14706, + "model_id": 14704, + "year": "2009" + }, + { + "id": 14708, + "model_id": 14708, + "year": "1984" + }, + { + "id": 14715, + "model_id": 14708, + "year": "1985" + }, + { + "id": 14722, + "model_id": 14708, + "year": "1986" + }, + { + "id": 14726, + "model_id": 14708, + "year": "1987" + }, + { + "id": 14730, + "model_id": 14708, + "year": "1988" + }, + { + "id": 14734, + "model_id": 14708, + "year": "1989" + }, + { + "id": 14738, + "model_id": 14708, + "year": "1990" + }, + { + "id": 14742, + "model_id": 14708, + "year": "1991" + }, + { + "id": 14746, + "model_id": 14708, + "year": "1992" + }, + { + "id": 14750, + "model_id": 14708, + "year": "1993" + }, + { + "id": 14754, + "model_id": 14708, + "year": "1994" + }, + { + "id": 14758, + "model_id": 14758, + "year": "1992" + }, + { + "id": 14759, + "model_id": 14759, + "year": "2001" + }, + { + "id": 14760, + "model_id": 14760, + "year": "1984" + }, + { + "id": 14770, + "model_id": 14760, + "year": "1985" + }, + { + "id": 14778, + "model_id": 14760, + "year": "1986" + }, + { + "id": 14783, + "model_id": 14760, + "year": "1987" + }, + { + "id": 14787, + "model_id": 14760, + "year": "1988" + }, + { + "id": 14791, + "model_id": 14760, + "year": "1989" + }, + { + "id": 14794, + "model_id": 14760, + "year": "1990" + }, + { + "id": 14797, + "model_id": 14760, + "year": "1991" + }, + { + "id": 14801, + "model_id": 14760, + "year": "1992" + }, + { + "id": 14805, + "model_id": 14760, + "year": "1993" + }, + { + "id": 14809, + "model_id": 14760, + "year": "1994" + }, + { + "id": 14813, + "model_id": 14760, + "year": "1995" + }, + { + "id": 14817, + "model_id": 14760, + "year": "1996" + }, + { + "id": 14819, + "model_id": 14760, + "year": "1997" + }, + { + "id": 14821, + "model_id": 14760, + "year": "2002" + }, + { + "id": 14822, + "model_id": 14760, + "year": "2003" + }, + { + "id": 14824, + "model_id": 14760, + "year": "2004" + }, + { + "id": 14826, + "model_id": 14760, + "year": "2005" + }, + { + "id": 14828, + "model_id": 14828, + "year": "2010" + }, + { + "id": 14829, + "model_id": 14828, + "year": "2011" + }, + { + "id": 14830, + "model_id": 14830, + "year": "2012" + }, + { + "id": 14831, + "model_id": 14830, + "year": "2013" + }, + { + "id": 14832, + "model_id": 14830, + "year": "2014" + }, + { + "id": 14834, + "model_id": 14830, + "year": "2015" + }, + { + "id": 14836, + "model_id": 14830, + "year": "2016" + }, + { + "id": 14839, + "model_id": 14839, + "year": "2012" + }, + { + "id": 14840, + "model_id": 14839, + "year": "2013" + }, + { + "id": 14841, + "model_id": 14839, + "year": "2014" + }, + { + "id": 14843, + "model_id": 14839, + "year": "2015" + }, + { + "id": 14845, + "model_id": 14839, + "year": "2016" + }, + { + "id": 14848, + "model_id": 14848, + "year": "2014" + }, + { + "id": 14849, + "model_id": 14848, + "year": "2015" + }, + { + "id": 14850, + "model_id": 14848, + "year": "2016" + }, + { + "id": 14852, + "model_id": 14852, + "year": "2015" + }, + { + "id": 14854, + "model_id": 14852, + "year": "2016" + }, + { + "id": 14856, + "model_id": 14856, + "year": "2000" + }, + { + "id": 14858, + "model_id": 14856, + "year": "2002" + }, + { + "id": 14859, + "model_id": 14856, + "year": "2003" + }, + { + "id": 14860, + "model_id": 14860, + "year": "1995" + }, + { + "id": 14862, + "model_id": 14860, + "year": "1996" + }, + { + "id": 14864, + "model_id": 14860, + "year": "1997" + }, + { + "id": 14866, + "model_id": 14860, + "year": "1998" + }, + { + "id": 14868, + "model_id": 14860, + "year": "1999" + }, + { + "id": 14870, + "model_id": 14860, + "year": "2001" + }, + { + "id": 14871, + "model_id": 14871, + "year": "1995" + }, + { + "id": 14873, + "model_id": 14871, + "year": "1996" + }, + { + "id": 14875, + "model_id": 14871, + "year": "1997" + }, + { + "id": 14877, + "model_id": 14871, + "year": "1998" + }, + { + "id": 14879, + "model_id": 14871, + "year": "1999" + }, + { + "id": 14881, + "model_id": 14871, + "year": "2000" + }, + { + "id": 14883, + "model_id": 14871, + "year": "2001" + }, + { + "id": 14884, + "model_id": 14871, + "year": "2002" + }, + { + "id": 14885, + "model_id": 14871, + "year": "2003" + }, + { + "id": 14886, + "model_id": 14886, + "year": "1989" + }, + { + "id": 14887, + "model_id": 14887, + "year": "2017" + }, + { + "id": 14888, + "model_id": 14888, + "year": "2017" + }, + { + "id": 14890, + "model_id": 14890, + "year": "2017" + }, + { + "id": 14892, + "model_id": 14892, + "year": "2017" + }, + { + "id": 14894, + "model_id": 14894, + "year": "1989" + }, + { + "id": 14895, + "model_id": 14894, + "year": "1990" + }, + { + "id": 14897, + "model_id": 14894, + "year": "1991" + }, + { + "id": 14899, + "model_id": 14894, + "year": "1992" + }, + { + "id": 14901, + "model_id": 14894, + "year": "1993" + }, + { + "id": 14903, + "model_id": 14894, + "year": "1994" + }, + { + "id": 14905, + "model_id": 14894, + "year": "1995" + }, + { + "id": 14908, + "model_id": 14894, + "year": "1996" + }, + { + "id": 14911, + "model_id": 14894, + "year": "1997" + }, + { + "id": 14914, + "model_id": 14914, + "year": "1989" + }, + { + "id": 14916, + "model_id": 14914, + "year": "1990" + }, + { + "id": 14918, + "model_id": 14914, + "year": "1991" + }, + { + "id": 14920, + "model_id": 14914, + "year": "1992" + }, + { + "id": 14922, + "model_id": 14914, + "year": "1993" + }, + { + "id": 14924, + "model_id": 14924, + "year": "1990" + }, + { + "id": 14926, + "model_id": 14924, + "year": "1991" + }, + { + "id": 14928, + "model_id": 14924, + "year": "1992" + }, + { + "id": 14930, + "model_id": 14924, + "year": "1993" + }, + { + "id": 14932, + "model_id": 14932, + "year": "1990" + }, + { + "id": 14933, + "model_id": 14932, + "year": "1991" + }, + { + "id": 14934, + "model_id": 14932, + "year": "1992" + }, + { + "id": 14935, + "model_id": 14932, + "year": "1993" + }, + { + "id": 14936, + "model_id": 14932, + "year": "1994" + }, + { + "id": 14937, + "model_id": 14937, + "year": "1989" + }, + { + "id": 14939, + "model_id": 14937, + "year": "1990" + }, + { + "id": 14943, + "model_id": 14937, + "year": "1991" + }, + { + "id": 14947, + "model_id": 14937, + "year": "1992" + }, + { + "id": 14951, + "model_id": 14937, + "year": "1993" + }, + { + "id": 14955, + "model_id": 14937, + "year": "1994" + }, + { + "id": 14959, + "model_id": 14937, + "year": "1995" + }, + { + "id": 14963, + "model_id": 14937, + "year": "1996" + }, + { + "id": 14967, + "model_id": 14937, + "year": "1997" + }, + { + "id": 14971, + "model_id": 14971, + "year": "1989" + }, + { + "id": 14973, + "model_id": 14973, + "year": "1990" + }, + { + "id": 14977, + "model_id": 14973, + "year": "1991" + }, + { + "id": 14981, + "model_id": 14973, + "year": "1992" + }, + { + "id": 14985, + "model_id": 14973, + "year": "1993" + }, + { + "id": 14989, + "model_id": 14989, + "year": "1990" + }, + { + "id": 14991, + "model_id": 14989, + "year": "1991" + }, + { + "id": 14993, + "model_id": 14993, + "year": "1989" + }, + { + "id": 14994, + "model_id": 14993, + "year": "1990" + }, + { + "id": 14996, + "model_id": 14993, + "year": "1991" + }, + { + "id": 14999, + "model_id": 14993, + "year": "1992" + }, + { + "id": 15003, + "model_id": 14993, + "year": "1993" + }, + { + "id": 15007, + "model_id": 14993, + "year": "1994" + }, + { + "id": 15015, + "model_id": 14993, + "year": "1996" + }, + { + "id": 15017, + "model_id": 14993, + "year": "1997" + }, + { + "id": 15019, + "model_id": 15019, + "year": "1996" + }, + { + "id": 15021, + "model_id": 15019, + "year": "1997" + }, + { + "id": 15023, + "model_id": 15023, + "year": "1989" + }, + { + "id": 15025, + "model_id": 15025, + "year": "1992" + }, + { + "id": 15027, + "model_id": 15025, + "year": "1993" + }, + { + "id": 15029, + "model_id": 15025, + "year": "1994" + }, + { + "id": 15033, + "model_id": 15025, + "year": "1996" + }, + { + "id": 15035, + "model_id": 15025, + "year": "1997" + }, + { + "id": 15037, + "model_id": 15037, + "year": "1996" + }, + { + "id": 15039, + "model_id": 15037, + "year": "1997" + }, + { + "id": 15041, + "model_id": 15041, + "year": "2007" + }, + { + "id": 15043, + "model_id": 15041, + "year": "2008" + }, + { + "id": 15045, + "model_id": 15041, + "year": "2009" + }, + { + "id": 15047, + "model_id": 15041, + "year": "2010" + }, + { + "id": 15049, + "model_id": 15041, + "year": "2011" + }, + { + "id": 15051, + "model_id": 15041, + "year": "2012" + }, + { + "id": 15053, + "model_id": 15041, + "year": "2013" + }, + { + "id": 15055, + "model_id": 15041, + "year": "2014" + }, + { + "id": 15057, + "model_id": 15041, + "year": "2015" + }, + { + "id": 15059, + "model_id": 15041, + "year": "2016" + }, + { + "id": 15061, + "model_id": 15041, + "year": "2017" + }, + { + "id": 15065, + "model_id": 15065, + "year": "2017" + }, + { + "id": 15067, + "model_id": 15067, + "year": "1984" + }, + { + "id": 15086, + "model_id": 15067, + "year": "1985" + }, + { + "id": 15104, + "model_id": 15067, + "year": "1986" + }, + { + "id": 15121, + "model_id": 15067, + "year": "1988" + }, + { + "id": 15134, + "model_id": 15134, + "year": "1984" + }, + { + "id": 15139, + "model_id": 15134, + "year": "1985" + }, + { + "id": 15144, + "model_id": 15134, + "year": "1986" + }, + { + "id": 15148, + "model_id": 15148, + "year": "1984" + }, + { + "id": 15158, + "model_id": 15148, + "year": "1985" + }, + { + "id": 15166, + "model_id": 15148, + "year": "1986" + }, + { + "id": 15173, + "model_id": 15148, + "year": "1988" + }, + { + "id": 15185, + "model_id": 15185, + "year": "1989" + }, + { + "id": 15197, + "model_id": 15185, + "year": "1990" + }, + { + "id": 15208, + "model_id": 15185, + "year": "1991" + }, + { + "id": 15221, + "model_id": 15185, + "year": "1992" + }, + { + "id": 15231, + "model_id": 15231, + "year": "1984" + }, + { + "id": 15240, + "model_id": 15231, + "year": "1985" + }, + { + "id": 15247, + "model_id": 15231, + "year": "1986" + }, + { + "id": 15251, + "model_id": 15231, + "year": "1987" + }, + { + "id": 15255, + "model_id": 15255, + "year": "2004" + }, + { + "id": 15263, + "model_id": 15255, + "year": "2005" + }, + { + "id": 15271, + "model_id": 15255, + "year": "2006" + }, + { + "id": 15279, + "model_id": 15255, + "year": "2007" + }, + { + "id": 15285, + "model_id": 15255, + "year": "2008" + }, + { + "id": 15291, + "model_id": 15255, + "year": "2009" + }, + { + "id": 15299, + "model_id": 15255, + "year": "2010" + }, + { + "id": 15307, + "model_id": 15255, + "year": "2011" + }, + { + "id": 15315, + "model_id": 15255, + "year": "2012" + }, + { + "id": 15323, + "model_id": 15255, + "year": "2015" + }, + { + "id": 15328, + "model_id": 15255, + "year": "2016" + }, + { + "id": 15335, + "model_id": 15335, + "year": "2015" + }, + { + "id": 15336, + "model_id": 15335, + "year": "2016" + }, + { + "id": 15337, + "model_id": 15337, + "year": "2006" + }, + { + "id": 15339, + "model_id": 15337, + "year": "2007" + }, + { + "id": 15341, + "model_id": 15337, + "year": "2008" + }, + { + "id": 15343, + "model_id": 15337, + "year": "2009" + }, + { + "id": 15345, + "model_id": 15337, + "year": "2010" + }, + { + "id": 15347, + "model_id": 15337, + "year": "2011" + }, + { + "id": 15349, + "model_id": 15337, + "year": "2012" + }, + { + "id": 15351, + "model_id": 15351, + "year": "2004" + }, + { + "id": 15357, + "model_id": 15351, + "year": "2005" + }, + { + "id": 15363, + "model_id": 15351, + "year": "2006" + }, + { + "id": 15369, + "model_id": 15351, + "year": "2007" + }, + { + "id": 15373, + "model_id": 15351, + "year": "2008" + }, + { + "id": 15377, + "model_id": 15351, + "year": "2009" + }, + { + "id": 15383, + "model_id": 15351, + "year": "2010" + }, + { + "id": 15389, + "model_id": 15351, + "year": "2011" + }, + { + "id": 15395, + "model_id": 15351, + "year": "2012" + }, + { + "id": 15401, + "model_id": 15401, + "year": "2002" + }, + { + "id": 15403, + "model_id": 15401, + "year": "2003" + }, + { + "id": 15405, + "model_id": 15401, + "year": "2004" + }, + { + "id": 15407, + "model_id": 15401, + "year": "2005" + }, + { + "id": 15411, + "model_id": 15401, + "year": "2006" + }, + { + "id": 15415, + "model_id": 15401, + "year": "2007" + }, + { + "id": 15419, + "model_id": 15401, + "year": "2008" + }, + { + "id": 15423, + "model_id": 15401, + "year": "2009" + }, + { + "id": 15427, + "model_id": 15427, + "year": "2002" + }, + { + "id": 15429, + "model_id": 15427, + "year": "2003" + }, + { + "id": 15433, + "model_id": 15427, + "year": "2004" + }, + { + "id": 15437, + "model_id": 15427, + "year": "2005" + }, + { + "id": 15441, + "model_id": 15427, + "year": "2006" + }, + { + "id": 15445, + "model_id": 15427, + "year": "2007" + }, + { + "id": 15446, + "model_id": 15446, + "year": "2005" + }, + { + "id": 15450, + "model_id": 15446, + "year": "2006" + }, + { + "id": 15452, + "model_id": 15452, + "year": "1999" + }, + { + "id": 15454, + "model_id": 15454, + "year": "1984" + }, + { + "id": 15465, + "model_id": 15454, + "year": "1985" + }, + { + "id": 15477, + "model_id": 15454, + "year": "1986" + }, + { + "id": 15488, + "model_id": 15454, + "year": "1987" + }, + { + "id": 15494, + "model_id": 15454, + "year": "1988" + }, + { + "id": 15500, + "model_id": 15454, + "year": "1989" + }, + { + "id": 15506, + "model_id": 15454, + "year": "1990" + }, + { + "id": 15510, + "model_id": 15454, + "year": "1991" + }, + { + "id": 15514, + "model_id": 15454, + "year": "1992" + }, + { + "id": 15518, + "model_id": 15518, + "year": "1985" + }, + { + "id": 15522, + "model_id": 15518, + "year": "1986" + }, + { + "id": 15536, + "model_id": 15518, + "year": "1987" + }, + { + "id": 15546, + "model_id": 15518, + "year": "1988" + }, + { + "id": 15555, + "model_id": 15518, + "year": "1989" + }, + { + "id": 15564, + "model_id": 15518, + "year": "1990" + }, + { + "id": 15569, + "model_id": 15518, + "year": "1991" + }, + { + "id": 15573, + "model_id": 15518, + "year": "1992" + }, + { + "id": 15577, + "model_id": 15577, + "year": "1984" + }, + { + "id": 15579, + "model_id": 15577, + "year": "1985" + }, + { + "id": 15581, + "model_id": 15577, + "year": "1986" + }, + { + "id": 15583, + "model_id": 15577, + "year": "1987" + }, + { + "id": 15584, + "model_id": 15577, + "year": "1988" + }, + { + "id": 15585, + "model_id": 15577, + "year": "1989" + }, + { + "id": 15586, + "model_id": 15577, + "year": "1990" + }, + { + "id": 15587, + "model_id": 15577, + "year": "1991" + }, + { + "id": 15588, + "model_id": 15577, + "year": "1992" + }, + { + "id": 15589, + "model_id": 15589, + "year": "1986" + }, + { + "id": 15591, + "model_id": 15589, + "year": "1987" + }, + { + "id": 15592, + "model_id": 15589, + "year": "1988" + }, + { + "id": 15593, + "model_id": 15589, + "year": "1989" + }, + { + "id": 15595, + "model_id": 15589, + "year": "1990" + }, + { + "id": 15596, + "model_id": 15589, + "year": "1991" + }, + { + "id": 15597, + "model_id": 15589, + "year": "1992" + }, + { + "id": 15599, + "model_id": 15599, + "year": "1992" + }, + { + "id": 15605, + "model_id": 15599, + "year": "1993" + }, + { + "id": 15609, + "model_id": 15599, + "year": "1994" + }, + { + "id": 15613, + "model_id": 15599, + "year": "1995" + }, + { + "id": 15617, + "model_id": 15599, + "year": "1996" + }, + { + "id": 15622, + "model_id": 15599, + "year": "1997" + }, + { + "id": 15627, + "model_id": 15599, + "year": "1998" + }, + { + "id": 15632, + "model_id": 15599, + "year": "1999" + }, + { + "id": 15636, + "model_id": 15599, + "year": "2000" + }, + { + "id": 15640, + "model_id": 15599, + "year": "2001" + }, + { + "id": 15644, + "model_id": 15599, + "year": "2002" + }, + { + "id": 15648, + "model_id": 15599, + "year": "2003" + }, + { + "id": 15652, + "model_id": 15599, + "year": "2004" + }, + { + "id": 15654, + "model_id": 15654, + "year": "1991" + }, + { + "id": 15658, + "model_id": 15658, + "year": "1989" + }, + { + "id": 15662, + "model_id": 15658, + "year": "1990" + }, + { + "id": 15665, + "model_id": 15658, + "year": "1991" + }, + { + "id": 15668, + "model_id": 15668, + "year": "1984" + }, + { + "id": 15673, + "model_id": 15668, + "year": "1985" + }, + { + "id": 15678, + "model_id": 15668, + "year": "1986" + }, + { + "id": 15682, + "model_id": 15682, + "year": "1984" + }, + { + "id": 15694, + "model_id": 15682, + "year": "1985" + }, + { + "id": 15706, + "model_id": 15682, + "year": "1986" + }, + { + "id": 15719, + "model_id": 15682, + "year": "1988" + }, + { + "id": 15731, + "model_id": 15731, + "year": "1984" + }, + { + "id": 15736, + "model_id": 15731, + "year": "1985" + }, + { + "id": 15741, + "model_id": 15731, + "year": "1986" + }, + { + "id": 15745, + "model_id": 15745, + "year": "1984" + }, + { + "id": 15750, + "model_id": 15745, + "year": "1985" + }, + { + "id": 15754, + "model_id": 15745, + "year": "1986" + }, + { + "id": 15758, + "model_id": 15745, + "year": "1988" + }, + { + "id": 15770, + "model_id": 15770, + "year": "1989" + }, + { + "id": 15782, + "model_id": 15770, + "year": "1990" + }, + { + "id": 15794, + "model_id": 15770, + "year": "1991" + }, + { + "id": 15806, + "model_id": 15770, + "year": "1992" + }, + { + "id": 15816, + "model_id": 15816, + "year": "1987" + }, + { + "id": 15829, + "model_id": 15829, + "year": "1987" + }, + { + "id": 15832, + "model_id": 15829, + "year": "1988" + }, + { + "id": 15834, + "model_id": 15834, + "year": "1989" + }, + { + "id": 15836, + "model_id": 15834, + "year": "1990" + }, + { + "id": 15838, + "model_id": 15834, + "year": "1991" + }, + { + "id": 15840, + "model_id": 15840, + "year": "1987" + }, + { + "id": 15850, + "model_id": 15850, + "year": "1993" + }, + { + "id": 15854, + "model_id": 15850, + "year": "1994" + }, + { + "id": 15858, + "model_id": 15850, + "year": "1995" + }, + { + "id": 15861, + "model_id": 15861, + "year": "1995" + }, + { + "id": 15862, + "model_id": 15862, + "year": "1993" + }, + { + "id": 15863, + "model_id": 15862, + "year": "1994" + }, + { + "id": 15864, + "model_id": 15864, + "year": "1984" + }, + { + "id": 15868, + "model_id": 15864, + "year": "1985" + }, + { + "id": 15872, + "model_id": 15864, + "year": "1986" + }, + { + "id": 15875, + "model_id": 15864, + "year": "1987" + }, + { + "id": 15878, + "model_id": 15864, + "year": "1988" + }, + { + "id": 15880, + "model_id": 15880, + "year": "1984" + }, + { + "id": 15891, + "model_id": 15880, + "year": "1985" + }, + { + "id": 15901, + "model_id": 15880, + "year": "1986" + }, + { + "id": 15907, + "model_id": 15880, + "year": "1987" + }, + { + "id": 15915, + "model_id": 15880, + "year": "1988" + }, + { + "id": 15921, + "model_id": 15880, + "year": "1989" + }, + { + "id": 15926, + "model_id": 15880, + "year": "1990" + }, + { + "id": 15930, + "model_id": 15930, + "year": "1984" + }, + { + "id": 15948, + "model_id": 15930, + "year": "1985" + }, + { + "id": 15962, + "model_id": 15930, + "year": "1986" + }, + { + "id": 15968, + "model_id": 15930, + "year": "1987" + }, + { + "id": 15976, + "model_id": 15930, + "year": "1988" + }, + { + "id": 15982, + "model_id": 15930, + "year": "1989" + }, + { + "id": 15989, + "model_id": 15930, + "year": "1990" + }, + { + "id": 15996, + "model_id": 15996, + "year": "1984" + }, + { + "id": 15998, + "model_id": 15998, + "year": "1985" + }, + { + "id": 16008, + "model_id": 15998, + "year": "1986" + }, + { + "id": 16014, + "model_id": 15998, + "year": "1987" + }, + { + "id": 16019, + "model_id": 15998, + "year": "1988" + }, + { + "id": 16023, + "model_id": 15998, + "year": "1989" + }, + { + "id": 16027, + "model_id": 15998, + "year": "1990" + }, + { + "id": 16031, + "model_id": 15998, + "year": "1991" + }, + { + "id": 16033, + "model_id": 15998, + "year": "1992" + }, + { + "id": 16037, + "model_id": 15998, + "year": "1993" + }, + { + "id": 16040, + "model_id": 15998, + "year": "1994" + }, + { + "id": 16043, + "model_id": 15998, + "year": "1995" + }, + { + "id": 16045, + "model_id": 15998, + "year": "1996" + }, + { + "id": 16047, + "model_id": 15998, + "year": "1997" + }, + { + "id": 16049, + "model_id": 15998, + "year": "1998" + }, + { + "id": 16051, + "model_id": 15998, + "year": "1999" + }, + { + "id": 16053, + "model_id": 15998, + "year": "2000" + }, + { + "id": 16055, + "model_id": 15998, + "year": "2001" + }, + { + "id": 16057, + "model_id": 15998, + "year": "2002" + }, + { + "id": 16059, + "model_id": 15998, + "year": "2003" + }, + { + "id": 16061, + "model_id": 15998, + "year": "2004" + }, + { + "id": 16063, + "model_id": 15998, + "year": "2005" + }, + { + "id": 16065, + "model_id": 16065, + "year": "1985" + }, + { + "id": 16075, + "model_id": 16065, + "year": "1986" + }, + { + "id": 16081, + "model_id": 16065, + "year": "1987" + }, + { + "id": 16083, + "model_id": 16065, + "year": "1988" + }, + { + "id": 16085, + "model_id": 16065, + "year": "1989" + }, + { + "id": 16087, + "model_id": 16065, + "year": "1990" + }, + { + "id": 16089, + "model_id": 16065, + "year": "1991" + }, + { + "id": 16091, + "model_id": 16065, + "year": "1992" + }, + { + "id": 16095, + "model_id": 16065, + "year": "1993" + }, + { + "id": 16098, + "model_id": 16065, + "year": "1994" + }, + { + "id": 16101, + "model_id": 16065, + "year": "1995" + }, + { + "id": 16103, + "model_id": 16065, + "year": "1996" + }, + { + "id": 16105, + "model_id": 16065, + "year": "1997" + }, + { + "id": 16107, + "model_id": 16065, + "year": "1998" + }, + { + "id": 16109, + "model_id": 16065, + "year": "1999" + }, + { + "id": 16111, + "model_id": 16111, + "year": "2000" + }, + { + "id": 16113, + "model_id": 16111, + "year": "2001" + }, + { + "id": 16115, + "model_id": 16111, + "year": "2002" + }, + { + "id": 16117, + "model_id": 16111, + "year": "2003" + }, + { + "id": 16119, + "model_id": 16111, + "year": "2004" + }, + { + "id": 16121, + "model_id": 16111, + "year": "2005" + }, + { + "id": 16123, + "model_id": 16123, + "year": "2003" + }, + { + "id": 16125, + "model_id": 16123, + "year": "2004" + }, + { + "id": 16127, + "model_id": 16123, + "year": "2005" + }, + { + "id": 16129, + "model_id": 16129, + "year": "2004" + }, + { + "id": 16130, + "model_id": 16130, + "year": "2003" + }, + { + "id": 16133, + "model_id": 16130, + "year": "2004" + }, + { + "id": 16136, + "model_id": 16130, + "year": "2005" + }, + { + "id": 16139, + "model_id": 16130, + "year": "2006" + }, + { + "id": 16141, + "model_id": 16130, + "year": "2007" + }, + { + "id": 16143, + "model_id": 16130, + "year": "2008" + }, + { + "id": 16145, + "model_id": 16145, + "year": "2009" + }, + { + "id": 16146, + "model_id": 16145, + "year": "2010" + }, + { + "id": 16147, + "model_id": 16145, + "year": "2011" + }, + { + "id": 16148, + "model_id": 16145, + "year": "2012" + }, + { + "id": 16149, + "model_id": 16145, + "year": "2013" + }, + { + "id": 16150, + "model_id": 16145, + "year": "2014" + }, + { + "id": 16151, + "model_id": 16151, + "year": "2006" + }, + { + "id": 16152, + "model_id": 16151, + "year": "2007" + }, + { + "id": 16154, + "model_id": 16151, + "year": "2008" + }, + { + "id": 16156, + "model_id": 16151, + "year": "2009" + }, + { + "id": 16157, + "model_id": 16151, + "year": "2010" + }, + { + "id": 16158, + "model_id": 16151, + "year": "2011" + }, + { + "id": 16159, + "model_id": 16151, + "year": "2012" + }, + { + "id": 16160, + "model_id": 16151, + "year": "2013" + }, + { + "id": 16162, + "model_id": 16151, + "year": "2014" + }, + { + "id": 16163, + "model_id": 16163, + "year": "2009" + }, + { + "id": 16167, + "model_id": 16163, + "year": "2010" + }, + { + "id": 16169, + "model_id": 16163, + "year": "2011" + }, + { + "id": 16171, + "model_id": 16163, + "year": "2012" + }, + { + "id": 16173, + "model_id": 16163, + "year": "2013" + }, + { + "id": 16175, + "model_id": 16163, + "year": "2014" + }, + { + "id": 16177, + "model_id": 16177, + "year": "2003" + }, + { + "id": 16178, + "model_id": 16177, + "year": "2004" + }, + { + "id": 16179, + "model_id": 16177, + "year": "2005" + }, + { + "id": 16180, + "model_id": 16177, + "year": "2006" + }, + { + "id": 16181, + "model_id": 16177, + "year": "2007" + }, + { + "id": 16183, + "model_id": 16177, + "year": "2008" + }, + { + "id": 16185, + "model_id": 16177, + "year": "2009" + }, + { + "id": 16189, + "model_id": 16177, + "year": "2010" + }, + { + "id": 16191, + "model_id": 16177, + "year": "2011" + }, + { + "id": 16194, + "model_id": 16177, + "year": "2012" + }, + { + "id": 16196, + "model_id": 16177, + "year": "2013" + }, + { + "id": 16198, + "model_id": 16177, + "year": "2014" + }, + { + "id": 16200, + "model_id": 16200, + "year": "2009" + }, + { + "id": 16203, + "model_id": 16200, + "year": "2010" + }, + { + "id": 16204, + "model_id": 16200, + "year": "2011" + }, + { + "id": 16205, + "model_id": 16200, + "year": "2012" + }, + { + "id": 16206, + "model_id": 16200, + "year": "2014" + }, + { + "id": 16207, + "model_id": 16207, + "year": "2001" + }, + { + "id": 16210, + "model_id": 16210, + "year": "1996" + }, + { + "id": 16213, + "model_id": 16210, + "year": "1997" + }, + { + "id": 16216, + "model_id": 16210, + "year": "1998" + }, + { + "id": 16219, + "model_id": 16210, + "year": "1999" + }, + { + "id": 16222, + "model_id": 16210, + "year": "2000" + }, + { + "id": 16225, + "model_id": 16210, + "year": "2001" + }, + { + "id": 16228, + "model_id": 16210, + "year": "2002" + }, + { + "id": 16231, + "model_id": 16210, + "year": "2003" + }, + { + "id": 16234, + "model_id": 16210, + "year": "2004" + }, + { + "id": 16237, + "model_id": 16210, + "year": "2005" + }, + { + "id": 16240, + "model_id": 16210, + "year": "2006" + }, + { + "id": 16243, + "model_id": 16210, + "year": "2007" + }, + { + "id": 16248, + "model_id": 16210, + "year": "2008" + }, + { + "id": 16253, + "model_id": 16253, + "year": "1996" + }, + { + "id": 16256, + "model_id": 16253, + "year": "1997" + }, + { + "id": 16259, + "model_id": 16253, + "year": "1998" + }, + { + "id": 16262, + "model_id": 16253, + "year": "1999" + }, + { + "id": 16265, + "model_id": 16265, + "year": "2000" + }, + { + "id": 16268, + "model_id": 16265, + "year": "2002" + }, + { + "id": 16271, + "model_id": 16265, + "year": "2003" + }, + { + "id": 16273, + "model_id": 16265, + "year": "2004" + }, + { + "id": 16275, + "model_id": 16265, + "year": "2005" + }, + { + "id": 16277, + "model_id": 16265, + "year": "2006" + }, + { + "id": 16279, + "model_id": 16265, + "year": "2007" + }, + { + "id": 16281, + "model_id": 16265, + "year": "2008" + }, + { + "id": 16283, + "model_id": 16283, + "year": "2011" + }, + { + "id": 16284, + "model_id": 16283, + "year": "2012" + }, + { + "id": 16285, + "model_id": 16285, + "year": "2011" + }, + { + "id": 16286, + "model_id": 16285, + "year": "2012" + }, + { + "id": 16288, + "model_id": 16285, + "year": "2013" + }, + { + "id": 16290, + "model_id": 16285, + "year": "2014" + }, + { + "id": 16292, + "model_id": 16285, + "year": "2015" + }, + { + "id": 16295, + "model_id": 16285, + "year": "2016" + }, + { + "id": 16296, + "model_id": 16296, + "year": "2011" + }, + { + "id": 16297, + "model_id": 16296, + "year": "2012" + }, + { + "id": 16298, + "model_id": 16296, + "year": "2013" + }, + { + "id": 16299, + "model_id": 16296, + "year": "2014" + }, + { + "id": 16300, + "model_id": 16296, + "year": "2015" + }, + { + "id": 16302, + "model_id": 16302, + "year": "2011" + }, + { + "id": 16303, + "model_id": 16302, + "year": "2012" + }, + { + "id": 16304, + "model_id": 16304, + "year": "2011" + }, + { + "id": 16305, + "model_id": 16304, + "year": "2012" + }, + { + "id": 16307, + "model_id": 16304, + "year": "2013" + }, + { + "id": 16309, + "model_id": 16304, + "year": "2014" + }, + { + "id": 16311, + "model_id": 16304, + "year": "2015" + }, + { + "id": 16314, + "model_id": 16304, + "year": "2016" + }, + { + "id": 16315, + "model_id": 16315, + "year": "2004" + }, + { + "id": 16316, + "model_id": 16316, + "year": "2004" + }, + { + "id": 16317, + "model_id": 16317, + "year": "2004" + }, + { + "id": 16318, + "model_id": 16318, + "year": "2004" + }, + { + "id": 16320, + "model_id": 16318, + "year": "2005" + }, + { + "id": 16322, + "model_id": 16318, + "year": "2006" + }, + { + "id": 16324, + "model_id": 16318, + "year": "2009" + }, + { + "id": 16326, + "model_id": 16318, + "year": "2010" + }, + { + "id": 16328, + "model_id": 16318, + "year": "2011" + }, + { + "id": 16330, + "model_id": 16318, + "year": "2012" + }, + { + "id": 16332, + "model_id": 16318, + "year": "2013" + }, + { + "id": 16334, + "model_id": 16318, + "year": "2016" + }, + { + "id": 16336, + "model_id": 16336, + "year": "1989" + }, + { + "id": 16360, + "model_id": 16336, + "year": "1990" + }, + { + "id": 16383, + "model_id": 16336, + "year": "1991" + }, + { + "id": 16409, + "model_id": 16336, + "year": "1992" + }, + { + "id": 16429, + "model_id": 16336, + "year": "1993" + }, + { + "id": 16450, + "model_id": 16336, + "year": "1994" + }, + { + "id": 16473, + "model_id": 16336, + "year": "1995" + }, + { + "id": 16495, + "model_id": 16336, + "year": "1996" + }, + { + "id": 16509, + "model_id": 16336, + "year": "1997" + }, + { + "id": 16522, + "model_id": 16336, + "year": "1998" + }, + { + "id": 16535, + "model_id": 16336, + "year": "1999" + }, + { + "id": 16549, + "model_id": 16336, + "year": "2000" + }, + { + "id": 16559, + "model_id": 16336, + "year": "2001" + }, + { + "id": 16570, + "model_id": 16336, + "year": "2002" + }, + { + "id": 16582, + "model_id": 16336, + "year": "2003" + }, + { + "id": 16594, + "model_id": 16336, + "year": "2004" + }, + { + "id": 16608, + "model_id": 16336, + "year": "2005" + }, + { + "id": 16622, + "model_id": 16336, + "year": "2006" + }, + { + "id": 16637, + "model_id": 16637, + "year": "1991" + }, + { + "id": 16638, + "model_id": 16637, + "year": "1993" + }, + { + "id": 16658, + "model_id": 16637, + "year": "1994" + }, + { + "id": 16679, + "model_id": 16637, + "year": "1995" + }, + { + "id": 16702, + "model_id": 16637, + "year": "1996" + }, + { + "id": 16707, + "model_id": 16637, + "year": "1997" + }, + { + "id": 16712, + "model_id": 16637, + "year": "1998" + }, + { + "id": 16717, + "model_id": 16637, + "year": "1999" + }, + { + "id": 16719, + "model_id": 16637, + "year": "2000" + }, + { + "id": 16721, + "model_id": 16721, + "year": "2005" + }, + { + "id": 16722, + "model_id": 16722, + "year": "2005" + }, + { + "id": 16724, + "model_id": 16724, + "year": "2007" + }, + { + "id": 16730, + "model_id": 16724, + "year": "2008" + }, + { + "id": 16736, + "model_id": 16724, + "year": "2009" + }, + { + "id": 16744, + "model_id": 16724, + "year": "2010" + }, + { + "id": 16748, + "model_id": 16724, + "year": "2011" + }, + { + "id": 16752, + "model_id": 16724, + "year": "2012" + }, + { + "id": 16756, + "model_id": 16724, + "year": "2013" + }, + { + "id": 16760, + "model_id": 16724, + "year": "2014" + }, + { + "id": 16763, + "model_id": 16724, + "year": "2015" + }, + { + "id": 16767, + "model_id": 16724, + "year": "2016" + }, + { + "id": 16772, + "model_id": 16772, + "year": "2015" + }, + { + "id": 16775, + "model_id": 16772, + "year": "2016" + }, + { + "id": 16776, + "model_id": 16776, + "year": "2009" + }, + { + "id": 16777, + "model_id": 16776, + "year": "2010" + }, + { + "id": 16778, + "model_id": 16776, + "year": "2011" + }, + { + "id": 16779, + "model_id": 16776, + "year": "2012" + }, + { + "id": 16780, + "model_id": 16776, + "year": "2013" + }, + { + "id": 16781, + "model_id": 16781, + "year": "2007" + }, + { + "id": 16783, + "model_id": 16783, + "year": "2007" + }, + { + "id": 16796, + "model_id": 16796, + "year": "2002" + }, + { + "id": 16797, + "model_id": 16796, + "year": "2003" + }, + { + "id": 16798, + "model_id": 16798, + "year": "2007" + }, + { + "id": 16804, + "model_id": 16798, + "year": "2008" + }, + { + "id": 16810, + "model_id": 16798, + "year": "2009" + }, + { + "id": 16819, + "model_id": 16798, + "year": "2010" + }, + { + "id": 16824, + "model_id": 16798, + "year": "2011" + }, + { + "id": 16829, + "model_id": 16798, + "year": "2012" + }, + { + "id": 16834, + "model_id": 16798, + "year": "2013" + }, + { + "id": 16839, + "model_id": 16798, + "year": "2014" + }, + { + "id": 16842, + "model_id": 16798, + "year": "2015" + }, + { + "id": 16846, + "model_id": 16798, + "year": "2016" + }, + { + "id": 16851, + "model_id": 16851, + "year": "2015" + }, + { + "id": 16854, + "model_id": 16851, + "year": "2016" + }, + { + "id": 16855, + "model_id": 16855, + "year": "1991" + }, + { + "id": 16862, + "model_id": 16855, + "year": "1992" + }, + { + "id": 16871, + "model_id": 16855, + "year": "1993" + }, + { + "id": 16880, + "model_id": 16855, + "year": "1994" + }, + { + "id": 16890, + "model_id": 16855, + "year": "1995" + }, + { + "id": 16899, + "model_id": 16855, + "year": "1996" + }, + { + "id": 16905, + "model_id": 16855, + "year": "1997" + }, + { + "id": 16911, + "model_id": 16855, + "year": "1998" + }, + { + "id": 16917, + "model_id": 16855, + "year": "1999" + }, + { + "id": 16923, + "model_id": 16855, + "year": "2000" + }, + { + "id": 16931, + "model_id": 16855, + "year": "2001" + }, + { + "id": 16935, + "model_id": 16855, + "year": "2002" + }, + { + "id": 16939, + "model_id": 16855, + "year": "2003" + }, + { + "id": 16945, + "model_id": 16855, + "year": "2004" + }, + { + "id": 16946, + "model_id": 16946, + "year": "2001" + }, + { + "id": 16948, + "model_id": 16946, + "year": "2002" + }, + { + "id": 16950, + "model_id": 16950, + "year": "1992" + }, + { + "id": 16952, + "model_id": 16950, + "year": "1993" + }, + { + "id": 16954, + "model_id": 16950, + "year": "1994" + }, + { + "id": 16956, + "model_id": 16950, + "year": "1995" + }, + { + "id": 16958, + "model_id": 16950, + "year": "1996" + }, + { + "id": 16960, + "model_id": 16950, + "year": "1997" + }, + { + "id": 16962, + "model_id": 16950, + "year": "1998" + }, + { + "id": 16963, + "model_id": 16950, + "year": "1999" + }, + { + "id": 16964, + "model_id": 16964, + "year": "1989" + }, + { + "id": 16968, + "model_id": 16964, + "year": "1990" + }, + { + "id": 16971, + "model_id": 16964, + "year": "1991" + }, + { + "id": 16973, + "model_id": 16973, + "year": "1984" + }, + { + "id": 16983, + "model_id": 16973, + "year": "1985" + }, + { + "id": 16992, + "model_id": 16973, + "year": "1986" + }, + { + "id": 16998, + "model_id": 16973, + "year": "1987" + }, + { + "id": 17004, + "model_id": 16973, + "year": "1988" + }, + { + "id": 17008, + "model_id": 17008, + "year": "1984" + }, + { + "id": 17018, + "model_id": 17008, + "year": "1985" + }, + { + "id": 17027, + "model_id": 17008, + "year": "1986" + }, + { + "id": 17033, + "model_id": 17008, + "year": "1987" + }, + { + "id": 17039, + "model_id": 17008, + "year": "1988" + }, + { + "id": 17045, + "model_id": 17045, + "year": "2010" + }, + { + "id": 17049, + "model_id": 17045, + "year": "2011" + }, + { + "id": 17055, + "model_id": 17045, + "year": "2012" + }, + { + "id": 17063, + "model_id": 17045, + "year": "2013" + }, + { + "id": 17071, + "model_id": 17045, + "year": "2014" + }, + { + "id": 17079, + "model_id": 17045, + "year": "2015" + }, + { + "id": 17084, + "model_id": 17045, + "year": "2016" + }, + { + "id": 17089, + "model_id": 17045, + "year": "2017" + }, + { + "id": 17094, + "model_id": 17094, + "year": "1987" + }, + { + "id": 17099, + "model_id": 17094, + "year": "1988" + }, + { + "id": 17102, + "model_id": 17102, + "year": "1987" + }, + { + "id": 17114, + "model_id": 17114, + "year": "1987" + }, + { + "id": 17118, + "model_id": 17114, + "year": "1988" + }, + { + "id": 17121, + "model_id": 17121, + "year": "1987" + }, + { + "id": 17125, + "model_id": 17125, + "year": "1995" + }, + { + "id": 17126, + "model_id": 17126, + "year": "1984" + }, + { + "id": 17142, + "model_id": 17126, + "year": "1985" + }, + { + "id": 17152, + "model_id": 17126, + "year": "1993" + }, + { + "id": 17156, + "model_id": 17126, + "year": "1994" + }, + { + "id": 17160, + "model_id": 17126, + "year": "1995" + }, + { + "id": 17163, + "model_id": 17163, + "year": "1995" + }, + { + "id": 17164, + "model_id": 17164, + "year": "1984" + }, + { + "id": 17166, + "model_id": 17164, + "year": "1985" + }, + { + "id": 17168, + "model_id": 17164, + "year": "1993" + }, + { + "id": 17170, + "model_id": 17164, + "year": "1995" + }, + { + "id": 17171, + "model_id": 17171, + "year": "1994" + }, + { + "id": 17173, + "model_id": 17173, + "year": "1995" + }, + { + "id": 17174, + "model_id": 17174, + "year": "1992" + }, + { + "id": 17176, + "model_id": 17174, + "year": "1993" + }, + { + "id": 17178, + "model_id": 17174, + "year": "1995" + }, + { + "id": 17182, + "model_id": 17174, + "year": "1996" + }, + { + "id": 17185, + "model_id": 17174, + "year": "1997" + }, + { + "id": 17188, + "model_id": 17174, + "year": "1998" + }, + { + "id": 17192, + "model_id": 17174, + "year": "1999" + }, + { + "id": 17196, + "model_id": 17174, + "year": "2000" + }, + { + "id": 17202, + "model_id": 17174, + "year": "2001" + }, + { + "id": 17207, + "model_id": 17174, + "year": "2002" + }, + { + "id": 17213, + "model_id": 17174, + "year": "2003" + }, + { + "id": 17222, + "model_id": 17174, + "year": "2004" + }, + { + "id": 17231, + "model_id": 17174, + "year": "2005" + }, + { + "id": 17240, + "model_id": 17174, + "year": "2006" + }, + { + "id": 17246, + "model_id": 17174, + "year": "2007" + }, + { + "id": 17250, + "model_id": 17174, + "year": "2008" + }, + { + "id": 17255, + "model_id": 17174, + "year": "2009" + }, + { + "id": 17261, + "model_id": 17174, + "year": "2010" + }, + { + "id": 17264, + "model_id": 17174, + "year": "2011" + }, + { + "id": 17267, + "model_id": 17174, + "year": "2012" + }, + { + "id": 17270, + "model_id": 17174, + "year": "2013" + }, + { + "id": 17273, + "model_id": 17273, + "year": "2008" + }, + { + "id": 17275, + "model_id": 17273, + "year": "2009" + }, + { + "id": 17277, + "model_id": 17273, + "year": "2010" + }, + { + "id": 17279, + "model_id": 17273, + "year": "2011" + }, + { + "id": 17281, + "model_id": 17273, + "year": "2012" + }, + { + "id": 17283, + "model_id": 17273, + "year": "2013" + }, + { + "id": 17285, + "model_id": 17285, + "year": "2009" + }, + { + "id": 17286, + "model_id": 17286, + "year": "2014" + }, + { + "id": 17288, + "model_id": 17288, + "year": "2015" + }, + { + "id": 17292, + "model_id": 17288, + "year": "2016" + }, + { + "id": 17295, + "model_id": 17295, + "year": "2015" + }, + { + "id": 17299, + "model_id": 17295, + "year": "2016" + }, + { + "id": 17302, + "model_id": 17302, + "year": "2002" + }, + { + "id": 17303, + "model_id": 17302, + "year": "2007" + }, + { + "id": 17304, + "model_id": 17302, + "year": "2008" + }, + { + "id": 17305, + "model_id": 17302, + "year": "2009" + }, + { + "id": 17306, + "model_id": 17302, + "year": "2010" + }, + { + "id": 17307, + "model_id": 17302, + "year": "2011" + }, + { + "id": 17308, + "model_id": 17302, + "year": "2012" + }, + { + "id": 17309, + "model_id": 17302, + "year": "2013" + }, + { + "id": 17310, + "model_id": 17310, + "year": "2011" + }, + { + "id": 17311, + "model_id": 17310, + "year": "2012" + }, + { + "id": 17312, + "model_id": 17310, + "year": "2013" + }, + { + "id": 17313, + "model_id": 17313, + "year": "2014" + }, + { + "id": 17314, + "model_id": 17314, + "year": "2002" + }, + { + "id": 17315, + "model_id": 17315, + "year": "2014" + }, + { + "id": 17316, + "model_id": 17316, + "year": "1994" + }, + { + "id": 17319, + "model_id": 17316, + "year": "2015" + }, + { + "id": 17323, + "model_id": 17316, + "year": "2016" + }, + { + "id": 17326, + "model_id": 17326, + "year": "2015" + }, + { + "id": 17330, + "model_id": 17326, + "year": "2016" + }, + { + "id": 17333, + "model_id": 17333, + "year": "2000" + }, + { + "id": 17335, + "model_id": 17333, + "year": "2001" + }, + { + "id": 17338, + "model_id": 17333, + "year": "2002" + }, + { + "id": 17342, + "model_id": 17333, + "year": "2003" + }, + { + "id": 17349, + "model_id": 17333, + "year": "2004" + }, + { + "id": 17356, + "model_id": 17333, + "year": "2005" + }, + { + "id": 17360, + "model_id": 17333, + "year": "2006" + }, + { + "id": 17363, + "model_id": 17333, + "year": "2007" + }, + { + "id": 17368, + "model_id": 17333, + "year": "2008" + }, + { + "id": 17374, + "model_id": 17333, + "year": "2009" + }, + { + "id": 17378, + "model_id": 17333, + "year": "2010" + }, + { + "id": 17381, + "model_id": 17333, + "year": "2011" + }, + { + "id": 17385, + "model_id": 17333, + "year": "2012" + }, + { + "id": 17389, + "model_id": 17333, + "year": "2013" + }, + { + "id": 17393, + "model_id": 17393, + "year": "2011" + }, + { + "id": 17395, + "model_id": 17393, + "year": "2012" + }, + { + "id": 17397, + "model_id": 17393, + "year": "2013" + }, + { + "id": 17399, + "model_id": 17399, + "year": "2014" + }, + { + "id": 17401, + "model_id": 17401, + "year": "2014" + }, + { + "id": 17403, + "model_id": 17403, + "year": "1991" + }, + { + "id": 17404, + "model_id": 17404, + "year": "1988" + }, + { + "id": 17405, + "model_id": 17405, + "year": "1984" + }, + { + "id": 17407, + "model_id": 17405, + "year": "1985" + }, + { + "id": 17409, + "model_id": 17409, + "year": "1984" + }, + { + "id": 17413, + "model_id": 17409, + "year": "1985" + }, + { + "id": 17422, + "model_id": 17409, + "year": "1986" + }, + { + "id": 17426, + "model_id": 17409, + "year": "1987" + }, + { + "id": 17430, + "model_id": 17409, + "year": "1988" + }, + { + "id": 17434, + "model_id": 17409, + "year": "1989" + }, + { + "id": 17437, + "model_id": 17409, + "year": "1990" + }, + { + "id": 17439, + "model_id": 17409, + "year": "1991" + }, + { + "id": 17441, + "model_id": 17409, + "year": "1992" + }, + { + "id": 17445, + "model_id": 17409, + "year": "1993" + }, + { + "id": 17447, + "model_id": 17409, + "year": "1994" + }, + { + "id": 17451, + "model_id": 17409, + "year": "1995" + }, + { + "id": 17456, + "model_id": 17409, + "year": "1996" + }, + { + "id": 17461, + "model_id": 17409, + "year": "1997" + }, + { + "id": 17466, + "model_id": 17409, + "year": "1998" + }, + { + "id": 17471, + "model_id": 17409, + "year": "1999" + }, + { + "id": 17476, + "model_id": 17409, + "year": "2000" + }, + { + "id": 17481, + "model_id": 17409, + "year": "2001" + }, + { + "id": 17486, + "model_id": 17409, + "year": "2002" + }, + { + "id": 17491, + "model_id": 17409, + "year": "2003" + }, + { + "id": 17495, + "model_id": 17409, + "year": "2004" + }, + { + "id": 17499, + "model_id": 17409, + "year": "2005" + }, + { + "id": 17503, + "model_id": 17409, + "year": "2006" + }, + { + "id": 17507, + "model_id": 17409, + "year": "2007" + }, + { + "id": 17511, + "model_id": 17409, + "year": "2008" + }, + { + "id": 17514, + "model_id": 17409, + "year": "2009" + }, + { + "id": 17517, + "model_id": 17409, + "year": "2010" + }, + { + "id": 17520, + "model_id": 17409, + "year": "2011" + }, + { + "id": 17523, + "model_id": 17409, + "year": "2012" + }, + { + "id": 17526, + "model_id": 17409, + "year": "2013" + }, + { + "id": 17532, + "model_id": 17409, + "year": "2014" + }, + { + "id": 17538, + "model_id": 17409, + "year": "2015" + }, + { + "id": 17544, + "model_id": 17409, + "year": "2016" + }, + { + "id": 17550, + "model_id": 17550, + "year": "2008" + }, + { + "id": 17554, + "model_id": 17550, + "year": "2009" + }, + { + "id": 17558, + "model_id": 17550, + "year": "2010" + }, + { + "id": 17562, + "model_id": 17550, + "year": "2011" + }, + { + "id": 17566, + "model_id": 17550, + "year": "2012" + }, + { + "id": 17570, + "model_id": 17570, + "year": "2010" + }, + { + "id": 17572, + "model_id": 17570, + "year": "2011" + }, + { + "id": 17574, + "model_id": 17574, + "year": "2005" + }, + { + "id": 17575, + "model_id": 17574, + "year": "2006" + }, + { + "id": 17576, + "model_id": 17574, + "year": "2007" + }, + { + "id": 17577, + "model_id": 17574, + "year": "2014" + }, + { + "id": 17578, + "model_id": 17574, + "year": "2015" + }, + { + "id": 17579, + "model_id": 17579, + "year": "2014" + }, + { + "id": 17580, + "model_id": 17580, + "year": "1991" + }, + { + "id": 17582, + "model_id": 17580, + "year": "1992" + }, + { + "id": 17584, + "model_id": 17580, + "year": "1993" + }, + { + "id": 17586, + "model_id": 17580, + "year": "1994" + }, + { + "id": 17590, + "model_id": 17580, + "year": "1995" + }, + { + "id": 17594, + "model_id": 17580, + "year": "1996" + }, + { + "id": 17597, + "model_id": 17580, + "year": "1997" + }, + { + "id": 17600, + "model_id": 17600, + "year": "1984" + }, + { + "id": 17606, + "model_id": 17600, + "year": "1985" + }, + { + "id": 17612, + "model_id": 17600, + "year": "1986" + }, + { + "id": 17616, + "model_id": 17600, + "year": "1987" + }, + { + "id": 17620, + "model_id": 17600, + "year": "1988" + }, + { + "id": 17627, + "model_id": 17600, + "year": "1989" + }, + { + "id": 17631, + "model_id": 17600, + "year": "1990" + }, + { + "id": 17636, + "model_id": 17600, + "year": "1991" + }, + { + "id": 17641, + "model_id": 17600, + "year": "1992" + }, + { + "id": 17647, + "model_id": 17600, + "year": "1993" + }, + { + "id": 17653, + "model_id": 17600, + "year": "1994" + }, + { + "id": 17659, + "model_id": 17600, + "year": "1995" + }, + { + "id": 17665, + "model_id": 17600, + "year": "1996" + }, + { + "id": 17669, + "model_id": 17600, + "year": "1997" + }, + { + "id": 17675, + "model_id": 17600, + "year": "1998" + }, + { + "id": 17679, + "model_id": 17600, + "year": "1999" + }, + { + "id": 17685, + "model_id": 17600, + "year": "2000" + }, + { + "id": 17690, + "model_id": 17600, + "year": "2001" + }, + { + "id": 17694, + "model_id": 17600, + "year": "2002" + }, + { + "id": 17699, + "model_id": 17600, + "year": "2003" + }, + { + "id": 17706, + "model_id": 17600, + "year": "2004" + }, + { + "id": 17713, + "model_id": 17600, + "year": "2005" + }, + { + "id": 17720, + "model_id": 17600, + "year": "2006" + }, + { + "id": 17723, + "model_id": 17600, + "year": "2007" + }, + { + "id": 17726, + "model_id": 17600, + "year": "2008" + }, + { + "id": 17729, + "model_id": 17600, + "year": "2009" + }, + { + "id": 17732, + "model_id": 17600, + "year": "2010" + }, + { + "id": 17735, + "model_id": 17600, + "year": "2011" + }, + { + "id": 17738, + "model_id": 17600, + "year": "2012" + }, + { + "id": 17741, + "model_id": 17600, + "year": "2013" + }, + { + "id": 17744, + "model_id": 17600, + "year": "2014" + }, + { + "id": 17748, + "model_id": 17600, + "year": "2015" + }, + { + "id": 17752, + "model_id": 17752, + "year": "2016" + }, + { + "id": 17755, + "model_id": 17755, + "year": "2016" + }, + { + "id": 17758, + "model_id": 17758, + "year": "1998" + }, + { + "id": 17759, + "model_id": 17758, + "year": "2000" + }, + { + "id": 17760, + "model_id": 17758, + "year": "2001" + }, + { + "id": 17761, + "model_id": 17758, + "year": "2002" + }, + { + "id": 17762, + "model_id": 17758, + "year": "2003" + }, + { + "id": 17763, + "model_id": 17758, + "year": "2004" + }, + { + "id": 17764, + "model_id": 17758, + "year": "2005" + }, + { + "id": 17765, + "model_id": 17758, + "year": "2006" + }, + { + "id": 17766, + "model_id": 17758, + "year": "2007" + }, + { + "id": 17767, + "model_id": 17758, + "year": "2008" + }, + { + "id": 17768, + "model_id": 17758, + "year": "2009" + }, + { + "id": 17769, + "model_id": 17758, + "year": "2010" + }, + { + "id": 17770, + "model_id": 17758, + "year": "2011" + }, + { + "id": 17771, + "model_id": 17771, + "year": "1984" + }, + { + "id": 17777, + "model_id": 17771, + "year": "1985" + }, + { + "id": 17782, + "model_id": 17771, + "year": "1986" + }, + { + "id": 17785, + "model_id": 17771, + "year": "1987" + }, + { + "id": 17788, + "model_id": 17771, + "year": "1988" + }, + { + "id": 17791, + "model_id": 17771, + "year": "1989" + }, + { + "id": 17794, + "model_id": 17771, + "year": "1990" + }, + { + "id": 17797, + "model_id": 17771, + "year": "1991" + }, + { + "id": 17800, + "model_id": 17800, + "year": "1985" + }, + { + "id": 17802, + "model_id": 17800, + "year": "1986" + }, + { + "id": 17804, + "model_id": 17800, + "year": "1987" + }, + { + "id": 17806, + "model_id": 17800, + "year": "1988" + }, + { + "id": 17808, + "model_id": 17800, + "year": "1989" + }, + { + "id": 17810, + "model_id": 17800, + "year": "1990" + }, + { + "id": 17812, + "model_id": 17800, + "year": "1991" + }, + { + "id": 17814, + "model_id": 17814, + "year": "1993" + }, + { + "id": 17818, + "model_id": 17814, + "year": "1994" + }, + { + "id": 17823, + "model_id": 17814, + "year": "1995" + }, + { + "id": 17828, + "model_id": 17828, + "year": "1992" + }, + { + "id": 17830, + "model_id": 17828, + "year": "1993" + }, + { + "id": 17832, + "model_id": 17828, + "year": "1994" + }, + { + "id": 17834, + "model_id": 17828, + "year": "1995" + }, + { + "id": 17836, + "model_id": 17836, + "year": "2012" + }, + { + "id": 17837, + "model_id": 17836, + "year": "2013" + }, + { + "id": 17838, + "model_id": 17836, + "year": "2014" + }, + { + "id": 17839, + "model_id": 17836, + "year": "2015" + }, + { + "id": 17840, + "model_id": 17840, + "year": "1996" + }, + { + "id": 17842, + "model_id": 17840, + "year": "1998" + }, + { + "id": 17844, + "model_id": 17840, + "year": "1999" + }, + { + "id": 17846, + "model_id": 17840, + "year": "2000" + }, + { + "id": 17848, + "model_id": 17840, + "year": "2001" + }, + { + "id": 17850, + "model_id": 17840, + "year": "2002" + }, + { + "id": 17852, + "model_id": 17852, + "year": "2003" + }, + { + "id": 17856, + "model_id": 17852, + "year": "2004" + }, + { + "id": 17860, + "model_id": 17852, + "year": "2005" + }, + { + "id": 17864, + "model_id": 17852, + "year": "2006" + }, + { + "id": 17865, + "model_id": 17852, + "year": "2007" + }, + { + "id": 17866, + "model_id": 17852, + "year": "2008" + }, + { + "id": 17867, + "model_id": 17852, + "year": "2009" + }, + { + "id": 17868, + "model_id": 17852, + "year": "2010" + }, + { + "id": 17869, + "model_id": 17852, + "year": "2011" + }, + { + "id": 17870, + "model_id": 17852, + "year": "2012" + }, + { + "id": 17871, + "model_id": 17852, + "year": "2013" + }, + { + "id": 17872, + "model_id": 17852, + "year": "2014" + }, + { + "id": 17873, + "model_id": 17852, + "year": "2015" + }, + { + "id": 17874, + "model_id": 17874, + "year": "2012" + }, + { + "id": 17875, + "model_id": 17874, + "year": "2013" + }, + { + "id": 17876, + "model_id": 17874, + "year": "2014" + }, + { + "id": 17877, + "model_id": 17874, + "year": "2015" + }, + { + "id": 17878, + "model_id": 17878, + "year": "1984" + }, + { + "id": 17882, + "model_id": 17878, + "year": "1985" + }, + { + "id": 17887, + "model_id": 17878, + "year": "1986" + }, + { + "id": 17890, + "model_id": 17878, + "year": "1987" + }, + { + "id": 17893, + "model_id": 17878, + "year": "1988" + }, + { + "id": 17897, + "model_id": 17878, + "year": "1989" + }, + { + "id": 17901, + "model_id": 17878, + "year": "1990" + }, + { + "id": 17905, + "model_id": 17878, + "year": "1991" + }, + { + "id": 17909, + "model_id": 17909, + "year": "1997" + }, + { + "id": 17910, + "model_id": 17909, + "year": "1998" + }, + { + "id": 17913, + "model_id": 17909, + "year": "1999" + }, + { + "id": 17919, + "model_id": 17909, + "year": "2000" + }, + { + "id": 17922, + "model_id": 17909, + "year": "2001" + }, + { + "id": 17925, + "model_id": 17909, + "year": "2002" + }, + { + "id": 17928, + "model_id": 17909, + "year": "2003" + }, + { + "id": 17931, + "model_id": 17909, + "year": "2004" + }, + { + "id": 17934, + "model_id": 17909, + "year": "2005" + }, + { + "id": 17937, + "model_id": 17909, + "year": "2006" + }, + { + "id": 17940, + "model_id": 17909, + "year": "2007" + }, + { + "id": 17942, + "model_id": 17909, + "year": "2008" + }, + { + "id": 17944, + "model_id": 17909, + "year": "2009" + }, + { + "id": 17946, + "model_id": 17909, + "year": "2010" + }, + { + "id": 17948, + "model_id": 17909, + "year": "2011" + }, + { + "id": 17950, + "model_id": 17909, + "year": "2012" + }, + { + "id": 17952, + "model_id": 17909, + "year": "2013" + }, + { + "id": 17954, + "model_id": 17909, + "year": "2014" + }, + { + "id": 17956, + "model_id": 17909, + "year": "2015" + }, + { + "id": 17958, + "model_id": 17909, + "year": "2016" + }, + { + "id": 17960, + "model_id": 17960, + "year": "2011" + }, + { + "id": 17962, + "model_id": 17960, + "year": "2012" + }, + { + "id": 17964, + "model_id": 17960, + "year": "2013" + }, + { + "id": 17966, + "model_id": 17960, + "year": "2014" + }, + { + "id": 17968, + "model_id": 17960, + "year": "2015" + }, + { + "id": 17970, + "model_id": 17960, + "year": "2016" + }, + { + "id": 17972, + "model_id": 17972, + "year": "2012" + }, + { + "id": 17975, + "model_id": 17972, + "year": "2013" + }, + { + "id": 17978, + "model_id": 17972, + "year": "2014" + }, + { + "id": 17981, + "model_id": 17972, + "year": "2015" + }, + { + "id": 17984, + "model_id": 17984, + "year": "1996" + }, + { + "id": 17989, + "model_id": 17984, + "year": "1997" + }, + { + "id": 17994, + "model_id": 17994, + "year": "2003" + }, + { + "id": 17998, + "model_id": 17994, + "year": "2004" + }, + { + "id": 18002, + "model_id": 17994, + "year": "2005" + }, + { + "id": 18006, + "model_id": 17994, + "year": "2006" + }, + { + "id": 18010, + "model_id": 17994, + "year": "2007" + }, + { + "id": 18014, + "model_id": 17994, + "year": "2008" + }, + { + "id": 18018, + "model_id": 17994, + "year": "2009" + }, + { + "id": 18022, + "model_id": 17994, + "year": "2010" + }, + { + "id": 18026, + "model_id": 17994, + "year": "2011" + }, + { + "id": 18029, + "model_id": 18029, + "year": "1998" + }, + { + "id": 18030, + "model_id": 18029, + "year": "1999" + }, + { + "id": 18031, + "model_id": 18031, + "year": "2007" + }, + { + "id": 18034, + "model_id": 18031, + "year": "2008" + }, + { + "id": 18037, + "model_id": 18031, + "year": "2009" + }, + { + "id": 18040, + "model_id": 18031, + "year": "2010" + }, + { + "id": 18043, + "model_id": 18031, + "year": "2011" + }, + { + "id": 18046, + "model_id": 18031, + "year": "2012" + }, + { + "id": 18049, + "model_id": 18031, + "year": "2013" + }, + { + "id": 18052, + "model_id": 18031, + "year": "2015" + }, + { + "id": 18055, + "model_id": 18031, + "year": "2016" + }, + { + "id": 18058, + "model_id": 18058, + "year": "2013" + }, + { + "id": 18059, + "model_id": 18058, + "year": "2014" + }, + { + "id": 18060, + "model_id": 18060, + "year": "2016" + }, + { + "id": 18065, + "model_id": 18065, + "year": "2000" + }, + { + "id": 18066, + "model_id": 18065, + "year": "2001" + }, + { + "id": 18069, + "model_id": 18065, + "year": "2002" + }, + { + "id": 18071, + "model_id": 18065, + "year": "2003" + }, + { + "id": 18073, + "model_id": 18065, + "year": "2004" + }, + { + "id": 18075, + "model_id": 18065, + "year": "2005" + }, + { + "id": 18077, + "model_id": 18065, + "year": "2006" + }, + { + "id": 18079, + "model_id": 18065, + "year": "2010" + }, + { + "id": 18081, + "model_id": 18065, + "year": "2011" + }, + { + "id": 18083, + "model_id": 18065, + "year": "2012" + }, + { + "id": 18085, + "model_id": 18065, + "year": "2013" + }, + { + "id": 18087, + "model_id": 18065, + "year": "2014" + }, + { + "id": 18089, + "model_id": 18089, + "year": "1995" + }, + { + "id": 18090, + "model_id": 18089, + "year": "1996" + }, + { + "id": 18091, + "model_id": 18089, + "year": "1997" + }, + { + "id": 18092, + "model_id": 18089, + "year": "1998" + }, + { + "id": 18093, + "model_id": 18089, + "year": "1999" + }, + { + "id": 18094, + "model_id": 18089, + "year": "2000" + }, + { + "id": 18095, + "model_id": 18089, + "year": "2001" + }, + { + "id": 18096, + "model_id": 18089, + "year": "2002" + }, + { + "id": 18097, + "model_id": 18089, + "year": "2003" + }, + { + "id": 18098, + "model_id": 18089, + "year": "2004" + }, + { + "id": 18099, + "model_id": 18089, + "year": "2005" + }, + { + "id": 18101, + "model_id": 18089, + "year": "2006" + }, + { + "id": 18103, + "model_id": 18089, + "year": "2007" + }, + { + "id": 18105, + "model_id": 18089, + "year": "2008" + }, + { + "id": 18107, + "model_id": 18089, + "year": "2009" + }, + { + "id": 18109, + "model_id": 18089, + "year": "2010" + }, + { + "id": 18111, + "model_id": 18089, + "year": "2011" + }, + { + "id": 18113, + "model_id": 18089, + "year": "2012" + }, + { + "id": 18115, + "model_id": 18089, + "year": "2013" + }, + { + "id": 18117, + "model_id": 18089, + "year": "2014" + }, + { + "id": 18118, + "model_id": 18089, + "year": "2015" + }, + { + "id": 18119, + "model_id": 18089, + "year": "2016" + }, + { + "id": 18120, + "model_id": 18120, + "year": "1994" + }, + { + "id": 18125, + "model_id": 18120, + "year": "1995" + }, + { + "id": 18130, + "model_id": 18120, + "year": "1996" + }, + { + "id": 18135, + "model_id": 18120, + "year": "1997" + }, + { + "id": 18140, + "model_id": 18120, + "year": "1998" + }, + { + "id": 18144, + "model_id": 18120, + "year": "1999" + }, + { + "id": 18148, + "model_id": 18120, + "year": "2000" + }, + { + "id": 18152, + "model_id": 18120, + "year": "2001" + }, + { + "id": 18156, + "model_id": 18120, + "year": "2002" + }, + { + "id": 18160, + "model_id": 18160, + "year": "2003" + }, + { + "id": 18161, + "model_id": 18160, + "year": "2004" + }, + { + "id": 18162, + "model_id": 18160, + "year": "2005" + }, + { + "id": 18163, + "model_id": 18160, + "year": "2006" + }, + { + "id": 18165, + "model_id": 18160, + "year": "2007" + }, + { + "id": 18167, + "model_id": 18160, + "year": "2008" + }, + { + "id": 18169, + "model_id": 18160, + "year": "2009" + }, + { + "id": 18171, + "model_id": 18160, + "year": "2010" + }, + { + "id": 18173, + "model_id": 18160, + "year": "2011" + }, + { + "id": 18175, + "model_id": 18160, + "year": "2012" + }, + { + "id": 18177, + "model_id": 18160, + "year": "2013" + }, + { + "id": 18179, + "model_id": 18160, + "year": "2014" + }, + { + "id": 18181, + "model_id": 18160, + "year": "2015" + }, + { + "id": 18183, + "model_id": 18160, + "year": "2016" + }, + { + "id": 18187, + "model_id": 18187, + "year": "1984" + }, + { + "id": 18191, + "model_id": 18187, + "year": "1985" + }, + { + "id": 18196, + "model_id": 18187, + "year": "1986" + }, + { + "id": 18200, + "model_id": 18187, + "year": "1987" + }, + { + "id": 18204, + "model_id": 18187, + "year": "1988" + }, + { + "id": 18208, + "model_id": 18187, + "year": "1989" + }, + { + "id": 18212, + "model_id": 18187, + "year": "1990" + }, + { + "id": 18218, + "model_id": 18187, + "year": "1991" + }, + { + "id": 18224, + "model_id": 18187, + "year": "1992" + }, + { + "id": 18228, + "model_id": 18187, + "year": "1993" + }, + { + "id": 18234, + "model_id": 18187, + "year": "1994" + }, + { + "id": 18239, + "model_id": 18187, + "year": "1995" + }, + { + "id": 18244, + "model_id": 18187, + "year": "1996" + }, + { + "id": 18249, + "model_id": 18187, + "year": "1998" + }, + { + "id": 18251, + "model_id": 18187, + "year": "1999" + }, + { + "id": 18253, + "model_id": 18187, + "year": "2000" + }, + { + "id": 18255, + "model_id": 18187, + "year": "2001" + }, + { + "id": 18257, + "model_id": 18257, + "year": "2017" + }, + { + "id": 18259, + "model_id": 18259, + "year": "2006" + }, + { + "id": 18260, + "model_id": 18259, + "year": "2007" + }, + { + "id": 18261, + "model_id": 18259, + "year": "2008" + }, + { + "id": 18262, + "model_id": 18259, + "year": "2009" + }, + { + "id": 18263, + "model_id": 18259, + "year": "2010" + }, + { + "id": 18264, + "model_id": 18259, + "year": "2011" + }, + { + "id": 18265, + "model_id": 18259, + "year": "2012" + }, + { + "id": 18266, + "model_id": 18259, + "year": "2013" + }, + { + "id": 18267, + "model_id": 18259, + "year": "2014" + }, + { + "id": 18268, + "model_id": 18268, + "year": "2000" + }, + { + "id": 18269, + "model_id": 18268, + "year": "2001" + }, + { + "id": 18270, + "model_id": 18268, + "year": "2002" + }, + { + "id": 18271, + "model_id": 18268, + "year": "2003" + }, + { + "id": 18272, + "model_id": 18268, + "year": "2004" + }, + { + "id": 18273, + "model_id": 18268, + "year": "2005" + }, + { + "id": 18274, + "model_id": 18268, + "year": "2006" + }, + { + "id": 18275, + "model_id": 18268, + "year": "2007" + }, + { + "id": 18276, + "model_id": 18268, + "year": "2008" + }, + { + "id": 18277, + "model_id": 18268, + "year": "2009" + }, + { + "id": 18278, + "model_id": 18278, + "year": "2006" + }, + { + "id": 18280, + "model_id": 18278, + "year": "2007" + }, + { + "id": 18282, + "model_id": 18278, + "year": "2008" + }, + { + "id": 18285, + "model_id": 18278, + "year": "2009" + }, + { + "id": 18288, + "model_id": 18278, + "year": "2010" + }, + { + "id": 18291, + "model_id": 18291, + "year": "2009" + }, + { + "id": 18294, + "model_id": 18291, + "year": "2010" + }, + { + "id": 18297, + "model_id": 18297, + "year": "1995" + }, + { + "id": 18299, + "model_id": 18297, + "year": "1996" + }, + { + "id": 18303, + "model_id": 18297, + "year": "1998" + }, + { + "id": 18305, + "model_id": 18297, + "year": "1999" + }, + { + "id": 18307, + "model_id": 18297, + "year": "2006" + }, + { + "id": 18309, + "model_id": 18297, + "year": "2007" + }, + { + "id": 18311, + "model_id": 18297, + "year": "2008" + }, + { + "id": 18313, + "model_id": 18297, + "year": "2009" + }, + { + "id": 18315, + "model_id": 18297, + "year": "2010" + }, + { + "id": 18317, + "model_id": 18297, + "year": "2011" + }, + { + "id": 18319, + "model_id": 18297, + "year": "2012" + }, + { + "id": 18321, + "model_id": 18297, + "year": "2013" + }, + { + "id": 18323, + "model_id": 18297, + "year": "2014" + }, + { + "id": 18325, + "model_id": 18297, + "year": "2015" + }, + { + "id": 18327, + "model_id": 18297, + "year": "2016" + }, + { + "id": 18329, + "model_id": 18297, + "year": "2017" + }, + { + "id": 18331, + "model_id": 18331, + "year": "1997" + }, + { + "id": 18333, + "model_id": 18333, + "year": "1996" + }, + { + "id": 18335, + "model_id": 18335, + "year": "2010" + }, + { + "id": 18336, + "model_id": 18335, + "year": "2011" + }, + { + "id": 18337, + "model_id": 18337, + "year": "2000" + }, + { + "id": 18339, + "model_id": 18337, + "year": "2001" + }, + { + "id": 18343, + "model_id": 18337, + "year": "2002" + }, + { + "id": 18347, + "model_id": 18337, + "year": "2003" + }, + { + "id": 18351, + "model_id": 18337, + "year": "2004" + }, + { + "id": 18355, + "model_id": 18337, + "year": "2005" + }, + { + "id": 18359, + "model_id": 18359, + "year": "2006" + }, + { + "id": 18360, + "model_id": 18359, + "year": "2007" + }, + { + "id": 18361, + "model_id": 18359, + "year": "2008" + }, + { + "id": 18363, + "model_id": 18359, + "year": "2009" + }, + { + "id": 18365, + "model_id": 18359, + "year": "2010" + }, + { + "id": 18367, + "model_id": 18359, + "year": "2011" + }, + { + "id": 18369, + "model_id": 18359, + "year": "2012" + }, + { + "id": 18370, + "model_id": 18359, + "year": "2013" + }, + { + "id": 18371, + "model_id": 18359, + "year": "2014" + }, + { + "id": 18372, + "model_id": 18359, + "year": "2015" + }, + { + "id": 18373, + "model_id": 18359, + "year": "2016" + }, + { + "id": 18374, + "model_id": 18374, + "year": "2015" + }, + { + "id": 18375, + "model_id": 18374, + "year": "2016" + }, + { + "id": 18376, + "model_id": 18376, + "year": "1993" + }, + { + "id": 18379, + "model_id": 18376, + "year": "1994" + }, + { + "id": 18382, + "model_id": 18376, + "year": "1995" + }, + { + "id": 18387, + "model_id": 18376, + "year": "1996" + }, + { + "id": 18389, + "model_id": 18376, + "year": "1997" + }, + { + "id": 18392, + "model_id": 18376, + "year": "1998" + }, + { + "id": 18394, + "model_id": 18376, + "year": "1999" + }, + { + "id": 18396, + "model_id": 18376, + "year": "2000" + }, + { + "id": 18398, + "model_id": 18376, + "year": "2001" + }, + { + "id": 18400, + "model_id": 18376, + "year": "2002" + }, + { + "id": 18402, + "model_id": 18376, + "year": "2003" + }, + { + "id": 18406, + "model_id": 18376, + "year": "2004" + }, + { + "id": 18408, + "model_id": 18376, + "year": "2005" + }, + { + "id": 18410, + "model_id": 18376, + "year": "2006" + }, + { + "id": 18413, + "model_id": 18376, + "year": "2007" + }, + { + "id": 18415, + "model_id": 18376, + "year": "2008" + }, + { + "id": 18417, + "model_id": 18376, + "year": "2009" + }, + { + "id": 18419, + "model_id": 18376, + "year": "2010" + }, + { + "id": 18421, + "model_id": 18376, + "year": "2011" + }, + { + "id": 18423, + "model_id": 18376, + "year": "2012" + }, + { + "id": 18425, + "model_id": 18376, + "year": "2013" + }, + { + "id": 18427, + "model_id": 18376, + "year": "2014" + }, + { + "id": 18431, + "model_id": 18376, + "year": "2015" + }, + { + "id": 18435, + "model_id": 18376, + "year": "2016" + }, + { + "id": 18439, + "model_id": 18376, + "year": "2017" + }, + { + "id": 18442, + "model_id": 18442, + "year": "2010" + }, + { + "id": 18443, + "model_id": 18442, + "year": "2013" + }, + { + "id": 18444, + "model_id": 18444, + "year": "2013" + }, + { + "id": 18446, + "model_id": 18444, + "year": "2014" + }, + { + "id": 18447, + "model_id": 18444, + "year": "2015" + }, + { + "id": 18449, + "model_id": 18449, + "year": "2013" + }, + { + "id": 18451, + "model_id": 18449, + "year": "2014" + }, + { + "id": 18453, + "model_id": 18449, + "year": "2015" + }, + { + "id": 18455, + "model_id": 18449, + "year": "2016" + }, + { + "id": 18457, + "model_id": 18449, + "year": "2017" + }, + { + "id": 18459, + "model_id": 18459, + "year": "2004" + }, + { + "id": 18460, + "model_id": 18460, + "year": "2014" + }, + { + "id": 18461, + "model_id": 18460, + "year": "2015" + }, + { + "id": 18462, + "model_id": 18460, + "year": "2016" + }, + { + "id": 18463, + "model_id": 18463, + "year": "2017" + }, + { + "id": 18464, + "model_id": 18464, + "year": "2009" + }, + { + "id": 18466, + "model_id": 18464, + "year": "2010" + }, + { + "id": 18468, + "model_id": 18464, + "year": "2011" + }, + { + "id": 18470, + "model_id": 18464, + "year": "2012" + }, + { + "id": 18472, + "model_id": 18472, + "year": "1996" + }, + { + "id": 18474, + "model_id": 18472, + "year": "1997" + }, + { + "id": 18476, + "model_id": 18472, + "year": "1998" + }, + { + "id": 18478, + "model_id": 18472, + "year": "1999" + }, + { + "id": 18480, + "model_id": 18472, + "year": "2000" + }, + { + "id": 18482, + "model_id": 18482, + "year": "2007" + }, + { + "id": 18483, + "model_id": 18482, + "year": "2008" + }, + { + "id": 18484, + "model_id": 18482, + "year": "2009" + }, + { + "id": 18485, + "model_id": 18482, + "year": "2010" + }, + { + "id": 18486, + "model_id": 18482, + "year": "2011" + }, + { + "id": 18487, + "model_id": 18487, + "year": "2011" + }, + { + "id": 18488, + "model_id": 18487, + "year": "2012" + }, + { + "id": 18489, + "model_id": 18487, + "year": "2013" + }, + { + "id": 18490, + "model_id": 18487, + "year": "2014" + }, + { + "id": 18491, + "model_id": 18487, + "year": "2015" + }, + { + "id": 18492, + "model_id": 18487, + "year": "2016" + }, + { + "id": 18493, + "model_id": 18493, + "year": "1987" + }, + { + "id": 18496, + "model_id": 18493, + "year": "1988" + }, + { + "id": 18499, + "model_id": 18493, + "year": "1989" + }, + { + "id": 18502, + "model_id": 18493, + "year": "1990" + }, + { + "id": 18505, + "model_id": 18493, + "year": "1991" + }, + { + "id": 18510, + "model_id": 18493, + "year": "1992" + }, + { + "id": 18515, + "model_id": 18493, + "year": "1993" + }, + { + "id": 18518, + "model_id": 18493, + "year": "1994" + }, + { + "id": 18520, + "model_id": 18520, + "year": "2009" + }, + { + "id": 18522, + "model_id": 18520, + "year": "2010" + }, + { + "id": 18524, + "model_id": 18520, + "year": "2011" + }, + { + "id": 18526, + "model_id": 18520, + "year": "2012" + }, + { + "id": 18529, + "model_id": 18520, + "year": "2013" + }, + { + "id": 18530, + "model_id": 18520, + "year": "2014" + }, + { + "id": 18531, + "model_id": 18520, + "year": "2015" + }, + { + "id": 18532, + "model_id": 18520, + "year": "2016" + }, + { + "id": 18533, + "model_id": 18533, + "year": "2010" + }, + { + "id": 18537, + "model_id": 18533, + "year": "2011" + }, + { + "id": 18541, + "model_id": 18533, + "year": "2012" + }, + { + "id": 18545, + "model_id": 18533, + "year": "2013" + }, + { + "id": 18549, + "model_id": 18533, + "year": "2014" + }, + { + "id": 18553, + "model_id": 18533, + "year": "2015" + }, + { + "id": 18555, + "model_id": 18533, + "year": "2016" + }, + { + "id": 18557, + "model_id": 18557, + "year": "2014" + }, + { + "id": 18558, + "model_id": 18558, + "year": "2012" + }, + { + "id": 18559, + "model_id": 18558, + "year": "2013" + }, + { + "id": 18560, + "model_id": 18560, + "year": "2015" + }, + { + "id": 18562, + "model_id": 18560, + "year": "2016" + }, + { + "id": 18564, + "model_id": 18564, + "year": "1992" + }, + { + "id": 18566, + "model_id": 18566, + "year": "1986" + }, + { + "id": 18569, + "model_id": 18569, + "year": "1994" + }, + { + "id": 18570, + "model_id": 18570, + "year": "2001" + }, + { + "id": 18574, + "model_id": 18570, + "year": "2002" + }, + { + "id": 18578, + "model_id": 18570, + "year": "2003" + }, + { + "id": 18584, + "model_id": 18570, + "year": "2004" + }, + { + "id": 18590, + "model_id": 18570, + "year": "2005" + }, + { + "id": 18596, + "model_id": 18570, + "year": "2006" + }, + { + "id": 18602, + "model_id": 18570, + "year": "2007" + }, + { + "id": 18609, + "model_id": 18570, + "year": "2008" + }, + { + "id": 18615, + "model_id": 18570, + "year": "2009" + }, + { + "id": 18621, + "model_id": 18570, + "year": "2010" + }, + { + "id": 18626, + "model_id": 18570, + "year": "2011" + }, + { + "id": 18631, + "model_id": 18570, + "year": "2012" + }, + { + "id": 18636, + "model_id": 18570, + "year": "2013" + }, + { + "id": 18638, + "model_id": 18570, + "year": "2014" + }, + { + "id": 18640, + "model_id": 18570, + "year": "2015" + }, + { + "id": 18642, + "model_id": 18570, + "year": "2016" + }, + { + "id": 18644, + "model_id": 18570, + "year": "2017" + }, + { + "id": 18646, + "model_id": 18646, + "year": "2013" + }, + { + "id": 18650, + "model_id": 18646, + "year": "2014" + }, + { + "id": 18654, + "model_id": 18646, + "year": "2015" + }, + { + "id": 18658, + "model_id": 18646, + "year": "2016" + }, + { + "id": 18662, + "model_id": 18646, + "year": "2017" + }, + { + "id": 18666, + "model_id": 18666, + "year": "2015" + }, + { + "id": 18667, + "model_id": 18666, + "year": "2016" + }, + { + "id": 18668, + "model_id": 18666, + "year": "2017" + }, + { + "id": 18670, + "model_id": 18670, + "year": "2014" + }, + { + "id": 18672, + "model_id": 18670, + "year": "2015" + }, + { + "id": 18674, + "model_id": 18670, + "year": "2016" + }, + { + "id": 18676, + "model_id": 18670, + "year": "2017" + }, + { + "id": 18678, + "model_id": 18678, + "year": "1991" + }, + { + "id": 18680, + "model_id": 18678, + "year": "1992" + }, + { + "id": 18682, + "model_id": 18678, + "year": "1993" + }, + { + "id": 18685, + "model_id": 18678, + "year": "1994" + }, + { + "id": 18688, + "model_id": 18678, + "year": "1995" + }, + { + "id": 18691, + "model_id": 18691, + "year": "1989" + }, + { + "id": 18694, + "model_id": 18691, + "year": "1990" + }, + { + "id": 18697, + "model_id": 18691, + "year": "1991" + }, + { + "id": 18700, + "model_id": 18691, + "year": "1992" + }, + { + "id": 18703, + "model_id": 18691, + "year": "1993" + }, + { + "id": 18706, + "model_id": 18691, + "year": "1994" + }, + { + "id": 18709, + "model_id": 18691, + "year": "1995" + }, + { + "id": 18712, + "model_id": 18691, + "year": "1996" + }, + { + "id": 18715, + "model_id": 18691, + "year": "1997" + }, + { + "id": 18718, + "model_id": 18691, + "year": "1998" + }, + { + "id": 18721, + "model_id": 18691, + "year": "1999" + }, + { + "id": 18725, + "model_id": 18691, + "year": "2000" + }, + { + "id": 18729, + "model_id": 18691, + "year": "2001" + }, + { + "id": 18733, + "model_id": 18691, + "year": "2002" + }, + { + "id": 18737, + "model_id": 18691, + "year": "2003" + }, + { + "id": 18741, + "model_id": 18691, + "year": "2004" + }, + { + "id": 18745, + "model_id": 18691, + "year": "2005" + }, + { + "id": 18749, + "model_id": 18691, + "year": "2006" + }, + { + "id": 18752, + "model_id": 18691, + "year": "2007" + }, + { + "id": 18755, + "model_id": 18691, + "year": "2008" + }, + { + "id": 18758, + "model_id": 18691, + "year": "2009" + }, + { + "id": 18761, + "model_id": 18691, + "year": "2010" + }, + { + "id": 18764, + "model_id": 18691, + "year": "2011" + }, + { + "id": 18767, + "model_id": 18691, + "year": "2012" + }, + { + "id": 18770, + "model_id": 18691, + "year": "2013" + }, + { + "id": 18773, + "model_id": 18691, + "year": "2014" + }, + { + "id": 18775, + "model_id": 18691, + "year": "2015" + }, + { + "id": 18778, + "model_id": 18691, + "year": "2016" + }, + { + "id": 18781, + "model_id": 18691, + "year": "2017" + }, + { + "id": 18784, + "model_id": 18784, + "year": "1994" + }, + { + "id": 18787, + "model_id": 18787, + "year": "2011" + }, + { + "id": 18788, + "model_id": 18787, + "year": "2012" + }, + { + "id": 18789, + "model_id": 18787, + "year": "2013" + }, + { + "id": 18790, + "model_id": 18787, + "year": "2014" + }, + { + "id": 18791, + "model_id": 18787, + "year": "2015" + }, + { + "id": 18792, + "model_id": 18787, + "year": "2016" + }, + { + "id": 18793, + "model_id": 18787, + "year": "2017" + }, + { + "id": 18794, + "model_id": 18794, + "year": "2013" + }, + { + "id": 18795, + "model_id": 18794, + "year": "2014" + }, + { + "id": 18796, + "model_id": 18794, + "year": "2015" + }, + { + "id": 18797, + "model_id": 18797, + "year": "2016" + }, + { + "id": 18798, + "model_id": 18797, + "year": "2017" + }, + { + "id": 18799, + "model_id": 18799, + "year": "2015" + }, + { + "id": 18800, + "model_id": 18799, + "year": "2016" + }, + { + "id": 18801, + "model_id": 18799, + "year": "2017" + }, + { + "id": 18802, + "model_id": 18802, + "year": "2016" + }, + { + "id": 18803, + "model_id": 18803, + "year": "2015" + }, + { + "id": 18804, + "model_id": 18803, + "year": "2016" + }, + { + "id": 18805, + "model_id": 18803, + "year": "2017" + }, + { + "id": 18806, + "model_id": 18806, + "year": "1998" + }, + { + "id": 18808, + "model_id": 18806, + "year": "1999" + }, + { + "id": 18810, + "model_id": 18806, + "year": "2000" + }, + { + "id": 18812, + "model_id": 18806, + "year": "2001" + }, + { + "id": 18814, + "model_id": 18806, + "year": "2002" + }, + { + "id": 18818, + "model_id": 18806, + "year": "2003" + }, + { + "id": 18824, + "model_id": 18806, + "year": "2004" + }, + { + "id": 18829, + "model_id": 18806, + "year": "2005" + }, + { + "id": 18834, + "model_id": 18806, + "year": "2006" + }, + { + "id": 18839, + "model_id": 18806, + "year": "2007" + }, + { + "id": 18844, + "model_id": 18806, + "year": "2008" + }, + { + "id": 18849, + "model_id": 18849, + "year": "1997" + }, + { + "id": 18853, + "model_id": 18853, + "year": "2005" + }, + { + "id": 18858, + "model_id": 18853, + "year": "2006" + }, + { + "id": 18863, + "model_id": 18853, + "year": "2007" + }, + { + "id": 18868, + "model_id": 18853, + "year": "2008" + }, + { + "id": 18873, + "model_id": 18853, + "year": "2009" + }, + { + "id": 18878, + "model_id": 18853, + "year": "2010" + }, + { + "id": 18882, + "model_id": 18853, + "year": "2011" + }, + { + "id": 18888, + "model_id": 18853, + "year": "2012" + }, + { + "id": 18894, + "model_id": 18853, + "year": "2013" + }, + { + "id": 18900, + "model_id": 18853, + "year": "2014" + }, + { + "id": 18904, + "model_id": 18853, + "year": "2015" + }, + { + "id": 18908, + "model_id": 18853, + "year": "2016" + }, + { + "id": 18912, + "model_id": 18853, + "year": "2017" + }, + { + "id": 18916, + "model_id": 18916, + "year": "2016" + }, + { + "id": 18918, + "model_id": 18916, + "year": "2017" + }, + { + "id": 18920, + "model_id": 18920, + "year": "2012" + }, + { + "id": 18922, + "model_id": 18920, + "year": "2013" + }, + { + "id": 18926, + "model_id": 18920, + "year": "2014" + }, + { + "id": 18930, + "model_id": 18920, + "year": "2015" + }, + { + "id": 18934, + "model_id": 18920, + "year": "2016" + }, + { + "id": 18938, + "model_id": 18938, + "year": "2007" + }, + { + "id": 18940, + "model_id": 18938, + "year": "2008" + }, + { + "id": 18942, + "model_id": 18938, + "year": "2009" + }, + { + "id": 18944, + "model_id": 18938, + "year": "2010" + }, + { + "id": 18946, + "model_id": 18938, + "year": "2011" + }, + { + "id": 18948, + "model_id": 18938, + "year": "2012" + }, + { + "id": 18950, + "model_id": 18950, + "year": "2001" + }, + { + "id": 18951, + "model_id": 18951, + "year": "2002" + }, + { + "id": 18952, + "model_id": 18951, + "year": "2003" + }, + { + "id": 18953, + "model_id": 18951, + "year": "2004" + }, + { + "id": 18954, + "model_id": 18951, + "year": "2005" + }, + { + "id": 18955, + "model_id": 18955, + "year": "1984" + }, + { + "id": 18956, + "model_id": 18956, + "year": "1992" + }, + { + "id": 18957, + "model_id": 18957, + "year": "1992" + }, + { + "id": 18958, + "model_id": 18958, + "year": "1991" + }, + { + "id": 18959, + "model_id": 18959, + "year": "1991" + }, + { + "id": 18960, + "model_id": 18960, + "year": "1991" + }, + { + "id": 18961, + "model_id": 18961, + "year": "1991" + }, + { + "id": 18962, + "model_id": 18962, + "year": "1991" + }, + { + "id": 18963, + "model_id": 18963, + "year": "1991" + }, + { + "id": 18964, + "model_id": 18964, + "year": "1991" + }, + { + "id": 18965, + "model_id": 18965, + "year": "1991" + }, + { + "id": 18967, + "model_id": 18967, + "year": "1991" + }, + { + "id": 18968, + "model_id": 18968, + "year": "1992" + }, + { + "id": 18969, + "model_id": 18969, + "year": "2008" + }, + { + "id": 18971, + "model_id": 18969, + "year": "2009" + }, + { + "id": 18973, + "model_id": 18969, + "year": "2010" + }, + { + "id": 18975, + "model_id": 18969, + "year": "2011" + }, + { + "id": 18977, + "model_id": 18969, + "year": "2012" + }, + { + "id": 18979, + "model_id": 18979, + "year": "2013" + }, + { + "id": 18981, + "model_id": 18981, + "year": "2003" + }, + { + "id": 18983, + "model_id": 18981, + "year": "2004" + }, + { + "id": 18984, + "model_id": 18981, + "year": "2005" + }, + { + "id": 18985, + "model_id": 18981, + "year": "2006" + }, + { + "id": 18986, + "model_id": 18981, + "year": "2007" + }, + { + "id": 18987, + "model_id": 18981, + "year": "2008" + }, + { + "id": 18988, + "model_id": 18981, + "year": "2009" + }, + { + "id": 18989, + "model_id": 18981, + "year": "2010" + }, + { + "id": 18990, + "model_id": 18981, + "year": "2011" + }, + { + "id": 18991, + "model_id": 18981, + "year": "2012" + }, + { + "id": 18992, + "model_id": 18992, + "year": "2004" + }, + { + "id": 18993, + "model_id": 18992, + "year": "2005" + }, + { + "id": 18994, + "model_id": 18992, + "year": "2006" + }, + { + "id": 18995, + "model_id": 18992, + "year": "2007" + }, + { + "id": 18996, + "model_id": 18992, + "year": "2008" + }, + { + "id": 18997, + "model_id": 18992, + "year": "2009" + }, + { + "id": 18998, + "model_id": 18992, + "year": "2010" + }, + { + "id": 18999, + "model_id": 18992, + "year": "2011" + }, + { + "id": 19000, + "model_id": 18992, + "year": "2012" + }, + { + "id": 19001, + "model_id": 19001, + "year": "2013" + }, + { + "id": 19002, + "model_id": 19002, + "year": "2013" + }, + { + "id": 19003, + "model_id": 19003, + "year": "2003" + }, + { + "id": 19004, + "model_id": 19003, + "year": "2004" + }, + { + "id": 19005, + "model_id": 19003, + "year": "2005" + }, + { + "id": 19006, + "model_id": 19003, + "year": "2006" + }, + { + "id": 19007, + "model_id": 19003, + "year": "2007" + }, + { + "id": 19008, + "model_id": 19003, + "year": "2008" + }, + { + "id": 19009, + "model_id": 19009, + "year": "2009" + }, + { + "id": 19010, + "model_id": 19009, + "year": "2010" + }, + { + "id": 19011, + "model_id": 19009, + "year": "2011" + }, + { + "id": 19012, + "model_id": 19009, + "year": "2012" + }, + { + "id": 19013, + "model_id": 19009, + "year": "2013" + }, + { + "id": 19014, + "model_id": 19014, + "year": "1991" + }, + { + "id": 19016, + "model_id": 19014, + "year": "1992" + }, + { + "id": 19018, + "model_id": 19014, + "year": "1993" + }, + { + "id": 19021, + "model_id": 19014, + "year": "1994" + }, + { + "id": 19023, + "model_id": 19014, + "year": "1995" + }, + { + "id": 19027, + "model_id": 19014, + "year": "1996" + }, + { + "id": 19029, + "model_id": 19014, + "year": "1999" + }, + { + "id": 19031, + "model_id": 19014, + "year": "2000" + }, + { + "id": 19033, + "model_id": 19014, + "year": "2001" + }, + { + "id": 19035, + "model_id": 19014, + "year": "2002" + }, + { + "id": 19037, + "model_id": 19037, + "year": "2011" + }, + { + "id": 19038, + "model_id": 19037, + "year": "2012" + }, + { + "id": 19039, + "model_id": 19039, + "year": "2011" + }, + { + "id": 19040, + "model_id": 19039, + "year": "2012" + }, + { + "id": 19041, + "model_id": 19041, + "year": "2003" + }, + { + "id": 19044, + "model_id": 19041, + "year": "2004" + }, + { + "id": 19049, + "model_id": 19041, + "year": "2005" + }, + { + "id": 19053, + "model_id": 19041, + "year": "2006" + }, + { + "id": 19057, + "model_id": 19041, + "year": "2007" + }, + { + "id": 19059, + "model_id": 19041, + "year": "2008" + }, + { + "id": 19061, + "model_id": 19061, + "year": "2007" + }, + { + "id": 19063, + "model_id": 19063, + "year": "2007" + }, + { + "id": 19064, + "model_id": 19063, + "year": "2008" + }, + { + "id": 19065, + "model_id": 19065, + "year": "2009" + }, + { + "id": 19067, + "model_id": 19065, + "year": "2010" + }, + { + "id": 19069, + "model_id": 19065, + "year": "2012" + }, + { + "id": 19071, + "model_id": 19065, + "year": "2013" + }, + { + "id": 19073, + "model_id": 19073, + "year": "2009" + }, + { + "id": 19075, + "model_id": 19073, + "year": "2010" + }, + { + "id": 19077, + "model_id": 19073, + "year": "2011" + }, + { + "id": 19079, + "model_id": 19073, + "year": "2012" + }, + { + "id": 19081, + "model_id": 19073, + "year": "2013" + }, + { + "id": 19083, + "model_id": 19083, + "year": "2008" + }, + { + "id": 19085, + "model_id": 19083, + "year": "2009" + }, + { + "id": 19087, + "model_id": 19083, + "year": "2010" + }, + { + "id": 19089, + "model_id": 19083, + "year": "2011" + }, + { + "id": 19091, + "model_id": 19083, + "year": "2012" + }, + { + "id": 19093, + "model_id": 19083, + "year": "2013" + }, + { + "id": 19095, + "model_id": 19095, + "year": "2009" + }, + { + "id": 19096, + "model_id": 19095, + "year": "2010" + }, + { + "id": 19097, + "model_id": 19095, + "year": "2012" + }, + { + "id": 19098, + "model_id": 19095, + "year": "2013" + }, + { + "id": 19099, + "model_id": 19099, + "year": "2009" + }, + { + "id": 19100, + "model_id": 19099, + "year": "2010" + }, + { + "id": 19101, + "model_id": 19099, + "year": "2011" + }, + { + "id": 19102, + "model_id": 19099, + "year": "2012" + }, + { + "id": 19103, + "model_id": 19099, + "year": "2013" + }, + { + "id": 19104, + "model_id": 19104, + "year": "1996" + }, + { + "id": 19106, + "model_id": 19104, + "year": "1997" + }, + { + "id": 19108, + "model_id": 19104, + "year": "1998" + }, + { + "id": 19110, + "model_id": 19104, + "year": "1999" + }, + { + "id": 19112, + "model_id": 19104, + "year": "2000" + }, + { + "id": 19113, + "model_id": 19104, + "year": "2001" + }, + { + "id": 19114, + "model_id": 19114, + "year": "2002" + }, + { + "id": 19115, + "model_id": 19114, + "year": "2003" + }, + { + "id": 19116, + "model_id": 19114, + "year": "2004" + }, + { + "id": 19117, + "model_id": 19117, + "year": "1993" + }, + { + "id": 19118, + "model_id": 19117, + "year": "1994" + }, + { + "id": 19119, + "model_id": 19117, + "year": "1995" + }, + { + "id": 19120, + "model_id": 19117, + "year": "1996" + }, + { + "id": 19121, + "model_id": 19117, + "year": "1997" + }, + { + "id": 19122, + "model_id": 19122, + "year": "2013" + }, + { + "id": 19124, + "model_id": 19124, + "year": "1990" + }, + { + "id": 19125, + "model_id": 19124, + "year": "1991" + }, + { + "id": 19126, + "model_id": 19124, + "year": "1992" + }, + { + "id": 19127, + "model_id": 19127, + "year": "2006" + }, + { + "id": 19129, + "model_id": 19127, + "year": "2007" + }, + { + "id": 19130, + "model_id": 19127, + "year": "2008" + }, + { + "id": 19131, + "model_id": 19127, + "year": "2009" + }, + { + "id": 19132, + "model_id": 19127, + "year": "2010" + }, + { + "id": 19133, + "model_id": 19133, + "year": "2012" + }, + { + "id": 19134, + "model_id": 19133, + "year": "2013" + }, + { + "id": 19135, + "model_id": 19135, + "year": "2007" + }, + { + "id": 19136, + "model_id": 19135, + "year": "2008" + }, + { + "id": 19137, + "model_id": 19135, + "year": "2009" + }, + { + "id": 19138, + "model_id": 19135, + "year": "2010" + }, + { + "id": 19139, + "model_id": 19139, + "year": "2011" + }, + { + "id": 19140, + "model_id": 19139, + "year": "2012" + }, + { + "id": 19141, + "model_id": 19139, + "year": "2013" + }, + { + "id": 19142, + "model_id": 19142, + "year": "2011" + }, + { + "id": 19143, + "model_id": 19142, + "year": "2012" + }, + { + "id": 19144, + "model_id": 19142, + "year": "2013" + }, + { + "id": 19145, + "model_id": 19145, + "year": "2003" + }, + { + "id": 19146, + "model_id": 19145, + "year": "2004" + }, + { + "id": 19147, + "model_id": 19145, + "year": "2006" + }, + { + "id": 19148, + "model_id": 19145, + "year": "2007" + }, + { + "id": 19149, + "model_id": 19145, + "year": "2008" + }, + { + "id": 19150, + "model_id": 19145, + "year": "2009" + }, + { + "id": 19151, + "model_id": 19145, + "year": "2010" + }, + { + "id": 19152, + "model_id": 19152, + "year": "2008" + }, + { + "id": 19153, + "model_id": 19152, + "year": "2009" + }, + { + "id": 19154, + "model_id": 19152, + "year": "2010" + }, + { + "id": 19155, + "model_id": 19155, + "year": "2011" + }, + { + "id": 19156, + "model_id": 19155, + "year": "2012" + }, + { + "id": 19157, + "model_id": 19155, + "year": "2013" + }, + { + "id": 19158, + "model_id": 19158, + "year": "2011" + }, + { + "id": 19159, + "model_id": 19158, + "year": "2012" + }, + { + "id": 19160, + "model_id": 19158, + "year": "2013" + }, + { + "id": 19161, + "model_id": 19161, + "year": "2015" + }, + { + "id": 19163, + "model_id": 19163, + "year": "1990" + }, + { + "id": 19164, + "model_id": 19163, + "year": "1991" + }, + { + "id": 19165, + "model_id": 19163, + "year": "1992" + }, + { + "id": 19166, + "model_id": 19163, + "year": "1993" + }, + { + "id": 19167, + "model_id": 19163, + "year": "1994" + }, + { + "id": 19168, + "model_id": 19163, + "year": "1995" + }, + { + "id": 19169, + "model_id": 19163, + "year": "1996" + }, + { + "id": 19170, + "model_id": 19163, + "year": "1997" + }, + { + "id": 19171, + "model_id": 19163, + "year": "1998" + }, + { + "id": 19172, + "model_id": 19163, + "year": "1999" + }, + { + "id": 19173, + "model_id": 19163, + "year": "2000" + }, + { + "id": 19174, + "model_id": 19163, + "year": "2001" + }, + { + "id": 19175, + "model_id": 19163, + "year": "2002" + }, + { + "id": 19176, + "model_id": 19163, + "year": "2003" + }, + { + "id": 19177, + "model_id": 19163, + "year": "2004" + }, + { + "id": 19178, + "model_id": 19163, + "year": "2005" + }, + { + "id": 19179, + "model_id": 19163, + "year": "2006" + }, + { + "id": 19180, + "model_id": 19180, + "year": "1991" + }, + { + "id": 19181, + "model_id": 19180, + "year": "1992" + }, + { + "id": 19182, + "model_id": 19180, + "year": "1993" + }, + { + "id": 19183, + "model_id": 19180, + "year": "1994" + }, + { + "id": 19184, + "model_id": 19180, + "year": "1995" + }, + { + "id": 19185, + "model_id": 19185, + "year": "2006" + }, + { + "id": 19186, + "model_id": 19186, + "year": "2014" + }, + { + "id": 19188, + "model_id": 19186, + "year": "2015" + }, + { + "id": 19190, + "model_id": 19186, + "year": "2016" + }, + { + "id": 19194, + "model_id": 19194, + "year": "2014" + }, + { + "id": 19196, + "model_id": 19194, + "year": "2015" + }, + { + "id": 19198, + "model_id": 19194, + "year": "2016" + }, + { + "id": 19200, + "model_id": 19200, + "year": "2014" + }, + { + "id": 19202, + "model_id": 19200, + "year": "2015" + }, + { + "id": 19204, + "model_id": 19204, + "year": "2016" + }, + { + "id": 19206, + "model_id": 19206, + "year": "2014" + }, + { + "id": 19208, + "model_id": 19206, + "year": "2015" + }, + { + "id": 19210, + "model_id": 19210, + "year": "2016" + }, + { + "id": 19211, + "model_id": 19211, + "year": "2016" + }, + { + "id": 19212, + "model_id": 19212, + "year": "2015" + }, + { + "id": 19215, + "model_id": 19215, + "year": "2014" + }, + { + "id": 19217, + "model_id": 19215, + "year": "2015" + }, + { + "id": 19219, + "model_id": 19219, + "year": "2014" + }, + { + "id": 19222, + "model_id": 19222, + "year": "2014" + }, + { + "id": 19226, + "model_id": 19222, + "year": "2015" + }, + { + "id": 19230, + "model_id": 19222, + "year": "2016" + }, + { + "id": 19234, + "model_id": 19234, + "year": "2014" + }, + { + "id": 19235, + "model_id": 19234, + "year": "2015" + }, + { + "id": 19236, + "model_id": 19234, + "year": "2016" + }, + { + "id": 19237, + "model_id": 19237, + "year": "1997" + }, + { + "id": 19238, + "model_id": 19237, + "year": "1998" + }, + { + "id": 19239, + "model_id": 19237, + "year": "1999" + }, + { + "id": 19241, + "model_id": 19237, + "year": "2000" + }, + { + "id": 19242, + "model_id": 19237, + "year": "2001" + }, + { + "id": 19244, + "model_id": 19237, + "year": "2002" + }, + { + "id": 19246, + "model_id": 19237, + "year": "2003" + }, + { + "id": 19248, + "model_id": 19248, + "year": "2014" + }, + { + "id": 19250, + "model_id": 19248, + "year": "2015" + }, + { + "id": 19252, + "model_id": 19248, + "year": "2016" + }, + { + "id": 19254, + "model_id": 19254, + "year": "2004" + }, + { + "id": 19256, + "model_id": 19254, + "year": "2005" + }, + { + "id": 19258, + "model_id": 19254, + "year": "2006" + }, + { + "id": 19260, + "model_id": 19254, + "year": "2007" + }, + { + "id": 19262, + "model_id": 19254, + "year": "2008" + }, + { + "id": 19264, + "model_id": 19254, + "year": "2009" + }, + { + "id": 19266, + "model_id": 19254, + "year": "2010" + }, + { + "id": 19268, + "model_id": 19254, + "year": "2011" + }, + { + "id": 19270, + "model_id": 19254, + "year": "2012" + }, + { + "id": 19272, + "model_id": 19254, + "year": "2013" + }, + { + "id": 19274, + "model_id": 19274, + "year": "2014" + }, + { + "id": 19276, + "model_id": 19274, + "year": "2015" + }, + { + "id": 19278, + "model_id": 19274, + "year": "2016" + }, + { + "id": 19280, + "model_id": 19280, + "year": "2014" + }, + { + "id": 19282, + "model_id": 19280, + "year": "2015" + }, + { + "id": 19284, + "model_id": 19280, + "year": "2016" + }, + { + "id": 19286, + "model_id": 19286, + "year": "2014" + }, + { + "id": 19288, + "model_id": 19286, + "year": "2015" + }, + { + "id": 19289, + "model_id": 19286, + "year": "2016" + }, + { + "id": 19290, + "model_id": 19290, + "year": "2014" + }, + { + "id": 19291, + "model_id": 19290, + "year": "2015" + }, + { + "id": 19292, + "model_id": 19290, + "year": "2016" + }, + { + "id": 19293, + "model_id": 19293, + "year": "2014" + }, + { + "id": 19295, + "model_id": 19293, + "year": "2015" + }, + { + "id": 19297, + "model_id": 19293, + "year": "2016" + }, + { + "id": 19299, + "model_id": 19299, + "year": "2015" + }, + { + "id": 19300, + "model_id": 19300, + "year": "1992" + }, + { + "id": 19301, + "model_id": 19301, + "year": "1985" + }, + { + "id": 19303, + "model_id": 19303, + "year": "1989" + }, + { + "id": 19306, + "model_id": 19303, + "year": "1990" + }, + { + "id": 19309, + "model_id": 19303, + "year": "1991" + }, + { + "id": 19312, + "model_id": 19303, + "year": "1992" + }, + { + "id": 19316, + "model_id": 19303, + "year": "1993" + }, + { + "id": 19320, + "model_id": 19303, + "year": "1994" + }, + { + "id": 19322, + "model_id": 19303, + "year": "1998" + }, + { + "id": 19325, + "model_id": 19303, + "year": "1999" + }, + { + "id": 19330, + "model_id": 19303, + "year": "2000" + }, + { + "id": 19334, + "model_id": 19334, + "year": "2003" + }, + { + "id": 19338, + "model_id": 19334, + "year": "2004" + }, + { + "id": 19342, + "model_id": 19342, + "year": "2004" + }, + { + "id": 19344, + "model_id": 19342, + "year": "2005" + }, + { + "id": 19346, + "model_id": 19342, + "year": "2006" + }, + { + "id": 19348, + "model_id": 19342, + "year": "2007" + }, + { + "id": 19350, + "model_id": 19342, + "year": "2008" + }, + { + "id": 19352, + "model_id": 19342, + "year": "2009" + }, + { + "id": 19353, + "model_id": 19353, + "year": "2005" + }, + { + "id": 19357, + "model_id": 19353, + "year": "2006" + }, + { + "id": 19361, + "model_id": 19353, + "year": "2007" + }, + { + "id": 19362, + "model_id": 19362, + "year": "2002" + }, + { + "id": 19364, + "model_id": 19362, + "year": "2003" + }, + { + "id": 19366, + "model_id": 19362, + "year": "2004" + }, + { + "id": 19368, + "model_id": 19368, + "year": "1996" + }, + { + "id": 19369, + "model_id": 19368, + "year": "1997" + }, + { + "id": 19372, + "model_id": 19368, + "year": "1998" + }, + { + "id": 19378, + "model_id": 19368, + "year": "1999" + }, + { + "id": 19384, + "model_id": 19368, + "year": "2000" + }, + { + "id": 19391, + "model_id": 19368, + "year": "2001" + }, + { + "id": 19393, + "model_id": 19393, + "year": "2001" + }, + { + "id": 19395, + "model_id": 19393, + "year": "2002" + }, + { + "id": 19397, + "model_id": 19397, + "year": "2006" + }, + { + "id": 19399, + "model_id": 19399, + "year": "2007" + }, + { + "id": 19401, + "model_id": 19399, + "year": "2008" + }, + { + "id": 19403, + "model_id": 19403, + "year": "2006" + }, + { + "id": 19404, + "model_id": 19404, + "year": "2007" + }, + { + "id": 19406, + "model_id": 19404, + "year": "2008" + }, + { + "id": 19408, + "model_id": 19408, + "year": "2007" + }, + { + "id": 19409, + "model_id": 19408, + "year": "2008" + }, + { + "id": 19410, + "model_id": 19410, + "year": "1984" + }, + { + "id": 19419, + "model_id": 19410, + "year": "1985" + }, + { + "id": 19423, + "model_id": 19410, + "year": "1986" + }, + { + "id": 19426, + "model_id": 19410, + "year": "1987" + }, + { + "id": 19430, + "model_id": 19410, + "year": "1988" + }, + { + "id": 19434, + "model_id": 19410, + "year": "1989" + }, + { + "id": 19439, + "model_id": 19439, + "year": "1984" + }, + { + "id": 19443, + "model_id": 19439, + "year": "1985" + }, + { + "id": 19449, + "model_id": 19439, + "year": "1986" + }, + { + "id": 19455, + "model_id": 19439, + "year": "1987" + }, + { + "id": 19459, + "model_id": 19439, + "year": "1988" + }, + { + "id": 19463, + "model_id": 19439, + "year": "1989" + }, + { + "id": 19467, + "model_id": 19439, + "year": "1990" + }, + { + "id": 19470, + "model_id": 19439, + "year": "1991" + }, + { + "id": 19473, + "model_id": 19439, + "year": "1992" + }, + { + "id": 19476, + "model_id": 19439, + "year": "1993" + }, + { + "id": 19478, + "model_id": 19478, + "year": "1996" + }, + { + "id": 19479, + "model_id": 19478, + "year": "1997" + }, + { + "id": 19480, + "model_id": 19478, + "year": "1998" + }, + { + "id": 19481, + "model_id": 19478, + "year": "1999" + }, + { + "id": 19482, + "model_id": 19482, + "year": "1984" + }, + { + "id": 19497, + "model_id": 19482, + "year": "1985" + }, + { + "id": 19511, + "model_id": 19482, + "year": "1986" + }, + { + "id": 19524, + "model_id": 19482, + "year": "1987" + }, + { + "id": 19536, + "model_id": 19482, + "year": "1988" + }, + { + "id": 19541, + "model_id": 19482, + "year": "1989" + }, + { + "id": 19545, + "model_id": 19482, + "year": "1990" + }, + { + "id": 19549, + "model_id": 19482, + "year": "1991" + }, + { + "id": 19554, + "model_id": 19482, + "year": "1992" + }, + { + "id": 19559, + "model_id": 19482, + "year": "1993" + }, + { + "id": 19564, + "model_id": 19482, + "year": "1994" + }, + { + "id": 19570, + "model_id": 19482, + "year": "1995" + }, + { + "id": 19573, + "model_id": 19573, + "year": "1988" + }, + { + "id": 19574, + "model_id": 19573, + "year": "1989" + }, + { + "id": 19575, + "model_id": 19573, + "year": "1990" + }, + { + "id": 19576, + "model_id": 19573, + "year": "1991" + }, + { + "id": 19577, + "model_id": 19573, + "year": "1992" + }, + { + "id": 19578, + "model_id": 19578, + "year": "1991" + }, + { + "id": 19583, + "model_id": 19578, + "year": "1992" + }, + { + "id": 19588, + "model_id": 19578, + "year": "1993" + }, + { + "id": 19593, + "model_id": 19578, + "year": "1994" + }, + { + "id": 19598, + "model_id": 19578, + "year": "1995" + }, + { + "id": 19603, + "model_id": 19578, + "year": "1996" + }, + { + "id": 19608, + "model_id": 19578, + "year": "1997" + }, + { + "id": 19613, + "model_id": 19578, + "year": "1998" + }, + { + "id": 19618, + "model_id": 19578, + "year": "1999" + }, + { + "id": 19623, + "model_id": 19578, + "year": "2000" + }, + { + "id": 19628, + "model_id": 19578, + "year": "2001" + }, + { + "id": 19634, + "model_id": 19578, + "year": "2002" + }, + { + "id": 19640, + "model_id": 19578, + "year": "2003" + }, + { + "id": 19645, + "model_id": 19578, + "year": "2004" + }, + { + "id": 19651, + "model_id": 19651, + "year": "2001" + }, + { + "id": 19656, + "model_id": 19651, + "year": "2002" + }, + { + "id": 19661, + "model_id": 19651, + "year": "2003" + }, + { + "id": 19665, + "model_id": 19665, + "year": "1990" + }, + { + "id": 19668, + "model_id": 19665, + "year": "1991" + }, + { + "id": 19671, + "model_id": 19665, + "year": "1992" + }, + { + "id": 19674, + "model_id": 19665, + "year": "1993" + }, + { + "id": 19677, + "model_id": 19677, + "year": "1984" + }, + { + "id": 19679, + "model_id": 19677, + "year": "1985" + }, + { + "id": 19680, + "model_id": 19677, + "year": "1986" + }, + { + "id": 19683, + "model_id": 19677, + "year": "1987" + }, + { + "id": 19686, + "model_id": 19677, + "year": "1988" + }, + { + "id": 19688, + "model_id": 19677, + "year": "1989" + }, + { + "id": 19691, + "model_id": 19677, + "year": "1990" + }, + { + "id": 19695, + "model_id": 19677, + "year": "1991" + }, + { + "id": 19699, + "model_id": 19677, + "year": "1992" + }, + { + "id": 19703, + "model_id": 19677, + "year": "1993" + }, + { + "id": 19707, + "model_id": 19677, + "year": "1994" + }, + { + "id": 19711, + "model_id": 19677, + "year": "1995" + }, + { + "id": 19715, + "model_id": 19677, + "year": "1996" + }, + { + "id": 19717, + "model_id": 19677, + "year": "1997" + }, + { + "id": 19719, + "model_id": 19677, + "year": "1998" + }, + { + "id": 19721, + "model_id": 19677, + "year": "1999" + }, + { + "id": 19723, + "model_id": 19677, + "year": "2000" + }, + { + "id": 19726, + "model_id": 19677, + "year": "2001" + }, + { + "id": 19729, + "model_id": 19677, + "year": "2002" + }, + { + "id": 19732, + "model_id": 19732, + "year": "1999" + }, + { + "id": 19733, + "model_id": 19732, + "year": "2000" + }, + { + "id": 19734, + "model_id": 19732, + "year": "2001" + }, + { + "id": 19735, + "model_id": 19735, + "year": "1993" + }, + { + "id": 19736, + "model_id": 19736, + "year": "1993" + }, + { + "id": 19737, + "model_id": 19737, + "year": "1992" + }, + { + "id": 19738, + "model_id": 19738, + "year": "1992" + }, + { + "id": 19739, + "model_id": 19739, + "year": "1992" + }, + { + "id": 19740, + "model_id": 19739, + "year": "1993" + }, + { + "id": 19741, + "model_id": 19741, + "year": "1992" + }, + { + "id": 19742, + "model_id": 19742, + "year": "1992" + }, + { + "id": 19743, + "model_id": 19743, + "year": "1992" + }, + { + "id": 19744, + "model_id": 19743, + "year": "1993" + }, + { + "id": 19745, + "model_id": 19745, + "year": "1992" + }, + { + "id": 19746, + "model_id": 19745, + "year": "1993" + }, + { + "id": 19747, + "model_id": 19747, + "year": "1992" + }, + { + "id": 19748, + "model_id": 19747, + "year": "1993" + }, + { + "id": 19749, + "model_id": 19749, + "year": "1992" + }, + { + "id": 19750, + "model_id": 19749, + "year": "1993" + }, + { + "id": 19751, + "model_id": 19751, + "year": "1992" + }, + { + "id": 19752, + "model_id": 19751, + "year": "1993" + }, + { + "id": 19753, + "model_id": 19753, + "year": "1992" + }, + { + "id": 19754, + "model_id": 19753, + "year": "1993" + }, + { + "id": 19755, + "model_id": 19755, + "year": "1992" + }, + { + "id": 19756, + "model_id": 19755, + "year": "1993" + }, + { + "id": 19757, + "model_id": 19757, + "year": "1992" + }, + { + "id": 19758, + "model_id": 19757, + "year": "1993" + }, + { + "id": 19759, + "model_id": 19759, + "year": "1992" + }, + { + "id": 19760, + "model_id": 19759, + "year": "1993" + }, + { + "id": 19761, + "model_id": 19761, + "year": "1992" + }, + { + "id": 19762, + "model_id": 19761, + "year": "1993" + }, + { + "id": 19763, + "model_id": 19763, + "year": "1993" + }, + { + "id": 19764, + "model_id": 19764, + "year": "1992" + }, + { + "id": 19765, + "model_id": 19765, + "year": "1993" + }, + { + "id": 19766, + "model_id": 19766, + "year": "1991" + }, + { + "id": 19768, + "model_id": 19766, + "year": "1992" + }, + { + "id": 19769, + "model_id": 19766, + "year": "1993" + }, + { + "id": 19771, + "model_id": 19771, + "year": "2017" + }, + { + "id": 19772, + "model_id": 19772, + "year": "2014" + }, + { + "id": 19773, + "model_id": 19772, + "year": "2015" + }, + { + "id": 19774, + "model_id": 19772, + "year": "2016" + }, + { + "id": 19776, + "model_id": 19772, + "year": "2017" + }, + { + "id": 19778, + "model_id": 19778, + "year": "2015" + }, + { + "id": 19779, + "model_id": 19778, + "year": "2016" + }, + { + "id": 19781, + "model_id": 19778, + "year": "2017" + }, + { + "id": 19783, + "model_id": 19783, + "year": "2016" + }, + { + "id": 19785, + "model_id": 19783, + "year": "2017" + }, + { + "id": 19786, + "model_id": 19786, + "year": "2015" + }, + { + "id": 19787, + "model_id": 19786, + "year": "2016" + }, + { + "id": 19788, + "model_id": 19786, + "year": "2017" + }, + { + "id": 19789, + "model_id": 19789, + "year": "2014" + }, + { + "id": 19790, + "model_id": 19789, + "year": "2015" + }, + { + "id": 19791, + "model_id": 19789, + "year": "2016" + }, + { + "id": 19794, + "model_id": 19789, + "year": "2017" + }, + { + "id": 19797, + "model_id": 19797, + "year": "2015" + }, + { + "id": 19798, + "model_id": 19797, + "year": "2016" + }, + { + "id": 19801, + "model_id": 19797, + "year": "2017" + }, + { + "id": 19804, + "model_id": 19804, + "year": "2014" + }, + { + "id": 19805, + "model_id": 19804, + "year": "2015" + }, + { + "id": 19806, + "model_id": 19806, + "year": "2001" + }, + { + "id": 19808, + "model_id": 19806, + "year": "2002" + }, + { + "id": 19810, + "model_id": 19810, + "year": "2000" + }, + { + "id": 19811, + "model_id": 19811, + "year": "2000" + }, + { + "id": 19812, + "model_id": 19812, + "year": "2003" + }, + { + "id": 19814, + "model_id": 19812, + "year": "2004" + }, + { + "id": 19816, + "model_id": 19812, + "year": "2005" + }, + { + "id": 19818, + "model_id": 19812, + "year": "2006" + }, + { + "id": 19819, + "model_id": 19812, + "year": "2007" + }, + { + "id": 19820, + "model_id": 19812, + "year": "2008" + }, + { + "id": 19821, + "model_id": 19821, + "year": "2003" + }, + { + "id": 19822, + "model_id": 19821, + "year": "2004" + }, + { + "id": 19823, + "model_id": 19821, + "year": "2005" + }, + { + "id": 19824, + "model_id": 19821, + "year": "2006" + }, + { + "id": 19825, + "model_id": 19821, + "year": "2007" + }, + { + "id": 19826, + "model_id": 19821, + "year": "2008" + }, + { + "id": 19827, + "model_id": 19827, + "year": "2003" + }, + { + "id": 19828, + "model_id": 19827, + "year": "2004" + }, + { + "id": 19829, + "model_id": 19827, + "year": "2005" + }, + { + "id": 19830, + "model_id": 19827, + "year": "2006" + }, + { + "id": 19831, + "model_id": 19827, + "year": "2007" + }, + { + "id": 19832, + "model_id": 19827, + "year": "2008" + }, + { + "id": 19833, + "model_id": 19833, + "year": "2002" + }, + { + "id": 19834, + "model_id": 19833, + "year": "2003" + }, + { + "id": 19835, + "model_id": 19833, + "year": "2005" + }, + { + "id": 19836, + "model_id": 19833, + "year": "2006" + }, + { + "id": 19837, + "model_id": 19833, + "year": "2007" + }, + { + "id": 19838, + "model_id": 19833, + "year": "2008" + }, + { + "id": 19839, + "model_id": 19833, + "year": "2009" + }, + { + "id": 19840, + "model_id": 19840, + "year": "1996" + }, + { + "id": 19841, + "model_id": 19840, + "year": "1997" + }, + { + "id": 19842, + "model_id": 19840, + "year": "1998" + }, + { + "id": 19843, + "model_id": 19840, + "year": "1999" + }, + { + "id": 19844, + "model_id": 19840, + "year": "2000" + }, + { + "id": 19845, + "model_id": 19840, + "year": "2001" + }, + { + "id": 19846, + "model_id": 19840, + "year": "2002" + }, + { + "id": 19847, + "model_id": 19840, + "year": "2003" + }, + { + "id": 19848, + "model_id": 19848, + "year": "1999" + }, + { + "id": 19849, + "model_id": 19849, + "year": "2000" + }, + { + "id": 19850, + "model_id": 19849, + "year": "2001" + }, + { + "id": 19851, + "model_id": 19851, + "year": "2009" + }, + { + "id": 19852, + "model_id": 19852, + "year": "2004" + }, + { + "id": 19853, + "model_id": 19853, + "year": "2005" + }, + { + "id": 19854, + "model_id": 19853, + "year": "2006" + }, + { + "id": 19855, + "model_id": 19853, + "year": "2007" + }, + { + "id": 19856, + "model_id": 19853, + "year": "2008" + }, + { + "id": 19857, + "model_id": 19857, + "year": "2002" + }, + { + "id": 19861, + "model_id": 19857, + "year": "2003" + }, + { + "id": 19865, + "model_id": 19857, + "year": "2004" + }, + { + "id": 19867, + "model_id": 19857, + "year": "2005" + }, + { + "id": 19871, + "model_id": 19857, + "year": "2006" + }, + { + "id": 19873, + "model_id": 19857, + "year": "2007" + }, + { + "id": 19874, + "model_id": 19857, + "year": "2008" + }, + { + "id": 19875, + "model_id": 19875, + "year": "2005" + }, + { + "id": 19879, + "model_id": 19875, + "year": "2006" + }, + { + "id": 19881, + "model_id": 19875, + "year": "2007" + }, + { + "id": 19882, + "model_id": 19875, + "year": "2008" + }, + { + "id": 19883, + "model_id": 19883, + "year": "2017" + }, + { + "id": 19886, + "model_id": 19886, + "year": "2009" + }, + { + "id": 19887, + "model_id": 19886, + "year": "2010" + }, + { + "id": 19890, + "model_id": 19886, + "year": "2011" + }, + { + "id": 19892, + "model_id": 19886, + "year": "2012" + }, + { + "id": 19894, + "model_id": 19886, + "year": "2013" + }, + { + "id": 19899, + "model_id": 19886, + "year": "2014" + }, + { + "id": 19904, + "model_id": 19886, + "year": "2015" + }, + { + "id": 19909, + "model_id": 19886, + "year": "2016" + }, + { + "id": 19911, + "model_id": 19886, + "year": "2017" + }, + { + "id": 19913, + "model_id": 19913, + "year": "2009" + }, + { + "id": 19914, + "model_id": 19914, + "year": "1984" + }, + { + "id": 19916, + "model_id": 19914, + "year": "1985" + }, + { + "id": 19917, + "model_id": 19914, + "year": "2009" + }, + { + "id": 19918, + "model_id": 19914, + "year": "2010" + }, + { + "id": 19921, + "model_id": 19914, + "year": "2011" + }, + { + "id": 19923, + "model_id": 19914, + "year": "2012" + }, + { + "id": 19925, + "model_id": 19914, + "year": "2013" + }, + { + "id": 19929, + "model_id": 19914, + "year": "2014" + }, + { + "id": 19933, + "model_id": 19914, + "year": "2015" + }, + { + "id": 19937, + "model_id": 19914, + "year": "2016" + }, + { + "id": 19940, + "model_id": 19940, + "year": "2011" + }, + { + "id": 19942, + "model_id": 19940, + "year": "2012" + }, + { + "id": 19944, + "model_id": 19940, + "year": "2013" + }, + { + "id": 19948, + "model_id": 19948, + "year": "2002" + }, + { + "id": 19949, + "model_id": 19948, + "year": "2003" + }, + { + "id": 19950, + "model_id": 19950, + "year": "1988" + }, + { + "id": 19951, + "model_id": 19951, + "year": "1987" + }, + { + "id": 19952, + "model_id": 19951, + "year": "1988" + }, + { + "id": 19953, + "model_id": 19953, + "year": "1994" + }, + { + "id": 19954, + "model_id": 19953, + "year": "1995" + }, + { + "id": 19955, + "model_id": 19953, + "year": "1996" + }, + { + "id": 19956, + "model_id": 19956, + "year": "1986" + }, + { + "id": 19957, + "model_id": 19956, + "year": "1987" + }, + { + "id": 19958, + "model_id": 19956, + "year": "1988" + }, + { + "id": 19960, + "model_id": 19956, + "year": "1989" + }, + { + "id": 19961, + "model_id": 19956, + "year": "1990" + }, + { + "id": 19962, + "model_id": 19956, + "year": "1991" + }, + { + "id": 19963, + "model_id": 19956, + "year": "1992" + }, + { + "id": 19964, + "model_id": 19956, + "year": "1993" + }, + { + "id": 19965, + "model_id": 19956, + "year": "1994" + }, + { + "id": 19966, + "model_id": 19956, + "year": "1995" + }, + { + "id": 19967, + "model_id": 19956, + "year": "1996" + }, + { + "id": 19968, + "model_id": 19956, + "year": "1997" + }, + { + "id": 19969, + "model_id": 19969, + "year": "1997" + }, + { + "id": 19970, + "model_id": 19970, + "year": "1998" + }, + { + "id": 19971, + "model_id": 19970, + "year": "1999" + }, + { + "id": 19972, + "model_id": 19970, + "year": "2000" + }, + { + "id": 19973, + "model_id": 19970, + "year": "2001" + }, + { + "id": 19974, + "model_id": 19970, + "year": "2002" + }, + { + "id": 19975, + "model_id": 19970, + "year": "2003" + }, + { + "id": 19976, + "model_id": 19970, + "year": "2006" + }, + { + "id": 19977, + "model_id": 19970, + "year": "2007" + }, + { + "id": 19978, + "model_id": 19970, + "year": "2008" + }, + { + "id": 19979, + "model_id": 19979, + "year": "2004" + }, + { + "id": 19980, + "model_id": 19979, + "year": "2005" + }, + { + "id": 19981, + "model_id": 19981, + "year": "1998" + }, + { + "id": 19982, + "model_id": 19981, + "year": "1999" + }, + { + "id": 19983, + "model_id": 19981, + "year": "2000" + }, + { + "id": 19984, + "model_id": 19981, + "year": "2001" + }, + { + "id": 19985, + "model_id": 19985, + "year": "2005" + }, + { + "id": 19986, + "model_id": 19981, + "year": "2006" + }, + { + "id": 19987, + "model_id": 19981, + "year": "2007" + }, + { + "id": 19988, + "model_id": 19981, + "year": "2008" + }, + { + "id": 19989, + "model_id": 19981, + "year": "2009" + }, + { + "id": 19990, + "model_id": 19990, + "year": "2013" + }, + { + "id": 19992, + "model_id": 19990, + "year": "2014" + }, + { + "id": 19996, + "model_id": 19990, + "year": "2015" + }, + { + "id": 20000, + "model_id": 19990, + "year": "2016" + }, + { + "id": 20003, + "model_id": 20003, + "year": "1995" + }, + { + "id": 20004, + "model_id": 20003, + "year": "1996" + }, + { + "id": 20005, + "model_id": 20003, + "year": "1998" + }, + { + "id": 20006, + "model_id": 20003, + "year": "1999" + }, + { + "id": 20007, + "model_id": 20003, + "year": "2000" + }, + { + "id": 20008, + "model_id": 20003, + "year": "2001" + }, + { + "id": 20009, + "model_id": 20003, + "year": "2002" + }, + { + "id": 20010, + "model_id": 20003, + "year": "2003" + }, + { + "id": 20011, + "model_id": 20003, + "year": "2006" + }, + { + "id": 20012, + "model_id": 20003, + "year": "2007" + }, + { + "id": 20013, + "model_id": 20003, + "year": "2008" + }, + { + "id": 20014, + "model_id": 20003, + "year": "2009" + }, + { + "id": 20015, + "model_id": 20015, + "year": "2004" + }, + { + "id": 20016, + "model_id": 20015, + "year": "2005" + }, + { + "id": 20017, + "model_id": 20017, + "year": "1993" + }, + { + "id": 20018, + "model_id": 20018, + "year": "1993" + }, + { + "id": 20019, + "model_id": 20019, + "year": "1984" + }, + { + "id": 20020, + "model_id": 20019, + "year": "1985" + }, + { + "id": 20021, + "model_id": 20019, + "year": "1986" + }, + { + "id": 20022, + "model_id": 20019, + "year": "1987" + }, + { + "id": 20023, + "model_id": 20023, + "year": "1989" + }, + { + "id": 20025, + "model_id": 20023, + "year": "1990" + }, + { + "id": 20026, + "model_id": 20023, + "year": "1991" + }, + { + "id": 20027, + "model_id": 20023, + "year": "1992" + }, + { + "id": 20028, + "model_id": 20023, + "year": "1993" + }, + { + "id": 20030, + "model_id": 20023, + "year": "1994" + }, + { + "id": 20033, + "model_id": 20023, + "year": "1995" + }, + { + "id": 20034, + "model_id": 20023, + "year": "1996" + }, + { + "id": 20035, + "model_id": 20035, + "year": "1989" + }, + { + "id": 20037, + "model_id": 20035, + "year": "1990" + }, + { + "id": 20038, + "model_id": 20035, + "year": "1991" + }, + { + "id": 20039, + "model_id": 20035, + "year": "1992" + }, + { + "id": 20040, + "model_id": 20035, + "year": "1993" + }, + { + "id": 20042, + "model_id": 20035, + "year": "1994" + }, + { + "id": 20044, + "model_id": 20035, + "year": "1995" + }, + { + "id": 20045, + "model_id": 20045, + "year": "1995" + }, + { + "id": 20046, + "model_id": 20046, + "year": "1994" + }, + { + "id": 20047, + "model_id": 20046, + "year": "1995" + }, + { + "id": 20048, + "model_id": 20048, + "year": "2007" + }, + { + "id": 20049, + "model_id": 20048, + "year": "2008" + }, + { + "id": 20050, + "model_id": 20048, + "year": "2009" + }, + { + "id": 20051, + "model_id": 20048, + "year": "2010" + }, + { + "id": 20053, + "model_id": 20048, + "year": "2011" + }, + { + "id": 20055, + "model_id": 20048, + "year": "2012" + }, + { + "id": 20057, + "model_id": 20048, + "year": "2013" + }, + { + "id": 20059, + "model_id": 20048, + "year": "2014" + }, + { + "id": 20061, + "model_id": 20048, + "year": "2015" + }, + { + "id": 20063, + "model_id": 20063, + "year": "2007" + }, + { + "id": 20064, + "model_id": 20063, + "year": "2008" + }, + { + "id": 20065, + "model_id": 20063, + "year": "2009" + }, + { + "id": 20066, + "model_id": 20063, + "year": "2010" + }, + { + "id": 20067, + "model_id": 20063, + "year": "2011" + }, + { + "id": 20069, + "model_id": 20063, + "year": "2012" + }, + { + "id": 20071, + "model_id": 20063, + "year": "2013" + }, + { + "id": 20073, + "model_id": 20063, + "year": "2014" + }, + { + "id": 20075, + "model_id": 20063, + "year": "2015" + }, + { + "id": 20077, + "model_id": 20077, + "year": "1998" + }, + { + "id": 20078, + "model_id": 20077, + "year": "1999" + }, + { + "id": 20079, + "model_id": 20077, + "year": "2000" + }, + { + "id": 20080, + "model_id": 20077, + "year": "2001" + }, + { + "id": 20081, + "model_id": 20077, + "year": "2002" + }, + { + "id": 20082, + "model_id": 20077, + "year": "2003" + }, + { + "id": 20083, + "model_id": 20077, + "year": "2004" + }, + { + "id": 20084, + "model_id": 20077, + "year": "2005" + }, + { + "id": 20085, + "model_id": 20077, + "year": "2006" + }, + { + "id": 20086, + "model_id": 20086, + "year": "1998" + }, + { + "id": 20087, + "model_id": 20086, + "year": "1999" + }, + { + "id": 20088, + "model_id": 20086, + "year": "2000" + }, + { + "id": 20089, + "model_id": 20086, + "year": "2001" + }, + { + "id": 20090, + "model_id": 20086, + "year": "2002" + }, + { + "id": 20091, + "model_id": 20086, + "year": "2003" + }, + { + "id": 20092, + "model_id": 20086, + "year": "2004" + }, + { + "id": 20093, + "model_id": 20086, + "year": "2005" + }, + { + "id": 20094, + "model_id": 20086, + "year": "2006" + }, + { + "id": 20095, + "model_id": 20095, + "year": "2000" + }, + { + "id": 20096, + "model_id": 20095, + "year": "2001" + }, + { + "id": 20097, + "model_id": 20095, + "year": "2002" + }, + { + "id": 20098, + "model_id": 20095, + "year": "2003" + }, + { + "id": 20099, + "model_id": 20095, + "year": "2004" + }, + { + "id": 20100, + "model_id": 20095, + "year": "2005" + }, + { + "id": 20101, + "model_id": 20095, + "year": "2006" + }, + { + "id": 20102, + "model_id": 20095, + "year": "2007" + }, + { + "id": 20103, + "model_id": 20095, + "year": "2008" + }, + { + "id": 20104, + "model_id": 20095, + "year": "2009" + }, + { + "id": 20105, + "model_id": 20105, + "year": "2000" + }, + { + "id": 20106, + "model_id": 20105, + "year": "2001" + }, + { + "id": 20107, + "model_id": 20105, + "year": "2002" + }, + { + "id": 20108, + "model_id": 20105, + "year": "2003" + }, + { + "id": 20109, + "model_id": 20105, + "year": "2004" + }, + { + "id": 20110, + "model_id": 20105, + "year": "2005" + }, + { + "id": 20111, + "model_id": 20105, + "year": "2006" + }, + { + "id": 20112, + "model_id": 20105, + "year": "2007" + }, + { + "id": 20113, + "model_id": 20105, + "year": "2008" + }, + { + "id": 20114, + "model_id": 20105, + "year": "2009" + }, + { + "id": 20115, + "model_id": 20115, + "year": "1988" + }, + { + "id": 20116, + "model_id": 20116, + "year": "1987" + }, + { + "id": 20121, + "model_id": 20116, + "year": "1988" + }, + { + "id": 20126, + "model_id": 20116, + "year": "1989" + }, + { + "id": 20131, + "model_id": 20116, + "year": "1990" + }, + { + "id": 20142, + "model_id": 20116, + "year": "1991" + }, + { + "id": 20148, + "model_id": 20116, + "year": "1992" + }, + { + "id": 20154, + "model_id": 20116, + "year": "1993" + }, + { + "id": 20160, + "model_id": 20116, + "year": "1994" + }, + { + "id": 20167, + "model_id": 20116, + "year": "1995" + }, + { + "id": 20175, + "model_id": 20116, + "year": "1996" + }, + { + "id": 20181, + "model_id": 20116, + "year": "1997" + }, + { + "id": 20187, + "model_id": 20116, + "year": "1998" + }, + { + "id": 20194, + "model_id": 20116, + "year": "1999" + }, + { + "id": 20201, + "model_id": 20116, + "year": "2000" + }, + { + "id": 20208, + "model_id": 20116, + "year": "2001" + }, + { + "id": 20212, + "model_id": 20116, + "year": "2014" + }, + { + "id": 20216, + "model_id": 20116, + "year": "2015" + }, + { + "id": 20222, + "model_id": 20116, + "year": "2016" + }, + { + "id": 20228, + "model_id": 20228, + "year": "2014" + }, + { + "id": 20230, + "model_id": 20228, + "year": "2015" + }, + { + "id": 20232, + "model_id": 20228, + "year": "2016" + }, + { + "id": 20234, + "model_id": 20234, + "year": "2014" + }, + { + "id": 20236, + "model_id": 20234, + "year": "2015" + }, + { + "id": 20238, + "model_id": 20234, + "year": "2016" + }, + { + "id": 20240, + "model_id": 20240, + "year": "1984" + }, + { + "id": 20251, + "model_id": 20240, + "year": "1985" + }, + { + "id": 20275, + "model_id": 20240, + "year": "1986" + }, + { + "id": 20289, + "model_id": 20240, + "year": "1987" + }, + { + "id": 20295, + "model_id": 20240, + "year": "1988" + }, + { + "id": 20300, + "model_id": 20240, + "year": "1989" + }, + { + "id": 20305, + "model_id": 20305, + "year": "1984" + }, + { + "id": 20317, + "model_id": 20305, + "year": "1985" + }, + { + "id": 20326, + "model_id": 20305, + "year": "1986" + }, + { + "id": 20331, + "model_id": 20331, + "year": "1984" + }, + { + "id": 20332, + "model_id": 20332, + "year": "1986" + }, + { + "id": 20346, + "model_id": 20332, + "year": "1987" + }, + { + "id": 20357, + "model_id": 20332, + "year": "1988" + }, + { + "id": 20367, + "model_id": 20367, + "year": "1989" + }, + { + "id": 20381, + "model_id": 20367, + "year": "1990" + }, + { + "id": 20395, + "model_id": 20367, + "year": "1991" + }, + { + "id": 20403, + "model_id": 20367, + "year": "1992" + }, + { + "id": 20411, + "model_id": 20367, + "year": "1993" + }, + { + "id": 20419, + "model_id": 20419, + "year": "2006" + }, + { + "id": 20425, + "model_id": 20419, + "year": "2007" + }, + { + "id": 20431, + "model_id": 20419, + "year": "2008" + }, + { + "id": 20437, + "model_id": 20419, + "year": "2009" + }, + { + "id": 20445, + "model_id": 20419, + "year": "2010" + }, + { + "id": 20449, + "model_id": 20449, + "year": "2007" + }, + { + "id": 20453, + "model_id": 20449, + "year": "2008" + }, + { + "id": 20458, + "model_id": 20449, + "year": "2009" + }, + { + "id": 20464, + "model_id": 20449, + "year": "2010" + }, + { + "id": 20470, + "model_id": 20449, + "year": "2011" + }, + { + "id": 20477, + "model_id": 20449, + "year": "2012" + }, + { + "id": 20484, + "model_id": 20449, + "year": "2013" + }, + { + "id": 20491, + "model_id": 20449, + "year": "2014" + }, + { + "id": 20499, + "model_id": 20449, + "year": "2015" + }, + { + "id": 20506, + "model_id": 20449, + "year": "2016" + }, + { + "id": 20513, + "model_id": 20513, + "year": "1993" + }, + { + "id": 20519, + "model_id": 20513, + "year": "1994" + }, + { + "id": 20523, + "model_id": 20513, + "year": "1995" + }, + { + "id": 20527, + "model_id": 20513, + "year": "1996" + }, + { + "id": 20530, + "model_id": 20513, + "year": "1997" + }, + { + "id": 20534, + "model_id": 20513, + "year": "1998" + }, + { + "id": 20539, + "model_id": 20513, + "year": "1999" + }, + { + "id": 20542, + "model_id": 20513, + "year": "2000" + }, + { + "id": 20546, + "model_id": 20513, + "year": "2001" + }, + { + "id": 20550, + "model_id": 20513, + "year": "2002" + }, + { + "id": 20554, + "model_id": 20513, + "year": "2003" + }, + { + "id": 20558, + "model_id": 20513, + "year": "2004" + }, + { + "id": 20562, + "model_id": 20513, + "year": "2005" + }, + { + "id": 20568, + "model_id": 20513, + "year": "2006" + }, + { + "id": 20575, + "model_id": 20513, + "year": "2007" + }, + { + "id": 20584, + "model_id": 20513, + "year": "2008" + }, + { + "id": 20593, + "model_id": 20513, + "year": "2009" + }, + { + "id": 20601, + "model_id": 20513, + "year": "2010" + }, + { + "id": 20605, + "model_id": 20513, + "year": "2011" + }, + { + "id": 20611, + "model_id": 20513, + "year": "2012" + }, + { + "id": 20615, + "model_id": 20513, + "year": "2013" + }, + { + "id": 20619, + "model_id": 20513, + "year": "2014" + }, + { + "id": 20625, + "model_id": 20513, + "year": "2015" + }, + { + "id": 20631, + "model_id": 20513, + "year": "2016" + }, + { + "id": 20636, + "model_id": 20636, + "year": "2009" + }, + { + "id": 20637, + "model_id": 20636, + "year": "2010" + }, + { + "id": 20638, + "model_id": 20636, + "year": "2012" + }, + { + "id": 20639, + "model_id": 20636, + "year": "2013" + }, + { + "id": 20640, + "model_id": 20636, + "year": "2014" + }, + { + "id": 20641, + "model_id": 20636, + "year": "2015" + }, + { + "id": 20642, + "model_id": 20636, + "year": "2016" + }, + { + "id": 20643, + "model_id": 20643, + "year": "1984" + }, + { + "id": 20649, + "model_id": 20643, + "year": "1985" + }, + { + "id": 20652, + "model_id": 20643, + "year": "1986" + }, + { + "id": 20655, + "model_id": 20643, + "year": "1987" + }, + { + "id": 20658, + "model_id": 20643, + "year": "1988" + }, + { + "id": 20659, + "model_id": 20643, + "year": "1989" + }, + { + "id": 20660, + "model_id": 20643, + "year": "1990" + }, + { + "id": 20661, + "model_id": 20643, + "year": "1991" + }, + { + "id": 20662, + "model_id": 20662, + "year": "1984" + }, + { + "id": 20669, + "model_id": 20669, + "year": "1985" + }, + { + "id": 20673, + "model_id": 20669, + "year": "1986" + }, + { + "id": 20676, + "model_id": 20669, + "year": "1987" + }, + { + "id": 20679, + "model_id": 20669, + "year": "1988" + }, + { + "id": 20681, + "model_id": 20681, + "year": "1985" + }, + { + "id": 20682, + "model_id": 20681, + "year": "1986" + }, + { + "id": 20683, + "model_id": 20681, + "year": "1987" + }, + { + "id": 20684, + "model_id": 20681, + "year": "1988" + }, + { + "id": 20685, + "model_id": 20685, + "year": "2002" + }, + { + "id": 20689, + "model_id": 20685, + "year": "2008" + }, + { + "id": 20693, + "model_id": 20685, + "year": "2009" + }, + { + "id": 20695, + "model_id": 20685, + "year": "2010" + }, + { + "id": 20697, + "model_id": 20685, + "year": "2011" + }, + { + "id": 20699, + "model_id": 20685, + "year": "2012" + }, + { + "id": 20701, + "model_id": 20701, + "year": "2003" + }, + { + "id": 20707, + "model_id": 20701, + "year": "2004" + }, + { + "id": 20713, + "model_id": 20701, + "year": "2005" + }, + { + "id": 20720, + "model_id": 20701, + "year": "2006" + }, + { + "id": 20725, + "model_id": 20701, + "year": "2007" + }, + { + "id": 20729, + "model_id": 20729, + "year": "2007" + }, + { + "id": 20734, + "model_id": 20729, + "year": "2008" + }, + { + "id": 20740, + "model_id": 20729, + "year": "2009" + }, + { + "id": 20747, + "model_id": 20729, + "year": "2010" + }, + { + "id": 20754, + "model_id": 20729, + "year": "2011" + }, + { + "id": 20761, + "model_id": 20729, + "year": "2012" + }, + { + "id": 20768, + "model_id": 20729, + "year": "2013" + }, + { + "id": 20775, + "model_id": 20729, + "year": "2014" + }, + { + "id": 20783, + "model_id": 20729, + "year": "2015" + }, + { + "id": 20790, + "model_id": 20729, + "year": "2016" + }, + { + "id": 20797, + "model_id": 20797, + "year": "2015" + }, + { + "id": 20801, + "model_id": 20797, + "year": "2016" + }, + { + "id": 20805, + "model_id": 20805, + "year": "1985" + }, + { + "id": 20814, + "model_id": 20805, + "year": "1986" + }, + { + "id": 20817, + "model_id": 20817, + "year": "1984" + }, + { + "id": 20829, + "model_id": 20829, + "year": "1990" + }, + { + "id": 20830, + "model_id": 20830, + "year": "1989" + }, + { + "id": 20831, + "model_id": 20831, + "year": "1987" + }, + { + "id": 20834, + "model_id": 20831, + "year": "1988" + }, + { + "id": 20837, + "model_id": 20831, + "year": "1989" + }, + { + "id": 20841, + "model_id": 20831, + "year": "1990" + }, + { + "id": 20845, + "model_id": 20831, + "year": "1991" + }, + { + "id": 20848, + "model_id": 20831, + "year": "1992" + }, + { + "id": 20851, + "model_id": 20831, + "year": "1993" + }, + { + "id": 20854, + "model_id": 20831, + "year": "1994" + }, + { + "id": 20858, + "model_id": 20831, + "year": "1995" + }, + { + "id": 20862, + "model_id": 20831, + "year": "1997" + }, + { + "id": 20866, + "model_id": 20831, + "year": "1998" + }, + { + "id": 20870, + "model_id": 20831, + "year": "1999" + }, + { + "id": 20874, + "model_id": 20831, + "year": "2000" + }, + { + "id": 20878, + "model_id": 20831, + "year": "2001" + }, + { + "id": 20882, + "model_id": 20831, + "year": "2002" + }, + { + "id": 20886, + "model_id": 20831, + "year": "2007" + }, + { + "id": 20890, + "model_id": 20831, + "year": "2008" + }, + { + "id": 20894, + "model_id": 20831, + "year": "2009" + }, + { + "id": 20897, + "model_id": 20831, + "year": "2010" + }, + { + "id": 20900, + "model_id": 20831, + "year": "2011" + }, + { + "id": 20902, + "model_id": 20831, + "year": "2012" + }, + { + "id": 20904, + "model_id": 20831, + "year": "2013" + }, + { + "id": 20906, + "model_id": 20831, + "year": "2014" + }, + { + "id": 20908, + "model_id": 20831, + "year": "2015" + }, + { + "id": 20910, + "model_id": 20831, + "year": "2016" + }, + { + "id": 20912, + "model_id": 20912, + "year": "2012" + }, + { + "id": 20914, + "model_id": 20912, + "year": "2013" + }, + { + "id": 20916, + "model_id": 20912, + "year": "2014" + }, + { + "id": 20918, + "model_id": 20912, + "year": "2015" + }, + { + "id": 20920, + "model_id": 20912, + "year": "2016" + }, + { + "id": 20922, + "model_id": 20922, + "year": "2003" + }, + { + "id": 20926, + "model_id": 20922, + "year": "2004" + }, + { + "id": 20930, + "model_id": 20922, + "year": "2005" + }, + { + "id": 20933, + "model_id": 20922, + "year": "2006" + }, + { + "id": 20936, + "model_id": 20936, + "year": "1984" + }, + { + "id": 20937, + "model_id": 20937, + "year": "1984" + }, + { + "id": 20938, + "model_id": 20938, + "year": "1984" + }, + { + "id": 20939, + "model_id": 20939, + "year": "1984" + }, + { + "id": 20940, + "model_id": 20940, + "year": "2004" + }, + { + "id": 20941, + "model_id": 20940, + "year": "2005" + }, + { + "id": 20942, + "model_id": 20940, + "year": "2006" + }, + { + "id": 20943, + "model_id": 20940, + "year": "2007" + }, + { + "id": 20944, + "model_id": 20940, + "year": "2008" + }, + { + "id": 20945, + "model_id": 20940, + "year": "2009" + }, + { + "id": 20946, + "model_id": 20946, + "year": "2009" + }, + { + "id": 20950, + "model_id": 20946, + "year": "2010" + }, + { + "id": 20954, + "model_id": 20946, + "year": "2011" + }, + { + "id": 20958, + "model_id": 20958, + "year": "2014" + }, + { + "id": 20959, + "model_id": 20958, + "year": "2015" + }, + { + "id": 20960, + "model_id": 20958, + "year": "2016" + }, + { + "id": 20961, + "model_id": 20961, + "year": "2010" + }, + { + "id": 20966, + "model_id": 20961, + "year": "2011" + }, + { + "id": 20970, + "model_id": 20961, + "year": "2012" + }, + { + "id": 20974, + "model_id": 20961, + "year": "2013" + }, + { + "id": 20978, + "model_id": 20961, + "year": "2014" + }, + { + "id": 20982, + "model_id": 20961, + "year": "2015" + }, + { + "id": 20985, + "model_id": 20961, + "year": "2016" + }, + { + "id": 20988, + "model_id": 20961, + "year": "2017" + }, + { + "id": 20991, + "model_id": 20991, + "year": "2014" + }, + { + "id": 20995, + "model_id": 20991, + "year": "2015" + }, + { + "id": 20998, + "model_id": 20991, + "year": "2016" + }, + { + "id": 21001, + "model_id": 21001, + "year": "2011" + }, + { + "id": 21002, + "model_id": 21001, + "year": "2012" + }, + { + "id": 21003, + "model_id": 21001, + "year": "2013" + }, + { + "id": 21004, + "model_id": 21001, + "year": "2014" + }, + { + "id": 21005, + "model_id": 21005, + "year": "2011" + }, + { + "id": 21009, + "model_id": 21005, + "year": "2012" + }, + { + "id": 21013, + "model_id": 21005, + "year": "2013" + }, + { + "id": 21017, + "model_id": 21005, + "year": "2014" + }, + { + "id": 21021, + "model_id": 21005, + "year": "2015" + }, + { + "id": 21025, + "model_id": 21005, + "year": "2016" + }, + { + "id": 21029, + "model_id": 21029, + "year": "2015" + }, + { + "id": 21031, + "model_id": 21029, + "year": "2016" + }, + { + "id": 21033, + "model_id": 21029, + "year": "2017" + }, + { + "id": 21035, + "model_id": 21035, + "year": "2001" + }, + { + "id": 21039, + "model_id": 21035, + "year": "2002" + }, + { + "id": 21043, + "model_id": 21035, + "year": "2003" + }, + { + "id": 21047, + "model_id": 21035, + "year": "2004" + }, + { + "id": 21051, + "model_id": 21035, + "year": "2005" + }, + { + "id": 21055, + "model_id": 21035, + "year": "2006" + }, + { + "id": 21058, + "model_id": 21035, + "year": "2007" + }, + { + "id": 21061, + "model_id": 21035, + "year": "2008" + }, + { + "id": 21064, + "model_id": 21035, + "year": "2009" + }, + { + "id": 21067, + "model_id": 21035, + "year": "2010" + }, + { + "id": 21070, + "model_id": 21035, + "year": "2011" + }, + { + "id": 21073, + "model_id": 21035, + "year": "2012" + }, + { + "id": 21076, + "model_id": 21035, + "year": "2013" + }, + { + "id": 21079, + "model_id": 21035, + "year": "2014" + }, + { + "id": 21081, + "model_id": 21035, + "year": "2015" + }, + { + "id": 21083, + "model_id": 21035, + "year": "2016" + }, + { + "id": 21086, + "model_id": 21086, + "year": "2006" + }, + { + "id": 21089, + "model_id": 21089, + "year": "2016" + }, + { + "id": 21091, + "model_id": 21091, + "year": "2011" + }, + { + "id": 21092, + "model_id": 21091, + "year": "2012" + }, + { + "id": 21093, + "model_id": 21091, + "year": "2013" + }, + { + "id": 21094, + "model_id": 21091, + "year": "2014" + }, + { + "id": 21095, + "model_id": 21091, + "year": "2015" + }, + { + "id": 21096, + "model_id": 21091, + "year": "2016" + }, + { + "id": 21097, + "model_id": 21097, + "year": "2013" + }, + { + "id": 21098, + "model_id": 21097, + "year": "2014" + }, + { + "id": 21099, + "model_id": 21097, + "year": "2015" + }, + { + "id": 21100, + "model_id": 21097, + "year": "2016" + }, + { + "id": 21101, + "model_id": 21101, + "year": "2001" + }, + { + "id": 21103, + "model_id": 21101, + "year": "2002" + }, + { + "id": 21105, + "model_id": 21101, + "year": "2003" + }, + { + "id": 21107, + "model_id": 21101, + "year": "2004" + }, + { + "id": 21111, + "model_id": 21101, + "year": "2005" + }, + { + "id": 21113, + "model_id": 21101, + "year": "2006" + }, + { + "id": 21115, + "model_id": 21101, + "year": "2007" + }, + { + "id": 21117, + "model_id": 21101, + "year": "2008" + }, + { + "id": 21119, + "model_id": 21101, + "year": "2009" + }, + { + "id": 21121, + "model_id": 21101, + "year": "2010" + }, + { + "id": 21123, + "model_id": 21101, + "year": "2011" + }, + { + "id": 21125, + "model_id": 21101, + "year": "2012" + }, + { + "id": 21127, + "model_id": 21101, + "year": "2013" + }, + { + "id": 21129, + "model_id": 21101, + "year": "2014" + }, + { + "id": 21131, + "model_id": 21101, + "year": "2015" + }, + { + "id": 21133, + "model_id": 21101, + "year": "2016" + }, + { + "id": 21135, + "model_id": 21101, + "year": "2017" + }, + { + "id": 21137, + "model_id": 21137, + "year": "2013" + }, + { + "id": 21138, + "model_id": 21137, + "year": "2014" + }, + { + "id": 21139, + "model_id": 21137, + "year": "2015" + }, + { + "id": 21140, + "model_id": 21137, + "year": "2016" + }, + { + "id": 21141, + "model_id": 21137, + "year": "2017" + }, + { + "id": 21142, + "model_id": 21142, + "year": "2007" + }, + { + "id": 21144, + "model_id": 21142, + "year": "2008" + }, + { + "id": 21146, + "model_id": 21142, + "year": "2009" + }, + { + "id": 21148, + "model_id": 21142, + "year": "2010" + }, + { + "id": 21150, + "model_id": 21142, + "year": "2011" + }, + { + "id": 21152, + "model_id": 21142, + "year": "2012" + }, + { + "id": 21154, + "model_id": 21154, + "year": "2002" + }, + { + "id": 21155, + "model_id": 21154, + "year": "2003" + }, + { + "id": 21156, + "model_id": 21154, + "year": "2004" + }, + { + "id": 21157, + "model_id": 21154, + "year": "2005" + }, + { + "id": 21158, + "model_id": 21154, + "year": "2006" + }, + { + "id": 21159, + "model_id": 21154, + "year": "2007" + }, + { + "id": 21160, + "model_id": 21154, + "year": "2008" + }, + { + "id": 21161, + "model_id": 21154, + "year": "2009" + }, + { + "id": 21162, + "model_id": 21154, + "year": "2010" + }, + { + "id": 21163, + "model_id": 21154, + "year": "2011" + }, + { + "id": 21164, + "model_id": 21154, + "year": "2012" + }, + { + "id": 21165, + "model_id": 21154, + "year": "2014" + }, + { + "id": 21166, + "model_id": 21154, + "year": "2015" + }, + { + "id": 21167, + "model_id": 21154, + "year": "2016" + }, + { + "id": 21168, + "model_id": 21154, + "year": "2017" + }, + { + "id": 21169, + "model_id": 21169, + "year": "2015" + }, + { + "id": 21170, + "model_id": 21169, + "year": "2016" + }, + { + "id": 21171, + "model_id": 21169, + "year": "2017" + }, + { + "id": 21172, + "model_id": 21172, + "year": "2015" + }, + { + "id": 21173, + "model_id": 21172, + "year": "2016" + }, + { + "id": 21174, + "model_id": 21172, + "year": "2017" + }, + { + "id": 21175, + "model_id": 21175, + "year": "1993" + }, + { + "id": 21177, + "model_id": 21175, + "year": "1994" + }, + { + "id": 21179, + "model_id": 21175, + "year": "1995" + }, + { + "id": 21185, + "model_id": 21175, + "year": "1996" + }, + { + "id": 21189, + "model_id": 21175, + "year": "1997" + }, + { + "id": 21193, + "model_id": 21175, + "year": "1998" + }, + { + "id": 21195, + "model_id": 21175, + "year": "1999" + }, + { + "id": 21197, + "model_id": 21197, + "year": "2000" + }, + { + "id": 21199, + "model_id": 21197, + "year": "2001" + }, + { + "id": 21201, + "model_id": 21201, + "year": "2003" + }, + { + "id": 21203, + "model_id": 21201, + "year": "2004" + }, + { + "id": 21207, + "model_id": 21201, + "year": "2005" + }, + { + "id": 21211, + "model_id": 21201, + "year": "2006" + }, + { + "id": 21215, + "model_id": 21201, + "year": "2007" + }, + { + "id": 21219, + "model_id": 21201, + "year": "2008" + }, + { + "id": 21223, + "model_id": 21201, + "year": "2009" + }, + { + "id": 21227, + "model_id": 21201, + "year": "2011" + }, + { + "id": 21232, + "model_id": 21201, + "year": "2012" + }, + { + "id": 21239, + "model_id": 21201, + "year": "2013" + }, + { + "id": 21246, + "model_id": 21201, + "year": "2014" + }, + { + "id": 21251, + "model_id": 21201, + "year": "2015" + }, + { + "id": 21255, + "model_id": 21201, + "year": "2016" + }, + { + "id": 21261, + "model_id": 21201, + "year": "2017" + }, + { + "id": 21267, + "model_id": 21267, + "year": "2016" + }, + { + "id": 21268, + "model_id": 21267, + "year": "2017" + }, + { + "id": 21269, + "model_id": 21269, + "year": "2010" + }, + { + "id": 21273, + "model_id": 21269, + "year": "2011" + }, + { + "id": 21277, + "model_id": 21269, + "year": "2012" + }, + { + "id": 21281, + "model_id": 21269, + "year": "2013" + }, + { + "id": 21285, + "model_id": 21269, + "year": "2014" + }, + { + "id": 21288, + "model_id": 21269, + "year": "2015" + }, + { + "id": 21291, + "model_id": 21269, + "year": "2016" + }, + { + "id": 21294, + "model_id": 21294, + "year": "2012" + }, + { + "id": 21296, + "model_id": 21294, + "year": "2013" + }, + { + "id": 21298, + "model_id": 21298, + "year": "2014" + }, + { + "id": 21299, + "model_id": 21298, + "year": "2015" + }, + { + "id": 21300, + "model_id": 21298, + "year": "2016" + }, + { + "id": 21301, + "model_id": 21301, + "year": "2015" + }, + { + "id": 21302, + "model_id": 21301, + "year": "2016" + }, + { + "id": 21303, + "model_id": 21303, + "year": "2002" + }, + { + "id": 21305, + "model_id": 21303, + "year": "2003" + }, + { + "id": 21307, + "model_id": 21303, + "year": "2005" + }, + { + "id": 21309, + "model_id": 21303, + "year": "2006" + }, + { + "id": 21311, + "model_id": 21303, + "year": "2007" + }, + { + "id": 21313, + "model_id": 21303, + "year": "2008" + }, + { + "id": 21315, + "model_id": 21303, + "year": "2009" + }, + { + "id": 21317, + "model_id": 21317, + "year": "2004" + }, + { + "id": 21319, + "model_id": 21319, + "year": "2004" + }, + { + "id": 21321, + "model_id": 21321, + "year": "1995" + }, + { + "id": 21325, + "model_id": 21321, + "year": "1996" + }, + { + "id": 21328, + "model_id": 21321, + "year": "1997" + }, + { + "id": 21332, + "model_id": 21321, + "year": "1998" + }, + { + "id": 21336, + "model_id": 21321, + "year": "1999" + }, + { + "id": 21340, + "model_id": 21321, + "year": "2000" + }, + { + "id": 21344, + "model_id": 21321, + "year": "2001" + }, + { + "id": 21352, + "model_id": 21321, + "year": "2002" + }, + { + "id": 21356, + "model_id": 21321, + "year": "2005" + }, + { + "id": 21361, + "model_id": 21321, + "year": "2006" + }, + { + "id": 21366, + "model_id": 21321, + "year": "2007" + }, + { + "id": 21371, + "model_id": 21321, + "year": "2008" + }, + { + "id": 21376, + "model_id": 21321, + "year": "2009" + }, + { + "id": 21381, + "model_id": 21321, + "year": "2010" + }, + { + "id": 21386, + "model_id": 21321, + "year": "2011" + }, + { + "id": 21392, + "model_id": 21321, + "year": "2012" + }, + { + "id": 21398, + "model_id": 21321, + "year": "2013" + }, + { + "id": 21404, + "model_id": 21321, + "year": "2014" + }, + { + "id": 21408, + "model_id": 21321, + "year": "2015" + }, + { + "id": 21412, + "model_id": 21321, + "year": "2016" + }, + { + "id": 21414, + "model_id": 21321, + "year": "2017" + }, + { + "id": 21418, + "model_id": 21418, + "year": "2017" + }, + { + "id": 21420, + "model_id": 21420, + "year": "2015" + }, + { + "id": 21422, + "model_id": 21420, + "year": "2016" + }, + { + "id": 21424, + "model_id": 21424, + "year": "1989" + }, + { + "id": 21425, + "model_id": 21424, + "year": "1990" + }, + { + "id": 21426, + "model_id": 21426, + "year": "1986" + }, + { + "id": 21427, + "model_id": 21427, + "year": "2012" + }, + { + "id": 21428, + "model_id": 21427, + "year": "2013" + }, + { + "id": 21429, + "model_id": 21427, + "year": "2014" + }, + { + "id": 21430, + "model_id": 21427, + "year": "2015" + }, + { + "id": 21431, + "model_id": 21427, + "year": "2016" + }, + { + "id": 21432, + "model_id": 21427, + "year": "2017" + }, + { + "id": 21433, + "model_id": 21433, + "year": "2013" + }, + { + "id": 21434, + "model_id": 21433, + "year": "2014" + }, + { + "id": 21435, + "model_id": 21433, + "year": "2015" + }, + { + "id": 21436, + "model_id": 21433, + "year": "2016" + }, + { + "id": 21437, + "model_id": 21433, + "year": "2017" + }, + { + "id": 21438, + "model_id": 21438, + "year": "2014" + }, + { + "id": 21439, + "model_id": 21439, + "year": "1986" + }, + { + "id": 21440, + "model_id": 21439, + "year": "1987" + }, + { + "id": 21441, + "model_id": 21439, + "year": "1988" + }, + { + "id": 21442, + "model_id": 21439, + "year": "1989" + }, + { + "id": 21443, + "model_id": 21439, + "year": "1990" + }, + { + "id": 21444, + "model_id": 21444, + "year": "1984" + }, + { + "id": 21446, + "model_id": 21446, + "year": "1997" + }, + { + "id": 21447, + "model_id": 21447, + "year": "1998" + }, + { + "id": 21448, + "model_id": 21447, + "year": "1999" + }, + { + "id": 21449, + "model_id": 21447, + "year": "2001" + }, + { + "id": 21450, + "model_id": 21450, + "year": "1990" + }, + { + "id": 21451, + "model_id": 21450, + "year": "1991" + }, + { + "id": 21452, + "model_id": 21450, + "year": "1992" + }, + { + "id": 21453, + "model_id": 21450, + "year": "1993" + }, + { + "id": 21454, + "model_id": 21450, + "year": "1994" + }, + { + "id": 21455, + "model_id": 21450, + "year": "1995" + }, + { + "id": 21457, + "model_id": 21450, + "year": "1996" + }, + { + "id": 21458, + "model_id": 21458, + "year": "2007" + }, + { + "id": 21460, + "model_id": 21458, + "year": "2008" + }, + { + "id": 21462, + "model_id": 21458, + "year": "2009" + }, + { + "id": 21464, + "model_id": 21458, + "year": "2010" + }, + { + "id": 21466, + "model_id": 21458, + "year": "2011" + }, + { + "id": 21468, + "model_id": 21458, + "year": "2012" + }, + { + "id": 21470, + "model_id": 21458, + "year": "2013" + }, + { + "id": 21472, + "model_id": 21458, + "year": "2014" + }, + { + "id": 21474, + "model_id": 21474, + "year": "2007" + }, + { + "id": 21476, + "model_id": 21476, + "year": "2007" + }, + { + "id": 21478, + "model_id": 21476, + "year": "2008" + }, + { + "id": 21480, + "model_id": 21476, + "year": "2009" + }, + { + "id": 21482, + "model_id": 21476, + "year": "2010" + }, + { + "id": 21484, + "model_id": 21476, + "year": "2011" + }, + { + "id": 21486, + "model_id": 21476, + "year": "2012" + }, + { + "id": 21488, + "model_id": 21476, + "year": "2013" + }, + { + "id": 21490, + "model_id": 21476, + "year": "2014" + }, + { + "id": 21492, + "model_id": 21492, + "year": "2015" + }, + { + "id": 21493, + "model_id": 21492, + "year": "2016" + }, + { + "id": 21494, + "model_id": 21492, + "year": "2017" + }, + { + "id": 21496, + "model_id": 21496, + "year": "2016" + }, + { + "id": 21497, + "model_id": 21496, + "year": "2017" + }, + { + "id": 21499, + "model_id": 21499, + "year": "2004" + }, + { + "id": 21501, + "model_id": 21499, + "year": "2005" + }, + { + "id": 21503, + "model_id": 21503, + "year": "2006" + }, + { + "id": 21507, + "model_id": 21507, + "year": "2002" + }, + { + "id": 21509, + "model_id": 21507, + "year": "2003" + }, + { + "id": 21511, + "model_id": 21511, + "year": "2004" + }, + { + "id": 21513, + "model_id": 21511, + "year": "2005" + }, + { + "id": 21515, + "model_id": 21511, + "year": "2006" + }, + { + "id": 21517, + "model_id": 21511, + "year": "2007" + }, + { + "id": 21519, + "model_id": 21519, + "year": "2008" + }, + { + "id": 21521, + "model_id": 21519, + "year": "2009" + }, + { + "id": 21523, + "model_id": 21519, + "year": "2010" + }, + { + "id": 21525, + "model_id": 21525, + "year": "2008" + }, + { + "id": 21526, + "model_id": 21526, + "year": "2010" + }, + { + "id": 21527, + "model_id": 21527, + "year": "2008" + }, + { + "id": 21529, + "model_id": 21527, + "year": "2009" + }, + { + "id": 21531, + "model_id": 21527, + "year": "2010" + }, + { + "id": 21533, + "model_id": 21533, + "year": "2015" + }, + { + "id": 21534, + "model_id": 21534, + "year": "1993" + }, + { + "id": 21535, + "model_id": 21535, + "year": "1994" + }, + { + "id": 21536, + "model_id": 21535, + "year": "1995" + }, + { + "id": 21537, + "model_id": 21535, + "year": "1997" + }, + { + "id": 21538, + "model_id": 21538, + "year": "1994" + }, + { + "id": 21540, + "model_id": 21538, + "year": "1995" + }, + { + "id": 21542, + "model_id": 21538, + "year": "1996" + }, + { + "id": 21543, + "model_id": 21538, + "year": "1997" + }, + { + "id": 21545, + "model_id": 21538, + "year": "1998" + }, + { + "id": 21547, + "model_id": 21538, + "year": "1999" + }, + { + "id": 21548, + "model_id": 21548, + "year": "1999" + }, + { + "id": 21549, + "model_id": 21548, + "year": "2000" + }, + { + "id": 21550, + "model_id": 21548, + "year": "2001" + }, + { + "id": 21551, + "model_id": 21548, + "year": "2002" + }, + { + "id": 21552, + "model_id": 21548, + "year": "2003" + }, + { + "id": 21553, + "model_id": 21548, + "year": "2004" + }, + { + "id": 21554, + "model_id": 21554, + "year": "2015" + }, + { + "id": 21555, + "model_id": 21554, + "year": "2016" + }, + { + "id": 21556, + "model_id": 21556, + "year": "2002" + }, + { + "id": 21557, + "model_id": 21556, + "year": "2004" + }, + { + "id": 21558, + "model_id": 21556, + "year": "2005" + }, + { + "id": 21559, + "model_id": 21559, + "year": "2003" + }, + { + "id": 21560, + "model_id": 21560, + "year": "2003" + }, + { + "id": 21561, + "model_id": 21561, + "year": "2008" + }, + { + "id": 21562, + "model_id": 21561, + "year": "2009" + }, + { + "id": 21563, + "model_id": 21561, + "year": "2010" + }, + { + "id": 21564, + "model_id": 21561, + "year": "2011" + }, + { + "id": 21565, + "model_id": 21561, + "year": "2012" + }, + { + "id": 21566, + "model_id": 21561, + "year": "2013" + }, + { + "id": 21567, + "model_id": 21561, + "year": "2014" + }, + { + "id": 21568, + "model_id": 21561, + "year": "2015" + }, + { + "id": 21569, + "model_id": 21569, + "year": "2005" + }, + { + "id": 21571, + "model_id": 21569, + "year": "2006" + }, + { + "id": 21573, + "model_id": 21569, + "year": "2007" + }, + { + "id": 21575, + "model_id": 21569, + "year": "2008" + }, + { + "id": 21576, + "model_id": 21569, + "year": "2009" + }, + { + "id": 21577, + "model_id": 21577, + "year": "2010" + }, + { + "id": 21578, + "model_id": 21577, + "year": "2011" + }, + { + "id": 21579, + "model_id": 21577, + "year": "2012" + }, + { + "id": 21580, + "model_id": 21577, + "year": "2013" + }, + { + "id": 21581, + "model_id": 21577, + "year": "2014" + }, + { + "id": 21582, + "model_id": 21577, + "year": "2015" + }, + { + "id": 21583, + "model_id": 21577, + "year": "2016" + }, + { + "id": 21584, + "model_id": 21584, + "year": "1987" + }, + { + "id": 21585, + "model_id": 21584, + "year": "1988" + }, + { + "id": 21586, + "model_id": 21584, + "year": "1989" + }, + { + "id": 21587, + "model_id": 21584, + "year": "1990" + }, + { + "id": 21588, + "model_id": 21584, + "year": "1991" + }, + { + "id": 21589, + "model_id": 21584, + "year": "1992" + }, + { + "id": 21590, + "model_id": 21584, + "year": "1995" + }, + { + "id": 21591, + "model_id": 21584, + "year": "1997" + }, + { + "id": 21593, + "model_id": 21584, + "year": "1998" + }, + { + "id": 21595, + "model_id": 21584, + "year": "1999" + }, + { + "id": 21597, + "model_id": 21584, + "year": "2000" + }, + { + "id": 21599, + "model_id": 21584, + "year": "2001" + }, + { + "id": 21601, + "model_id": 21584, + "year": "2002" + }, + { + "id": 21602, + "model_id": 21584, + "year": "2003" + }, + { + "id": 21603, + "model_id": 21584, + "year": "2004" + }, + { + "id": 21604, + "model_id": 21584, + "year": "2005" + }, + { + "id": 21605, + "model_id": 21584, + "year": "2006" + }, + { + "id": 21607, + "model_id": 21584, + "year": "2007" + }, + { + "id": 21609, + "model_id": 21584, + "year": "2008" + }, + { + "id": 21611, + "model_id": 21584, + "year": "2009" + }, + { + "id": 21613, + "model_id": 21584, + "year": "2010" + }, + { + "id": 21615, + "model_id": 21584, + "year": "2011" + }, + { + "id": 21617, + "model_id": 21584, + "year": "2012" + }, + { + "id": 21619, + "model_id": 21584, + "year": "2013" + }, + { + "id": 21621, + "model_id": 21584, + "year": "2014" + }, + { + "id": 21625, + "model_id": 21584, + "year": "2015" + }, + { + "id": 21627, + "model_id": 21584, + "year": "2016" + }, + { + "id": 21629, + "model_id": 21629, + "year": "1996" + }, + { + "id": 21630, + "model_id": 21630, + "year": "1996" + }, + { + "id": 21631, + "model_id": 21631, + "year": "1993" + }, + { + "id": 21632, + "model_id": 21631, + "year": "1994" + }, + { + "id": 21633, + "model_id": 21633, + "year": "1995" + }, + { + "id": 21634, + "model_id": 21634, + "year": "1993" + }, + { + "id": 21635, + "model_id": 21634, + "year": "1994" + }, + { + "id": 21636, + "model_id": 21634, + "year": "1995" + }, + { + "id": 21637, + "model_id": 21637, + "year": "2012" + }, + { + "id": 21638, + "model_id": 21637, + "year": "2013" + }, + { + "id": 21639, + "model_id": 21637, + "year": "2014" + }, + { + "id": 21640, + "model_id": 21637, + "year": "2015" + }, + { + "id": 21641, + "model_id": 21637, + "year": "2016" + }, + { + "id": 21642, + "model_id": 21642, + "year": "2016" + }, + { + "id": 21643, + "model_id": 21643, + "year": "2014" + }, + { + "id": 21645, + "model_id": 21643, + "year": "2015" + }, + { + "id": 21646, + "model_id": 21646, + "year": "2015" + }, + { + "id": 21647, + "model_id": 21646, + "year": "2016" + }, + { + "id": 21649, + "model_id": 21649, + "year": "2006" + }, + { + "id": 21651, + "model_id": 21649, + "year": "2007" + }, + { + "id": 21653, + "model_id": 21649, + "year": "2008" + }, + { + "id": 21655, + "model_id": 21649, + "year": "2009" + }, + { + "id": 21657, + "model_id": 21649, + "year": "2010" + }, + { + "id": 21659, + "model_id": 21649, + "year": "2011" + }, + { + "id": 21661, + "model_id": 21649, + "year": "2012" + }, + { + "id": 21663, + "model_id": 21649, + "year": "2013" + }, + { + "id": 21665, + "model_id": 21649, + "year": "2014" + }, + { + "id": 21669, + "model_id": 21649, + "year": "2015" + }, + { + "id": 21672, + "model_id": 21649, + "year": "2016" + }, + { + "id": 21674, + "model_id": 21674, + "year": "2016" + }, + { + "id": 21675, + "model_id": 21675, + "year": "2016" + }, + { + "id": 21676, + "model_id": 21676, + "year": "2011" + }, + { + "id": 21677, + "model_id": 21676, + "year": "2012" + }, + { + "id": 21678, + "model_id": 21676, + "year": "2013" + }, + { + "id": 21679, + "model_id": 21676, + "year": "2014" + }, + { + "id": 21680, + "model_id": 21676, + "year": "2015" + }, + { + "id": 21681, + "model_id": 21676, + "year": "2016" + }, + { + "id": 21682, + "model_id": 21682, + "year": "1990" + }, + { + "id": 21684, + "model_id": 21682, + "year": "1991" + }, + { + "id": 21686, + "model_id": 21686, + "year": "1992" + }, + { + "id": 21688, + "model_id": 21686, + "year": "1993" + }, + { + "id": 21690, + "model_id": 21686, + "year": "1994" + }, + { + "id": 21691, + "model_id": 21686, + "year": "1995" + }, + { + "id": 21692, + "model_id": 21686, + "year": "1996" + }, + { + "id": 21693, + "model_id": 21686, + "year": "1997" + }, + { + "id": 21694, + "model_id": 21686, + "year": "1998" + }, + { + "id": 21695, + "model_id": 21686, + "year": "1999" + }, + { + "id": 21696, + "model_id": 21686, + "year": "2000" + }, + { + "id": 21697, + "model_id": 21686, + "year": "2001" + }, + { + "id": 21698, + "model_id": 21686, + "year": "2002" + }, + { + "id": 21699, + "model_id": 21686, + "year": "2003" + }, + { + "id": 21700, + "model_id": 21700, + "year": "2013" + }, + { + "id": 21701, + "model_id": 21700, + "year": "2014" + }, + { + "id": 21702, + "model_id": 21700, + "year": "2015" + }, + { + "id": 21703, + "model_id": 21700, + "year": "2016" + }, + { + "id": 21704, + "model_id": 21704, + "year": "2004" + }, + { + "id": 21705, + "model_id": 21704, + "year": "2005" + }, + { + "id": 21706, + "model_id": 21704, + "year": "2006" + }, + { + "id": 21707, + "model_id": 21707, + "year": "2007" + }, + { + "id": 21708, + "model_id": 21707, + "year": "2008" + }, + { + "id": 21709, + "model_id": 21707, + "year": "2009" + }, + { + "id": 21710, + "model_id": 21707, + "year": "2010" + }, + { + "id": 21711, + "model_id": 21707, + "year": "2011" + }, + { + "id": 21712, + "model_id": 21707, + "year": "2012" + }, + { + "id": 21713, + "model_id": 21707, + "year": "2013" + }, + { + "id": 21714, + "model_id": 21707, + "year": "2014" + }, + { + "id": 21715, + "model_id": 21707, + "year": "2015" + }, + { + "id": 21716, + "model_id": 21707, + "year": "2016" + }, + { + "id": 21717, + "model_id": 21717, + "year": "2016" + }, + { + "id": 21718, + "model_id": 21718, + "year": "2016" + }, + { + "id": 21719, + "model_id": 21719, + "year": "1994" + }, + { + "id": 21720, + "model_id": 21719, + "year": "1995" + }, + { + "id": 21721, + "model_id": 21719, + "year": "1996" + }, + { + "id": 21722, + "model_id": 21719, + "year": "1997" + }, + { + "id": 21723, + "model_id": 21719, + "year": "2006" + }, + { + "id": 21724, + "model_id": 21724, + "year": "1998" + }, + { + "id": 21726, + "model_id": 21724, + "year": "1999" + }, + { + "id": 21728, + "model_id": 21724, + "year": "2000" + }, + { + "id": 21730, + "model_id": 21730, + "year": "2001" + }, + { + "id": 21732, + "model_id": 21730, + "year": "2002" + }, + { + "id": 21734, + "model_id": 21730, + "year": "2003" + }, + { + "id": 21736, + "model_id": 21730, + "year": "2004" + }, + { + "id": 21738, + "model_id": 21730, + "year": "2005" + }, + { + "id": 21740, + "model_id": 21730, + "year": "2006" + }, + { + "id": 21742, + "model_id": 21742, + "year": "2007" + }, + { + "id": 21744, + "model_id": 21742, + "year": "2008" + }, + { + "id": 21746, + "model_id": 21742, + "year": "2009" + }, + { + "id": 21748, + "model_id": 21742, + "year": "2010" + }, + { + "id": 21750, + "model_id": 21742, + "year": "2011" + }, + { + "id": 21752, + "model_id": 21742, + "year": "2013" + }, + { + "id": 21754, + "model_id": 21742, + "year": "2014" + }, + { + "id": 21756, + "model_id": 21742, + "year": "2015" + }, + { + "id": 21758, + "model_id": 21742, + "year": "2016" + }, + { + "id": 21760, + "model_id": 21760, + "year": "2016" + }, + { + "id": 21761, + "model_id": 21761, + "year": "2007" + }, + { + "id": 21762, + "model_id": 21762, + "year": "2007" + }, + { + "id": 21763, + "model_id": 21762, + "year": "2008" + }, + { + "id": 21764, + "model_id": 21762, + "year": "2009" + }, + { + "id": 21765, + "model_id": 21762, + "year": "2010" + }, + { + "id": 21766, + "model_id": 21762, + "year": "2011" + }, + { + "id": 21767, + "model_id": 21762, + "year": "2013" + }, + { + "id": 21768, + "model_id": 21762, + "year": "2014" + }, + { + "id": 21769, + "model_id": 21762, + "year": "2015" + }, + { + "id": 21770, + "model_id": 21762, + "year": "2016" + }, + { + "id": 21771, + "model_id": 21771, + "year": "2008" + }, + { + "id": 21772, + "model_id": 21771, + "year": "2009" + }, + { + "id": 21773, + "model_id": 21771, + "year": "2010" + }, + { + "id": 21774, + "model_id": 21771, + "year": "2011" + }, + { + "id": 21775, + "model_id": 21775, + "year": "2016" + }, + { + "id": 21776, + "model_id": 21776, + "year": "1993" + }, + { + "id": 21777, + "model_id": 21777, + "year": "2010" + }, + { + "id": 21778, + "model_id": 21777, + "year": "2011" + }, + { + "id": 21779, + "model_id": 21777, + "year": "2012" + }, + { + "id": 21780, + "model_id": 21777, + "year": "2013" + }, + { + "id": 21781, + "model_id": 21777, + "year": "2014" + }, + { + "id": 21782, + "model_id": 21777, + "year": "2015" + }, + { + "id": 21783, + "model_id": 21777, + "year": "2016" + }, + { + "id": 21784, + "model_id": 21784, + "year": "2003" + }, + { + "id": 21785, + "model_id": 21784, + "year": "2004" + }, + { + "id": 21786, + "model_id": 21784, + "year": "2005" + }, + { + "id": 21787, + "model_id": 21784, + "year": "2006" + }, + { + "id": 21788, + "model_id": 21784, + "year": "2007" + }, + { + "id": 21789, + "model_id": 21784, + "year": "2008" + }, + { + "id": 21790, + "model_id": 21784, + "year": "2009" + }, + { + "id": 21791, + "model_id": 21791, + "year": "2010" + }, + { + "id": 21792, + "model_id": 21791, + "year": "2011" + }, + { + "id": 21793, + "model_id": 21791, + "year": "2012" + }, + { + "id": 21794, + "model_id": 21794, + "year": "2016" + }, + { + "id": 21795, + "model_id": 21795, + "year": "2006" + }, + { + "id": 21798, + "model_id": 21795, + "year": "2007" + }, + { + "id": 21801, + "model_id": 21795, + "year": "2008" + }, + { + "id": 21804, + "model_id": 21795, + "year": "2009" + }, + { + "id": 21807, + "model_id": 21795, + "year": "2010" + }, + { + "id": 21808, + "model_id": 21795, + "year": "2011" + }, + { + "id": 21809, + "model_id": 21795, + "year": "2012" + }, + { + "id": 21810, + "model_id": 21795, + "year": "2013" + }, + { + "id": 21811, + "model_id": 21795, + "year": "2014" + }, + { + "id": 21813, + "model_id": 21795, + "year": "2015" + }, + { + "id": 21815, + "model_id": 21815, + "year": "2014" + }, + { + "id": 21816, + "model_id": 21815, + "year": "2015" + }, + { + "id": 21817, + "model_id": 21817, + "year": "2010" + }, + { + "id": 21819, + "model_id": 21817, + "year": "2011" + }, + { + "id": 21821, + "model_id": 21817, + "year": "2012" + }, + { + "id": 21823, + "model_id": 21817, + "year": "2013" + }, + { + "id": 21824, + "model_id": 21824, + "year": "2001" + }, + { + "id": 21825, + "model_id": 21824, + "year": "2002" + }, + { + "id": 21827, + "model_id": 21824, + "year": "2003" + }, + { + "id": 21829, + "model_id": 21824, + "year": "2004" + }, + { + "id": 21831, + "model_id": 21824, + "year": "2005" + }, + { + "id": 21833, + "model_id": 21824, + "year": "2016" + }, + { + "id": 21834, + "model_id": 21834, + "year": "2006" + }, + { + "id": 21835, + "model_id": 21834, + "year": "2007" + }, + { + "id": 21836, + "model_id": 21834, + "year": "2008" + }, + { + "id": 21837, + "model_id": 21834, + "year": "2009" + }, + { + "id": 21838, + "model_id": 21834, + "year": "2011" + }, + { + "id": 21839, + "model_id": 21834, + "year": "2012" + }, + { + "id": 21840, + "model_id": 21834, + "year": "2013" + }, + { + "id": 21841, + "model_id": 21834, + "year": "2014" + }, + { + "id": 21843, + "model_id": 21834, + "year": "2015" + }, + { + "id": 21845, + "model_id": 21834, + "year": "2016" + }, + { + "id": 21847, + "model_id": 21847, + "year": "2014" + }, + { + "id": 21848, + "model_id": 21847, + "year": "2015" + }, + { + "id": 21849, + "model_id": 21849, + "year": "2010" + }, + { + "id": 21850, + "model_id": 21849, + "year": "2011" + }, + { + "id": 21851, + "model_id": 21849, + "year": "2012" + }, + { + "id": 21852, + "model_id": 21849, + "year": "2013" + }, + { + "id": 21853, + "model_id": 21853, + "year": "2008" + }, + { + "id": 21854, + "model_id": 21853, + "year": "2009" + }, + { + "id": 21855, + "model_id": 21853, + "year": "2010" + }, + { + "id": 21856, + "model_id": 21853, + "year": "2011" + }, + { + "id": 21857, + "model_id": 21853, + "year": "2012" + }, + { + "id": 21858, + "model_id": 21853, + "year": "2013" + }, + { + "id": 21859, + "model_id": 21853, + "year": "2014" + }, + { + "id": 21860, + "model_id": 21860, + "year": "2012" + }, + { + "id": 21861, + "model_id": 21861, + "year": "1990" + }, + { + "id": 21862, + "model_id": 21861, + "year": "1991" + }, + { + "id": 21863, + "model_id": 21861, + "year": "1992" + }, + { + "id": 21864, + "model_id": 21861, + "year": "1993" + }, + { + "id": 21865, + "model_id": 21861, + "year": "1994" + }, + { + "id": 21866, + "model_id": 21861, + "year": "1995" + }, + { + "id": 21867, + "model_id": 21861, + "year": "1996" + }, + { + "id": 21868, + "model_id": 21861, + "year": "1997" + }, + { + "id": 21869, + "model_id": 21861, + "year": "1998" + }, + { + "id": 21870, + "model_id": 21861, + "year": "1999" + }, + { + "id": 21871, + "model_id": 21861, + "year": "2000" + }, + { + "id": 21872, + "model_id": 21872, + "year": "2001" + }, + { + "id": 21873, + "model_id": 21872, + "year": "2002" + }, + { + "id": 21874, + "model_id": 21872, + "year": "2003" + }, + { + "id": 21875, + "model_id": 21872, + "year": "2004" + }, + { + "id": 21876, + "model_id": 21872, + "year": "2005" + }, + { + "id": 21877, + "model_id": 21872, + "year": "2006" + }, + { + "id": 21878, + "model_id": 21878, + "year": "2007" + }, + { + "id": 21879, + "model_id": 21878, + "year": "2008" + }, + { + "id": 21880, + "model_id": 21878, + "year": "2009" + }, + { + "id": 21882, + "model_id": 21878, + "year": "2010" + }, + { + "id": 21884, + "model_id": 21878, + "year": "2011" + }, + { + "id": 21886, + "model_id": 21878, + "year": "2012" + }, + { + "id": 21888, + "model_id": 21878, + "year": "2013" + }, + { + "id": 21890, + "model_id": 21878, + "year": "2014" + }, + { + "id": 21892, + "model_id": 21878, + "year": "2015" + }, + { + "id": 21894, + "model_id": 21878, + "year": "2016" + }, + { + "id": 21896, + "model_id": 21896, + "year": "2007" + }, + { + "id": 21897, + "model_id": 21896, + "year": "2008" + }, + { + "id": 21898, + "model_id": 21896, + "year": "2009" + }, + { + "id": 21900, + "model_id": 21896, + "year": "2010" + }, + { + "id": 21902, + "model_id": 21896, + "year": "2011" + }, + { + "id": 21904, + "model_id": 21896, + "year": "2012" + }, + { + "id": 21906, + "model_id": 21896, + "year": "2013" + }, + { + "id": 21908, + "model_id": 21896, + "year": "2014" + }, + { + "id": 21910, + "model_id": 21896, + "year": "2015" + }, + { + "id": 21912, + "model_id": 21896, + "year": "2016" + }, + { + "id": 21914, + "model_id": 21914, + "year": "2008" + }, + { + "id": 21915, + "model_id": 21914, + "year": "2009" + }, + { + "id": 21916, + "model_id": 21914, + "year": "2010" + }, + { + "id": 21917, + "model_id": 21914, + "year": "2011" + }, + { + "id": 21918, + "model_id": 21914, + "year": "2012" + }, + { + "id": 21919, + "model_id": 21914, + "year": "2013" + }, + { + "id": 21920, + "model_id": 21914, + "year": "2014" + }, + { + "id": 21921, + "model_id": 21914, + "year": "2015" + }, + { + "id": 21922, + "model_id": 21914, + "year": "2016" + }, + { + "id": 21923, + "model_id": 21923, + "year": "1996" + }, + { + "id": 21924, + "model_id": 21923, + "year": "1997" + }, + { + "id": 21925, + "model_id": 21925, + "year": "1998" + }, + { + "id": 21926, + "model_id": 21925, + "year": "1999" + }, + { + "id": 21927, + "model_id": 21925, + "year": "2000" + }, + { + "id": 21928, + "model_id": 21925, + "year": "2001" + }, + { + "id": 21929, + "model_id": 21925, + "year": "2002" + }, + { + "id": 21930, + "model_id": 21925, + "year": "2003" + }, + { + "id": 21931, + "model_id": 21925, + "year": "2004" + }, + { + "id": 21932, + "model_id": 21925, + "year": "2005" + }, + { + "id": 21933, + "model_id": 21925, + "year": "2006" + }, + { + "id": 21934, + "model_id": 21925, + "year": "2007" + }, + { + "id": 21935, + "model_id": 21935, + "year": "2008" + }, + { + "id": 21936, + "model_id": 21935, + "year": "2009" + }, + { + "id": 21937, + "model_id": 21935, + "year": "2010" + }, + { + "id": 21938, + "model_id": 21935, + "year": "2011" + }, + { + "id": 21939, + "model_id": 21935, + "year": "2013" + }, + { + "id": 21940, + "model_id": 21935, + "year": "2014" + }, + { + "id": 21941, + "model_id": 21935, + "year": "2015" + }, + { + "id": 21942, + "model_id": 21935, + "year": "2016" + }, + { + "id": 21943, + "model_id": 21943, + "year": "2015" + }, + { + "id": 21945, + "model_id": 21943, + "year": "2016" + }, + { + "id": 21947, + "model_id": 21947, + "year": "2015" + }, + { + "id": 21948, + "model_id": 21947, + "year": "2016" + }, + { + "id": 21949, + "model_id": 21949, + "year": "2015" + }, + { + "id": 21951, + "model_id": 21949, + "year": "2016" + }, + { + "id": 21953, + "model_id": 21953, + "year": "2016" + }, + { + "id": 21954, + "model_id": 21954, + "year": "2016" + }, + { + "id": 21955, + "model_id": 21955, + "year": "2015" + }, + { + "id": 21957, + "model_id": 21955, + "year": "2016" + }, + { + "id": 21959, + "model_id": 21959, + "year": "2015" + }, + { + "id": 21960, + "model_id": 21959, + "year": "2016" + }, + { + "id": 21961, + "model_id": 21961, + "year": "1999" + }, + { + "id": 21963, + "model_id": 21961, + "year": "2000" + }, + { + "id": 21965, + "model_id": 21961, + "year": "2001" + }, + { + "id": 21967, + "model_id": 21961, + "year": "2002" + }, + { + "id": 21969, + "model_id": 21961, + "year": "2003" + }, + { + "id": 21971, + "model_id": 21971, + "year": "2004" + }, + { + "id": 21975, + "model_id": 21971, + "year": "2005" + }, + { + "id": 21979, + "model_id": 21971, + "year": "2006" + }, + { + "id": 21983, + "model_id": 21983, + "year": "2007" + }, + { + "id": 21987, + "model_id": 21983, + "year": "2008" + }, + { + "id": 21991, + "model_id": 21983, + "year": "2009" + }, + { + "id": 21995, + "model_id": 21983, + "year": "2010" + }, + { + "id": 21997, + "model_id": 21983, + "year": "2011" + }, + { + "id": 21999, + "model_id": 21983, + "year": "2012" + }, + { + "id": 22001, + "model_id": 21983, + "year": "2013" + }, + { + "id": 22004, + "model_id": 21983, + "year": "2014" + }, + { + "id": 22007, + "model_id": 21983, + "year": "2015" + }, + { + "id": 22010, + "model_id": 21983, + "year": "2016" + }, + { + "id": 22012, + "model_id": 22012, + "year": "2006" + }, + { + "id": 22014, + "model_id": 22012, + "year": "2007" + }, + { + "id": 22016, + "model_id": 22012, + "year": "2008" + }, + { + "id": 22018, + "model_id": 22018, + "year": "2010" + }, + { + "id": 22020, + "model_id": 22018, + "year": "2011" + }, + { + "id": 22022, + "model_id": 22018, + "year": "2012" + }, + { + "id": 22024, + "model_id": 22018, + "year": "2013" + }, + { + "id": 22026, + "model_id": 22018, + "year": "2014" + }, + { + "id": 22028, + "model_id": 22018, + "year": "2015" + }, + { + "id": 22030, + "model_id": 22018, + "year": "2016" + }, + { + "id": 22032, + "model_id": 22032, + "year": "1999" + }, + { + "id": 22034, + "model_id": 22032, + "year": "2000" + }, + { + "id": 22036, + "model_id": 22036, + "year": "1992" + }, + { + "id": 22039, + "model_id": 22036, + "year": "1993" + }, + { + "id": 22042, + "model_id": 22036, + "year": "1994" + }, + { + "id": 22045, + "model_id": 22036, + "year": "1995" + }, + { + "id": 22048, + "model_id": 22036, + "year": "1996" + }, + { + "id": 22051, + "model_id": 22036, + "year": "1997" + }, + { + "id": 22054, + "model_id": 22036, + "year": "1998" + }, + { + "id": 22056, + "model_id": 22056, + "year": "2002" + }, + { + "id": 22057, + "model_id": 22056, + "year": "2003" + }, + { + "id": 22058, + "model_id": 22058, + "year": "2004" + }, + { + "id": 22059, + "model_id": 22058, + "year": "2005" + }, + { + "id": 22060, + "model_id": 22058, + "year": "2006" + }, + { + "id": 22061, + "model_id": 22058, + "year": "2007" + }, + { + "id": 22062, + "model_id": 22058, + "year": "2008" + }, + { + "id": 22063, + "model_id": 22058, + "year": "2009" + }, + { + "id": 22064, + "model_id": 22058, + "year": "2010" + }, + { + "id": 22065, + "model_id": 22065, + "year": "2003" + }, + { + "id": 22067, + "model_id": 22065, + "year": "2004" + }, + { + "id": 22069, + "model_id": 22065, + "year": "2005" + }, + { + "id": 22071, + "model_id": 22071, + "year": "2002" + }, + { + "id": 22072, + "model_id": 22071, + "year": "2003" + }, + { + "id": 22073, + "model_id": 22073, + "year": "1984" + }, + { + "id": 22077, + "model_id": 22073, + "year": "1985" + }, + { + "id": 22079, + "model_id": 22073, + "year": "1986" + }, + { + "id": 22080, + "model_id": 22073, + "year": "1987" + }, + { + "id": 22081, + "model_id": 22073, + "year": "1988" + }, + { + "id": 22082, + "model_id": 22073, + "year": "1989" + }, + { + "id": 22083, + "model_id": 22073, + "year": "1990" + }, + { + "id": 22084, + "model_id": 22073, + "year": "1991" + }, + { + "id": 22085, + "model_id": 22073, + "year": "1992" + }, + { + "id": 22086, + "model_id": 22073, + "year": "1993" + }, + { + "id": 22087, + "model_id": 22073, + "year": "1994" + }, + { + "id": 22088, + "model_id": 22073, + "year": "1995" + }, + { + "id": 22089, + "model_id": 22073, + "year": "1996" + }, + { + "id": 22090, + "model_id": 22073, + "year": "1997" + }, + { + "id": 22091, + "model_id": 22073, + "year": "1998" + }, + { + "id": 22092, + "model_id": 22073, + "year": "1999" + }, + { + "id": 22093, + "model_id": 22073, + "year": "2000" + }, + { + "id": 22094, + "model_id": 22073, + "year": "2001" + }, + { + "id": 22095, + "model_id": 22073, + "year": "2002" + }, + { + "id": 22096, + "model_id": 22096, + "year": "2000" + }, + { + "id": 22101, + "model_id": 22096, + "year": "2001" + }, + { + "id": 22106, + "model_id": 22096, + "year": "2002" + }, + { + "id": 22111, + "model_id": 22096, + "year": "2003" + }, + { + "id": 22115, + "model_id": 22096, + "year": "2004" + }, + { + "id": 22119, + "model_id": 22096, + "year": "2005" + }, + { + "id": 22123, + "model_id": 22096, + "year": "2006" + }, + { + "id": 22125, + "model_id": 22125, + "year": "2006" + }, + { + "id": 22127, + "model_id": 22125, + "year": "2007" + }, + { + "id": 22129, + "model_id": 22125, + "year": "2008" + }, + { + "id": 22131, + "model_id": 22131, + "year": "1984" + }, + { + "id": 22134, + "model_id": 22131, + "year": "1985" + }, + { + "id": 22136, + "model_id": 22131, + "year": "1986" + }, + { + "id": 22137, + "model_id": 22131, + "year": "1987" + }, + { + "id": 22138, + "model_id": 22131, + "year": "1988" + }, + { + "id": 22139, + "model_id": 22131, + "year": "1989" + }, + { + "id": 22140, + "model_id": 22131, + "year": "1990" + }, + { + "id": 22141, + "model_id": 22131, + "year": "1991" + }, + { + "id": 22142, + "model_id": 22131, + "year": "1992" + }, + { + "id": 22143, + "model_id": 22143, + "year": "1993" + }, + { + "id": 22144, + "model_id": 22143, + "year": "1994" + }, + { + "id": 22145, + "model_id": 22143, + "year": "1995" + }, + { + "id": 22146, + "model_id": 22143, + "year": "1996" + }, + { + "id": 22147, + "model_id": 22143, + "year": "1997" + }, + { + "id": 22148, + "model_id": 22143, + "year": "1998" + }, + { + "id": 22149, + "model_id": 22149, + "year": "2017" + }, + { + "id": 22153, + "model_id": 22153, + "year": "2015" + }, + { + "id": 22156, + "model_id": 22153, + "year": "2016" + }, + { + "id": 22159, + "model_id": 22159, + "year": "2009" + }, + { + "id": 22161, + "model_id": 22159, + "year": "2010" + }, + { + "id": 22164, + "model_id": 22159, + "year": "2011" + }, + { + "id": 22167, + "model_id": 22159, + "year": "2012" + }, + { + "id": 22170, + "model_id": 22159, + "year": "2013" + }, + { + "id": 22173, + "model_id": 22159, + "year": "2014" + }, + { + "id": 22176, + "model_id": 22159, + "year": "2015" + }, + { + "id": 22179, + "model_id": 22159, + "year": "2016" + }, + { + "id": 22182, + "model_id": 22182, + "year": "2010" + }, + { + "id": 22185, + "model_id": 22182, + "year": "2011" + }, + { + "id": 22188, + "model_id": 22182, + "year": "2012" + }, + { + "id": 22190, + "model_id": 22182, + "year": "2013" + }, + { + "id": 22192, + "model_id": 22182, + "year": "2014" + }, + { + "id": 22194, + "model_id": 22182, + "year": "2015" + }, + { + "id": 22196, + "model_id": 22182, + "year": "2016" + }, + { + "id": 22198, + "model_id": 22198, + "year": "2011" + }, + { + "id": 22199, + "model_id": 22199, + "year": "2013" + }, + { + "id": 22201, + "model_id": 22199, + "year": "2014" + }, + { + "id": 22203, + "model_id": 22199, + "year": "2015" + }, + { + "id": 22205, + "model_id": 22199, + "year": "2016" + }, + { + "id": 22207, + "model_id": 22207, + "year": "2007" + }, + { + "id": 22209, + "model_id": 22207, + "year": "2008" + }, + { + "id": 22211, + "model_id": 22207, + "year": "2009" + }, + { + "id": 22213, + "model_id": 22207, + "year": "2010" + }, + { + "id": 22215, + "model_id": 22207, + "year": "2011" + }, + { + "id": 22217, + "model_id": 22207, + "year": "2012" + }, + { + "id": 22219, + "model_id": 22207, + "year": "2013" + }, + { + "id": 22221, + "model_id": 22207, + "year": "2014" + }, + { + "id": 22223, + "model_id": 22207, + "year": "2015" + }, + { + "id": 22225, + "model_id": 22207, + "year": "2016" + }, + { + "id": 22229, + "model_id": 22229, + "year": "2007" + }, + { + "id": 22231, + "model_id": 22229, + "year": "2008" + }, + { + "id": 22233, + "model_id": 22229, + "year": "2009" + }, + { + "id": 22235, + "model_id": 22229, + "year": "2010" + }, + { + "id": 22237, + "model_id": 22229, + "year": "2011" + }, + { + "id": 22239, + "model_id": 22229, + "year": "2012" + }, + { + "id": 22241, + "model_id": 22229, + "year": "2013" + }, + { + "id": 22245, + "model_id": 22229, + "year": "2014" + }, + { + "id": 22249, + "model_id": 22229, + "year": "2015" + }, + { + "id": 22253, + "model_id": 22229, + "year": "2016" + }, + { + "id": 22257, + "model_id": 22229, + "year": "2017" + }, + { + "id": 22259, + "model_id": 22259, + "year": "2011" + }, + { + "id": 22260, + "model_id": 22259, + "year": "2012" + }, + { + "id": 22261, + "model_id": 22259, + "year": "2013" + }, + { + "id": 22262, + "model_id": 22259, + "year": "2014" + }, + { + "id": 22263, + "model_id": 22259, + "year": "2015" + }, + { + "id": 22264, + "model_id": 22259, + "year": "2016" + }, + { + "id": 22265, + "model_id": 22259, + "year": "2017" + }, + { + "id": 22266, + "model_id": 22266, + "year": "1998" + }, + { + "id": 22268, + "model_id": 22266, + "year": "1999" + }, + { + "id": 22272, + "model_id": 22266, + "year": "2000" + }, + { + "id": 22274, + "model_id": 22266, + "year": "2001" + }, + { + "id": 22276, + "model_id": 22266, + "year": "2002" + }, + { + "id": 22278, + "model_id": 22266, + "year": "2003" + }, + { + "id": 22279, + "model_id": 22266, + "year": "2004" + }, + { + "id": 22280, + "model_id": 22266, + "year": "2005" + }, + { + "id": 22281, + "model_id": 22266, + "year": "2006" + }, + { + "id": 22282, + "model_id": 22266, + "year": "2007" + }, + { + "id": 22283, + "model_id": 22266, + "year": "2008" + }, + { + "id": 22284, + "model_id": 22266, + "year": "2009" + }, + { + "id": 22285, + "model_id": 22266, + "year": "2010" + }, + { + "id": 22286, + "model_id": 22266, + "year": "2011" + }, + { + "id": 22288, + "model_id": 22266, + "year": "2012" + }, + { + "id": 22290, + "model_id": 22266, + "year": "2013" + }, + { + "id": 22292, + "model_id": 22266, + "year": "2014" + }, + { + "id": 22294, + "model_id": 22266, + "year": "2015" + }, + { + "id": 22296, + "model_id": 22266, + "year": "2016" + }, + { + "id": 22298, + "model_id": 22266, + "year": "2017" + }, + { + "id": 22300, + "model_id": 22300, + "year": "2015" + }, + { + "id": 22302, + "model_id": 22300, + "year": "2016" + }, + { + "id": 22304, + "model_id": 22300, + "year": "2017" + }, + { + "id": 22306, + "model_id": 22306, + "year": "2011" + }, + { + "id": 22307, + "model_id": 22307, + "year": "1984" + }, + { + "id": 22309, + "model_id": 22307, + "year": "1985" + }, + { + "id": 22310, + "model_id": 22307, + "year": "1986" + }, + { + "id": 22311, + "model_id": 22307, + "year": "1987" + }, + { + "id": 22312, + "model_id": 22307, + "year": "1988" + }, + { + "id": 22313, + "model_id": 22307, + "year": "1989" + }, + { + "id": 22314, + "model_id": 22307, + "year": "1990" + }, + { + "id": 22315, + "model_id": 22307, + "year": "1991" + }, + { + "id": 22316, + "model_id": 22307, + "year": "1992" + }, + { + "id": 22318, + "model_id": 22307, + "year": "1993" + }, + { + "id": 22319, + "model_id": 22307, + "year": "1994" + }, + { + "id": 22320, + "model_id": 22307, + "year": "1995" + }, + { + "id": 22321, + "model_id": 22307, + "year": "1996" + }, + { + "id": 22322, + "model_id": 22307, + "year": "1997" + }, + { + "id": 22323, + "model_id": 22307, + "year": "1998" + }, + { + "id": 22324, + "model_id": 22307, + "year": "1999" + }, + { + "id": 22325, + "model_id": 22307, + "year": "2000" + }, + { + "id": 22326, + "model_id": 22307, + "year": "2001" + }, + { + "id": 22327, + "model_id": 22307, + "year": "2002" + }, + { + "id": 22328, + "model_id": 22307, + "year": "2003" + }, + { + "id": 22329, + "model_id": 22307, + "year": "2004" + }, + { + "id": 22330, + "model_id": 22307, + "year": "2005" + }, + { + "id": 22331, + "model_id": 22307, + "year": "2006" + }, + { + "id": 22333, + "model_id": 22307, + "year": "2007" + }, + { + "id": 22335, + "model_id": 22307, + "year": "2008" + }, + { + "id": 22337, + "model_id": 22307, + "year": "2009" + }, + { + "id": 22338, + "model_id": 22307, + "year": "2010" + }, + { + "id": 22339, + "model_id": 22307, + "year": "2011" + }, + { + "id": 22340, + "model_id": 22340, + "year": "2006" + }, + { + "id": 22341, + "model_id": 22341, + "year": "1986" + }, + { + "id": 22342, + "model_id": 22342, + "year": "2003" + }, + { + "id": 22343, + "model_id": 22343, + "year": "1998" + }, + { + "id": 22344, + "model_id": 22344, + "year": "1991" + }, + { + "id": 22345, + "model_id": 22344, + "year": "1992" + }, + { + "id": 22346, + "model_id": 22344, + "year": "1993" + }, + { + "id": 22347, + "model_id": 22347, + "year": "2005" + }, + { + "id": 22348, + "model_id": 22348, + "year": "2006" + }, + { + "id": 22349, + "model_id": 22348, + "year": "2007" + }, + { + "id": 22351, + "model_id": 22348, + "year": "2008" + }, + { + "id": 22353, + "model_id": 22348, + "year": "2009" + }, + { + "id": 22355, + "model_id": 22348, + "year": "2010" + }, + { + "id": 22357, + "model_id": 22348, + "year": "2011" + }, + { + "id": 22359, + "model_id": 22359, + "year": "1992" + }, + { + "id": 22360, + "model_id": 22360, + "year": "1984" + }, + { + "id": 22362, + "model_id": 22362, + "year": "1985" + }, + { + "id": 22363, + "model_id": 22362, + "year": "1988" + }, + { + "id": 22364, + "model_id": 22362, + "year": "1989" + }, + { + "id": 22367, + "model_id": 22362, + "year": "1990" + }, + { + "id": 22368, + "model_id": 22362, + "year": "1991" + }, + { + "id": 22369, + "model_id": 22362, + "year": "1993" + }, + { + "id": 22370, + "model_id": 22362, + "year": "1994" + }, + { + "id": 22371, + "model_id": 22362, + "year": "1995" + }, + { + "id": 22372, + "model_id": 22372, + "year": "1987" + }, + { + "id": 22374, + "model_id": 22374, + "year": "1997" + }, + { + "id": 22375, + "model_id": 22374, + "year": "1999" + }, + { + "id": 22376, + "model_id": 22374, + "year": "2001" + }, + { + "id": 22377, + "model_id": 22374, + "year": "2002" + }, + { + "id": 22378, + "model_id": 22374, + "year": "2003" + }, + { + "id": 22379, + "model_id": 22374, + "year": "2004" + }, + { + "id": 22380, + "model_id": 22380, + "year": "2000" + }, + { + "id": 22381, + "model_id": 22381, + "year": "2010" + }, + { + "id": 22382, + "model_id": 22381, + "year": "2011" + }, + { + "id": 22386, + "model_id": 22381, + "year": "2012" + }, + { + "id": 22390, + "model_id": 22381, + "year": "2013" + }, + { + "id": 22394, + "model_id": 22381, + "year": "2014" + }, + { + "id": 22398, + "model_id": 22398, + "year": "2011" + }, + { + "id": 22399, + "model_id": 22399, + "year": "1989" + }, + { + "id": 22400, + "model_id": 22400, + "year": "1989" + }, + { + "id": 22402, + "model_id": 22400, + "year": "1990" + }, + { + "id": 22404, + "model_id": 22404, + "year": "1989" + }, + { + "id": 22406, + "model_id": 22404, + "year": "1990" + }, + { + "id": 22408, + "model_id": 22404, + "year": "1991" + }, + { + "id": 22409, + "model_id": 22409, + "year": "1989" + }, + { + "id": 22410, + "model_id": 22409, + "year": "1990" + }, + { + "id": 22412, + "model_id": 22412, + "year": "1984" + }, + { + "id": 22414, + "model_id": 22412, + "year": "1985" + }, + { + "id": 22418, + "model_id": 22412, + "year": "1986" + }, + { + "id": 22419, + "model_id": 22412, + "year": "1987" + }, + { + "id": 22421, + "model_id": 22421, + "year": "1986" + }, + { + "id": 22422, + "model_id": 22421, + "year": "1987" + }, + { + "id": 22424, + "model_id": 22424, + "year": "1986" + }, + { + "id": 22425, + "model_id": 22424, + "year": "1987" + }, + { + "id": 22427, + "model_id": 22427, + "year": "2005" + }, + { + "id": 22429, + "model_id": 22429, + "year": "2002" + }, + { + "id": 22431, + "model_id": 22431, + "year": "2003" + }, + { + "id": 22433, + "model_id": 22431, + "year": "2004" + }, + { + "id": 22435, + "model_id": 22435, + "year": "2006" + }, + { + "id": 22437, + "model_id": 22437, + "year": "2016" + }, + { + "id": 22438, + "model_id": 22438, + "year": "2014" + }, + { + "id": 22440, + "model_id": 22438, + "year": "2015" + }, + { + "id": 22441, + "model_id": 22438, + "year": "2016" + }, + { + "id": 22442, + "model_id": 22442, + "year": "2015" + }, + { + "id": 22443, + "model_id": 22442, + "year": "2016" + }, + { + "id": 22444, + "model_id": 22444, + "year": "2008" + }, + { + "id": 22445, + "model_id": 22444, + "year": "2009" + }, + { + "id": 22446, + "model_id": 22444, + "year": "2010" + }, + { + "id": 22448, + "model_id": 22444, + "year": "2011" + }, + { + "id": 22450, + "model_id": 22444, + "year": "2012" + }, + { + "id": 22451, + "model_id": 22444, + "year": "2013" + }, + { + "id": 22452, + "model_id": 22444, + "year": "2014" + }, + { + "id": 22453, + "model_id": 22444, + "year": "2015" + }, + { + "id": 22454, + "model_id": 22444, + "year": "2016" + }, + { + "id": 22455, + "model_id": 22444, + "year": "2017" + }, + { + "id": 22456, + "model_id": 22456, + "year": "2010" + }, + { + "id": 22457, + "model_id": 22456, + "year": "2011" + }, + { + "id": 22458, + "model_id": 22456, + "year": "2012" + }, + { + "id": 22459, + "model_id": 22456, + "year": "2013" + }, + { + "id": 22460, + "model_id": 22456, + "year": "2014" + }, + { + "id": 22461, + "model_id": 22456, + "year": "2015" + }, + { + "id": 22462, + "model_id": 22456, + "year": "2016" + }, + { + "id": 22463, + "model_id": 22456, + "year": "2017" + }, + { + "id": 22464, + "model_id": 22464, + "year": "1989" + }, + { + "id": 22466, + "model_id": 22464, + "year": "1990" + }, + { + "id": 22468, + "model_id": 22468, + "year": "1988" + }, + { + "id": 22469, + "model_id": 22469, + "year": "1984" + }, + { + "id": 22471, + "model_id": 22469, + "year": "1985" + }, + { + "id": 22472, + "model_id": 22469, + "year": "1986" + }, + { + "id": 22473, + "model_id": 22469, + "year": "2005" + }, + { + "id": 22474, + "model_id": 22469, + "year": "2006" + }, + { + "id": 22475, + "model_id": 22469, + "year": "2008" + }, + { + "id": 22476, + "model_id": 22469, + "year": "2009" + }, + { + "id": 22477, + "model_id": 22469, + "year": "2010" + }, + { + "id": 22479, + "model_id": 22469, + "year": "2011" + }, + { + "id": 22481, + "model_id": 22469, + "year": "2012" + }, + { + "id": 22482, + "model_id": 22469, + "year": "2013" + }, + { + "id": 22483, + "model_id": 22483, + "year": "2014" + }, + { + "id": 22484, + "model_id": 22483, + "year": "2015" + }, + { + "id": 22485, + "model_id": 22483, + "year": "2016" + }, + { + "id": 22486, + "model_id": 22486, + "year": "2016" + }, + { + "id": 22487, + "model_id": 22487, + "year": "2014" + }, + { + "id": 22488, + "model_id": 22487, + "year": "2015" + }, + { + "id": 22489, + "model_id": 22487, + "year": "2016" + }, + { + "id": 22490, + "model_id": 22490, + "year": "2007" + }, + { + "id": 22492, + "model_id": 22492, + "year": "2002" + }, + { + "id": 22494, + "model_id": 22494, + "year": "2003" + }, + { + "id": 22496, + "model_id": 22494, + "year": "2004" + }, + { + "id": 22498, + "model_id": 22498, + "year": "1989" + }, + { + "id": 22500, + "model_id": 22498, + "year": "1990" + }, + { + "id": 22502, + "model_id": 22498, + "year": "1991" + }, + { + "id": 22504, + "model_id": 22504, + "year": "2005" + }, + { + "id": 22506, + "model_id": 22506, + "year": "2004" + }, + { + "id": 22507, + "model_id": 22506, + "year": "2005" + }, + { + "id": 22508, + "model_id": 22506, + "year": "2006" + }, + { + "id": 22509, + "model_id": 22506, + "year": "2007" + }, + { + "id": 22510, + "model_id": 22506, + "year": "2008" + }, + { + "id": 22511, + "model_id": 22506, + "year": "2009" + }, + { + "id": 22512, + "model_id": 22506, + "year": "2010" + }, + { + "id": 22513, + "model_id": 22506, + "year": "2011" + }, + { + "id": 22514, + "model_id": 22506, + "year": "2012" + }, + { + "id": 22515, + "model_id": 22515, + "year": "2004" + }, + { + "id": 22516, + "model_id": 22515, + "year": "2005" + }, + { + "id": 22517, + "model_id": 22515, + "year": "2006" + }, + { + "id": 22518, + "model_id": 22515, + "year": "2007" + }, + { + "id": 22519, + "model_id": 22515, + "year": "2008" + }, + { + "id": 22520, + "model_id": 22515, + "year": "2009" + }, + { + "id": 22521, + "model_id": 22515, + "year": "2011" + }, + { + "id": 22522, + "model_id": 22515, + "year": "2012" + }, + { + "id": 22523, + "model_id": 22523, + "year": "2011" + }, + { + "id": 22524, + "model_id": 22523, + "year": "2012" + }, + { + "id": 22525, + "model_id": 22525, + "year": "2010" + }, + { + "id": 22526, + "model_id": 22526, + "year": "2006" + }, + { + "id": 22527, + "model_id": 22526, + "year": "2007" + }, + { + "id": 22528, + "model_id": 22526, + "year": "2008" + }, + { + "id": 22529, + "model_id": 22526, + "year": "2009" + }, + { + "id": 22530, + "model_id": 22526, + "year": "2010" + }, + { + "id": 22531, + "model_id": 22531, + "year": "2011" + }, + { + "id": 22532, + "model_id": 22531, + "year": "2012" + }, + { + "id": 22533, + "model_id": 22533, + "year": "2007" + }, + { + "id": 22534, + "model_id": 22533, + "year": "2008" + }, + { + "id": 22535, + "model_id": 22533, + "year": "2009" + }, + { + "id": 22536, + "model_id": 22536, + "year": "2012" + }, + { + "id": 22537, + "model_id": 22537, + "year": "2011" + }, + { + "id": 22539, + "model_id": 22537, + "year": "2012" + }, + { + "id": 22541, + "model_id": 22537, + "year": "2013" + }, + { + "id": 22543, + "model_id": 22537, + "year": "2014" + }, + { + "id": 22545, + "model_id": 22537, + "year": "2016" + }, + { + "id": 22547, + "model_id": 22547, + "year": "2004" + }, + { + "id": 22552, + "model_id": 22547, + "year": "2005" + }, + { + "id": 22556, + "model_id": 22547, + "year": "2006" + }, + { + "id": 22560, + "model_id": 22547, + "year": "2007" + }, + { + "id": 22565, + "model_id": 22547, + "year": "2008" + }, + { + "id": 22569, + "model_id": 22547, + "year": "2009" + }, + { + "id": 22573, + "model_id": 22547, + "year": "2010" + }, + { + "id": 22577, + "model_id": 22547, + "year": "2011" + }, + { + "id": 22581, + "model_id": 22547, + "year": "2012" + }, + { + "id": 22585, + "model_id": 22547, + "year": "2013" + }, + { + "id": 22589, + "model_id": 22589, + "year": "2006" + }, + { + "id": 22591, + "model_id": 22589, + "year": "2007" + }, + { + "id": 22593, + "model_id": 22589, + "year": "2008" + }, + { + "id": 22595, + "model_id": 22589, + "year": "2009" + }, + { + "id": 22597, + "model_id": 22589, + "year": "2010" + }, + { + "id": 22599, + "model_id": 22589, + "year": "2012" + }, + { + "id": 22601, + "model_id": 22589, + "year": "2013" + }, + { + "id": 22603, + "model_id": 22589, + "year": "2014" + }, + { + "id": 22605, + "model_id": 22589, + "year": "2015" + }, + { + "id": 22606, + "model_id": 22606, + "year": "2003" + }, + { + "id": 22610, + "model_id": 22606, + "year": "2004" + }, + { + "id": 22614, + "model_id": 22606, + "year": "2005" + }, + { + "id": 22618, + "model_id": 22606, + "year": "2006" + }, + { + "id": 22623, + "model_id": 22606, + "year": "2007" + }, + { + "id": 22628, + "model_id": 22606, + "year": "2008" + }, + { + "id": 22632, + "model_id": 22606, + "year": "2009" + }, + { + "id": 22635, + "model_id": 22606, + "year": "2010" + }, + { + "id": 22638, + "model_id": 22606, + "year": "2011" + }, + { + "id": 22641, + "model_id": 22606, + "year": "2012" + }, + { + "id": 22644, + "model_id": 22606, + "year": "2013" + }, + { + "id": 22647, + "model_id": 22606, + "year": "2014" + }, + { + "id": 22650, + "model_id": 22606, + "year": "2015" + }, + { + "id": 22653, + "model_id": 22606, + "year": "2016" + }, + { + "id": 22656, + "model_id": 22656, + "year": "1986" + }, + { + "id": 22659, + "model_id": 22656, + "year": "1987" + }, + { + "id": 22662, + "model_id": 22656, + "year": "1988" + }, + { + "id": 22667, + "model_id": 22656, + "year": "1989" + }, + { + "id": 22672, + "model_id": 22656, + "year": "1992" + }, + { + "id": 22674, + "model_id": 22656, + "year": "1993" + }, + { + "id": 22678, + "model_id": 22656, + "year": "1994" + }, + { + "id": 22682, + "model_id": 22656, + "year": "1995" + }, + { + "id": 22684, + "model_id": 22684, + "year": "1984" + }, + { + "id": 22690, + "model_id": 22684, + "year": "1985" + }, + { + "id": 22693, + "model_id": 22684, + "year": "1986" + }, + { + "id": 22696, + "model_id": 22684, + "year": "1987" + }, + { + "id": 22699, + "model_id": 22684, + "year": "1993" + }, + { + "id": 22703, + "model_id": 22684, + "year": "1994" + }, + { + "id": 22707, + "model_id": 22684, + "year": "1995" + }, + { + "id": 22711, + "model_id": 22684, + "year": "1996" + }, + { + "id": 22715, + "model_id": 22684, + "year": "1997" + }, + { + "id": 22719, + "model_id": 22684, + "year": "1998" + }, + { + "id": 22723, + "model_id": 22684, + "year": "1999" + }, + { + "id": 22727, + "model_id": 22684, + "year": "2000" + }, + { + "id": 22731, + "model_id": 22684, + "year": "2001" + }, + { + "id": 22735, + "model_id": 22684, + "year": "2002" + }, + { + "id": 22739, + "model_id": 22739, + "year": "1988" + }, + { + "id": 22741, + "model_id": 22739, + "year": "1989" + }, + { + "id": 22743, + "model_id": 22739, + "year": "1990" + }, + { + "id": 22745, + "model_id": 22739, + "year": "1991" + }, + { + "id": 22747, + "model_id": 22739, + "year": "1992" + }, + { + "id": 22748, + "model_id": 22739, + "year": "1993" + }, + { + "id": 22749, + "model_id": 22739, + "year": "1994" + }, + { + "id": 22750, + "model_id": 22739, + "year": "1995" + }, + { + "id": 22751, + "model_id": 22751, + "year": "2000" + }, + { + "id": 22753, + "model_id": 22753, + "year": "2014" + }, + { + "id": 22757, + "model_id": 22753, + "year": "2015" + }, + { + "id": 22762, + "model_id": 22753, + "year": "2016" + }, + { + "id": 22767, + "model_id": 22767, + "year": "2014" + }, + { + "id": 22771, + "model_id": 22767, + "year": "2015" + }, + { + "id": 22776, + "model_id": 22767, + "year": "2016" + }, + { + "id": 22781, + "model_id": 22781, + "year": "2012" + }, + { + "id": 22783, + "model_id": 22781, + "year": "2013" + }, + { + "id": 22785, + "model_id": 22785, + "year": "2012" + }, + { + "id": 22787, + "model_id": 22785, + "year": "2013" + }, + { + "id": 22789, + "model_id": 22789, + "year": "1991" + }, + { + "id": 22791, + "model_id": 22791, + "year": "1987" + }, + { + "id": 22793, + "model_id": 22791, + "year": "1988" + }, + { + "id": 22795, + "model_id": 22791, + "year": "1989" + }, + { + "id": 22797, + "model_id": 22797, + "year": "1990" + }, + { + "id": 22805, + "model_id": 22797, + "year": "1991" + }, + { + "id": 22811, + "model_id": 22811, + "year": "2004" + }, + { + "id": 22813, + "model_id": 22811, + "year": "2005" + }, + { + "id": 22815, + "model_id": 22811, + "year": "2006" + }, + { + "id": 22817, + "model_id": 22811, + "year": "2007" + }, + { + "id": 22819, + "model_id": 22819, + "year": "1988" + }, + { + "id": 22823, + "model_id": 22819, + "year": "1989" + }, + { + "id": 22827, + "model_id": 22819, + "year": "1990" + }, + { + "id": 22831, + "model_id": 22819, + "year": "1991" + }, + { + "id": 22835, + "model_id": 22819, + "year": "1992" + }, + { + "id": 22839, + "model_id": 22839, + "year": "1986" + }, + { + "id": 22841, + "model_id": 22841, + "year": "1984" + }, + { + "id": 22848, + "model_id": 22848, + "year": "1987" + }, + { + "id": 22855, + "model_id": 22855, + "year": "1988" + }, + { + "id": 22860, + "model_id": 22855, + "year": "1989" + }, + { + "id": 22863, + "model_id": 22863, + "year": "1990" + }, + { + "id": 22870, + "model_id": 22863, + "year": "1991" + }, + { + "id": 22877, + "model_id": 22863, + "year": "1992" + }, + { + "id": 22883, + "model_id": 22863, + "year": "1993" + }, + { + "id": 22889, + "model_id": 22889, + "year": "2001" + }, + { + "id": 22891, + "model_id": 22889, + "year": "2002" + }, + { + "id": 22893, + "model_id": 22889, + "year": "2003" + }, + { + "id": 22895, + "model_id": 22889, + "year": "2004" + }, + { + "id": 22897, + "model_id": 22889, + "year": "2005" + }, + { + "id": 22899, + "model_id": 22889, + "year": "2006" + }, + { + "id": 22901, + "model_id": 22889, + "year": "2007" + }, + { + "id": 22903, + "model_id": 22889, + "year": "2008" + }, + { + "id": 22905, + "model_id": 22889, + "year": "2009" + }, + { + "id": 22907, + "model_id": 22907, + "year": "1994" + }, + { + "id": 22918, + "model_id": 22907, + "year": "1995" + }, + { + "id": 22929, + "model_id": 22907, + "year": "1996" + }, + { + "id": 22940, + "model_id": 22907, + "year": "1997" + }, + { + "id": 22950, + "model_id": 22950, + "year": "1999" + }, + { + "id": 22952, + "model_id": 22950, + "year": "2001" + }, + { + "id": 22954, + "model_id": 22954, + "year": "1998" + }, + { + "id": 22964, + "model_id": 22964, + "year": "1987" + }, + { + "id": 22966, + "model_id": 22964, + "year": "1988" + }, + { + "id": 22968, + "model_id": 22968, + "year": "1989" + }, + { + "id": 22969, + "model_id": 22968, + "year": "1990" + }, + { + "id": 22971, + "model_id": 22968, + "year": "1991" + }, + { + "id": 22973, + "model_id": 22968, + "year": "1992" + }, + { + "id": 22975, + "model_id": 22968, + "year": "1993" + }, + { + "id": 22977, + "model_id": 22977, + "year": "1999" + }, + { + "id": 22981, + "model_id": 22977, + "year": "2000" + }, + { + "id": 22985, + "model_id": 22977, + "year": "2001" + }, + { + "id": 22989, + "model_id": 22977, + "year": "2002" + }, + { + "id": 22994, + "model_id": 22977, + "year": "2003" + }, + { + "id": 22999, + "model_id": 22977, + "year": "2004" + }, + { + "id": 23001, + "model_id": 22977, + "year": "2005" + }, + { + "id": 23003, + "model_id": 22977, + "year": "2006" + }, + { + "id": 23005, + "model_id": 22977, + "year": "2007" + }, + { + "id": 23007, + "model_id": 22977, + "year": "2008" + }, + { + "id": 23009, + "model_id": 23009, + "year": "2001" + }, + { + "id": 23010, + "model_id": 23010, + "year": "1999" + }, + { + "id": 23014, + "model_id": 23010, + "year": "2000" + }, + { + "id": 23018, + "model_id": 23010, + "year": "2001" + }, + { + "id": 23022, + "model_id": 23010, + "year": "2002" + }, + { + "id": 23026, + "model_id": 23010, + "year": "2003" + }, + { + "id": 23030, + "model_id": 23010, + "year": "2004" + }, + { + "id": 23034, + "model_id": 23010, + "year": "2005" + }, + { + "id": 23038, + "model_id": 23010, + "year": "2006" + }, + { + "id": 23042, + "model_id": 23010, + "year": "2007" + }, + { + "id": 23045, + "model_id": 23010, + "year": "2008" + }, + { + "id": 23048, + "model_id": 23010, + "year": "2009" + }, + { + "id": 23050, + "model_id": 23050, + "year": "2016" + }, + { + "id": 23052, + "model_id": 23050, + "year": "2017" + }, + { + "id": 23054, + "model_id": 23054, + "year": "2013" + }, + { + "id": 23057, + "model_id": 23054, + "year": "2014" + }, + { + "id": 23062, + "model_id": 23054, + "year": "2015" + }, + { + "id": 23067, + "model_id": 23054, + "year": "2016" + }, + { + "id": 23070, + "model_id": 23070, + "year": "2007" + }, + { + "id": 23072, + "model_id": 23070, + "year": "2008" + }, + { + "id": 23074, + "model_id": 23070, + "year": "2009" + }, + { + "id": 23076, + "model_id": 23070, + "year": "2010" + }, + { + "id": 23079, + "model_id": 23070, + "year": "2011" + }, + { + "id": 23082, + "model_id": 23070, + "year": "2012" + }, + { + "id": 23085, + "model_id": 23085, + "year": "2007" + }, + { + "id": 23087, + "model_id": 23085, + "year": "2008" + }, + { + "id": 23089, + "model_id": 23085, + "year": "2009" + }, + { + "id": 23091, + "model_id": 23085, + "year": "2010" + }, + { + "id": 23093, + "model_id": 23085, + "year": "2011" + }, + { + "id": 23095, + "model_id": 23085, + "year": "2012" + }, + { + "id": 23097, + "model_id": 23085, + "year": "2013" + }, + { + "id": 23099, + "model_id": 23085, + "year": "2014" + }, + { + "id": 23101, + "model_id": 23085, + "year": "2015" + }, + { + "id": 23103, + "model_id": 23085, + "year": "2016" + }, + { + "id": 23105, + "model_id": 23105, + "year": "1984" + }, + { + "id": 23111, + "model_id": 23105, + "year": "1985" + }, + { + "id": 23115, + "model_id": 23115, + "year": "1984" + }, + { + "id": 23118, + "model_id": 23115, + "year": "1985" + }, + { + "id": 23121, + "model_id": 23115, + "year": "1986" + }, + { + "id": 23124, + "model_id": 23124, + "year": "1995" + }, + { + "id": 23126, + "model_id": 23124, + "year": "1996" + }, + { + "id": 23128, + "model_id": 23124, + "year": "1997" + }, + { + "id": 23130, + "model_id": 23124, + "year": "1998" + }, + { + "id": 23132, + "model_id": 23124, + "year": "1999" + }, + { + "id": 23134, + "model_id": 23124, + "year": "2000" + }, + { + "id": 23136, + "model_id": 23124, + "year": "2001" + }, + { + "id": 23138, + "model_id": 23124, + "year": "2002" + }, + { + "id": 23140, + "model_id": 23140, + "year": "1989" + }, + { + "id": 23147, + "model_id": 23140, + "year": "1990" + }, + { + "id": 23151, + "model_id": 23140, + "year": "1991" + }, + { + "id": 23154, + "model_id": 23140, + "year": "1992" + }, + { + "id": 23156, + "model_id": 23140, + "year": "1993" + }, + { + "id": 23158, + "model_id": 23140, + "year": "1994" + }, + { + "id": 23161, + "model_id": 23140, + "year": "1995" + }, + { + "id": 23163, + "model_id": 23140, + "year": "1996" + }, + { + "id": 23164, + "model_id": 23140, + "year": "1997" + }, + { + "id": 23165, + "model_id": 23140, + "year": "1998" + }, + { + "id": 23166, + "model_id": 23140, + "year": "2000" + }, + { + "id": 23167, + "model_id": 23140, + "year": "2001" + }, + { + "id": 23168, + "model_id": 23140, + "year": "2002" + }, + { + "id": 23169, + "model_id": 23140, + "year": "2003" + }, + { + "id": 23170, + "model_id": 23140, + "year": "2004" + }, + { + "id": 23171, + "model_id": 23140, + "year": "2005" + }, + { + "id": 23172, + "model_id": 23140, + "year": "2006" + }, + { + "id": 23173, + "model_id": 23173, + "year": "1990" + }, + { + "id": 23175, + "model_id": 23173, + "year": "1991" + }, + { + "id": 23177, + "model_id": 23173, + "year": "1992" + }, + { + "id": 23179, + "model_id": 23173, + "year": "1993" + }, + { + "id": 23180, + "model_id": 23173, + "year": "1994" + }, + { + "id": 23182, + "model_id": 23173, + "year": "1995" + }, + { + "id": 23183, + "model_id": 23173, + "year": "1996" + }, + { + "id": 23184, + "model_id": 23173, + "year": "1997" + }, + { + "id": 23185, + "model_id": 23173, + "year": "1998" + }, + { + "id": 23186, + "model_id": 23186, + "year": "1992" + }, + { + "id": 23190, + "model_id": 23186, + "year": "1993" + }, + { + "id": 23194, + "model_id": 23186, + "year": "1994" + }, + { + "id": 23198, + "model_id": 23186, + "year": "1995" + }, + { + "id": 23202, + "model_id": 23186, + "year": "1996" + }, + { + "id": 23206, + "model_id": 23206, + "year": "2006" + }, + { + "id": 23209, + "model_id": 23206, + "year": "2007" + }, + { + "id": 23212, + "model_id": 23206, + "year": "2008" + }, + { + "id": 23215, + "model_id": 23206, + "year": "2009" + }, + { + "id": 23218, + "model_id": 23206, + "year": "2010" + }, + { + "id": 23221, + "model_id": 23206, + "year": "2011" + }, + { + "id": 23224, + "model_id": 23206, + "year": "2012" + }, + { + "id": 23227, + "model_id": 23206, + "year": "2013" + }, + { + "id": 23230, + "model_id": 23206, + "year": "2014" + }, + { + "id": 23233, + "model_id": 23206, + "year": "2015" + }, + { + "id": 23236, + "model_id": 23206, + "year": "2016" + }, + { + "id": 23238, + "model_id": 23238, + "year": "1990" + }, + { + "id": 23240, + "model_id": 23238, + "year": "1991" + }, + { + "id": 23242, + "model_id": 23238, + "year": "1992" + }, + { + "id": 23244, + "model_id": 23238, + "year": "1993" + }, + { + "id": 23246, + "model_id": 23238, + "year": "1994" + }, + { + "id": 23248, + "model_id": 23238, + "year": "1995" + }, + { + "id": 23250, + "model_id": 23238, + "year": "1996" + }, + { + "id": 23252, + "model_id": 23238, + "year": "1997" + }, + { + "id": 23254, + "model_id": 23238, + "year": "1999" + }, + { + "id": 23257, + "model_id": 23238, + "year": "2000" + }, + { + "id": 23260, + "model_id": 23238, + "year": "2001" + }, + { + "id": 23263, + "model_id": 23238, + "year": "2002" + }, + { + "id": 23266, + "model_id": 23238, + "year": "2003" + }, + { + "id": 23269, + "model_id": 23238, + "year": "2004" + }, + { + "id": 23273, + "model_id": 23238, + "year": "2005" + }, + { + "id": 23277, + "model_id": 23277, + "year": "1993" + }, + { + "id": 23281, + "model_id": 23277, + "year": "1994" + }, + { + "id": 23285, + "model_id": 23277, + "year": "1995" + }, + { + "id": 23289, + "model_id": 23277, + "year": "1996" + }, + { + "id": 23293, + "model_id": 23277, + "year": "1997" + }, + { + "id": 23297, + "model_id": 23297, + "year": "1991" + }, + { + "id": 23301, + "model_id": 23297, + "year": "1992" + }, + { + "id": 23303, + "model_id": 23297, + "year": "1993" + }, + { + "id": 23305, + "model_id": 23297, + "year": "1994" + }, + { + "id": 23307, + "model_id": 23307, + "year": "1992" + }, + { + "id": 23309, + "model_id": 23307, + "year": "1993" + }, + { + "id": 23311, + "model_id": 23307, + "year": "1994" + }, + { + "id": 23313, + "model_id": 23313, + "year": "1992" + }, + { + "id": 23317, + "model_id": 23313, + "year": "1993" + }, + { + "id": 23321, + "model_id": 23313, + "year": "1994" + }, + { + "id": 23325, + "model_id": 23313, + "year": "1995" + }, + { + "id": 23331, + "model_id": 23313, + "year": "1996" + }, + { + "id": 23335, + "model_id": 23313, + "year": "1997" + }, + { + "id": 23339, + "model_id": 23313, + "year": "1998" + }, + { + "id": 23343, + "model_id": 23313, + "year": "1999" + }, + { + "id": 23347, + "model_id": 23313, + "year": "2000" + }, + { + "id": 23351, + "model_id": 23351, + "year": "2002" + }, + { + "id": 23354, + "model_id": 23351, + "year": "2003" + }, + { + "id": 23358, + "model_id": 23358, + "year": "2001" + }, + { + "id": 23362, + "model_id": 23362, + "year": "1984" + }, + { + "id": 23368, + "model_id": 23362, + "year": "1985" + }, + { + "id": 23373, + "model_id": 23362, + "year": "1986" + }, + { + "id": 23375, + "model_id": 23362, + "year": "1987" + }, + { + "id": 23378, + "model_id": 23362, + "year": "1988" + }, + { + "id": 23381, + "model_id": 23362, + "year": "1989" + }, + { + "id": 23384, + "model_id": 23362, + "year": "1990" + }, + { + "id": 23387, + "model_id": 23362, + "year": "1991" + }, + { + "id": 23390, + "model_id": 23362, + "year": "1992" + }, + { + "id": 23392, + "model_id": 23362, + "year": "1993" + }, + { + "id": 23394, + "model_id": 23362, + "year": "1994" + }, + { + "id": 23396, + "model_id": 23362, + "year": "1995" + }, + { + "id": 23398, + "model_id": 23398, + "year": "2004" + }, + { + "id": 23400, + "model_id": 23398, + "year": "2005" + }, + { + "id": 23402, + "model_id": 23398, + "year": "2006" + }, + { + "id": 23404, + "model_id": 23398, + "year": "2007" + }, + { + "id": 23406, + "model_id": 23398, + "year": "2008" + }, + { + "id": 23408, + "model_id": 23398, + "year": "2009" + }, + { + "id": 23410, + "model_id": 23398, + "year": "2010" + }, + { + "id": 23412, + "model_id": 23398, + "year": "2011" + }, + { + "id": 23414, + "model_id": 23414, + "year": "2008" + }, + { + "id": 23415, + "model_id": 23414, + "year": "2009" + }, + { + "id": 23416, + "model_id": 23414, + "year": "2010" + }, + { + "id": 23417, + "model_id": 23414, + "year": "2011" + }, + { + "id": 23418, + "model_id": 23414, + "year": "2012" + }, + { + "id": 23419, + "model_id": 23414, + "year": "2013" + }, + { + "id": 23420, + "model_id": 23420, + "year": "2001" + }, + { + "id": 23424, + "model_id": 23420, + "year": "2002" + }, + { + "id": 23428, + "model_id": 23420, + "year": "2003" + }, + { + "id": 23432, + "model_id": 23420, + "year": "2004" + }, + { + "id": 23436, + "model_id": 23420, + "year": "2005" + }, + { + "id": 23442, + "model_id": 23420, + "year": "2006" + }, + { + "id": 23448, + "model_id": 23420, + "year": "2008" + }, + { + "id": 23453, + "model_id": 23420, + "year": "2009" + }, + { + "id": 23458, + "model_id": 23420, + "year": "2010" + }, + { + "id": 23463, + "model_id": 23420, + "year": "2011" + }, + { + "id": 23468, + "model_id": 23468, + "year": "2006" + }, + { + "id": 23469, + "model_id": 23468, + "year": "2008" + }, + { + "id": 23471, + "model_id": 23468, + "year": "2009" + }, + { + "id": 23473, + "model_id": 23468, + "year": "2010" + }, + { + "id": 23475, + "model_id": 23468, + "year": "2011" + }, + { + "id": 23477, + "model_id": 23477, + "year": "1987" + }, + { + "id": 23478, + "model_id": 23477, + "year": "1988" + }, + { + "id": 23479, + "model_id": 23479, + "year": "1987" + }, + { + "id": 23480, + "model_id": 23479, + "year": "1988" + }, + { + "id": 23481, + "model_id": 23481, + "year": "1987" + }, + { + "id": 23482, + "model_id": 23482, + "year": "1987" + }, + { + "id": 23483, + "model_id": 23483, + "year": "2016" + }, + { + "id": 23484, + "model_id": 23484, + "year": "2015" + }, + { + "id": 23485, + "model_id": 23484, + "year": "2016" + }, + { + "id": 23486, + "model_id": 23486, + "year": "2015" + }, + { + "id": 23487, + "model_id": 23486, + "year": "2016" + }, + { + "id": 23488, + "model_id": 23488, + "year": "2016" + }, + { + "id": 23489, + "model_id": 23489, + "year": "2012" + }, + { + "id": 23490, + "model_id": 23489, + "year": "2014" + }, + { + "id": 23491, + "model_id": 23491, + "year": "2014" + }, + { + "id": 23492, + "model_id": 23492, + "year": "2014" + }, + { + "id": 23493, + "model_id": 23492, + "year": "2015" + }, + { + "id": 23494, + "model_id": 23494, + "year": "1985" + }, + { + "id": 23498, + "model_id": 23494, + "year": "1986" + }, + { + "id": 23504, + "model_id": 23504, + "year": "1984" + }, + { + "id": 23514, + "model_id": 23514, + "year": "1987" + }, + { + "id": 23516, + "model_id": 23514, + "year": "1988" + }, + { + "id": 23517, + "model_id": 23514, + "year": "1989" + }, + { + "id": 23518, + "model_id": 23518, + "year": "1987" + }, + { + "id": 23519, + "model_id": 23519, + "year": "1991" + }, + { + "id": 23521, + "model_id": 23521, + "year": "1987" + }, + { + "id": 23523, + "model_id": 23521, + "year": "1988" + }, + { + "id": 23525, + "model_id": 23521, + "year": "1991" + }, + { + "id": 23527, + "model_id": 23521, + "year": "1992" + }, + { + "id": 23529, + "model_id": 23521, + "year": "1993" + }, + { + "id": 23531, + "model_id": 23531, + "year": "1987" + }, + { + "id": 23533, + "model_id": 23533, + "year": "1987" + }, + { + "id": 23534, + "model_id": 23533, + "year": "1988" + }, + { + "id": 23536, + "model_id": 23533, + "year": "1989" + }, + { + "id": 23538, + "model_id": 23533, + "year": "1990" + }, + { + "id": 23540, + "model_id": 23533, + "year": "1991" + }, + { + "id": 23542, + "model_id": 23533, + "year": "1992" + }, + { + "id": 23544, + "model_id": 23533, + "year": "1993" + }, + { + "id": 23546, + "model_id": 23546, + "year": "1991" + }, + { + "id": 23547, + "model_id": 23547, + "year": "1991" + }, + { + "id": 23548, + "model_id": 23548, + "year": "1991" + }, + { + "id": 23550, + "model_id": 23550, + "year": "1991" + }, + { + "id": 23551, + "model_id": 23551, + "year": "1987" + }, + { + "id": 23552, + "model_id": 23551, + "year": "1988" + }, + { + "id": 23554, + "model_id": 23551, + "year": "1989" + }, + { + "id": 23555, + "model_id": 23551, + "year": "1991" + }, + { + "id": 23556, + "model_id": 23556, + "year": "1988" + }, + { + "id": 23557, + "model_id": 23556, + "year": "1989" + }, + { + "id": 23558, + "model_id": 23556, + "year": "1990" + }, + { + "id": 23559, + "model_id": 23556, + "year": "1991" + }, + { + "id": 23560, + "model_id": 23556, + "year": "1992" + }, + { + "id": 23561, + "model_id": 23556, + "year": "1993" + }, + { + "id": 23562, + "model_id": 23562, + "year": "1987" + }, + { + "id": 23563, + "model_id": 23563, + "year": "1990" + }, + { + "id": 23564, + "model_id": 23563, + "year": "1991" + }, + { + "id": 23565, + "model_id": 23563, + "year": "1992" + }, + { + "id": 23566, + "model_id": 23563, + "year": "1993" + }, + { + "id": 23567, + "model_id": 23567, + "year": "1984" + }, + { + "id": 23570, + "model_id": 23567, + "year": "1985" + }, + { + "id": 23572, + "model_id": 23572, + "year": "1986" + }, + { + "id": 23574, + "model_id": 23572, + "year": "1987" + }, + { + "id": 23575, + "model_id": 23572, + "year": "1988" + }, + { + "id": 23577, + "model_id": 23572, + "year": "1989" + }, + { + "id": 23578, + "model_id": 23572, + "year": "1990" + }, + { + "id": 23579, + "model_id": 23572, + "year": "1991" + }, + { + "id": 23581, + "model_id": 23572, + "year": "1992" + }, + { + "id": 23582, + "model_id": 23572, + "year": "1993" + }, + { + "id": 23583, + "model_id": 23583, + "year": "1990" + }, + { + "id": 23584, + "model_id": 23583, + "year": "1991" + }, + { + "id": 23585, + "model_id": 23583, + "year": "1992" + }, + { + "id": 23586, + "model_id": 23586, + "year": "1993" + }, + { + "id": 23587, + "model_id": 23587, + "year": "1990" + }, + { + "id": 23588, + "model_id": 23587, + "year": "1991" + }, + { + "id": 23589, + "model_id": 23587, + "year": "1992" + }, + { + "id": 23590, + "model_id": 23587, + "year": "1993" + }, + { + "id": 23591, + "model_id": 23591, + "year": "1985" + }, + { + "id": 23593, + "model_id": 23591, + "year": "1992" + }, + { + "id": 23594, + "model_id": 23591, + "year": "1993" + }, + { + "id": 23595, + "model_id": 23595, + "year": "1984" + }, + { + "id": 23600, + "model_id": 23600, + "year": "1986" + }, + { + "id": 23601, + "model_id": 23600, + "year": "1987" + }, + { + "id": 23602, + "model_id": 23602, + "year": "1988" + }, + { + "id": 23603, + "model_id": 23602, + "year": "1989" + }, + { + "id": 23604, + "model_id": 23602, + "year": "1990" + }, + { + "id": 23605, + "model_id": 23602, + "year": "1991" + }, + { + "id": 23606, + "model_id": 23602, + "year": "1992" + }, + { + "id": 23607, + "model_id": 23602, + "year": "1993" + }, + { + "id": 23608, + "model_id": 23608, + "year": "1988" + }, + { + "id": 23609, + "model_id": 23608, + "year": "1989" + }, + { + "id": 23611, + "model_id": 23608, + "year": "1990" + }, + { + "id": 23612, + "model_id": 23608, + "year": "1991" + }, + { + "id": 23616, + "model_id": 23616, + "year": "1990" + }, + { + "id": 23618, + "model_id": 23616, + "year": "1991" + }, + { + "id": 23621, + "model_id": 23616, + "year": "1992" + }, + { + "id": 23623, + "model_id": 23616, + "year": "1993" + }, + { + "id": 23625, + "model_id": 23625, + "year": "1984" + }, + { + "id": 23628, + "model_id": 23625, + "year": "1985" + }, + { + "id": 23630, + "model_id": 23625, + "year": "1987" + }, + { + "id": 23631, + "model_id": 23631, + "year": "1988" + }, + { + "id": 23632, + "model_id": 23631, + "year": "1989" + }, + { + "id": 23633, + "model_id": 23631, + "year": "1990" + }, + { + "id": 23634, + "model_id": 23631, + "year": "1991" + }, + { + "id": 23635, + "model_id": 23631, + "year": "1992" + }, + { + "id": 23636, + "model_id": 23631, + "year": "1993" + }, + { + "id": 23637, + "model_id": 23637, + "year": "1990" + }, + { + "id": 23638, + "model_id": 23637, + "year": "1991" + }, + { + "id": 23639, + "model_id": 23637, + "year": "1992" + }, + { + "id": 23640, + "model_id": 23637, + "year": "1993" + }, + { + "id": 23641, + "model_id": 23641, + "year": "1991" + }, + { + "id": 23642, + "model_id": 23642, + "year": "1990" + }, + { + "id": 23643, + "model_id": 23642, + "year": "1991" + }, + { + "id": 23644, + "model_id": 23644, + "year": "1985" + }, + { + "id": 23645, + "model_id": 23645, + "year": "1984" + }, + { + "id": 23647, + "model_id": 23645, + "year": "1985" + }, + { + "id": 23648, + "model_id": 23648, + "year": "1992" + }, + { + "id": 23649, + "model_id": 23648, + "year": "1993" + }, + { + "id": 23650, + "model_id": 23650, + "year": "1992" + }, + { + "id": 23651, + "model_id": 23651, + "year": "1993" + }, + { + "id": 23652, + "model_id": 23652, + "year": "1991" + }, + { + "id": 23653, + "model_id": 23653, + "year": "1990" + }, + { + "id": 23654, + "model_id": 23654, + "year": "1986" + }, + { + "id": 23655, + "model_id": 23654, + "year": "1987" + }, + { + "id": 23656, + "model_id": 23654, + "year": "1988" + }, + { + "id": 23657, + "model_id": 23654, + "year": "1989" + }, + { + "id": 23658, + "model_id": 23654, + "year": "1990" + }, + { + "id": 23659, + "model_id": 23654, + "year": "1991" + }, + { + "id": 23660, + "model_id": 23660, + "year": "1992" + }, + { + "id": 23661, + "model_id": 23660, + "year": "1993" + }, + { + "id": 23662, + "model_id": 23662, + "year": "1985" + }, + { + "id": 23664, + "model_id": 23662, + "year": "1992" + }, + { + "id": 23665, + "model_id": 23665, + "year": "1984" + }, + { + "id": 23667, + "model_id": 23665, + "year": "1985" + }, + { + "id": 23670, + "model_id": 23665, + "year": "1992" + }, + { + "id": 23671, + "model_id": 23665, + "year": "1993" + }, + { + "id": 23672, + "model_id": 23672, + "year": "1984" + }, + { + "id": 23674, + "model_id": 23672, + "year": "1985" + }, + { + "id": 23677, + "model_id": 23672, + "year": "1993" + }, + { + "id": 23678, + "model_id": 23678, + "year": "1992" + }, + { + "id": 23679, + "model_id": 23679, + "year": "1992" + }, + { + "id": 23680, + "model_id": 23680, + "year": "1985" + }, + { + "id": 23682, + "model_id": 23680, + "year": "1990" + }, + { + "id": 23683, + "model_id": 23680, + "year": "1991" + }, + { + "id": 23685, + "model_id": 23680, + "year": "1992" + }, + { + "id": 23687, + "model_id": 23680, + "year": "1993" + }, + { + "id": 23688, + "model_id": 23688, + "year": "1992" + }, + { + "id": 23689, + "model_id": 23689, + "year": "1986" + }, + { + "id": 23690, + "model_id": 23689, + "year": "1987" + }, + { + "id": 23691, + "model_id": 23689, + "year": "1988" + }, + { + "id": 23692, + "model_id": 23689, + "year": "1989" + }, + { + "id": 23693, + "model_id": 23689, + "year": "1990" + }, + { + "id": 23694, + "model_id": 23689, + "year": "1991" + }, + { + "id": 23695, + "model_id": 23689, + "year": "1992" + }, + { + "id": 23696, + "model_id": 23696, + "year": "1986" + }, + { + "id": 23697, + "model_id": 23696, + "year": "1987" + }, + { + "id": 23698, + "model_id": 23696, + "year": "1988" + }, + { + "id": 23699, + "model_id": 23696, + "year": "1989" + }, + { + "id": 23700, + "model_id": 23696, + "year": "1990" + }, + { + "id": 23701, + "model_id": 23696, + "year": "1991" + }, + { + "id": 23702, + "model_id": 23696, + "year": "1992" + }, + { + "id": 23703, + "model_id": 23703, + "year": "1986" + }, + { + "id": 23704, + "model_id": 23703, + "year": "1987" + }, + { + "id": 23705, + "model_id": 23703, + "year": "1988" + }, + { + "id": 23706, + "model_id": 23703, + "year": "1989" + }, + { + "id": 23707, + "model_id": 23703, + "year": "1992" + }, + { + "id": 23708, + "model_id": 23708, + "year": "1992" + }, + { + "id": 23709, + "model_id": 23709, + "year": "1993" + }, + { + "id": 23710, + "model_id": 23710, + "year": "1993" + }, + { + "id": 23711, + "model_id": 23711, + "year": "2015" + }, + { + "id": 23712, + "model_id": 23711, + "year": "2016" + }, + { + "id": 23713, + "model_id": 23713, + "year": "2015" + }, + { + "id": 23714, + "model_id": 23713, + "year": "2016" + }, + { + "id": 23715, + "model_id": 23715, + "year": "2016" + }, + { + "id": 23716, + "model_id": 23716, + "year": "2016" + }, + { + "id": 23717, + "model_id": 23717, + "year": "2016" + }, + { + "id": 23718, + "model_id": 23718, + "year": "2016" + }, + { + "id": 23719, + "model_id": 23719, + "year": "2016" + }, + { + "id": 23720, + "model_id": 23720, + "year": "2016" + }, + { + "id": 23721, + "model_id": 23721, + "year": "2016" + }, + { + "id": 23722, + "model_id": 23722, + "year": "2016" + }, + { + "id": 23723, + "model_id": 23723, + "year": "2016" + }, + { + "id": 23724, + "model_id": 23724, + "year": "2016" + }, + { + "id": 23725, + "model_id": 23725, + "year": "2016" + }, + { + "id": 23726, + "model_id": 23726, + "year": "2016" + }, + { + "id": 23727, + "model_id": 23727, + "year": "2017" + }, + { + "id": 23728, + "model_id": 23728, + "year": "2016" + }, + { + "id": 23729, + "model_id": 23729, + "year": "2016" + }, + { + "id": 23730, + "model_id": 23730, + "year": "2016" + }, + { + "id": 23731, + "model_id": 23731, + "year": "2016" + }, + { + "id": 23732, + "model_id": 23732, + "year": "2016" + }, + { + "id": 23733, + "model_id": 23733, + "year": "2016" + }, + { + "id": 23734, + "model_id": 23734, + "year": "2016" + }, + { + "id": 23735, + "model_id": 23735, + "year": "2016" + }, + { + "id": 23736, + "model_id": 23736, + "year": "2014" + }, + { + "id": 23737, + "model_id": 23736, + "year": "2015" + }, + { + "id": 23738, + "model_id": 23738, + "year": "2016" + }, + { + "id": 23739, + "model_id": 23739, + "year": "1994" + }, + { + "id": 23740, + "model_id": 23739, + "year": "1995" + }, + { + "id": 23741, + "model_id": 23739, + "year": "1996" + }, + { + "id": 23742, + "model_id": 23742, + "year": "1997" + }, + { + "id": 23743, + "model_id": 23742, + "year": "1998" + }, + { + "id": 23744, + "model_id": 23742, + "year": "2006" + }, + { + "id": 23746, + "model_id": 23742, + "year": "2007" + }, + { + "id": 23748, + "model_id": 23748, + "year": "1999" + }, + { + "id": 23749, + "model_id": 23748, + "year": "2000" + }, + { + "id": 23750, + "model_id": 23748, + "year": "2002" + }, + { + "id": 23752, + "model_id": 23748, + "year": "2003" + }, + { + "id": 23756, + "model_id": 23748, + "year": "2004" + }, + { + "id": 23758, + "model_id": 23748, + "year": "2005" + }, + { + "id": 23760, + "model_id": 23760, + "year": "2004" + }, + { + "id": 23762, + "model_id": 23760, + "year": "2005" + }, + { + "id": 23764, + "model_id": 23764, + "year": "2001" + }, + { + "id": 23766, + "model_id": 23764, + "year": "2002" + }, + { + "id": 23768, + "model_id": 23764, + "year": "2003" + }, + { + "id": 23770, + "model_id": 23764, + "year": "2004" + }, + { + "id": 23773, + "model_id": 23764, + "year": "2005" + }, + { + "id": 23774, + "model_id": 23774, + "year": "2003" + }, + { + "id": 23776, + "model_id": 23774, + "year": "2004" + }, + { + "id": 23779, + "model_id": 23774, + "year": "2005" + }, + { + "id": 23780, + "model_id": 23780, + "year": "2003" + }, + { + "id": 23781, + "model_id": 23780, + "year": "2004" + }, + { + "id": 23782, + "model_id": 23780, + "year": "2005" + }, + { + "id": 23783, + "model_id": 23783, + "year": "2003" + }, + { + "id": 23784, + "model_id": 23783, + "year": "2004" + }, + { + "id": 23785, + "model_id": 23783, + "year": "2005" + }, + { + "id": 23786, + "model_id": 23786, + "year": "2012" + }, + { + "id": 23787, + "model_id": 23786, + "year": "2013" + }, + { + "id": 23788, + "model_id": 23786, + "year": "2014" + }, + { + "id": 23789, + "model_id": 23789, + "year": "2012" + }, + { + "id": 23790, + "model_id": 23789, + "year": "2013" + }, + { + "id": 23791, + "model_id": 23789, + "year": "2014" + }, + { + "id": 23792, + "model_id": 23789, + "year": "2015" + }, + { + "id": 23793, + "model_id": 23793, + "year": "1994" + }, + { + "id": 23794, + "model_id": 23793, + "year": "1995" + }, + { + "id": 23795, + "model_id": 23793, + "year": "1996" + }, + { + "id": 23796, + "model_id": 23793, + "year": "1997" + }, + { + "id": 23797, + "model_id": 23793, + "year": "1998" + }, + { + "id": 23798, + "model_id": 23793, + "year": "1999" + }, + { + "id": 23799, + "model_id": 23793, + "year": "2000" + }, + { + "id": 23800, + "model_id": 23793, + "year": "2006" + }, + { + "id": 23801, + "model_id": 23793, + "year": "2007" + }, + { + "id": 23802, + "model_id": 23802, + "year": "2006" + }, + { + "id": 23803, + "model_id": 23802, + "year": "2007" + }, + { + "id": 23804, + "model_id": 23804, + "year": "2008" + }, + { + "id": 23806, + "model_id": 23804, + "year": "2009" + }, + { + "id": 23807, + "model_id": 23804, + "year": "2010" + }, + { + "id": 23810, + "model_id": 23804, + "year": "2011" + }, + { + "id": 23813, + "model_id": 23804, + "year": "2015" + }, + { + "id": 23814, + "model_id": 23804, + "year": "2016" + }, + { + "id": 23815, + "model_id": 23815, + "year": "2008" + }, + { + "id": 23816, + "model_id": 23815, + "year": "2009" + }, + { + "id": 23817, + "model_id": 23815, + "year": "2010" + }, + { + "id": 23819, + "model_id": 23815, + "year": "2011" + }, + { + "id": 23821, + "model_id": 23815, + "year": "2012" + }, + { + "id": 23823, + "model_id": 23815, + "year": "2013" + }, + { + "id": 23825, + "model_id": 23815, + "year": "2014" + }, + { + "id": 23828, + "model_id": 23815, + "year": "2015" + }, + { + "id": 23829, + "model_id": 23815, + "year": "2016" + }, + { + "id": 23830, + "model_id": 23830, + "year": "2017" + }, + { + "id": 23831, + "model_id": 23831, + "year": "2017" + }, + { + "id": 23832, + "model_id": 23832, + "year": "2002" + }, + { + "id": 23833, + "model_id": 23832, + "year": "2003" + }, + { + "id": 23834, + "model_id": 23832, + "year": "2004" + }, + { + "id": 23835, + "model_id": 23835, + "year": "2001" + }, + { + "id": 23836, + "model_id": 23835, + "year": "2002" + }, + { + "id": 23837, + "model_id": 23835, + "year": "2003" + }, + { + "id": 23839, + "model_id": 23835, + "year": "2004" + }, + { + "id": 23841, + "model_id": 23835, + "year": "2005" + }, + { + "id": 23843, + "model_id": 23843, + "year": "2002" + }, + { + "id": 23844, + "model_id": 23843, + "year": "2003" + }, + { + "id": 23846, + "model_id": 23843, + "year": "2004" + }, + { + "id": 23847, + "model_id": 23847, + "year": "2003" + }, + { + "id": 23848, + "model_id": 23847, + "year": "2005" + }, + { + "id": 23849, + "model_id": 23849, + "year": "2003" + }, + { + "id": 23850, + "model_id": 23849, + "year": "2004" + }, + { + "id": 23851, + "model_id": 23851, + "year": "2004" + }, + { + "id": 23852, + "model_id": 23852, + "year": "2003" + }, + { + "id": 23854, + "model_id": 23852, + "year": "2004" + }, + { + "id": 23856, + "model_id": 23852, + "year": "2005" + }, + { + "id": 23858, + "model_id": 23858, + "year": "2006" + }, + { + "id": 23860, + "model_id": 23858, + "year": "2007" + }, + { + "id": 23862, + "model_id": 23858, + "year": "2008" + }, + { + "id": 23863, + "model_id": 23858, + "year": "2009" + }, + { + "id": 23864, + "model_id": 23858, + "year": "2010" + }, + { + "id": 23865, + "model_id": 23858, + "year": "2011" + }, + { + "id": 23866, + "model_id": 23858, + "year": "2012" + }, + { + "id": 23868, + "model_id": 23858, + "year": "2013" + }, + { + "id": 23871, + "model_id": 23858, + "year": "2014" + }, + { + "id": 23874, + "model_id": 23874, + "year": "2006" + }, + { + "id": 23875, + "model_id": 23874, + "year": "2007" + }, + { + "id": 23876, + "model_id": 23876, + "year": "2012" + }, + { + "id": 23877, + "model_id": 23876, + "year": "2013" + }, + { + "id": 23878, + "model_id": 23876, + "year": "2014" + }, + { + "id": 23879, + "model_id": 23876, + "year": "2015" + }, + { + "id": 23880, + "model_id": 23880, + "year": "2012" + }, + { + "id": 23881, + "model_id": 23880, + "year": "2013" + }, + { + "id": 23882, + "model_id": 23880, + "year": "2014" + }, + { + "id": 23883, + "model_id": 23880, + "year": "2015" + }, + { + "id": 23884, + "model_id": 23884, + "year": "1995" + }, + { + "id": 23885, + "model_id": 23885, + "year": "1996" + }, + { + "id": 23886, + "model_id": 23885, + "year": "1997" + }, + { + "id": 23887, + "model_id": 23887, + "year": "2015" + }, + { + "id": 23888, + "model_id": 23888, + "year": "1998" + }, + { + "id": 23889, + "model_id": 23889, + "year": "1999" + }, + { + "id": 23890, + "model_id": 23889, + "year": "2000" + }, + { + "id": 23891, + "model_id": 23891, + "year": "2016" + }, + { + "id": 23892, + "model_id": 23892, + "year": "2005" + }, + { + "id": 23893, + "model_id": 23892, + "year": "2006" + }, + { + "id": 23894, + "model_id": 23894, + "year": "2008" + }, + { + "id": 23895, + "model_id": 23894, + "year": "2009" + }, + { + "id": 23896, + "model_id": 23894, + "year": "2010" + }, + { + "id": 23897, + "model_id": 23894, + "year": "2011" + }, + { + "id": 23898, + "model_id": 23894, + "year": "2012" + }, + { + "id": 23899, + "model_id": 23894, + "year": "2013" + }, + { + "id": 23900, + "model_id": 23894, + "year": "2014" + }, + { + "id": 23901, + "model_id": 23901, + "year": "2012" + }, + { + "id": 23902, + "model_id": 23901, + "year": "2013" + }, + { + "id": 23903, + "model_id": 23903, + "year": "2012" + }, + { + "id": 23904, + "model_id": 23903, + "year": "2013" + }, + { + "id": 23905, + "model_id": 23903, + "year": "2014" + }, + { + "id": 23906, + "model_id": 23903, + "year": "2015" + }, + { + "id": 23907, + "model_id": 23907, + "year": "1998" + }, + { + "id": 23908, + "model_id": 23907, + "year": "1999" + }, + { + "id": 23909, + "model_id": 23907, + "year": "2000" + }, + { + "id": 23910, + "model_id": 23907, + "year": "2001" + }, + { + "id": 23911, + "model_id": 23907, + "year": "2002" + }, + { + "id": 23912, + "model_id": 23907, + "year": "2003" + }, + { + "id": 23913, + "model_id": 23907, + "year": "2004" + }, + { + "id": 23914, + "model_id": 23907, + "year": "2005" + }, + { + "id": 23915, + "model_id": 23907, + "year": "2006" + }, + { + "id": 23916, + "model_id": 23916, + "year": "2001" + }, + { + "id": 23917, + "model_id": 23916, + "year": "2002" + }, + { + "id": 23918, + "model_id": 23916, + "year": "2003" + }, + { + "id": 23919, + "model_id": 23916, + "year": "2004" + }, + { + "id": 23920, + "model_id": 23916, + "year": "2005" + }, + { + "id": 23921, + "model_id": 23916, + "year": "2006" + }, + { + "id": 23922, + "model_id": 23922, + "year": "2007" + }, + { + "id": 23923, + "model_id": 23922, + "year": "2008" + }, + { + "id": 23924, + "model_id": 23924, + "year": "2009" + }, + { + "id": 23925, + "model_id": 23924, + "year": "2010" + }, + { + "id": 23926, + "model_id": 23924, + "year": "2011" + }, + { + "id": 23927, + "model_id": 23924, + "year": "2012" + }, + { + "id": 23928, + "model_id": 23924, + "year": "2013" + }, + { + "id": 23929, + "model_id": 23924, + "year": "2014" + }, + { + "id": 23930, + "model_id": 23930, + "year": "1998" + }, + { + "id": 23931, + "model_id": 23930, + "year": "1999" + }, + { + "id": 23932, + "model_id": 23930, + "year": "2001" + }, + { + "id": 23933, + "model_id": 23930, + "year": "2002" + }, + { + "id": 23934, + "model_id": 23930, + "year": "2003" + }, + { + "id": 23935, + "model_id": 23930, + "year": "2004" + }, + { + "id": 23936, + "model_id": 23930, + "year": "2005" + }, + { + "id": 23937, + "model_id": 23930, + "year": "2006" + }, + { + "id": 23938, + "model_id": 23930, + "year": "2007" + }, + { + "id": 23939, + "model_id": 23930, + "year": "2008" + }, + { + "id": 23940, + "model_id": 23930, + "year": "2009" + }, + { + "id": 23941, + "model_id": 23930, + "year": "2010" + }, + { + "id": 23942, + "model_id": 23930, + "year": "2011" + }, + { + "id": 23943, + "model_id": 23930, + "year": "2012" + }, + { + "id": 23944, + "model_id": 23930, + "year": "2013" + }, + { + "id": 23945, + "model_id": 23930, + "year": "2014" + }, + { + "id": 23946, + "model_id": 23946, + "year": "2008" + }, + { + "id": 23947, + "model_id": 23946, + "year": "2009" + }, + { + "id": 23948, + "model_id": 23946, + "year": "2010" + }, + { + "id": 23949, + "model_id": 23946, + "year": "2011" + }, + { + "id": 23950, + "model_id": 23946, + "year": "2012" + }, + { + "id": 23951, + "model_id": 23946, + "year": "2013" + }, + { + "id": 23952, + "model_id": 23946, + "year": "2014" + }, + { + "id": 23953, + "model_id": 23953, + "year": "2005" + }, + { + "id": 23954, + "model_id": 23953, + "year": "2006" + }, + { + "id": 23955, + "model_id": 23953, + "year": "2008" + }, + { + "id": 23956, + "model_id": 23953, + "year": "2009" + }, + { + "id": 23957, + "model_id": 23953, + "year": "2010" + }, + { + "id": 23958, + "model_id": 23953, + "year": "2011" + }, + { + "id": 23959, + "model_id": 23953, + "year": "2012" + }, + { + "id": 23960, + "model_id": 23953, + "year": "2013" + }, + { + "id": 23961, + "model_id": 23953, + "year": "2014" + }, + { + "id": 23962, + "model_id": 23962, + "year": "2014" + }, + { + "id": 23963, + "model_id": 23962, + "year": "2015" + }, + { + "id": 23964, + "model_id": 23962, + "year": "2016" + }, + { + "id": 23965, + "model_id": 23965, + "year": "2014" + }, + { + "id": 23966, + "model_id": 23965, + "year": "2015" + }, + { + "id": 23968, + "model_id": 23965, + "year": "2016" + }, + { + "id": 23970, + "model_id": 23970, + "year": "2014" + }, + { + "id": 23971, + "model_id": 23970, + "year": "2015" + }, + { + "id": 23972, + "model_id": 23972, + "year": "1998" + }, + { + "id": 23973, + "model_id": 23972, + "year": "1999" + }, + { + "id": 23974, + "model_id": 23972, + "year": "2000" + }, + { + "id": 23975, + "model_id": 23972, + "year": "2001" + }, + { + "id": 23976, + "model_id": 23972, + "year": "2002" + }, + { + "id": 23977, + "model_id": 23972, + "year": "2003" + }, + { + "id": 23978, + "model_id": 23972, + "year": "2004" + }, + { + "id": 23979, + "model_id": 23972, + "year": "2005" + }, + { + "id": 23980, + "model_id": 23980, + "year": "2000" + }, + { + "id": 23981, + "model_id": 23980, + "year": "2001" + }, + { + "id": 23982, + "model_id": 23980, + "year": "2002" + }, + { + "id": 23983, + "model_id": 23980, + "year": "2003" + }, + { + "id": 23984, + "model_id": 23980, + "year": "2004" + }, + { + "id": 23985, + "model_id": 23980, + "year": "2005" + }, + { + "id": 23986, + "model_id": 23986, + "year": "1999" + }, + { + "id": 23987, + "model_id": 23987, + "year": "2006" + }, + { + "id": 23988, + "model_id": 23987, + "year": "2007" + }, + { + "id": 23989, + "model_id": 23987, + "year": "2008" + }, + { + "id": 23990, + "model_id": 23987, + "year": "2009" + }, + { + "id": 23991, + "model_id": 23991, + "year": "2006" + }, + { + "id": 23992, + "model_id": 23991, + "year": "2007" + }, + { + "id": 23993, + "model_id": 23991, + "year": "2008" + }, + { + "id": 23994, + "model_id": 23991, + "year": "2009" + }, + { + "id": 23995, + "model_id": 23995, + "year": "1999" + }, + { + "id": 23996, + "model_id": 23995, + "year": "2000" + }, + { + "id": 23997, + "model_id": 23995, + "year": "2001" + }, + { + "id": 23998, + "model_id": 23995, + "year": "2002" + }, + { + "id": 23999, + "model_id": 23999, + "year": "2000" + }, + { + "id": 24000, + "model_id": 23999, + "year": "2001" + }, + { + "id": 24001, + "model_id": 23999, + "year": "2002" + }, + { + "id": 24002, + "model_id": 23999, + "year": "2003" + }, + { + "id": 24003, + "model_id": 24003, + "year": "2003" + }, + { + "id": 24004, + "model_id": 24003, + "year": "2004" + }, + { + "id": 24005, + "model_id": 24003, + "year": "2005" + }, + { + "id": 24006, + "model_id": 24003, + "year": "2006" + }, + { + "id": 24007, + "model_id": 24007, + "year": "2004" + }, + { + "id": 24008, + "model_id": 24007, + "year": "2005" + }, + { + "id": 24009, + "model_id": 24007, + "year": "2006" + }, + { + "id": 24010, + "model_id": 24010, + "year": "2001" + }, + { + "id": 24011, + "model_id": 24010, + "year": "2002" + }, + { + "id": 24012, + "model_id": 24010, + "year": "2003" + }, + { + "id": 24013, + "model_id": 24010, + "year": "2004" + }, + { + "id": 24014, + "model_id": 24010, + "year": "2005" + }, + { + "id": 24015, + "model_id": 24015, + "year": "2002" + }, + { + "id": 24016, + "model_id": 24015, + "year": "2004" + }, + { + "id": 24017, + "model_id": 24015, + "year": "2005" + }, + { + "id": 24018, + "model_id": 24015, + "year": "2006" + }, + { + "id": 24019, + "model_id": 24019, + "year": "2007" + }, + { + "id": 24020, + "model_id": 24019, + "year": "2008" + }, + { + "id": 24021, + "model_id": 24019, + "year": "2009" + }, + { + "id": 24022, + "model_id": 24022, + "year": "2007" + }, + { + "id": 24023, + "model_id": 24022, + "year": "2008" + }, + { + "id": 24024, + "model_id": 24022, + "year": "2009" + }, + { + "id": 24025, + "model_id": 24025, + "year": "2008" + }, + { + "id": 24026, + "model_id": 24026, + "year": "2007" + }, + { + "id": 24027, + "model_id": 24026, + "year": "2008" + }, + { + "id": 24028, + "model_id": 24028, + "year": "2015" + }, + { + "id": 24029, + "model_id": 24028, + "year": "2016" + }, + { + "id": 24030, + "model_id": 24030, + "year": "2015" + }, + { + "id": 24031, + "model_id": 24030, + "year": "2016" + }, + { + "id": 24032, + "model_id": 24032, + "year": "2006" + }, + { + "id": 24033, + "model_id": 24033, + "year": "2006" + }, + { + "id": 24034, + "model_id": 24034, + "year": "2007" + }, + { + "id": 24035, + "model_id": 24034, + "year": "2008" + }, + { + "id": 24036, + "model_id": 24034, + "year": "2009" + }, + { + "id": 24037, + "model_id": 24034, + "year": "2010" + }, + { + "id": 24038, + "model_id": 24034, + "year": "2011" + }, + { + "id": 24039, + "model_id": 24034, + "year": "2012" + }, + { + "id": 24040, + "model_id": 24034, + "year": "2013" + }, + { + "id": 24041, + "model_id": 24034, + "year": "2014" + }, + { + "id": 24042, + "model_id": 24034, + "year": "2015" + }, + { + "id": 24043, + "model_id": 24034, + "year": "2016" + }, + { + "id": 24044, + "model_id": 24044, + "year": "2012" + }, + { + "id": 24045, + "model_id": 24044, + "year": "2013" + }, + { + "id": 24046, + "model_id": 24044, + "year": "2014" + }, + { + "id": 24047, + "model_id": 24044, + "year": "2015" + }, + { + "id": 24048, + "model_id": 24044, + "year": "2016" + }, + { + "id": 24049, + "model_id": 24049, + "year": "2007" + }, + { + "id": 24050, + "model_id": 24049, + "year": "2008" + }, + { + "id": 24051, + "model_id": 24049, + "year": "2009" + }, + { + "id": 24052, + "model_id": 24049, + "year": "2010" + }, + { + "id": 24053, + "model_id": 24049, + "year": "2011" + }, + { + "id": 24054, + "model_id": 24049, + "year": "2012" + }, + { + "id": 24055, + "model_id": 24049, + "year": "2013" + }, + { + "id": 24056, + "model_id": 24049, + "year": "2014" + }, + { + "id": 24057, + "model_id": 24057, + "year": "2014" + }, + { + "id": 24058, + "model_id": 24058, + "year": "2014" + }, + { + "id": 24059, + "model_id": 24059, + "year": "2014" + }, + { + "id": 24060, + "model_id": 24059, + "year": "2015" + }, + { + "id": 24061, + "model_id": 24061, + "year": "2014" + }, + { + "id": 24062, + "model_id": 24061, + "year": "2015" + }, + { + "id": 24063, + "model_id": 24061, + "year": "2016" + }, + { + "id": 24064, + "model_id": 24064, + "year": "2014" + }, + { + "id": 24065, + "model_id": 24064, + "year": "2015" + }, + { + "id": 24066, + "model_id": 24064, + "year": "2016" + }, + { + "id": 24067, + "model_id": 24067, + "year": "2017" + }, + { + "id": 24068, + "model_id": 24068, + "year": "2017" + }, + { + "id": 24069, + "model_id": 24069, + "year": "1995" + }, + { + "id": 24070, + "model_id": 24069, + "year": "1996" + }, + { + "id": 24071, + "model_id": 24069, + "year": "1997" + }, + { + "id": 24072, + "model_id": 24072, + "year": "1998" + }, + { + "id": 24073, + "model_id": 24072, + "year": "1999" + }, + { + "id": 24074, + "model_id": 24074, + "year": "1996" + }, + { + "id": 24075, + "model_id": 24074, + "year": "1997" + }, + { + "id": 24076, + "model_id": 24074, + "year": "2000" + }, + { + "id": 24077, + "model_id": 24074, + "year": "2001" + }, + { + "id": 24078, + "model_id": 24074, + "year": "2002" + }, + { + "id": 24079, + "model_id": 24074, + "year": "2003" + }, + { + "id": 24080, + "model_id": 24074, + "year": "2004" + }, + { + "id": 24081, + "model_id": 24074, + "year": "2005" + }, + { + "id": 24082, + "model_id": 24082, + "year": "2000" + }, + { + "id": 24083, + "model_id": 24082, + "year": "2001" + }, + { + "id": 24084, + "model_id": 24082, + "year": "2002" + }, + { + "id": 24085, + "model_id": 24082, + "year": "2003" + }, + { + "id": 24086, + "model_id": 24082, + "year": "2004" + }, + { + "id": 24087, + "model_id": 24082, + "year": "2005" + }, + { + "id": 24088, + "model_id": 24088, + "year": "2000" + }, + { + "id": 24089, + "model_id": 24088, + "year": "2001" + }, + { + "id": 24090, + "model_id": 24088, + "year": "2002" + }, + { + "id": 24091, + "model_id": 24091, + "year": "2004" + }, + { + "id": 24092, + "model_id": 24091, + "year": "2005" + }, + { + "id": 24093, + "model_id": 24093, + "year": "2000" + }, + { + "id": 24094, + "model_id": 24093, + "year": "2001" + }, + { + "id": 24095, + "model_id": 24093, + "year": "2002" + }, + { + "id": 24096, + "model_id": 24093, + "year": "2003" + }, + { + "id": 24097, + "model_id": 24097, + "year": "2004" + }, + { + "id": 24098, + "model_id": 24097, + "year": "2005" + }, + { + "id": 24099, + "model_id": 24099, + "year": "2007" + }, + { + "id": 24100, + "model_id": 24099, + "year": "2008" + }, + { + "id": 24101, + "model_id": 24099, + "year": "2009" + }, + { + "id": 24102, + "model_id": 24102, + "year": "2005" + }, + { + "id": 24103, + "model_id": 24102, + "year": "2006" + }, + { + "id": 24104, + "model_id": 24104, + "year": "1994" + }, + { + "id": 24105, + "model_id": 24104, + "year": "1995" + }, + { + "id": 24106, + "model_id": 24106, + "year": "1994" + }, + { + "id": 24107, + "model_id": 24106, + "year": "1995" + }, + { + "id": 24108, + "model_id": 24108, + "year": "1994" + }, + { + "id": 24109, + "model_id": 24108, + "year": "1995" + }, + { + "id": 24110, + "model_id": 24108, + "year": "1998" + }, + { + "id": 24112, + "model_id": 24108, + "year": "1999" + }, + { + "id": 24113, + "model_id": 24113, + "year": "1999" + }, + { + "id": 24114, + "model_id": 24114, + "year": "1994" + }, + { + "id": 24115, + "model_id": 24114, + "year": "1995" + }, + { + "id": 24116, + "model_id": 24114, + "year": "1998" + }, + { + "id": 24118, + "model_id": 24114, + "year": "1999" + }, + { + "id": 24119, + "model_id": 24119, + "year": "1999" + }, + { + "id": 24120, + "model_id": 24120, + "year": "2006" + }, + { + "id": 24121, + "model_id": 24120, + "year": "2007" + }, + { + "id": 24122, + "model_id": 24120, + "year": "2008" + }, + { + "id": 24123, + "model_id": 24120, + "year": "2009" + }, + { + "id": 24124, + "model_id": 24120, + "year": "2010" + }, + { + "id": 24125, + "model_id": 24120, + "year": "2011" + }, + { + "id": 24126, + "model_id": 24120, + "year": "2012" + }, + { + "id": 24127, + "model_id": 24120, + "year": "2013" + }, + { + "id": 24130, + "model_id": 24120, + "year": "2014" + }, + { + "id": 24133, + "model_id": 24120, + "year": "2015" + }, + { + "id": 24135, + "model_id": 24120, + "year": "2016" + }, + { + "id": 24137, + "model_id": 24137, + "year": "2006" + }, + { + "id": 24138, + "model_id": 24138, + "year": "2006" + }, + { + "id": 24139, + "model_id": 24138, + "year": "2007" + }, + { + "id": 24140, + "model_id": 24138, + "year": "2008" + }, + { + "id": 24141, + "model_id": 24138, + "year": "2009" + }, + { + "id": 24142, + "model_id": 24138, + "year": "2010" + }, + { + "id": 24143, + "model_id": 24138, + "year": "2011" + }, + { + "id": 24144, + "model_id": 24138, + "year": "2012" + }, + { + "id": 24145, + "model_id": 24138, + "year": "2013" + }, + { + "id": 24147, + "model_id": 24147, + "year": "2013" + }, + { + "id": 24148, + "model_id": 24138, + "year": "2014" + }, + { + "id": 24151, + "model_id": 24138, + "year": "2015" + }, + { + "id": 24153, + "model_id": 24138, + "year": "2016" + }, + { + "id": 24155, + "model_id": 24155, + "year": "2006" + }, + { + "id": 24156, + "model_id": 24155, + "year": "2007" + }, + { + "id": 24157, + "model_id": 24155, + "year": "2008" + }, + { + "id": 24158, + "model_id": 24155, + "year": "2009" + }, + { + "id": 24159, + "model_id": 24155, + "year": "2011" + }, + { + "id": 24160, + "model_id": 24155, + "year": "2012" + }, + { + "id": 24161, + "model_id": 24155, + "year": "2013" + }, + { + "id": 24162, + "model_id": 24155, + "year": "2014" + }, + { + "id": 24163, + "model_id": 24155, + "year": "2015" + }, + { + "id": 24164, + "model_id": 24155, + "year": "2016" + }, + { + "id": 24165, + "model_id": 24165, + "year": "2012" + }, + { + "id": 24167, + "model_id": 24165, + "year": "2013" + }, + { + "id": 24170, + "model_id": 24165, + "year": "2014" + }, + { + "id": 24173, + "model_id": 24173, + "year": "2011" + }, + { + "id": 24174, + "model_id": 24173, + "year": "2012" + }, + { + "id": 24175, + "model_id": 24173, + "year": "2013" + }, + { + "id": 24176, + "model_id": 24176, + "year": "2011" + }, + { + "id": 24177, + "model_id": 24176, + "year": "2012" + }, + { + "id": 24179, + "model_id": 24176, + "year": "2013" + }, + { + "id": 24181, + "model_id": 24176, + "year": "2014" + }, + { + "id": 24183, + "model_id": 24176, + "year": "2015" + }, + { + "id": 24184, + "model_id": 24184, + "year": "2010" + }, + { + "id": 24185, + "model_id": 24184, + "year": "2011" + }, + { + "id": 24186, + "model_id": 24184, + "year": "2012" + }, + { + "id": 24188, + "model_id": 24184, + "year": "2013" + }, + { + "id": 24191, + "model_id": 24184, + "year": "2014" + }, + { + "id": 24194, + "model_id": 24184, + "year": "2015" + }, + { + "id": 24195, + "model_id": 24195, + "year": "2015" + }, + { + "id": 24196, + "model_id": 24195, + "year": "2016" + }, + { + "id": 24197, + "model_id": 24197, + "year": "2015" + }, + { + "id": 24198, + "model_id": 24197, + "year": "2016" + }, + { + "id": 24199, + "model_id": 24199, + "year": "2015" + }, + { + "id": 24200, + "model_id": 24200, + "year": "2015" + }, + { + "id": 24201, + "model_id": 24200, + "year": "2016" + }, + { + "id": 24202, + "model_id": 24202, + "year": "2015" + }, + { + "id": 24203, + "model_id": 24202, + "year": "2016" + }, + { + "id": 24204, + "model_id": 24204, + "year": "2015" + }, + { + "id": 24205, + "model_id": 24204, + "year": "2016" + }, + { + "id": 24206, + "model_id": 24206, + "year": "2013" + }, + { + "id": 24207, + "model_id": 24206, + "year": "2014" + }, + { + "id": 24208, + "model_id": 24206, + "year": "2015" + }, + { + "id": 24209, + "model_id": 24209, + "year": "1994" + }, + { + "id": 24210, + "model_id": 24209, + "year": "1995" + }, + { + "id": 24211, + "model_id": 24209, + "year": "1997" + }, + { + "id": 24212, + "model_id": 24212, + "year": "1999" + }, + { + "id": 24213, + "model_id": 24212, + "year": "2000" + }, + { + "id": 24214, + "model_id": 24212, + "year": "2001" + }, + { + "id": 24215, + "model_id": 24212, + "year": "2002" + }, + { + "id": 24216, + "model_id": 24216, + "year": "2000" + }, + { + "id": 24217, + "model_id": 24216, + "year": "2001" + }, + { + "id": 24218, + "model_id": 24216, + "year": "2002" + }, + { + "id": 24219, + "model_id": 24219, + "year": "1994" + }, + { + "id": 24220, + "model_id": 24219, + "year": "2003" + }, + { + "id": 24221, + "model_id": 24219, + "year": "2004" + }, + { + "id": 24222, + "model_id": 24219, + "year": "2005" + }, + { + "id": 24223, + "model_id": 24219, + "year": "2006" + }, + { + "id": 24224, + "model_id": 24224, + "year": "2004" + }, + { + "id": 24225, + "model_id": 24225, + "year": "2004" + }, + { + "id": 24226, + "model_id": 24225, + "year": "2005" + }, + { + "id": 24227, + "model_id": 24225, + "year": "2006" + }, + { + "id": 24228, + "model_id": 24228, + "year": "2004" + }, + { + "id": 24229, + "model_id": 24228, + "year": "2005" + }, + { + "id": 24230, + "model_id": 24230, + "year": "2006" + }, + { + "id": 24231, + "model_id": 24231, + "year": "1999" + }, + { + "id": 24232, + "model_id": 24231, + "year": "2000" + }, + { + "id": 24233, + "model_id": 24231, + "year": "2001" + }, + { + "id": 24234, + "model_id": 24231, + "year": "2002" + }, + { + "id": 24235, + "model_id": 24231, + "year": "2003" + }, + { + "id": 24236, + "model_id": 24231, + "year": "2004" + }, + { + "id": 24237, + "model_id": 24231, + "year": "2005" + }, + { + "id": 24238, + "model_id": 24231, + "year": "2006" + }, + { + "id": 24239, + "model_id": 24239, + "year": "2005" + }, + { + "id": 24240, + "model_id": 24240, + "year": "2006" + }, + { + "id": 24241, + "model_id": 24241, + "year": "2007" + }, + { + "id": 24242, + "model_id": 24241, + "year": "2008" + }, + { + "id": 24243, + "model_id": 24241, + "year": "2009" + }, + { + "id": 24244, + "model_id": 24241, + "year": "2010" + }, + { + "id": 24245, + "model_id": 24241, + "year": "2011" + }, + { + "id": 24246, + "model_id": 24246, + "year": "2007" + }, + { + "id": 24247, + "model_id": 24246, + "year": "2008" + }, + { + "id": 24248, + "model_id": 24246, + "year": "2009" + }, + { + "id": 24249, + "model_id": 24246, + "year": "2010" + }, + { + "id": 24250, + "model_id": 24246, + "year": "2011" + }, + { + "id": 24251, + "model_id": 24246, + "year": "2012" + }, + { + "id": 24252, + "model_id": 24246, + "year": "2013" + }, + { + "id": 24253, + "model_id": 24246, + "year": "2014" + }, + { + "id": 24254, + "model_id": 24246, + "year": "2016" + }, + { + "id": 24255, + "model_id": 24255, + "year": "2011" + }, + { + "id": 24256, + "model_id": 24255, + "year": "2012" + }, + { + "id": 24257, + "model_id": 24255, + "year": "2013" + }, + { + "id": 24258, + "model_id": 24255, + "year": "2014" + }, + { + "id": 24259, + "model_id": 24255, + "year": "2015" + }, + { + "id": 24260, + "model_id": 24255, + "year": "2016" + }, + { + "id": 24261, + "model_id": 24261, + "year": "2010" + }, + { + "id": 24262, + "model_id": 24261, + "year": "2011" + }, + { + "id": 24263, + "model_id": 24261, + "year": "2012" + }, + { + "id": 24264, + "model_id": 24261, + "year": "2013" + }, + { + "id": 24265, + "model_id": 24261, + "year": "2014" + }, + { + "id": 24266, + "model_id": 24261, + "year": "2015" + }, + { + "id": 24267, + "model_id": 24261, + "year": "2016" + }, + { + "id": 24268, + "model_id": 24268, + "year": "2007" + }, + { + "id": 24269, + "model_id": 24268, + "year": "2008" + }, + { + "id": 24270, + "model_id": 24268, + "year": "2009" + }, + { + "id": 24271, + "model_id": 24268, + "year": "2010" + }, + { + "id": 24272, + "model_id": 24268, + "year": "2011" + }, + { + "id": 24273, + "model_id": 24268, + "year": "2012" + }, + { + "id": 24274, + "model_id": 24268, + "year": "2013" + }, + { + "id": 24275, + "model_id": 24268, + "year": "2014" + }, + { + "id": 24276, + "model_id": 24276, + "year": "2007" + }, + { + "id": 24277, + "model_id": 24276, + "year": "2008" + }, + { + "id": 24278, + "model_id": 24276, + "year": "2009" + }, + { + "id": 24279, + "model_id": 24276, + "year": "2012" + }, + { + "id": 24280, + "model_id": 24276, + "year": "2013" + }, + { + "id": 24281, + "model_id": 24281, + "year": "2014" + }, + { + "id": 24282, + "model_id": 24281, + "year": "2015" + }, + { + "id": 24283, + "model_id": 24283, + "year": "2014" + }, + { + "id": 24284, + "model_id": 24284, + "year": "2014" + }, + { + "id": 24285, + "model_id": 24285, + "year": "2014" + }, + { + "id": 24286, + "model_id": 24285, + "year": "2015" + }, + { + "id": 24287, + "model_id": 24287, + "year": "2014" + }, + { + "id": 24288, + "model_id": 24287, + "year": "2015" + }, + { + "id": 24289, + "model_id": 24289, + "year": "2002" + }, + { + "id": 24290, + "model_id": 24289, + "year": "2003" + }, + { + "id": 24291, + "model_id": 24289, + "year": "2004" + }, + { + "id": 24292, + "model_id": 24289, + "year": "2005" + }, + { + "id": 24293, + "model_id": 24289, + "year": "2006" + }, + { + "id": 24294, + "model_id": 24289, + "year": "2007" + }, + { + "id": 24295, + "model_id": 24289, + "year": "2008" + }, + { + "id": 24296, + "model_id": 24296, + "year": "2003" + }, + { + "id": 24297, + "model_id": 24296, + "year": "2004" + }, + { + "id": 24298, + "model_id": 24296, + "year": "2005" + }, + { + "id": 24299, + "model_id": 24296, + "year": "2006" + }, + { + "id": 24300, + "model_id": 24296, + "year": "2007" + }, + { + "id": 24301, + "model_id": 24296, + "year": "2008" + }, + { + "id": 24302, + "model_id": 24296, + "year": "2009" + }, + { + "id": 24303, + "model_id": 24296, + "year": "2010" + }, + { + "id": 24304, + "model_id": 24296, + "year": "2011" + }, + { + "id": 24305, + "model_id": 24305, + "year": "2010" + }, + { + "id": 24306, + "model_id": 24305, + "year": "2011" + }, + { + "id": 24307, + "model_id": 24305, + "year": "2012" + }, + { + "id": 24308, + "model_id": 24305, + "year": "2013" + }, + { + "id": 24309, + "model_id": 24305, + "year": "2014" + }, + { + "id": 24310, + "model_id": 24305, + "year": "2015" + }, + { + "id": 24311, + "model_id": 24305, + "year": "2016" + }, + { + "id": 24312, + "model_id": 24312, + "year": "2013" + }, + { + "id": 24313, + "model_id": 24312, + "year": "2014" + }, + { + "id": 24314, + "model_id": 24312, + "year": "2015" + }, + { + "id": 24315, + "model_id": 24315, + "year": "2009" + }, + { + "id": 24316, + "model_id": 24316, + "year": "2007" + }, + { + "id": 24317, + "model_id": 24316, + "year": "2008" + }, + { + "id": 24318, + "model_id": 24318, + "year": "2010" + }, + { + "id": 24319, + "model_id": 24319, + "year": "2011" + }, + { + "id": 24320, + "model_id": 24319, + "year": "2012" + }, + { + "id": 24321, + "model_id": 24319, + "year": "2013" + }, + { + "id": 24322, + "model_id": 24319, + "year": "2014" + }, + { + "id": 24323, + "model_id": 24319, + "year": "2015" + }, + { + "id": 24324, + "model_id": 24319, + "year": "2016" + }, + { + "id": 24325, + "model_id": 24325, + "year": "2007" + }, + { + "id": 24326, + "model_id": 24325, + "year": "2008" + }, + { + "id": 24327, + "model_id": 24325, + "year": "2009" + }, + { + "id": 24328, + "model_id": 24325, + "year": "2010" + }, + { + "id": 24329, + "model_id": 24325, + "year": "2011" + }, + { + "id": 24330, + "model_id": 24325, + "year": "2012" + }, + { + "id": 24331, + "model_id": 24325, + "year": "2013" + }, + { + "id": 24332, + "model_id": 24325, + "year": "2014" + }, + { + "id": 24333, + "model_id": 24325, + "year": "2015" + }, + { + "id": 24334, + "model_id": 24325, + "year": "2016" + }, + { + "id": 24335, + "model_id": 24335, + "year": "2008" + }, + { + "id": 24336, + "model_id": 24335, + "year": "2009" + }, + { + "id": 24337, + "model_id": 24335, + "year": "2010" + }, + { + "id": 24338, + "model_id": 24335, + "year": "2011" + }, + { + "id": 24339, + "model_id": 24335, + "year": "2012" + }, + { + "id": 24340, + "model_id": 24335, + "year": "2013" + }, + { + "id": 24341, + "model_id": 24335, + "year": "2014" + }, + { + "id": 24342, + "model_id": 24335, + "year": "2015" + }, + { + "id": 24343, + "model_id": 24335, + "year": "2016" + }, + { + "id": 24344, + "model_id": 24344, + "year": "2013" + }, + { + "id": 24345, + "model_id": 24344, + "year": "2014" + }, + { + "id": 24346, + "model_id": 24344, + "year": "2015" + }, + { + "id": 24347, + "model_id": 24347, + "year": "2015" + }, + { + "id": 24348, + "model_id": 24347, + "year": "2016" + }, + { + "id": 24349, + "model_id": 24349, + "year": "2015" + }, + { + "id": 24351, + "model_id": 24349, + "year": "2016" + }, + { + "id": 24353, + "model_id": 24353, + "year": "2015" + }, + { + "id": 24354, + "model_id": 24354, + "year": "2016" + }, + { + "id": 24355, + "model_id": 24355, + "year": "2016" + }, + { + "id": 24356, + "model_id": 24356, + "year": "2016" + }, + { + "id": 24357, + "model_id": 24357, + "year": "2016" + }, + { + "id": 24358, + "model_id": 24358, + "year": "2016" + }, + { + "id": 24360, + "model_id": 24360, + "year": "2016" + }, + { + "id": 24361, + "model_id": 24361, + "year": "2016" + }, + { + "id": 24362, + "model_id": 24362, + "year": "2016" + }, + { + "id": 24363, + "model_id": 24363, + "year": "2016" + }, + { + "id": 24364, + "model_id": 24364, + "year": "2016" + }, + { + "id": 24365, + "model_id": 24365, + "year": "2013" + }, + { + "id": 24366, + "model_id": 24365, + "year": "2014" + }, + { + "id": 24367, + "model_id": 24365, + "year": "2015" + }, + { + "id": 24368, + "model_id": 24368, + "year": "2010" + }, + { + "id": 24369, + "model_id": 24368, + "year": "2011" + }, + { + "id": 24370, + "model_id": 24368, + "year": "2012" + }, + { + "id": 24371, + "model_id": 24368, + "year": "2013" + }, + { + "id": 24373, + "model_id": 24368, + "year": "2014" + }, + { + "id": 24375, + "model_id": 24368, + "year": "2015" + }, + { + "id": 24377, + "model_id": 24377, + "year": "2010" + }, + { + "id": 24378, + "model_id": 24377, + "year": "2011" + }, + { + "id": 24379, + "model_id": 24377, + "year": "2012" + }, + { + "id": 24380, + "model_id": 24377, + "year": "2013" + }, + { + "id": 24382, + "model_id": 24377, + "year": "2014" + }, + { + "id": 24384, + "model_id": 24377, + "year": "2015" + }, + { + "id": 24386, + "model_id": 24386, + "year": "2017" + }, + { + "id": 24387, + "model_id": 24387, + "year": "2017" + }, + { + "id": 24388, + "model_id": 24388, + "year": "2016" + }, + { + "id": 24389, + "model_id": 24389, + "year": "2016" + }, + { + "id": 24390, + "model_id": 24390, + "year": "2016" + }, + { + "id": 24391, + "model_id": 24391, + "year": "2015" + }, + { + "id": 24392, + "model_id": 24392, + "year": "1998" + }, + { + "id": 24393, + "model_id": 24392, + "year": "1999" + }, + { + "id": 24394, + "model_id": 24392, + "year": "2000" + }, + { + "id": 24395, + "model_id": 24392, + "year": "2001" + }, + { + "id": 24396, + "model_id": 24392, + "year": "2002" + }, + { + "id": 24397, + "model_id": 24392, + "year": "2003" + }, + { + "id": 24398, + "model_id": 24398, + "year": "2009" + }, + { + "id": 24399, + "model_id": 24399, + "year": "2007" + }, + { + "id": 24400, + "model_id": 24399, + "year": "2008" + }, + { + "id": 24401, + "model_id": 24401, + "year": "2003" + }, + { + "id": 24402, + "model_id": 24401, + "year": "2004" + }, + { + "id": 24403, + "model_id": 24401, + "year": "2005" + }, + { + "id": 24404, + "model_id": 24401, + "year": "2006" + }, + { + "id": 24405, + "model_id": 24401, + "year": "2009" + }, + { + "id": 24406, + "model_id": 24401, + "year": "2010" + }, + { + "id": 24407, + "model_id": 24401, + "year": "2011" + }, + { + "id": 24408, + "model_id": 24401, + "year": "2013" + }, + { + "id": 24409, + "model_id": 24401, + "year": "2014" + }, + { + "id": 24410, + "model_id": 24401, + "year": "2015" + }, + { + "id": 24411, + "model_id": 24411, + "year": "2007" + }, + { + "id": 24412, + "model_id": 24411, + "year": "2008" + }, + { + "id": 24413, + "model_id": 24411, + "year": "2009" + }, + { + "id": 24414, + "model_id": 24411, + "year": "2010" + }, + { + "id": 24415, + "model_id": 24411, + "year": "2011" + }, + { + "id": 24416, + "model_id": 24411, + "year": "2012" + }, + { + "id": 24418, + "model_id": 24411, + "year": "2013" + }, + { + "id": 24420, + "model_id": 24411, + "year": "2014" + }, + { + "id": 24422, + "model_id": 24411, + "year": "2015" + }, + { + "id": 24424, + "model_id": 24424, + "year": "2010" + }, + { + "id": 24425, + "model_id": 24425, + "year": "2011" + }, + { + "id": 24426, + "model_id": 24425, + "year": "2012" + }, + { + "id": 24427, + "model_id": 24425, + "year": "2013" + }, + { + "id": 24428, + "model_id": 24425, + "year": "2014" + }, + { + "id": 24429, + "model_id": 24429, + "year": "2015" + }, + { + "id": 24430, + "model_id": 24430, + "year": "1999" + }, + { + "id": 24431, + "model_id": 24430, + "year": "2000" + }, + { + "id": 24432, + "model_id": 24430, + "year": "2001" + }, + { + "id": 24433, + "model_id": 24433, + "year": "2010" + }, + { + "id": 24434, + "model_id": 24433, + "year": "2011" + }, + { + "id": 24435, + "model_id": 24435, + "year": "2002" + }, + { + "id": 24436, + "model_id": 24435, + "year": "2003" + }, + { + "id": 24437, + "model_id": 24435, + "year": "2004" + }, + { + "id": 24438, + "model_id": 24435, + "year": "2005" + }, + { + "id": 24439, + "model_id": 24435, + "year": "2006" + }, + { + "id": 24440, + "model_id": 24440, + "year": "2007" + }, + { + "id": 24441, + "model_id": 24441, + "year": "2000" + }, + { + "id": 24442, + "model_id": 24442, + "year": "2001" + }, + { + "id": 24443, + "model_id": 24442, + "year": "2002" + }, + { + "id": 24444, + "model_id": 24442, + "year": "2003" + }, + { + "id": 24445, + "model_id": 24445, + "year": "2008" + }, + { + "id": 24446, + "model_id": 24445, + "year": "2009" + }, + { + "id": 24447, + "model_id": 24445, + "year": "2010" + }, + { + "id": 24448, + "model_id": 24445, + "year": "2011" + }, + { + "id": 24449, + "model_id": 24445, + "year": "2012" + }, + { + "id": 24450, + "model_id": 24445, + "year": "2013" + }, + { + "id": 24451, + "model_id": 24445, + "year": "2014" + }, + { + "id": 24452, + "model_id": 24452, + "year": "2007" + }, + { + "id": 24453, + "model_id": 24452, + "year": "2008" + }, + { + "id": 24454, + "model_id": 24452, + "year": "2009" + }, + { + "id": 24455, + "model_id": 24452, + "year": "2010" + }, + { + "id": 24456, + "model_id": 24452, + "year": "2011" + }, + { + "id": 24457, + "model_id": 24452, + "year": "2012" + }, + { + "id": 24458, + "model_id": 24452, + "year": "2013" + }, + { + "id": 24459, + "model_id": 24452, + "year": "2014" + }, + { + "id": 24460, + "model_id": 24452, + "year": "2015" + }, + { + "id": 24461, + "model_id": 24461, + "year": "2009" + }, + { + "id": 24462, + "model_id": 24462, + "year": "2007" + }, + { + "id": 24463, + "model_id": 24462, + "year": "2008" + }, + { + "id": 24464, + "model_id": 24464, + "year": "2006" + }, + { + "id": 24465, + "model_id": 24464, + "year": "2008" + }, + { + "id": 24466, + "model_id": 24466, + "year": "2007" + }, + { + "id": 24467, + "model_id": 24466, + "year": "2008" + }, + { + "id": 24468, + "model_id": 24466, + "year": "2009" + }, + { + "id": 24469, + "model_id": 24466, + "year": "2010" + }, + { + "id": 24470, + "model_id": 24466, + "year": "2011" + }, + { + "id": 24471, + "model_id": 24466, + "year": "2012" + }, + { + "id": 24472, + "model_id": 24466, + "year": "2013" + }, + { + "id": 24473, + "model_id": 24473, + "year": "2010" + }, + { + "id": 24474, + "model_id": 24474, + "year": "2011" + }, + { + "id": 24475, + "model_id": 24474, + "year": "2012" + }, + { + "id": 24476, + "model_id": 24476, + "year": "2006" + }, + { + "id": 24477, + "model_id": 24477, + "year": "2007" + }, + { + "id": 24478, + "model_id": 24478, + "year": "2007" + }, + { + "id": 24479, + "model_id": 24479, + "year": "1994" + }, + { + "id": 24480, + "model_id": 24479, + "year": "1995" + }, + { + "id": 24482, + "model_id": 24479, + "year": "1996" + }, + { + "id": 24484, + "model_id": 24479, + "year": "1997" + }, + { + "id": 24486, + "model_id": 24479, + "year": "1998" + }, + { + "id": 24490, + "model_id": 24479, + "year": "1999" + }, + { + "id": 24492, + "model_id": 24492, + "year": "1995" + }, + { + "id": 24493, + "model_id": 24492, + "year": "2006" + }, + { + "id": 24494, + "model_id": 24494, + "year": "2012" + }, + { + "id": 24495, + "model_id": 24494, + "year": "2013" + }, + { + "id": 24496, + "model_id": 24496, + "year": "1994" + }, + { + "id": 24497, + "model_id": 24497, + "year": "2010" + }, + { + "id": 24498, + "model_id": 24497, + "year": "2011" + }, + { + "id": 24499, + "model_id": 24497, + "year": "2012" + }, + { + "id": 24500, + "model_id": 24497, + "year": "2013" + }, + { + "id": 24501, + "model_id": 24501, + "year": "1994" + }, + { + "id": 24502, + "model_id": 24501, + "year": "1995" + }, + { + "id": 24503, + "model_id": 24501, + "year": "1996" + }, + { + "id": 24504, + "model_id": 24501, + "year": "1997" + }, + { + "id": 24505, + "model_id": 24501, + "year": "1998" + }, + { + "id": 24506, + "model_id": 24501, + "year": "1999" + }, + { + "id": 24507, + "model_id": 24507, + "year": "2000" + }, + { + "id": 24508, + "model_id": 24507, + "year": "2001" + }, + { + "id": 24509, + "model_id": 24507, + "year": "2002" + }, + { + "id": 24510, + "model_id": 24507, + "year": "2003" + }, + { + "id": 24511, + "model_id": 24507, + "year": "2004" + }, + { + "id": 24512, + "model_id": 24507, + "year": "2005" + }, + { + "id": 24513, + "model_id": 24507, + "year": "2006" + }, + { + "id": 24514, + "model_id": 24514, + "year": "2003" + }, + { + "id": 24515, + "model_id": 24514, + "year": "2004" + }, + { + "id": 24516, + "model_id": 24514, + "year": "2005" + }, + { + "id": 24517, + "model_id": 24514, + "year": "2006" + }, + { + "id": 24518, + "model_id": 24518, + "year": "1996" + }, + { + "id": 24519, + "model_id": 24518, + "year": "1997" + }, + { + "id": 24520, + "model_id": 24518, + "year": "1998" + }, + { + "id": 24521, + "model_id": 24518, + "year": "1999" + }, + { + "id": 24522, + "model_id": 24518, + "year": "2000" + }, + { + "id": 24523, + "model_id": 24518, + "year": "2001" + }, + { + "id": 24524, + "model_id": 24518, + "year": "2002" + }, + { + "id": 24525, + "model_id": 24518, + "year": "2003" + }, + { + "id": 24526, + "model_id": 24518, + "year": "2004" + }, + { + "id": 24527, + "model_id": 24518, + "year": "2005" + }, + { + "id": 24528, + "model_id": 24518, + "year": "2006" + }, + { + "id": 24529, + "model_id": 24529, + "year": "2003" + }, + { + "id": 24530, + "model_id": 24529, + "year": "2004" + }, + { + "id": 24531, + "model_id": 24529, + "year": "2005" + }, + { + "id": 24532, + "model_id": 24529, + "year": "2006" + }, + { + "id": 24533, + "model_id": 24533, + "year": "1994" + }, + { + "id": 24534, + "model_id": 24533, + "year": "1995" + }, + { + "id": 24535, + "model_id": 24533, + "year": "1996" + }, + { + "id": 24536, + "model_id": 24533, + "year": "1997" + }, + { + "id": 24537, + "model_id": 24537, + "year": "1994" + }, + { + "id": 24538, + "model_id": 24537, + "year": "1995" + }, + { + "id": 24539, + "model_id": 24539, + "year": "2001" + }, + { + "id": 24540, + "model_id": 24539, + "year": "2002" + }, + { + "id": 24541, + "model_id": 24539, + "year": "2003" + }, + { + "id": 24542, + "model_id": 24539, + "year": "2004" + }, + { + "id": 24543, + "model_id": 24539, + "year": "2005" + }, + { + "id": 24544, + "model_id": 24539, + "year": "2006" + }, + { + "id": 24545, + "model_id": 24545, + "year": "2007" + }, + { + "id": 24546, + "model_id": 24545, + "year": "2008" + }, + { + "id": 24547, + "model_id": 24545, + "year": "2009" + }, + { + "id": 24548, + "model_id": 24545, + "year": "2010" + }, + { + "id": 24549, + "model_id": 24545, + "year": "2011" + }, + { + "id": 24550, + "model_id": 24545, + "year": "2012" + }, + { + "id": 24551, + "model_id": 24545, + "year": "2013" + }, + { + "id": 24552, + "model_id": 24545, + "year": "2014" + }, + { + "id": 24553, + "model_id": 24545, + "year": "2015" + }, + { + "id": 24554, + "model_id": 24545, + "year": "2016" + }, + { + "id": 24555, + "model_id": 24555, + "year": "2007" + }, + { + "id": 24556, + "model_id": 24555, + "year": "2008" + }, + { + "id": 24557, + "model_id": 24555, + "year": "2009" + }, + { + "id": 24558, + "model_id": 24555, + "year": "2010" + }, + { + "id": 24559, + "model_id": 24555, + "year": "2011" + }, + { + "id": 24560, + "model_id": 24555, + "year": "2012" + }, + { + "id": 24561, + "model_id": 24555, + "year": "2013" + }, + { + "id": 24562, + "model_id": 24555, + "year": "2014" + }, + { + "id": 24563, + "model_id": 24555, + "year": "2015" + }, + { + "id": 24564, + "model_id": 24555, + "year": "2016" + }, + { + "id": 24565, + "model_id": 24565, + "year": "2015" + }, + { + "id": 24566, + "model_id": 24565, + "year": "2016" + }, + { + "id": 24567, + "model_id": 24567, + "year": "2015" + }, + { + "id": 24568, + "model_id": 24567, + "year": "2016" + }, + { + "id": 24569, + "model_id": 24569, + "year": "1996" + }, + { + "id": 24570, + "model_id": 24569, + "year": "1997" + }, + { + "id": 24571, + "model_id": 24569, + "year": "1998" + }, + { + "id": 24572, + "model_id": 24569, + "year": "1999" + }, + { + "id": 24573, + "model_id": 24569, + "year": "2001" + }, + { + "id": 24574, + "model_id": 24569, + "year": "2002" + }, + { + "id": 24575, + "model_id": 24569, + "year": "2003" + }, + { + "id": 24576, + "model_id": 24569, + "year": "2004" + }, + { + "id": 24577, + "model_id": 24569, + "year": "2005" + }, + { + "id": 24578, + "model_id": 24569, + "year": "2006" + }, + { + "id": 24579, + "model_id": 24569, + "year": "2007" + }, + { + "id": 24580, + "model_id": 24569, + "year": "2008" + }, + { + "id": 24581, + "model_id": 24569, + "year": "2009" + }, + { + "id": 24582, + "model_id": 24569, + "year": "2010" + }, + { + "id": 24583, + "model_id": 24569, + "year": "2011" + }, + { + "id": 24584, + "model_id": 24569, + "year": "2012" + }, + { + "id": 24585, + "model_id": 24569, + "year": "2013" + }, + { + "id": 24586, + "model_id": 24569, + "year": "2015" + }, + { + "id": 24587, + "model_id": 24569, + "year": "2016" + }, + { + "id": 24588, + "model_id": 24588, + "year": "1994" + }, + { + "id": 24589, + "model_id": 24588, + "year": "1995" + }, + { + "id": 24590, + "model_id": 24588, + "year": "1996" + }, + { + "id": 24591, + "model_id": 24588, + "year": "1997" + }, + { + "id": 24592, + "model_id": 24592, + "year": "1994" + }, + { + "id": 24593, + "model_id": 24592, + "year": "1995" + }, + { + "id": 24594, + "model_id": 24594, + "year": "2008" + }, + { + "id": 24595, + "model_id": 24594, + "year": "2009" + }, + { + "id": 24596, + "model_id": 24594, + "year": "2010" + }, + { + "id": 24597, + "model_id": 24594, + "year": "2011" + }, + { + "id": 24598, + "model_id": 24594, + "year": "2012" + }, + { + "id": 24599, + "model_id": 24594, + "year": "2013" + }, + { + "id": 24600, + "model_id": 24600, + "year": "2014" + }, + { + "id": 24601, + "model_id": 24600, + "year": "2015" + }, + { + "id": 24602, + "model_id": 24602, + "year": "2015" + }, + { + "id": 24603, + "model_id": 24603, + "year": "2006" + }, + { + "id": 24604, + "model_id": 24603, + "year": "2007" + }, + { + "id": 24605, + "model_id": 24603, + "year": "2008" + }, + { + "id": 24606, + "model_id": 24603, + "year": "2009" + }, + { + "id": 24607, + "model_id": 24603, + "year": "2010" + }, + { + "id": 24608, + "model_id": 24603, + "year": "2011" + }, + { + "id": 24609, + "model_id": 24603, + "year": "2012" + }, + { + "id": 24610, + "model_id": 24603, + "year": "2013" + }, + { + "id": 24611, + "model_id": 24603, + "year": "2015" + }, + { + "id": 24612, + "model_id": 24612, + "year": "2015" + }, + { + "id": 24613, + "model_id": 24613, + "year": "1994" + }, + { + "id": 24614, + "model_id": 24613, + "year": "1995" + }, + { + "id": 24615, + "model_id": 24613, + "year": "1996" + }, + { + "id": 24616, + "model_id": 24613, + "year": "1997" + }, + { + "id": 24617, + "model_id": 24617, + "year": "2015" + }, + { + "id": 24618, + "model_id": 24617, + "year": "2016" + }, + { + "id": 24619, + "model_id": 24619, + "year": "1994" + }, + { + "id": 24620, + "model_id": 24619, + "year": "1995" + }, + { + "id": 24621, + "model_id": 24619, + "year": "1996" + }, + { + "id": 24622, + "model_id": 24619, + "year": "1997" + }, + { + "id": 24623, + "model_id": 24619, + "year": "1998" + }, + { + "id": 24624, + "model_id": 24619, + "year": "1999" + }, + { + "id": 24625, + "model_id": 24619, + "year": "2000" + }, + { + "id": 24626, + "model_id": 24619, + "year": "2001" + }, + { + "id": 24627, + "model_id": 24619, + "year": "2002" + }, + { + "id": 24628, + "model_id": 24619, + "year": "2003" + }, + { + "id": 24629, + "model_id": 24619, + "year": "2004" + }, + { + "id": 24630, + "model_id": 24619, + "year": "2005" + }, + { + "id": 24631, + "model_id": 24619, + "year": "2006" + }, + { + "id": 24632, + "model_id": 24632, + "year": "2003" + }, + { + "id": 24633, + "model_id": 24632, + "year": "2004" + }, + { + "id": 24634, + "model_id": 24632, + "year": "2005" + }, + { + "id": 24635, + "model_id": 24632, + "year": "2006" + }, + { + "id": 24636, + "model_id": 24632, + "year": "2007" + }, + { + "id": 24637, + "model_id": 24632, + "year": "2008" + }, + { + "id": 24638, + "model_id": 24638, + "year": "2007" + }, + { + "id": 24639, + "model_id": 24638, + "year": "2008" + }, + { + "id": 24640, + "model_id": 24638, + "year": "2009" + }, + { + "id": 24641, + "model_id": 24638, + "year": "2011" + }, + { + "id": 24642, + "model_id": 24638, + "year": "2012" + }, + { + "id": 24643, + "model_id": 24638, + "year": "2013" + }, + { + "id": 24644, + "model_id": 24638, + "year": "2014" + }, + { + "id": 24645, + "model_id": 24638, + "year": "2015" + }, + { + "id": 24646, + "model_id": 24638, + "year": "2016" + }, + { + "id": 24647, + "model_id": 24647, + "year": "1994" + }, + { + "id": 24648, + "model_id": 24647, + "year": "1995" + }, + { + "id": 24649, + "model_id": 24647, + "year": "1996" + }, + { + "id": 24650, + "model_id": 24647, + "year": "1997" + }, + { + "id": 24651, + "model_id": 24647, + "year": "1998" + }, + { + "id": 24652, + "model_id": 24647, + "year": "1999" + }, + { + "id": 24653, + "model_id": 24647, + "year": "2000" + }, + { + "id": 24654, + "model_id": 24647, + "year": "2001" + }, + { + "id": 24655, + "model_id": 24647, + "year": "2002" + }, + { + "id": 24656, + "model_id": 24647, + "year": "2004" + }, + { + "id": 24657, + "model_id": 24647, + "year": "2005" + }, + { + "id": 24658, + "model_id": 24647, + "year": "2006" + }, + { + "id": 24659, + "model_id": 24647, + "year": "2007" + }, + { + "id": 24660, + "model_id": 24647, + "year": "2008" + }, + { + "id": 24661, + "model_id": 24647, + "year": "2009" + }, + { + "id": 24662, + "model_id": 24662, + "year": "2009" + }, + { + "id": 24663, + "model_id": 24662, + "year": "2011" + }, + { + "id": 24664, + "model_id": 24662, + "year": "2012" + }, + { + "id": 24665, + "model_id": 24662, + "year": "2013" + }, + { + "id": 24666, + "model_id": 24662, + "year": "2014" + }, + { + "id": 24667, + "model_id": 24662, + "year": "2015" + }, + { + "id": 24668, + "model_id": 24668, + "year": "2005" + }, + { + "id": 24669, + "model_id": 24668, + "year": "2006" + }, + { + "id": 24670, + "model_id": 24668, + "year": "2007" + }, + { + "id": 24671, + "model_id": 24668, + "year": "2008" + }, + { + "id": 24672, + "model_id": 24668, + "year": "2009" + }, + { + "id": 24673, + "model_id": 24668, + "year": "2011" + }, + { + "id": 24674, + "model_id": 24668, + "year": "2013" + }, + { + "id": 24675, + "model_id": 24668, + "year": "2014" + }, + { + "id": 24676, + "model_id": 24668, + "year": "2015" + }, + { + "id": 24677, + "model_id": 24677, + "year": "2004" + }, + { + "id": 24679, + "model_id": 24679, + "year": "1999" + }, + { + "id": 24681, + "model_id": 24679, + "year": "2000" + }, + { + "id": 24683, + "model_id": 24679, + "year": "2001" + }, + { + "id": 24685, + "model_id": 24679, + "year": "2002" + }, + { + "id": 24687, + "model_id": 24679, + "year": "2003" + }, + { + "id": 24689, + "model_id": 24689, + "year": "2012" + }, + { + "id": 24691, + "model_id": 24689, + "year": "2013" + }, + { + "id": 24693, + "model_id": 24689, + "year": "2014" + }, + { + "id": 24695, + "model_id": 24689, + "year": "2015" + }, + { + "id": 24697, + "model_id": 24697, + "year": "2006" + }, + { + "id": 24699, + "model_id": 24697, + "year": "2007" + }, + { + "id": 24701, + "model_id": 24697, + "year": "2008" + }, + { + "id": 24703, + "model_id": 24703, + "year": "2009" + }, + { + "id": 24705, + "model_id": 24703, + "year": "2010" + }, + { + "id": 24707, + "model_id": 24703, + "year": "2011" + }, + { + "id": 24709, + "model_id": 24703, + "year": "2016" + }, + { + "id": 24710, + "model_id": 24710, + "year": "2002" + }, + { + "id": 24711, + "model_id": 24710, + "year": "2003" + }, + { + "id": 24712, + "model_id": 24710, + "year": "2004" + }, + { + "id": 24713, + "model_id": 24713, + "year": "2001" + }, + { + "id": 24715, + "model_id": 24713, + "year": "2002" + }, + { + "id": 24717, + "model_id": 24713, + "year": "2003" + }, + { + "id": 24719, + "model_id": 24713, + "year": "2004" + }, + { + "id": 24721, + "model_id": 24721, + "year": "2005" + }, + { + "id": 24723, + "model_id": 24721, + "year": "2006" + }, + { + "id": 24725, + "model_id": 24721, + "year": "2007" + }, + { + "id": 24727, + "model_id": 24721, + "year": "2008" + }, + { + "id": 24729, + "model_id": 24721, + "year": "2009" + }, + { + "id": 24731, + "model_id": 24721, + "year": "2010" + }, + { + "id": 24733, + "model_id": 24721, + "year": "2011" + }, + { + "id": 24735, + "model_id": 24721, + "year": "2012" + }, + { + "id": 24736, + "model_id": 24721, + "year": "2013" + }, + { + "id": 24737, + "model_id": 24721, + "year": "2014" + }, + { + "id": 24738, + "model_id": 24721, + "year": "2015" + }, + { + "id": 24739, + "model_id": 24721, + "year": "2016" + }, + { + "id": 24740, + "model_id": 24740, + "year": "2005" + }, + { + "id": 24741, + "model_id": 24740, + "year": "2006" + }, + { + "id": 24742, + "model_id": 24740, + "year": "2007" + }, + { + "id": 24743, + "model_id": 24740, + "year": "2008" + }, + { + "id": 24744, + "model_id": 24740, + "year": "2009" + }, + { + "id": 24745, + "model_id": 24740, + "year": "2010" + }, + { + "id": 24746, + "model_id": 24740, + "year": "2012" + }, + { + "id": 24747, + "model_id": 24740, + "year": "2013" + }, + { + "id": 24748, + "model_id": 24740, + "year": "2014" + }, + { + "id": 24749, + "model_id": 24740, + "year": "2015" + }, + { + "id": 24750, + "model_id": 24750, + "year": "2005" + }, + { + "id": 24751, + "model_id": 24750, + "year": "2006" + }, + { + "id": 24752, + "model_id": 24750, + "year": "2007" + }, + { + "id": 24753, + "model_id": 24750, + "year": "2008" + }, + { + "id": 24754, + "model_id": 24750, + "year": "2009" + }, + { + "id": 24755, + "model_id": 24755, + "year": "2011" + }, + { + "id": 24756, + "model_id": 24755, + "year": "2012" + }, + { + "id": 24757, + "model_id": 24757, + "year": "2014" + }, + { + "id": 24758, + "model_id": 24758, + "year": "2013" + }, + { + "id": 24759, + "model_id": 24758, + "year": "2014" + }, + { + "id": 24760, + "model_id": 24760, + "year": "2013" + }, + { + "id": 24761, + "model_id": 24760, + "year": "2014" + }, + { + "id": 24762, + "model_id": 24760, + "year": "2015" + }, + { + "id": 24763, + "model_id": 24763, + "year": "2013" + }, + { + "id": 24764, + "model_id": 24763, + "year": "2014" + }, + { + "id": 24765, + "model_id": 24763, + "year": "2015" + }, + { + "id": 24766, + "model_id": 24766, + "year": "2012" + }, + { + "id": 24767, + "model_id": 24766, + "year": "2013" + }, + { + "id": 24768, + "model_id": 24766, + "year": "2014" + }, + { + "id": 24769, + "model_id": 24769, + "year": "1984" + }, + { + "id": 24781, + "model_id": 24769, + "year": "1985" + }, + { + "id": 24789, + "model_id": 24769, + "year": "1986" + }, + { + "id": 24794, + "model_id": 24769, + "year": "1991" + }, + { + "id": 24797, + "model_id": 24769, + "year": "1992" + }, + { + "id": 24800, + "model_id": 24769, + "year": "1993" + }, + { + "id": 24803, + "model_id": 24769, + "year": "1994" + }, + { + "id": 24806, + "model_id": 24806, + "year": "1984" + }, + { + "id": 24816, + "model_id": 24806, + "year": "1985" + }, + { + "id": 24822, + "model_id": 24806, + "year": "1986" + }, + { + "id": 24827, + "model_id": 24806, + "year": "1987" + }, + { + "id": 24829, + "model_id": 24806, + "year": "1988" + }, + { + "id": 24831, + "model_id": 24806, + "year": "1989" + }, + { + "id": 24834, + "model_id": 24806, + "year": "1990" + }, + { + "id": 24837, + "model_id": 24806, + "year": "1991" + }, + { + "id": 24839, + "model_id": 24806, + "year": "1992" + }, + { + "id": 24841, + "model_id": 24806, + "year": "1993" + }, + { + "id": 24843, + "model_id": 24806, + "year": "1994" + }, + { + "id": 24845, + "model_id": 24806, + "year": "1995" + }, + { + "id": 24847, + "model_id": 24806, + "year": "1996" + }, + { + "id": 24849, + "model_id": 24806, + "year": "1997" + }, + { + "id": 24851, + "model_id": 24806, + "year": "1999" + }, + { + "id": 24855, + "model_id": 24806, + "year": "2000" + }, + { + "id": 24858, + "model_id": 24806, + "year": "2001" + }, + { + "id": 24861, + "model_id": 24806, + "year": "2002" + }, + { + "id": 24864, + "model_id": 24864, + "year": "1984" + }, + { + "id": 24866, + "model_id": 24864, + "year": "1985" + }, + { + "id": 24867, + "model_id": 24864, + "year": "1986" + }, + { + "id": 24868, + "model_id": 24864, + "year": "1987" + }, + { + "id": 24869, + "model_id": 24864, + "year": "1988" + }, + { + "id": 24870, + "model_id": 24864, + "year": "1989" + }, + { + "id": 24871, + "model_id": 24864, + "year": "1990" + }, + { + "id": 24872, + "model_id": 24864, + "year": "1991" + }, + { + "id": 24873, + "model_id": 24864, + "year": "1992" + }, + { + "id": 24875, + "model_id": 24864, + "year": "1993" + }, + { + "id": 24876, + "model_id": 24864, + "year": "1994" + }, + { + "id": 24877, + "model_id": 24864, + "year": "1995" + }, + { + "id": 24878, + "model_id": 24864, + "year": "1996" + }, + { + "id": 24879, + "model_id": 24864, + "year": "1997" + }, + { + "id": 24880, + "model_id": 24864, + "year": "1998" + }, + { + "id": 24881, + "model_id": 24864, + "year": "1999" + }, + { + "id": 24882, + "model_id": 24864, + "year": "2000" + }, + { + "id": 24883, + "model_id": 24864, + "year": "2001" + }, + { + "id": 24884, + "model_id": 24864, + "year": "2002" + }, + { + "id": 24885, + "model_id": 24864, + "year": "2003" + }, + { + "id": 24886, + "model_id": 24864, + "year": "2004" + }, + { + "id": 24887, + "model_id": 24864, + "year": "2005" + }, + { + "id": 24888, + "model_id": 24864, + "year": "2006" + }, + { + "id": 24890, + "model_id": 24864, + "year": "2007" + }, + { + "id": 24892, + "model_id": 24864, + "year": "2008" + }, + { + "id": 24893, + "model_id": 24864, + "year": "2009" + }, + { + "id": 24894, + "model_id": 24864, + "year": "2010" + }, + { + "id": 24895, + "model_id": 24864, + "year": "2011" + }, + { + "id": 24896, + "model_id": 24896, + "year": "1984" + }, + { + "id": 24898, + "model_id": 24896, + "year": "1985" + }, + { + "id": 24899, + "model_id": 24896, + "year": "1986" + }, + { + "id": 24900, + "model_id": 24896, + "year": "1987" + }, + { + "id": 24901, + "model_id": 24896, + "year": "1988" + }, + { + "id": 24902, + "model_id": 24896, + "year": "1989" + }, + { + "id": 24903, + "model_id": 24896, + "year": "1990" + }, + { + "id": 24904, + "model_id": 24896, + "year": "1991" + }, + { + "id": 24905, + "model_id": 24905, + "year": "1984" + }, + { + "id": 24921, + "model_id": 24905, + "year": "1985" + }, + { + "id": 24934, + "model_id": 24905, + "year": "1986" + }, + { + "id": 24940, + "model_id": 24905, + "year": "1987" + }, + { + "id": 24945, + "model_id": 24945, + "year": "1984" + }, + { + "id": 24953, + "model_id": 24945, + "year": "1985" + }, + { + "id": 24962, + "model_id": 24945, + "year": "1986" + }, + { + "id": 24966, + "model_id": 24945, + "year": "1987" + }, + { + "id": 24969, + "model_id": 24969, + "year": "2003" + }, + { + "id": 24970, + "model_id": 24969, + "year": "2004" + }, + { + "id": 24971, + "model_id": 24971, + "year": "2005" + }, + { + "id": 24975, + "model_id": 24971, + "year": "2006" + }, + { + "id": 24979, + "model_id": 24971, + "year": "2007" + }, + { + "id": 24983, + "model_id": 24971, + "year": "2008" + }, + { + "id": 24987, + "model_id": 24971, + "year": "2009" + }, + { + "id": 24991, + "model_id": 24971, + "year": "2010" + }, + { + "id": 24995, + "model_id": 24971, + "year": "2011" + }, + { + "id": 24999, + "model_id": 24999, + "year": "2006" + }, + { + "id": 25000, + "model_id": 24999, + "year": "2007" + }, + { + "id": 25001, + "model_id": 24999, + "year": "2008" + }, + { + "id": 25003, + "model_id": 24999, + "year": "2009" + }, + { + "id": 25005, + "model_id": 24999, + "year": "2010" + }, + { + "id": 25007, + "model_id": 24999, + "year": "2011" + }, + { + "id": 25009, + "model_id": 25009, + "year": "1984" + }, + { + "id": 25018, + "model_id": 25009, + "year": "1985" + }, + { + "id": 25023, + "model_id": 25009, + "year": "1986" + }, + { + "id": 25025, + "model_id": 25025, + "year": "1984" + }, + { + "id": 25030, + "model_id": 25025, + "year": "1985" + }, + { + "id": 25032, + "model_id": 25025, + "year": "1986" + }, + { + "id": 25033, + "model_id": 25033, + "year": "2006" + }, + { + "id": 25036, + "model_id": 25033, + "year": "2007" + }, + { + "id": 25040, + "model_id": 25033, + "year": "2008" + }, + { + "id": 25044, + "model_id": 25033, + "year": "2009" + }, + { + "id": 25048, + "model_id": 25033, + "year": "2010" + }, + { + "id": 25052, + "model_id": 25033, + "year": "2011" + }, + { + "id": 25056, + "model_id": 25056, + "year": "2010" + }, + { + "id": 25057, + "model_id": 25056, + "year": "2011" + }, + { + "id": 25058, + "model_id": 25058, + "year": "2010" + }, + { + "id": 25060, + "model_id": 25058, + "year": "2011" + }, + { + "id": 25061, + "model_id": 25061, + "year": "2005" + }, + { + "id": 25064, + "model_id": 25061, + "year": "2006" + }, + { + "id": 25067, + "model_id": 25061, + "year": "2007" + }, + { + "id": 25069, + "model_id": 25069, + "year": "2004" + }, + { + "id": 25070, + "model_id": 25069, + "year": "2005" + }, + { + "id": 25071, + "model_id": 25069, + "year": "2006" + }, + { + "id": 25072, + "model_id": 25069, + "year": "2007" + }, + { + "id": 25073, + "model_id": 25073, + "year": "1997" + }, + { + "id": 25075, + "model_id": 25073, + "year": "1998" + }, + { + "id": 25079, + "model_id": 25073, + "year": "1999" + }, + { + "id": 25083, + "model_id": 25073, + "year": "2000" + }, + { + "id": 25087, + "model_id": 25073, + "year": "2001" + }, + { + "id": 25091, + "model_id": 25073, + "year": "2002" + }, + { + "id": 25097, + "model_id": 25073, + "year": "2003" + }, + { + "id": 25101, + "model_id": 25073, + "year": "2004" + }, + { + "id": 25107, + "model_id": 25073, + "year": "2005" + }, + { + "id": 25114, + "model_id": 25073, + "year": "2006" + }, + { + "id": 25118, + "model_id": 25073, + "year": "2007" + }, + { + "id": 25122, + "model_id": 25073, + "year": "2008" + }, + { + "id": 25126, + "model_id": 25073, + "year": "2009" + }, + { + "id": 25130, + "model_id": 25073, + "year": "2010" + }, + { + "id": 25134, + "model_id": 25134, + "year": "1995" + }, + { + "id": 25138, + "model_id": 25134, + "year": "1996" + }, + { + "id": 25142, + "model_id": 25134, + "year": "1997" + }, + { + "id": 25146, + "model_id": 25134, + "year": "1998" + }, + { + "id": 25150, + "model_id": 25134, + "year": "1999" + }, + { + "id": 25154, + "model_id": 25134, + "year": "2000" + }, + { + "id": 25158, + "model_id": 25158, + "year": "1986" + }, + { + "id": 25160, + "model_id": 25158, + "year": "1987" + }, + { + "id": 25161, + "model_id": 25158, + "year": "1988" + }, + { + "id": 25163, + "model_id": 25158, + "year": "1989" + }, + { + "id": 25165, + "model_id": 25158, + "year": "1990" + }, + { + "id": 25167, + "model_id": 25158, + "year": "1991" + }, + { + "id": 25169, + "model_id": 25158, + "year": "1992" + }, + { + "id": 25171, + "model_id": 25158, + "year": "1993" + }, + { + "id": 25173, + "model_id": 25158, + "year": "1994" + }, + { + "id": 25175, + "model_id": 25158, + "year": "1995" + }, + { + "id": 25177, + "model_id": 25158, + "year": "1996" + }, + { + "id": 25179, + "model_id": 25158, + "year": "1997" + }, + { + "id": 25181, + "model_id": 25158, + "year": "1998" + }, + { + "id": 25183, + "model_id": 25158, + "year": "1999" + }, + { + "id": 25185, + "model_id": 25158, + "year": "2000" + }, + { + "id": 25187, + "model_id": 25158, + "year": "2001" + }, + { + "id": 25189, + "model_id": 25158, + "year": "2002" + }, + { + "id": 25192, + "model_id": 25158, + "year": "2003" + }, + { + "id": 25195, + "model_id": 25158, + "year": "2004" + }, + { + "id": 25198, + "model_id": 25158, + "year": "2005" + }, + { + "id": 25201, + "model_id": 25158, + "year": "2008" + }, + { + "id": 25203, + "model_id": 25158, + "year": "2009" + }, + { + "id": 25205, + "model_id": 25205, + "year": "2001" + }, + { + "id": 25206, + "model_id": 25206, + "year": "1986" + }, + { + "id": 25208, + "model_id": 25206, + "year": "1987" + }, + { + "id": 25209, + "model_id": 25206, + "year": "1988" + }, + { + "id": 25210, + "model_id": 25206, + "year": "1989" + }, + { + "id": 25212, + "model_id": 25206, + "year": "1990" + }, + { + "id": 25214, + "model_id": 25206, + "year": "1991" + }, + { + "id": 25216, + "model_id": 25206, + "year": "1992" + }, + { + "id": 25218, + "model_id": 25206, + "year": "1993" + }, + { + "id": 25220, + "model_id": 25206, + "year": "1994" + }, + { + "id": 25222, + "model_id": 25206, + "year": "1995" + }, + { + "id": 25224, + "model_id": 25206, + "year": "1996" + }, + { + "id": 25226, + "model_id": 25206, + "year": "1997" + }, + { + "id": 25228, + "model_id": 25206, + "year": "1998" + }, + { + "id": 25230, + "model_id": 25206, + "year": "1999" + }, + { + "id": 25232, + "model_id": 25206, + "year": "2000" + }, + { + "id": 25234, + "model_id": 25206, + "year": "2001" + }, + { + "id": 25236, + "model_id": 25206, + "year": "2002" + }, + { + "id": 25239, + "model_id": 25206, + "year": "2003" + }, + { + "id": 25242, + "model_id": 25206, + "year": "2004" + }, + { + "id": 25245, + "model_id": 25206, + "year": "2005" + }, + { + "id": 25248, + "model_id": 25248, + "year": "2001" + }, + { + "id": 25249, + "model_id": 25249, + "year": "1987" + }, + { + "id": 25250, + "model_id": 25250, + "year": "1988" + }, + { + "id": 25253, + "model_id": 25250, + "year": "1989" + }, + { + "id": 25255, + "model_id": 25250, + "year": "1990" + }, + { + "id": 25256, + "model_id": 25256, + "year": "1984" + }, + { + "id": 25263, + "model_id": 25256, + "year": "1985" + }, + { + "id": 25270, + "model_id": 25256, + "year": "1986" + }, + { + "id": 25274, + "model_id": 25256, + "year": "1987" + }, + { + "id": 25278, + "model_id": 25256, + "year": "1988" + }, + { + "id": 25282, + "model_id": 25256, + "year": "1989" + }, + { + "id": 25286, + "model_id": 25256, + "year": "1990" + }, + { + "id": 25290, + "model_id": 25256, + "year": "1991" + }, + { + "id": 25294, + "model_id": 25256, + "year": "1992" + }, + { + "id": 25298, + "model_id": 25256, + "year": "1993" + }, + { + "id": 25302, + "model_id": 25256, + "year": "1994" + }, + { + "id": 25306, + "model_id": 25306, + "year": "1988" + }, + { + "id": 25308, + "model_id": 25306, + "year": "1989" + }, + { + "id": 25310, + "model_id": 25306, + "year": "1991" + }, + { + "id": 25314, + "model_id": 25306, + "year": "1992" + }, + { + "id": 25318, + "model_id": 25306, + "year": "1993" + }, + { + "id": 25322, + "model_id": 25306, + "year": "1994" + }, + { + "id": 25326, + "model_id": 25306, + "year": "1995" + }, + { + "id": 25330, + "model_id": 25306, + "year": "1996" + }, + { + "id": 25334, + "model_id": 25306, + "year": "1997" + }, + { + "id": 25336, + "model_id": 25306, + "year": "1998" + }, + { + "id": 25338, + "model_id": 25306, + "year": "1999" + }, + { + "id": 25340, + "model_id": 25340, + "year": "1988" + }, + { + "id": 25342, + "model_id": 25340, + "year": "1989" + }, + { + "id": 25344, + "model_id": 25340, + "year": "1991" + }, + { + "id": 25346, + "model_id": 25340, + "year": "1992" + }, + { + "id": 25348, + "model_id": 25340, + "year": "1993" + }, + { + "id": 25350, + "model_id": 25340, + "year": "1994" + }, + { + "id": 25352, + "model_id": 25340, + "year": "1995" + }, + { + "id": 25354, + "model_id": 25340, + "year": "1996" + }, + { + "id": 25356, + "model_id": 25340, + "year": "1997" + }, + { + "id": 25358, + "model_id": 25340, + "year": "1998" + }, + { + "id": 25360, + "model_id": 25340, + "year": "1999" + }, + { + "id": 25362, + "model_id": 25362, + "year": "1993" + }, + { + "id": 25363, + "model_id": 25362, + "year": "1994" + }, + { + "id": 25364, + "model_id": 25362, + "year": "1995" + }, + { + "id": 25365, + "model_id": 25362, + "year": "1996" + }, + { + "id": 25366, + "model_id": 25362, + "year": "1997" + }, + { + "id": 25367, + "model_id": 25362, + "year": "1998" + }, + { + "id": 25368, + "model_id": 25368, + "year": "1993" + }, + { + "id": 25369, + "model_id": 25368, + "year": "1994" + }, + { + "id": 25370, + "model_id": 25368, + "year": "1995" + }, + { + "id": 25371, + "model_id": 25368, + "year": "1996" + }, + { + "id": 25372, + "model_id": 25368, + "year": "1997" + }, + { + "id": 25373, + "model_id": 25368, + "year": "1998" + }, + { + "id": 25374, + "model_id": 25368, + "year": "1999" + }, + { + "id": 25375, + "model_id": 25368, + "year": "2000" + }, + { + "id": 25376, + "model_id": 25368, + "year": "2001" + }, + { + "id": 25377, + "model_id": 25368, + "year": "2002" + }, + { + "id": 25378, + "model_id": 25378, + "year": "1988" + }, + { + "id": 25380, + "model_id": 25378, + "year": "1989" + }, + { + "id": 25382, + "model_id": 25382, + "year": "1985" + }, + { + "id": 25384, + "model_id": 25382, + "year": "1986" + }, + { + "id": 25386, + "model_id": 25382, + "year": "1987" + }, + { + "id": 25388, + "model_id": 25382, + "year": "1988" + }, + { + "id": 25390, + "model_id": 25382, + "year": "1989" + }, + { + "id": 25392, + "model_id": 25392, + "year": "2008" + }, + { + "id": 25394, + "model_id": 25392, + "year": "2009" + }, + { + "id": 25396, + "model_id": 25392, + "year": "2010" + }, + { + "id": 25398, + "model_id": 25392, + "year": "2011" + }, + { + "id": 25400, + "model_id": 25400, + "year": "2008" + }, + { + "id": 25402, + "model_id": 25400, + "year": "2009" + }, + { + "id": 25404, + "model_id": 25400, + "year": "2010" + }, + { + "id": 25406, + "model_id": 25406, + "year": "2002" + }, + { + "id": 25407, + "model_id": 25406, + "year": "2003" + }, + { + "id": 25409, + "model_id": 25406, + "year": "2004" + }, + { + "id": 25411, + "model_id": 25406, + "year": "2005" + }, + { + "id": 25413, + "model_id": 25406, + "year": "2006" + }, + { + "id": 25415, + "model_id": 25406, + "year": "2007" + }, + { + "id": 25417, + "model_id": 25406, + "year": "2008" + }, + { + "id": 25419, + "model_id": 25406, + "year": "2009" + }, + { + "id": 25421, + "model_id": 25406, + "year": "2010" + }, + { + "id": 25423, + "model_id": 25406, + "year": "2011" + }, + { + "id": 25425, + "model_id": 25406, + "year": "2012" + }, + { + "id": 25427, + "model_id": 25406, + "year": "2013" + }, + { + "id": 25429, + "model_id": 25429, + "year": "2014" + }, + { + "id": 25431, + "model_id": 25429, + "year": "2015" + }, + { + "id": 25433, + "model_id": 25433, + "year": "2015" + }, + { + "id": 25435, + "model_id": 25435, + "year": "2012" + }, + { + "id": 25437, + "model_id": 25435, + "year": "2013" + }, + { + "id": 25439, + "model_id": 25435, + "year": "2014" + }, + { + "id": 25441, + "model_id": 25435, + "year": "2016" + }, + { + "id": 25443, + "model_id": 25443, + "year": "2013" + }, + { + "id": 25445, + "model_id": 25443, + "year": "2014" + }, + { + "id": 25447, + "model_id": 25447, + "year": "2005" + }, + { + "id": 25449, + "model_id": 25447, + "year": "2006" + }, + { + "id": 25451, + "model_id": 25447, + "year": "2007" + }, + { + "id": 25453, + "model_id": 25447, + "year": "2008" + }, + { + "id": 25455, + "model_id": 25447, + "year": "2009" + }, + { + "id": 25457, + "model_id": 25447, + "year": "2010" + }, + { + "id": 25459, + "model_id": 25447, + "year": "2011" + }, + { + "id": 25461, + "model_id": 25447, + "year": "2012" + }, + { + "id": 25463, + "model_id": 25447, + "year": "2013" + }, + { + "id": 25465, + "model_id": 25447, + "year": "2014" + }, + { + "id": 25467, + "model_id": 25447, + "year": "2015" + }, + { + "id": 25469, + "model_id": 25447, + "year": "2016" + }, + { + "id": 25471, + "model_id": 25471, + "year": "2011" + }, + { + "id": 25473, + "model_id": 25471, + "year": "2012" + }, + { + "id": 25475, + "model_id": 25471, + "year": "2013" + }, + { + "id": 25477, + "model_id": 25471, + "year": "2014" + }, + { + "id": 25479, + "model_id": 25471, + "year": "2015" + }, + { + "id": 25481, + "model_id": 25471, + "year": "2016" + }, + { + "id": 25483, + "model_id": 25483, + "year": "2013" + }, + { + "id": 25485, + "model_id": 25485, + "year": "2012" + }, + { + "id": 25487, + "model_id": 25485, + "year": "2013" + }, + { + "id": 25489, + "model_id": 25485, + "year": "2014" + }, + { + "id": 25491, + "model_id": 25485, + "year": "2015" + }, + { + "id": 25493, + "model_id": 25493, + "year": "2016" + }, + { + "id": 25495, + "model_id": 25495, + "year": "2016" + }, + { + "id": 25497, + "model_id": 25497, + "year": "2014" + }, + { + "id": 25499, + "model_id": 25497, + "year": "2015" + }, + { + "id": 25501, + "model_id": 25497, + "year": "2016" + }, + { + "id": 25503, + "model_id": 25503, + "year": "2012" + }, + { + "id": 25505, + "model_id": 25503, + "year": "2013" + }, + { + "id": 25507, + "model_id": 25503, + "year": "2014" + }, + { + "id": 25509, + "model_id": 25503, + "year": "2015" + }, + { + "id": 25511, + "model_id": 25511, + "year": "2003" + }, + { + "id": 25512, + "model_id": 25511, + "year": "2004" + }, + { + "id": 25513, + "model_id": 25511, + "year": "2005" + }, + { + "id": 25515, + "model_id": 25511, + "year": "2006" + }, + { + "id": 25517, + "model_id": 25511, + "year": "2007" + }, + { + "id": 25519, + "model_id": 25511, + "year": "2008" + }, + { + "id": 25521, + "model_id": 25511, + "year": "2009" + }, + { + "id": 25523, + "model_id": 25511, + "year": "2010" + }, + { + "id": 25525, + "model_id": 25511, + "year": "2011" + }, + { + "id": 25527, + "model_id": 25511, + "year": "2012" + }, + { + "id": 25529, + "model_id": 25511, + "year": "2013" + }, + { + "id": 25531, + "model_id": 25531, + "year": "2014" + }, + { + "id": 25533, + "model_id": 25531, + "year": "2015" + }, + { + "id": 25535, + "model_id": 25535, + "year": "2015" + }, + { + "id": 25537, + "model_id": 25537, + "year": "2011" + }, + { + "id": 25539, + "model_id": 25537, + "year": "2012" + }, + { + "id": 25541, + "model_id": 25537, + "year": "2013" + }, + { + "id": 25543, + "model_id": 25537, + "year": "2014" + }, + { + "id": 25545, + "model_id": 25537, + "year": "2016" + }, + { + "id": 25547, + "model_id": 25547, + "year": "2017" + }, + { + "id": 25549, + "model_id": 25549, + "year": "2005" + }, + { + "id": 25551, + "model_id": 25549, + "year": "2006" + }, + { + "id": 25553, + "model_id": 25549, + "year": "2007" + }, + { + "id": 25555, + "model_id": 25549, + "year": "2008" + }, + { + "id": 25557, + "model_id": 25549, + "year": "2009" + }, + { + "id": 25559, + "model_id": 25549, + "year": "2010" + }, + { + "id": 25561, + "model_id": 25549, + "year": "2011" + }, + { + "id": 25563, + "model_id": 25549, + "year": "2012" + }, + { + "id": 25565, + "model_id": 25549, + "year": "2013" + }, + { + "id": 25567, + "model_id": 25549, + "year": "2014" + }, + { + "id": 25569, + "model_id": 25549, + "year": "2015" + }, + { + "id": 25571, + "model_id": 25549, + "year": "2016" + }, + { + "id": 25573, + "model_id": 25573, + "year": "2011" + }, + { + "id": 25575, + "model_id": 25573, + "year": "2012" + }, + { + "id": 25577, + "model_id": 25573, + "year": "2013" + }, + { + "id": 25579, + "model_id": 25573, + "year": "2014" + }, + { + "id": 25581, + "model_id": 25573, + "year": "2015" + }, + { + "id": 25583, + "model_id": 25573, + "year": "2016" + }, + { + "id": 25585, + "model_id": 25585, + "year": "2011" + }, + { + "id": 25587, + "model_id": 25585, + "year": "2012" + }, + { + "id": 25589, + "model_id": 25585, + "year": "2013" + }, + { + "id": 25591, + "model_id": 25585, + "year": "2014" + }, + { + "id": 25593, + "model_id": 25585, + "year": "2015" + }, + { + "id": 25595, + "model_id": 25585, + "year": "2016" + }, + { + "id": 25597, + "model_id": 25597, + "year": "2013" + }, + { + "id": 25599, + "model_id": 25599, + "year": "2013" + }, + { + "id": 25601, + "model_id": 25601, + "year": "2012" + }, + { + "id": 25603, + "model_id": 25601, + "year": "2013" + }, + { + "id": 25605, + "model_id": 25601, + "year": "2014" + }, + { + "id": 25607, + "model_id": 25601, + "year": "2015" + }, + { + "id": 25609, + "model_id": 25609, + "year": "2016" + }, + { + "id": 25611, + "model_id": 25611, + "year": "2016" + }, + { + "id": 25613, + "model_id": 25613, + "year": "2006" + }, + { + "id": 25614, + "model_id": 25614, + "year": "2014" + }, + { + "id": 25616, + "model_id": 25614, + "year": "2015" + }, + { + "id": 25618, + "model_id": 25614, + "year": "2016" + }, + { + "id": 25620, + "model_id": 25620, + "year": "2014" + }, + { + "id": 25622, + "model_id": 25620, + "year": "2015" + }, + { + "id": 25624, + "model_id": 25620, + "year": "2016" + }, + { + "id": 25626, + "model_id": 25626, + "year": "2012" + }, + { + "id": 25628, + "model_id": 25626, + "year": "2013" + }, + { + "id": 25630, + "model_id": 25626, + "year": "2014" + }, + { + "id": 25632, + "model_id": 25626, + "year": "2015" + }, + { + "id": 25634, + "model_id": 25634, + "year": "2013" + }, + { + "id": 25636, + "model_id": 25634, + "year": "2014" + }, + { + "id": 25638, + "model_id": 25634, + "year": "2015" + }, + { + "id": 25640, + "model_id": 25634, + "year": "2016" + }, + { + "id": 25642, + "model_id": 25642, + "year": "2013" + }, + { + "id": 25644, + "model_id": 25644, + "year": "2014" + }, + { + "id": 25646, + "model_id": 25644, + "year": "2015" + }, + { + "id": 25648, + "model_id": 25644, + "year": "2016" + }, + { + "id": 25650, + "model_id": 25650, + "year": "2009" + }, + { + "id": 25651, + "model_id": 25650, + "year": "2010" + }, + { + "id": 25652, + "model_id": 25650, + "year": "2011" + }, + { + "id": 25653, + "model_id": 25650, + "year": "2012" + }, + { + "id": 25654, + "model_id": 25650, + "year": "2013" + }, + { + "id": 25656, + "model_id": 25656, + "year": "2009" + }, + { + "id": 25657, + "model_id": 25656, + "year": "2010" + }, + { + "id": 25658, + "model_id": 25656, + "year": "2011" + }, + { + "id": 25659, + "model_id": 25656, + "year": "2012" + }, + { + "id": 25660, + "model_id": 25656, + "year": "2013" + }, + { + "id": 25662, + "model_id": 25656, + "year": "2014" + }, + { + "id": 25664, + "model_id": 25664, + "year": "2009" + }, + { + "id": 25665, + "model_id": 25664, + "year": "2010" + }, + { + "id": 25666, + "model_id": 25664, + "year": "2011" + }, + { + "id": 25667, + "model_id": 25664, + "year": "2012" + }, + { + "id": 25668, + "model_id": 25664, + "year": "2013" + }, + { + "id": 25670, + "model_id": 25664, + "year": "2014" + }, + { + "id": 25672, + "model_id": 25664, + "year": "2015" + }, + { + "id": 25674, + "model_id": 25664, + "year": "2017" + }, + { + "id": 25676, + "model_id": 25676, + "year": "2012" + }, + { + "id": 25677, + "model_id": 25676, + "year": "2013" + }, + { + "id": 25679, + "model_id": 25676, + "year": "2014" + }, + { + "id": 25681, + "model_id": 25676, + "year": "2015" + }, + { + "id": 25683, + "model_id": 25683, + "year": "2013" + }, + { + "id": 25684, + "model_id": 25684, + "year": "2015" + }, + { + "id": 25686, + "model_id": 25684, + "year": "2016" + }, + { + "id": 25688, + "model_id": 25688, + "year": "2012" + }, + { + "id": 25689, + "model_id": 25688, + "year": "2013" + }, + { + "id": 25691, + "model_id": 25688, + "year": "2014" + }, + { + "id": 25693, + "model_id": 25688, + "year": "2015" + }, + { + "id": 25695, + "model_id": 25695, + "year": "2008" + }, + { + "id": 25696, + "model_id": 25696, + "year": "1991" + }, + { + "id": 25699, + "model_id": 25696, + "year": "1992" + }, + { + "id": 25702, + "model_id": 25696, + "year": "1993" + }, + { + "id": 25705, + "model_id": 25696, + "year": "1994" + }, + { + "id": 25708, + "model_id": 25696, + "year": "1995" + }, + { + "id": 25711, + "model_id": 25696, + "year": "1996" + }, + { + "id": 25714, + "model_id": 25696, + "year": "1997" + }, + { + "id": 25719, + "model_id": 25696, + "year": "1998" + }, + { + "id": 25724, + "model_id": 25724, + "year": "1995" + }, + { + "id": 25726, + "model_id": 25724, + "year": "1996" + }, + { + "id": 25728, + "model_id": 25724, + "year": "1997" + }, + { + "id": 25730, + "model_id": 25724, + "year": "1998" + }, + { + "id": 25732, + "model_id": 25732, + "year": "1999" + }, + { + "id": 25737, + "model_id": 25737, + "year": "1984" + }, + { + "id": 25743, + "model_id": 25737, + "year": "1985" + }, + { + "id": 25749, + "model_id": 25737, + "year": "1986" + }, + { + "id": 25752, + "model_id": 25737, + "year": "1987" + }, + { + "id": 25755, + "model_id": 25737, + "year": "1988" + }, + { + "id": 25758, + "model_id": 25758, + "year": "1992" + }, + { + "id": 25760, + "model_id": 25758, + "year": "1993" + }, + { + "id": 25762, + "model_id": 25758, + "year": "1994" + }, + { + "id": 25764, + "model_id": 25758, + "year": "1995" + }, + { + "id": 25766, + "model_id": 25758, + "year": "1996" + }, + { + "id": 25768, + "model_id": 25758, + "year": "1997" + }, + { + "id": 25769, + "model_id": 25758, + "year": "1998" + }, + { + "id": 25770, + "model_id": 25758, + "year": "1999" + }, + { + "id": 25771, + "model_id": 25758, + "year": "2000" + }, + { + "id": 25772, + "model_id": 25758, + "year": "2001" + }, + { + "id": 25773, + "model_id": 25758, + "year": "2002" + }, + { + "id": 25774, + "model_id": 25774, + "year": "2003" + }, + { + "id": 25775, + "model_id": 25774, + "year": "2004" + }, + { + "id": 25777, + "model_id": 25774, + "year": "2005" + }, + { + "id": 25778, + "model_id": 25778, + "year": "1993" + }, + { + "id": 25779, + "model_id": 25778, + "year": "1994" + }, + { + "id": 25780, + "model_id": 25780, + "year": "1990" + }, + { + "id": 25786, + "model_id": 25780, + "year": "1991" + }, + { + "id": 25794, + "model_id": 25780, + "year": "1992" + }, + { + "id": 25802, + "model_id": 25780, + "year": "1993" + }, + { + "id": 25810, + "model_id": 25780, + "year": "1994" + }, + { + "id": 25818, + "model_id": 25780, + "year": "1995" + }, + { + "id": 25826, + "model_id": 25780, + "year": "1996" + }, + { + "id": 25832, + "model_id": 25780, + "year": "1997" + }, + { + "id": 25838, + "model_id": 25780, + "year": "1998" + }, + { + "id": 25844, + "model_id": 25780, + "year": "1999" + }, + { + "id": 25850, + "model_id": 25780, + "year": "2000" + }, + { + "id": 25855, + "model_id": 25780, + "year": "2001" + }, + { + "id": 25860, + "model_id": 25780, + "year": "2002" + }, + { + "id": 25865, + "model_id": 25780, + "year": "2003" + }, + { + "id": 25873, + "model_id": 25780, + "year": "2004" + }, + { + "id": 25880, + "model_id": 25780, + "year": "2005" + }, + { + "id": 25887, + "model_id": 25780, + "year": "2006" + }, + { + "id": 25891, + "model_id": 25780, + "year": "2007" + }, + { + "id": 25895, + "model_id": 25780, + "year": "2008" + }, + { + "id": 25899, + "model_id": 25780, + "year": "2009" + }, + { + "id": 25903, + "model_id": 25780, + "year": "2010" + }, + { + "id": 25907, + "model_id": 25780, + "year": "2011" + }, + { + "id": 25910, + "model_id": 25780, + "year": "2012" + }, + { + "id": 25913, + "model_id": 25913, + "year": "1996" + }, + { + "id": 25917, + "model_id": 25913, + "year": "1997" + }, + { + "id": 25921, + "model_id": 25913, + "year": "1998" + }, + { + "id": 25925, + "model_id": 25913, + "year": "1999" + }, + { + "id": 25929, + "model_id": 25929, + "year": "2001" + }, + { + "id": 25933, + "model_id": 25929, + "year": "2002" + }, + { + "id": 25937, + "model_id": 25929, + "year": "2003" + }, + { + "id": 25943, + "model_id": 25929, + "year": "2004" + }, + { + "id": 25949, + "model_id": 25929, + "year": "2005" + }, + { + "id": 25955, + "model_id": 25929, + "year": "2007" + }, + { + "id": 25959, + "model_id": 25929, + "year": "2008" + }, + { + "id": 25963, + "model_id": 25929, + "year": "2009" + }, + { + "id": 25967, + "model_id": 25929, + "year": "2010" + }, + { + "id": 25969, + "model_id": 25929, + "year": "2011" + }, + { + "id": 25971, + "model_id": 25929, + "year": "2012" + }, + { + "id": 25973, + "model_id": 25973, + "year": "2004" + }, + { + "id": 25975, + "model_id": 25973, + "year": "2005" + }, + { + "id": 25977, + "model_id": 25973, + "year": "2006" + }, + { + "id": 25979, + "model_id": 25973, + "year": "2007" + }, + { + "id": 25981, + "model_id": 25973, + "year": "2008" + }, + { + "id": 25983, + "model_id": 25973, + "year": "2009" + }, + { + "id": 25985, + "model_id": 25973, + "year": "2010" + }, + { + "id": 25987, + "model_id": 25973, + "year": "2011" + }, + { + "id": 25989, + "model_id": 25989, + "year": "1992" + }, + { + "id": 25993, + "model_id": 25989, + "year": "1993" + }, + { + "id": 25997, + "model_id": 25989, + "year": "1994" + }, + { + "id": 26001, + "model_id": 25989, + "year": "1995" + }, + { + "id": 26005, + "model_id": 25989, + "year": "1996" + }, + { + "id": 26006, + "model_id": 26006, + "year": "1992" + }, + { + "id": 26010, + "model_id": 26006, + "year": "1993" + }, + { + "id": 26018, + "model_id": 26006, + "year": "1994" + }, + { + "id": 26022, + "model_id": 26006, + "year": "1995" + }, + { + "id": 26024, + "model_id": 26024, + "year": "1985" + }, + { + "id": 26026, + "model_id": 26024, + "year": "1986" + }, + { + "id": 26027, + "model_id": 26024, + "year": "1987" + }, + { + "id": 26029, + "model_id": 26024, + "year": "1989" + }, + { + "id": 26032, + "model_id": 26024, + "year": "1990" + }, + { + "id": 26037, + "model_id": 26024, + "year": "1991" + }, + { + "id": 26044, + "model_id": 26024, + "year": "1992" + }, + { + "id": 26051, + "model_id": 26024, + "year": "1993" + }, + { + "id": 26054, + "model_id": 26024, + "year": "1994" + }, + { + "id": 26058, + "model_id": 26024, + "year": "1995" + }, + { + "id": 26061, + "model_id": 26024, + "year": "1996" + }, + { + "id": 26063, + "model_id": 26024, + "year": "1997" + }, + { + "id": 26066, + "model_id": 26024, + "year": "1998" + }, + { + "id": 26068, + "model_id": 26024, + "year": "1999" + }, + { + "id": 26071, + "model_id": 26024, + "year": "2000" + }, + { + "id": 26073, + "model_id": 26024, + "year": "2001" + }, + { + "id": 26075, + "model_id": 26024, + "year": "2002" + }, + { + "id": 26078, + "model_id": 26024, + "year": "2003" + }, + { + "id": 26081, + "model_id": 26024, + "year": "2004" + }, + { + "id": 26083, + "model_id": 26024, + "year": "2005" + }, + { + "id": 26085, + "model_id": 26024, + "year": "2006" + }, + { + "id": 26087, + "model_id": 26024, + "year": "2007" + }, + { + "id": 26089, + "model_id": 26024, + "year": "2008" + }, + { + "id": 26091, + "model_id": 26024, + "year": "2009" + }, + { + "id": 26093, + "model_id": 26024, + "year": "2010" + }, + { + "id": 26094, + "model_id": 26024, + "year": "2011" + }, + { + "id": 26095, + "model_id": 26024, + "year": "2012" + }, + { + "id": 26096, + "model_id": 26096, + "year": "1988" + }, + { + "id": 26098, + "model_id": 26098, + "year": "2012" + }, + { + "id": 26099, + "model_id": 26098, + "year": "2013" + }, + { + "id": 26100, + "model_id": 26098, + "year": "2014" + }, + { + "id": 26101, + "model_id": 26098, + "year": "2016" + }, + { + "id": 26102, + "model_id": 26098, + "year": "2017" + }, + { + "id": 26103, + "model_id": 26103, + "year": "2002" + }, + { + "id": 26107, + "model_id": 26103, + "year": "2003" + }, + { + "id": 26111, + "model_id": 26103, + "year": "2004" + }, + { + "id": 26115, + "model_id": 26103, + "year": "2005" + }, + { + "id": 26119, + "model_id": 26103, + "year": "2006" + }, + { + "id": 26123, + "model_id": 26103, + "year": "2007" + }, + { + "id": 26125, + "model_id": 26103, + "year": "2008" + }, + { + "id": 26127, + "model_id": 26103, + "year": "2009" + }, + { + "id": 26132, + "model_id": 26103, + "year": "2010" + }, + { + "id": 26137, + "model_id": 26103, + "year": "2011" + }, + { + "id": 26142, + "model_id": 26103, + "year": "2012" + }, + { + "id": 26148, + "model_id": 26103, + "year": "2013" + }, + { + "id": 26154, + "model_id": 26103, + "year": "2014" + }, + { + "id": 26160, + "model_id": 26103, + "year": "2015" + }, + { + "id": 26166, + "model_id": 26103, + "year": "2016" + }, + { + "id": 26171, + "model_id": 26171, + "year": "2003" + }, + { + "id": 26172, + "model_id": 26171, + "year": "2004" + }, + { + "id": 26173, + "model_id": 26171, + "year": "2005" + }, + { + "id": 26175, + "model_id": 26171, + "year": "2006" + }, + { + "id": 26177, + "model_id": 26171, + "year": "2008" + }, + { + "id": 26179, + "model_id": 26171, + "year": "2009" + }, + { + "id": 26181, + "model_id": 26171, + "year": "2010" + }, + { + "id": 26183, + "model_id": 26171, + "year": "2011" + }, + { + "id": 26185, + "model_id": 26171, + "year": "2012" + }, + { + "id": 26187, + "model_id": 26171, + "year": "2013" + }, + { + "id": 26189, + "model_id": 26171, + "year": "2014" + }, + { + "id": 26191, + "model_id": 26171, + "year": "2015" + }, + { + "id": 26193, + "model_id": 26193, + "year": "2004" + }, + { + "id": 26194, + "model_id": 26193, + "year": "2005" + }, + { + "id": 26195, + "model_id": 26193, + "year": "2006" + }, + { + "id": 26196, + "model_id": 26193, + "year": "2009" + }, + { + "id": 26199, + "model_id": 26193, + "year": "2010" + }, + { + "id": 26202, + "model_id": 26193, + "year": "2011" + }, + { + "id": 26207, + "model_id": 26193, + "year": "2012" + }, + { + "id": 26209, + "model_id": 26193, + "year": "2013" + }, + { + "id": 26211, + "model_id": 26193, + "year": "2014" + }, + { + "id": 26213, + "model_id": 26213, + "year": "1985" + }, + { + "id": 26222, + "model_id": 26213, + "year": "1986" + }, + { + "id": 26227, + "model_id": 26213, + "year": "1987" + }, + { + "id": 26232, + "model_id": 26213, + "year": "1988" + }, + { + "id": 26237, + "model_id": 26213, + "year": "1989" + }, + { + "id": 26241, + "model_id": 26213, + "year": "1990" + }, + { + "id": 26246, + "model_id": 26213, + "year": "1991" + }, + { + "id": 26254, + "model_id": 26213, + "year": "1992" + }, + { + "id": 26260, + "model_id": 26213, + "year": "1993" + }, + { + "id": 26264, + "model_id": 26213, + "year": "1994" + }, + { + "id": 26268, + "model_id": 26213, + "year": "1995" + }, + { + "id": 26274, + "model_id": 26213, + "year": "1996" + }, + { + "id": 26278, + "model_id": 26213, + "year": "1997" + }, + { + "id": 26282, + "model_id": 26213, + "year": "1998" + }, + { + "id": 26286, + "model_id": 26213, + "year": "1999" + }, + { + "id": 26290, + "model_id": 26213, + "year": "2000" + }, + { + "id": 26294, + "model_id": 26213, + "year": "2001" + }, + { + "id": 26298, + "model_id": 26213, + "year": "2002" + }, + { + "id": 26302, + "model_id": 26213, + "year": "2014" + }, + { + "id": 26304, + "model_id": 26213, + "year": "2015" + }, + { + "id": 26306, + "model_id": 26213, + "year": "2017" + }, + { + "id": 26308, + "model_id": 26308, + "year": "2017" + }, + { + "id": 26310, + "model_id": 26310, + "year": "1988" + }, + { + "id": 26312, + "model_id": 26310, + "year": "1989" + }, + { + "id": 26314, + "model_id": 26310, + "year": "1990" + }, + { + "id": 26316, + "model_id": 26316, + "year": "1984" + }, + { + "id": 26322, + "model_id": 26316, + "year": "1985" + }, + { + "id": 26326, + "model_id": 26316, + "year": "1986" + }, + { + "id": 26328, + "model_id": 26316, + "year": "1987" + }, + { + "id": 26330, + "model_id": 26316, + "year": "1988" + }, + { + "id": 26332, + "model_id": 26316, + "year": "1989" + }, + { + "id": 26335, + "model_id": 26316, + "year": "1990" + }, + { + "id": 26338, + "model_id": 26316, + "year": "1991" + }, + { + "id": 26340, + "model_id": 26316, + "year": "1992" + }, + { + "id": 26342, + "model_id": 26316, + "year": "1993" + }, + { + "id": 26344, + "model_id": 26316, + "year": "1994" + }, + { + "id": 26347, + "model_id": 26316, + "year": "1995" + }, + { + "id": 26352, + "model_id": 26316, + "year": "1996" + }, + { + "id": 26357, + "model_id": 26316, + "year": "1997" + }, + { + "id": 26361, + "model_id": 26316, + "year": "1998" + }, + { + "id": 26364, + "model_id": 26316, + "year": "1999" + }, + { + "id": 26367, + "model_id": 26316, + "year": "2000" + }, + { + "id": 26370, + "model_id": 26316, + "year": "2001" + }, + { + "id": 26372, + "model_id": 26316, + "year": "2002" + }, + { + "id": 26374, + "model_id": 26316, + "year": "2003" + }, + { + "id": 26376, + "model_id": 26316, + "year": "2004" + }, + { + "id": 26377, + "model_id": 26316, + "year": "2005" + }, + { + "id": 26378, + "model_id": 26316, + "year": "2006" + }, + { + "id": 26379, + "model_id": 26379, + "year": "1997" + }, + { + "id": 26383, + "model_id": 26379, + "year": "1998" + }, + { + "id": 26387, + "model_id": 26379, + "year": "1999" + }, + { + "id": 26393, + "model_id": 26379, + "year": "2000" + }, + { + "id": 26397, + "model_id": 26379, + "year": "2001" + }, + { + "id": 26401, + "model_id": 26379, + "year": "2002" + }, + { + "id": 26405, + "model_id": 26379, + "year": "2003" + }, + { + "id": 26409, + "model_id": 26379, + "year": "2004" + }, + { + "id": 26411, + "model_id": 26411, + "year": "1998" + }, + { + "id": 26415, + "model_id": 26411, + "year": "1999" + }, + { + "id": 26420, + "model_id": 26411, + "year": "2000" + }, + { + "id": 26424, + "model_id": 26424, + "year": "2001" + }, + { + "id": 26428, + "model_id": 26424, + "year": "2002" + }, + { + "id": 26432, + "model_id": 26432, + "year": "2003" + }, + { + "id": 26433, + "model_id": 26432, + "year": "2004" + }, + { + "id": 26434, + "model_id": 26434, + "year": "2003" + }, + { + "id": 26436, + "model_id": 26434, + "year": "2004" + }, + { + "id": 26438, + "model_id": 26434, + "year": "2005" + }, + { + "id": 26442, + "model_id": 26434, + "year": "2006" + }, + { + "id": 26446, + "model_id": 26434, + "year": "2007" + }, + { + "id": 26448, + "model_id": 26434, + "year": "2008" + }, + { + "id": 26452, + "model_id": 26434, + "year": "2009" + }, + { + "id": 26456, + "model_id": 26434, + "year": "2010" + }, + { + "id": 26460, + "model_id": 26434, + "year": "2011" + }, + { + "id": 26464, + "model_id": 26434, + "year": "2012" + }, + { + "id": 26468, + "model_id": 26434, + "year": "2013" + }, + { + "id": 26472, + "model_id": 26434, + "year": "2014" + }, + { + "id": 26475, + "model_id": 26434, + "year": "2015" + }, + { + "id": 26478, + "model_id": 26434, + "year": "2016" + }, + { + "id": 26481, + "model_id": 26481, + "year": "2011" + }, + { + "id": 26484, + "model_id": 26481, + "year": "2012" + }, + { + "id": 26487, + "model_id": 26481, + "year": "2013" + }, + { + "id": 26490, + "model_id": 26481, + "year": "2014" + }, + { + "id": 26493, + "model_id": 26481, + "year": "2015" + }, + { + "id": 26498, + "model_id": 26481, + "year": "2016" + }, + { + "id": 26503, + "model_id": 26503, + "year": "1984" + }, + { + "id": 26507, + "model_id": 26503, + "year": "1987" + }, + { + "id": 26510, + "model_id": 26503, + "year": "1988" + }, + { + "id": 26513, + "model_id": 26503, + "year": "1989" + }, + { + "id": 26516, + "model_id": 26503, + "year": "1990" + }, + { + "id": 26519, + "model_id": 26503, + "year": "1991" + }, + { + "id": 26522, + "model_id": 26503, + "year": "1992" + }, + { + "id": 26525, + "model_id": 26503, + "year": "1993" + }, + { + "id": 26527, + "model_id": 26527, + "year": "2006" + }, + { + "id": 26535, + "model_id": 26527, + "year": "2007" + }, + { + "id": 26543, + "model_id": 26527, + "year": "2008" + }, + { + "id": 26550, + "model_id": 26527, + "year": "2009" + }, + { + "id": 26556, + "model_id": 26527, + "year": "2010" + }, + { + "id": 26557, + "model_id": 26557, + "year": "1989" + }, + { + "id": 26559, + "model_id": 26557, + "year": "1990" + }, + { + "id": 26560, + "model_id": 26560, + "year": "1984" + }, + { + "id": 26563, + "model_id": 26560, + "year": "1985" + }, + { + "id": 26564, + "model_id": 26560, + "year": "1986" + }, + { + "id": 26565, + "model_id": 26560, + "year": "1987" + }, + { + "id": 26567, + "model_id": 26560, + "year": "1988" + }, + { + "id": 26568, + "model_id": 26560, + "year": "1989" + }, + { + "id": 26570, + "model_id": 26560, + "year": "1990" + }, + { + "id": 26571, + "model_id": 26560, + "year": "1991" + }, + { + "id": 26572, + "model_id": 26572, + "year": "1984" + }, + { + "id": 26578, + "model_id": 26572, + "year": "1985" + }, + { + "id": 26584, + "model_id": 26572, + "year": "1986" + }, + { + "id": 26586, + "model_id": 26572, + "year": "1987" + }, + { + "id": 26588, + "model_id": 26572, + "year": "1988" + }, + { + "id": 26590, + "model_id": 26572, + "year": "1989" + }, + { + "id": 26592, + "model_id": 26592, + "year": "1984" + }, + { + "id": 26600, + "model_id": 26592, + "year": "1985" + }, + { + "id": 26606, + "model_id": 26592, + "year": "1986" + }, + { + "id": 26609, + "model_id": 26592, + "year": "1987" + }, + { + "id": 26612, + "model_id": 26592, + "year": "1988" + }, + { + "id": 26615, + "model_id": 26615, + "year": "1984" + }, + { + "id": 26643, + "model_id": 26615, + "year": "1985" + }, + { + "id": 26657, + "model_id": 26615, + "year": "1986" + }, + { + "id": 26662, + "model_id": 26615, + "year": "1987" + }, + { + "id": 26668, + "model_id": 26615, + "year": "1988" + }, + { + "id": 26674, + "model_id": 26615, + "year": "1989" + }, + { + "id": 26680, + "model_id": 26615, + "year": "1990" + }, + { + "id": 26685, + "model_id": 26615, + "year": "1991" + }, + { + "id": 26690, + "model_id": 26615, + "year": "1992" + }, + { + "id": 26695, + "model_id": 26615, + "year": "1993" + }, + { + "id": 26700, + "model_id": 26615, + "year": "1994" + }, + { + "id": 26703, + "model_id": 26615, + "year": "1995" + }, + { + "id": 26706, + "model_id": 26615, + "year": "1996" + }, + { + "id": 26708, + "model_id": 26708, + "year": "1987" + }, + { + "id": 26709, + "model_id": 26708, + "year": "1988" + }, + { + "id": 26710, + "model_id": 26708, + "year": "1989" + }, + { + "id": 26711, + "model_id": 26708, + "year": "1990" + }, + { + "id": 26712, + "model_id": 26712, + "year": "1987" + }, + { + "id": 26713, + "model_id": 26712, + "year": "1988" + }, + { + "id": 26714, + "model_id": 26712, + "year": "1989" + }, + { + "id": 26715, + "model_id": 26712, + "year": "1990" + }, + { + "id": 26716, + "model_id": 26716, + "year": "2014" + }, + { + "id": 26717, + "model_id": 26717, + "year": "2014" + }, + { + "id": 26718, + "model_id": 26718, + "year": "2002" + }, + { + "id": 26720, + "model_id": 26718, + "year": "2003" + }, + { + "id": 26721, + "model_id": 26721, + "year": "1984" + }, + { + "id": 26729, + "model_id": 26721, + "year": "1985" + }, + { + "id": 26735, + "model_id": 26721, + "year": "1986" + }, + { + "id": 26738, + "model_id": 26721, + "year": "1987" + }, + { + "id": 26742, + "model_id": 26721, + "year": "1988" + }, + { + "id": 26746, + "model_id": 26746, + "year": "1989" + }, + { + "id": 26748, + "model_id": 26746, + "year": "1990" + }, + { + "id": 26750, + "model_id": 26746, + "year": "1991" + }, + { + "id": 26752, + "model_id": 26746, + "year": "1992" + }, + { + "id": 26754, + "model_id": 26746, + "year": "1993" + }, + { + "id": 26756, + "model_id": 26746, + "year": "1994" + }, + { + "id": 26757, + "model_id": 26746, + "year": "1995" + }, + { + "id": 26759, + "model_id": 26746, + "year": "1996" + }, + { + "id": 26761, + "model_id": 26746, + "year": "1997" + }, + { + "id": 26763, + "model_id": 26746, + "year": "1998" + }, + { + "id": 26765, + "model_id": 26765, + "year": "1984" + }, + { + "id": 26773, + "model_id": 26765, + "year": "1985" + }, + { + "id": 26781, + "model_id": 26765, + "year": "1986" + }, + { + "id": 26785, + "model_id": 26765, + "year": "1987" + }, + { + "id": 26789, + "model_id": 26765, + "year": "1988" + }, + { + "id": 26793, + "model_id": 26765, + "year": "1989" + }, + { + "id": 26797, + "model_id": 26765, + "year": "1990" + }, + { + "id": 26801, + "model_id": 26765, + "year": "1991" + }, + { + "id": 26805, + "model_id": 26765, + "year": "1992" + }, + { + "id": 26809, + "model_id": 26765, + "year": "1993" + }, + { + "id": 26813, + "model_id": 26765, + "year": "1994" + }, + { + "id": 26817, + "model_id": 26765, + "year": "1995" + }, + { + "id": 26821, + "model_id": 26765, + "year": "1996" + }, + { + "id": 26825, + "model_id": 26825, + "year": "1984" + }, + { + "id": 26833, + "model_id": 26825, + "year": "1985" + }, + { + "id": 26836, + "model_id": 26825, + "year": "1986" + }, + { + "id": 26838, + "model_id": 26825, + "year": "1987" + }, + { + "id": 26840, + "model_id": 26825, + "year": "1988" + }, + { + "id": 26842, + "model_id": 26825, + "year": "1989" + }, + { + "id": 26844, + "model_id": 26825, + "year": "1990" + }, + { + "id": 26846, + "model_id": 26825, + "year": "1991" + }, + { + "id": 26848, + "model_id": 26825, + "year": "1992" + }, + { + "id": 26850, + "model_id": 26825, + "year": "1993" + }, + { + "id": 26852, + "model_id": 26825, + "year": "1994" + }, + { + "id": 26854, + "model_id": 26825, + "year": "1995" + }, + { + "id": 26856, + "model_id": 26825, + "year": "1996" + }, + { + "id": 26858, + "model_id": 26858, + "year": "2003" + }, + { + "id": 26860, + "model_id": 26858, + "year": "2004" + }, + { + "id": 26862, + "model_id": 26858, + "year": "2005" + }, + { + "id": 26865, + "model_id": 26858, + "year": "2006" + }, + { + "id": 26867, + "model_id": 26858, + "year": "2007" + }, + { + "id": 26869, + "model_id": 26858, + "year": "2008" + }, + { + "id": 26871, + "model_id": 26871, + "year": "2004" + }, + { + "id": 26873, + "model_id": 26871, + "year": "2005" + }, + { + "id": 26875, + "model_id": 26871, + "year": "2006" + }, + { + "id": 26877, + "model_id": 26871, + "year": "2007" + }, + { + "id": 26879, + "model_id": 26871, + "year": "2008" + }, + { + "id": 26881, + "model_id": 26871, + "year": "2009" + }, + { + "id": 26883, + "model_id": 26883, + "year": "2009" + }, + { + "id": 26885, + "model_id": 26885, + "year": "2010" + }, + { + "id": 26887, + "model_id": 26885, + "year": "2011" + }, + { + "id": 26889, + "model_id": 26885, + "year": "2012" + }, + { + "id": 26891, + "model_id": 26885, + "year": "2013" + }, + { + "id": 26893, + "model_id": 26885, + "year": "2014" + }, + { + "id": 26895, + "model_id": 26885, + "year": "2015" + }, + { + "id": 26897, + "model_id": 26885, + "year": "2016" + }, + { + "id": 26899, + "model_id": 26885, + "year": "2017" + }, + { + "id": 26901, + "model_id": 26901, + "year": "2010" + }, + { + "id": 26903, + "model_id": 26901, + "year": "2011" + }, + { + "id": 26905, + "model_id": 26901, + "year": "2012" + }, + { + "id": 26907, + "model_id": 26901, + "year": "2013" + }, + { + "id": 26909, + "model_id": 26901, + "year": "2014" + }, + { + "id": 26911, + "model_id": 26901, + "year": "2015" + }, + { + "id": 26913, + "model_id": 26901, + "year": "2016" + }, + { + "id": 26915, + "model_id": 26901, + "year": "2017" + }, + { + "id": 26917, + "model_id": 26917, + "year": "1998" + }, + { + "id": 26919, + "model_id": 26917, + "year": "1999" + }, + { + "id": 26921, + "model_id": 26917, + "year": "2000" + }, + { + "id": 26923, + "model_id": 26917, + "year": "2001" + }, + { + "id": 26925, + "model_id": 26917, + "year": "2002" + }, + { + "id": 26929, + "model_id": 26917, + "year": "2003" + }, + { + "id": 26933, + "model_id": 26917, + "year": "2004" + }, + { + "id": 26937, + "model_id": 26917, + "year": "2005" + }, + { + "id": 26942, + "model_id": 26917, + "year": "2006" + }, + { + "id": 26947, + "model_id": 26917, + "year": "2007" + }, + { + "id": 26951, + "model_id": 26917, + "year": "2008" + }, + { + "id": 26955, + "model_id": 26917, + "year": "2009" + }, + { + "id": 26959, + "model_id": 26917, + "year": "2010" + }, + { + "id": 26962, + "model_id": 26917, + "year": "2011" + }, + { + "id": 26964, + "model_id": 26917, + "year": "2012" + }, + { + "id": 26966, + "model_id": 26917, + "year": "2013" + }, + { + "id": 26968, + "model_id": 26917, + "year": "2014" + }, + { + "id": 26970, + "model_id": 26917, + "year": "2015" + }, + { + "id": 26972, + "model_id": 26917, + "year": "2016" + }, + { + "id": 26974, + "model_id": 26974, + "year": "1993" + }, + { + "id": 26976, + "model_id": 26974, + "year": "1994" + }, + { + "id": 26978, + "model_id": 26974, + "year": "1995" + }, + { + "id": 26980, + "model_id": 26974, + "year": "1996" + }, + { + "id": 26982, + "model_id": 26974, + "year": "1997" + }, + { + "id": 26984, + "model_id": 26984, + "year": "2008" + }, + { + "id": 26988, + "model_id": 26984, + "year": "2009" + }, + { + "id": 26992, + "model_id": 26984, + "year": "2010" + }, + { + "id": 26996, + "model_id": 26984, + "year": "2011" + }, + { + "id": 27000, + "model_id": 26984, + "year": "2012" + }, + { + "id": 27004, + "model_id": 26984, + "year": "2013" + }, + { + "id": 27005, + "model_id": 27005, + "year": "2007" + }, + { + "id": 27006, + "model_id": 27005, + "year": "2008" + }, + { + "id": 27007, + "model_id": 27005, + "year": "2009" + }, + { + "id": 27008, + "model_id": 27005, + "year": "2010" + }, + { + "id": 27009, + "model_id": 27005, + "year": "2011" + }, + { + "id": 27010, + "model_id": 27010, + "year": "2016" + }, + { + "id": 27011, + "model_id": 27011, + "year": "2000" + }, + { + "id": 27012, + "model_id": 27012, + "year": "2005" + }, + { + "id": 27014, + "model_id": 27012, + "year": "2006" + }, + { + "id": 27016, + "model_id": 27012, + "year": "2007" + }, + { + "id": 27020, + "model_id": 27012, + "year": "2008" + }, + { + "id": 27024, + "model_id": 27012, + "year": "2009" + }, + { + "id": 27028, + "model_id": 27012, + "year": "2010" + }, + { + "id": 27032, + "model_id": 27012, + "year": "2011" + }, + { + "id": 27036, + "model_id": 27012, + "year": "2012" + }, + { + "id": 27040, + "model_id": 27012, + "year": "2013" + }, + { + "id": 27044, + "model_id": 27012, + "year": "2014" + }, + { + "id": 27048, + "model_id": 27012, + "year": "2015" + }, + { + "id": 27052, + "model_id": 27052, + "year": "1990" + }, + { + "id": 27056, + "model_id": 27052, + "year": "1991" + }, + { + "id": 27060, + "model_id": 27052, + "year": "1992" + }, + { + "id": 27064, + "model_id": 27064, + "year": "2009" + }, + { + "id": 27066, + "model_id": 27064, + "year": "2010" + }, + { + "id": 27068, + "model_id": 27064, + "year": "2011" + }, + { + "id": 27070, + "model_id": 27064, + "year": "2012" + }, + { + "id": 27072, + "model_id": 27064, + "year": "2013" + }, + { + "id": 27074, + "model_id": 27064, + "year": "2014" + }, + { + "id": 27076, + "model_id": 27076, + "year": "1998" + }, + { + "id": 27079, + "model_id": 27076, + "year": "1999" + }, + { + "id": 27082, + "model_id": 27076, + "year": "2000" + }, + { + "id": 27085, + "model_id": 27076, + "year": "2001" + }, + { + "id": 27087, + "model_id": 27076, + "year": "2002" + }, + { + "id": 27089, + "model_id": 27076, + "year": "2003" + }, + { + "id": 27091, + "model_id": 27076, + "year": "2004" + }, + { + "id": 27093, + "model_id": 27076, + "year": "2005" + }, + { + "id": 27095, + "model_id": 27076, + "year": "2006" + }, + { + "id": 27097, + "model_id": 27076, + "year": "2007" + }, + { + "id": 27099, + "model_id": 27076, + "year": "2008" + }, + { + "id": 27105, + "model_id": 27076, + "year": "2009" + }, + { + "id": 27111, + "model_id": 27076, + "year": "2010" + }, + { + "id": 27117, + "model_id": 27076, + "year": "2011" + }, + { + "id": 27123, + "model_id": 27076, + "year": "2012" + }, + { + "id": 27129, + "model_id": 27076, + "year": "2013" + }, + { + "id": 27135, + "model_id": 27076, + "year": "2014" + }, + { + "id": 27141, + "model_id": 27076, + "year": "2015" + }, + { + "id": 27147, + "model_id": 27076, + "year": "2016" + }, + { + "id": 27153, + "model_id": 27153, + "year": "1999" + }, + { + "id": 27155, + "model_id": 27153, + "year": "2000" + }, + { + "id": 27159, + "model_id": 27153, + "year": "2001" + }, + { + "id": 27167, + "model_id": 27153, + "year": "2002" + }, + { + "id": 27175, + "model_id": 27153, + "year": "2003" + }, + { + "id": 27183, + "model_id": 27153, + "year": "2004" + }, + { + "id": 27191, + "model_id": 27153, + "year": "2005" + }, + { + "id": 27195, + "model_id": 27153, + "year": "2006" + }, + { + "id": 27199, + "model_id": 27153, + "year": "2007" + }, + { + "id": 27203, + "model_id": 27203, + "year": "2009" + }, + { + "id": 27204, + "model_id": 27203, + "year": "2010" + }, + { + "id": 27205, + "model_id": 27203, + "year": "2011" + }, + { + "id": 27206, + "model_id": 27203, + "year": "2012" + }, + { + "id": 27207, + "model_id": 27203, + "year": "2013" + }, + { + "id": 27208, + "model_id": 27203, + "year": "2014" + }, + { + "id": 27209, + "model_id": 27203, + "year": "2015" + }, + { + "id": 27210, + "model_id": 27203, + "year": "2016" + }, + { + "id": 27211, + "model_id": 27203, + "year": "2017" + }, + { + "id": 27212, + "model_id": 27212, + "year": "1990" + }, + { + "id": 27219, + "model_id": 27219, + "year": "2001" + }, + { + "id": 27220, + "model_id": 27220, + "year": "2011" + }, + { + "id": 27223, + "model_id": 27220, + "year": "2012" + }, + { + "id": 27226, + "model_id": 27220, + "year": "2013" + }, + { + "id": 27229, + "model_id": 27220, + "year": "2014" + }, + { + "id": 27232, + "model_id": 27220, + "year": "2015" + }, + { + "id": 27235, + "model_id": 27220, + "year": "2016" + }, + { + "id": 27238, + "model_id": 27238, + "year": "2015" + }, + { + "id": 27240, + "model_id": 27238, + "year": "2016" + }, + { + "id": 27242, + "model_id": 27242, + "year": "2011" + }, + { + "id": 27243, + "model_id": 27242, + "year": "2012" + }, + { + "id": 27244, + "model_id": 27242, + "year": "2013" + }, + { + "id": 27245, + "model_id": 27242, + "year": "2014" + }, + { + "id": 27246, + "model_id": 27242, + "year": "2015" + }, + { + "id": 27247, + "model_id": 27247, + "year": "2016" + }, + { + "id": 27248, + "model_id": 27248, + "year": "2016" + }, + { + "id": 27249, + "model_id": 27249, + "year": "1984" + }, + { + "id": 27253, + "model_id": 27249, + "year": "1985" + }, + { + "id": 27256, + "model_id": 27249, + "year": "1986" + }, + { + "id": 27258, + "model_id": 27249, + "year": "1987" + }, + { + "id": 27260, + "model_id": 27249, + "year": "1988" + }, + { + "id": 27262, + "model_id": 27249, + "year": "1989" + }, + { + "id": 27264, + "model_id": 27249, + "year": "1990" + }, + { + "id": 27266, + "model_id": 27249, + "year": "1991" + }, + { + "id": 27268, + "model_id": 27249, + "year": "1992" + }, + { + "id": 27271, + "model_id": 27249, + "year": "1993" + }, + { + "id": 27274, + "model_id": 27249, + "year": "1994" + }, + { + "id": 27277, + "model_id": 27249, + "year": "1995" + }, + { + "id": 27279, + "model_id": 27249, + "year": "1996" + }, + { + "id": 27281, + "model_id": 27249, + "year": "1997" + }, + { + "id": 27283, + "model_id": 27249, + "year": "1998" + }, + { + "id": 27285, + "model_id": 27249, + "year": "1999" + }, + { + "id": 27287, + "model_id": 27249, + "year": "2000" + }, + { + "id": 27289, + "model_id": 27249, + "year": "2001" + }, + { + "id": 27291, + "model_id": 27249, + "year": "2002" + }, + { + "id": 27293, + "model_id": 27249, + "year": "2003" + }, + { + "id": 27295, + "model_id": 27249, + "year": "2004" + }, + { + "id": 27298, + "model_id": 27249, + "year": "2005" + }, + { + "id": 27300, + "model_id": 27249, + "year": "2006" + }, + { + "id": 27302, + "model_id": 27249, + "year": "2007" + }, + { + "id": 27303, + "model_id": 27249, + "year": "2008" + }, + { + "id": 27304, + "model_id": 27249, + "year": "2009" + }, + { + "id": 27305, + "model_id": 27249, + "year": "2010" + }, + { + "id": 27306, + "model_id": 27249, + "year": "2011" + }, + { + "id": 27307, + "model_id": 27249, + "year": "2012" + }, + { + "id": 27308, + "model_id": 27249, + "year": "2013" + }, + { + "id": 27309, + "model_id": 27249, + "year": "2014" + }, + { + "id": 27310, + "model_id": 27249, + "year": "2016" + }, + { + "id": 27311, + "model_id": 27249, + "year": "2017" + }, + { + "id": 27312, + "model_id": 27312, + "year": "1984" + }, + { + "id": 27314, + "model_id": 27312, + "year": "1985" + }, + { + "id": 27315, + "model_id": 27312, + "year": "1986" + }, + { + "id": 27316, + "model_id": 27312, + "year": "1987" + }, + { + "id": 27317, + "model_id": 27312, + "year": "1988" + }, + { + "id": 27318, + "model_id": 27318, + "year": "2003" + }, + { + "id": 27320, + "model_id": 27318, + "year": "2004" + }, + { + "id": 27322, + "model_id": 27318, + "year": "2005" + }, + { + "id": 27324, + "model_id": 27318, + "year": "2006" + }, + { + "id": 27326, + "model_id": 27318, + "year": "2007" + }, + { + "id": 27328, + "model_id": 27318, + "year": "2009" + }, + { + "id": 27330, + "model_id": 27318, + "year": "2010" + }, + { + "id": 27332, + "model_id": 27318, + "year": "2011" + }, + { + "id": 27334, + "model_id": 27318, + "year": "2012" + }, + { + "id": 27336, + "model_id": 27318, + "year": "2013" + }, + { + "id": 27338, + "model_id": 27318, + "year": "2014" + }, + { + "id": 27340, + "model_id": 27318, + "year": "2015" + }, + { + "id": 27342, + "model_id": 27318, + "year": "2016" + }, + { + "id": 27344, + "model_id": 27344, + "year": "2011" + }, + { + "id": 27345, + "model_id": 27344, + "year": "2012" + }, + { + "id": 27346, + "model_id": 27344, + "year": "2013" + }, + { + "id": 27347, + "model_id": 27344, + "year": "2014" + }, + { + "id": 27348, + "model_id": 27348, + "year": "2016" + }, + { + "id": 27350, + "model_id": 27350, + "year": "2013" + }, + { + "id": 27351, + "model_id": 27350, + "year": "2014" + }, + { + "id": 27352, + "model_id": 27350, + "year": "2015" + }, + { + "id": 27353, + "model_id": 27350, + "year": "2016" + }, + { + "id": 27354, + "model_id": 27354, + "year": "2015" + }, + { + "id": 27355, + "model_id": 27354, + "year": "2016" + }, + { + "id": 27356, + "model_id": 27356, + "year": "1992" + }, + { + "id": 27360, + "model_id": 27356, + "year": "1993" + }, + { + "id": 27364, + "model_id": 27364, + "year": "1991" + }, + { + "id": 27368, + "model_id": 27368, + "year": "1986" + }, + { + "id": 27369, + "model_id": 27368, + "year": "1987" + }, + { + "id": 27372, + "model_id": 27368, + "year": "1988" + }, + { + "id": 27375, + "model_id": 27368, + "year": "1989" + }, + { + "id": 27380, + "model_id": 27368, + "year": "1990" + }, + { + "id": 27384, + "model_id": 27368, + "year": "1991" + }, + { + "id": 27388, + "model_id": 27368, + "year": "1992" + }, + { + "id": 27392, + "model_id": 27368, + "year": "1993" + }, + { + "id": 27396, + "model_id": 27368, + "year": "1994" + }, + { + "id": 27400, + "model_id": 27368, + "year": "1995" + }, + { + "id": 27404, + "model_id": 27368, + "year": "1996" + }, + { + "id": 27408, + "model_id": 27368, + "year": "1997" + }, + { + "id": 27412, + "model_id": 27368, + "year": "1998" + }, + { + "id": 27416, + "model_id": 27368, + "year": "1999" + }, + { + "id": 27424, + "model_id": 27368, + "year": "2000" + }, + { + "id": 27428, + "model_id": 27368, + "year": "2001" + }, + { + "id": 27433, + "model_id": 27368, + "year": "2002" + }, + { + "id": 27438, + "model_id": 27368, + "year": "2003" + }, + { + "id": 27442, + "model_id": 27368, + "year": "2004" + }, + { + "id": 27444, + "model_id": 27368, + "year": "2005" + }, + { + "id": 27446, + "model_id": 27368, + "year": "2006" + }, + { + "id": 27448, + "model_id": 27368, + "year": "2007" + }, + { + "id": 27450, + "model_id": 27368, + "year": "2008" + }, + { + "id": 27454, + "model_id": 27368, + "year": "2009" + }, + { + "id": 27458, + "model_id": 27368, + "year": "2010" + }, + { + "id": 27461, + "model_id": 27368, + "year": "2011" + }, + { + "id": 27464, + "model_id": 27368, + "year": "2012" + }, + { + "id": 27467, + "model_id": 27368, + "year": "2013" + }, + { + "id": 27469, + "model_id": 27368, + "year": "2014" + }, + { + "id": 27471, + "model_id": 27368, + "year": "2015" + }, + { + "id": 27473, + "model_id": 27368, + "year": "2016" + }, + { + "id": 27475, + "model_id": 27475, + "year": "2004" + }, + { + "id": 27477, + "model_id": 27477, + "year": "2009" + }, + { + "id": 27478, + "model_id": 27477, + "year": "2010" + }, + { + "id": 27479, + "model_id": 27479, + "year": "2014" + }, + { + "id": 27481, + "model_id": 27479, + "year": "2015" + }, + { + "id": 27483, + "model_id": 27483, + "year": "2015" + }, + { + "id": 27484, + "model_id": 27483, + "year": "2016" + }, + { + "id": 27485, + "model_id": 27485, + "year": "1984" + }, + { + "id": 27494, + "model_id": 27494, + "year": "1984" + }, + { + "id": 27496, + "model_id": 27496, + "year": "1986" + }, + { + "id": 27498, + "model_id": 27496, + "year": "1987" + }, + { + "id": 27501, + "model_id": 27496, + "year": "1988" + }, + { + "id": 27505, + "model_id": 27496, + "year": "1989" + }, + { + "id": 27509, + "model_id": 27496, + "year": "1990" + }, + { + "id": 27513, + "model_id": 27513, + "year": "1984" + }, + { + "id": 27517, + "model_id": 27513, + "year": "1985" + }, + { + "id": 27523, + "model_id": 27523, + "year": "1993" + }, + { + "id": 27524, + "model_id": 27523, + "year": "1994" + }, + { + "id": 27525, + "model_id": 27523, + "year": "1995" + }, + { + "id": 27526, + "model_id": 27523, + "year": "1996" + }, + { + "id": 27527, + "model_id": 27523, + "year": "1997" + }, + { + "id": 27528, + "model_id": 27523, + "year": "1998" + }, + { + "id": 27529, + "model_id": 27523, + "year": "1999" + }, + { + "id": 27530, + "model_id": 27523, + "year": "2000" + }, + { + "id": 27531, + "model_id": 27523, + "year": "2001" + }, + { + "id": 27532, + "model_id": 27523, + "year": "2002" + }, + { + "id": 27533, + "model_id": 27523, + "year": "2004" + }, + { + "id": 27535, + "model_id": 27523, + "year": "2005" + }, + { + "id": 27537, + "model_id": 27523, + "year": "2006" + }, + { + "id": 27539, + "model_id": 27523, + "year": "2007" + }, + { + "id": 27540, + "model_id": 27523, + "year": "2008" + }, + { + "id": 27541, + "model_id": 27523, + "year": "2009" + }, + { + "id": 27542, + "model_id": 27523, + "year": "2011" + }, + { + "id": 27543, + "model_id": 27523, + "year": "2012" + }, + { + "id": 27544, + "model_id": 27523, + "year": "2013" + }, + { + "id": 27545, + "model_id": 27523, + "year": "2014" + }, + { + "id": 27546, + "model_id": 27523, + "year": "2015" + }, + { + "id": 27547, + "model_id": 27523, + "year": "2016" + }, + { + "id": 27548, + "model_id": 27548, + "year": "2008" + }, + { + "id": 27550, + "model_id": 27548, + "year": "2009" + }, + { + "id": 27552, + "model_id": 27548, + "year": "2010" + }, + { + "id": 27554, + "model_id": 27548, + "year": "2011" + }, + { + "id": 27556, + "model_id": 27548, + "year": "2012" + }, + { + "id": 27558, + "model_id": 27548, + "year": "2013" + }, + { + "id": 27560, + "model_id": 27548, + "year": "2014" + }, + { + "id": 27562, + "model_id": 27548, + "year": "2015" + }, + { + "id": 27564, + "model_id": 27548, + "year": "2016" + }, + { + "id": 27566, + "model_id": 27566, + "year": "2014" + }, + { + "id": 27568, + "model_id": 27566, + "year": "2015" + }, + { + "id": 27570, + "model_id": 27570, + "year": "1984" + }, + { + "id": 27579, + "model_id": 27570, + "year": "1985" + }, + { + "id": 27587, + "model_id": 27570, + "year": "1986" + }, + { + "id": 27590, + "model_id": 27570, + "year": "1987" + }, + { + "id": 27592, + "model_id": 27570, + "year": "1988" + }, + { + "id": 27595, + "model_id": 27570, + "year": "1989" + }, + { + "id": 27598, + "model_id": 27570, + "year": "1990" + }, + { + "id": 27601, + "model_id": 27570, + "year": "1991" + }, + { + "id": 27608, + "model_id": 27570, + "year": "1992" + }, + { + "id": 27614, + "model_id": 27570, + "year": "1993" + }, + { + "id": 27618, + "model_id": 27570, + "year": "1994" + }, + { + "id": 27622, + "model_id": 27570, + "year": "2000" + }, + { + "id": 27626, + "model_id": 27570, + "year": "2001" + }, + { + "id": 27630, + "model_id": 27570, + "year": "2002" + }, + { + "id": 27635, + "model_id": 27570, + "year": "2003" + }, + { + "id": 27640, + "model_id": 27570, + "year": "2004" + }, + { + "id": 27644, + "model_id": 27570, + "year": "2005" + }, + { + "id": 27648, + "model_id": 27570, + "year": "2006" + }, + { + "id": 27652, + "model_id": 27570, + "year": "2007" + }, + { + "id": 27656, + "model_id": 27570, + "year": "2008" + }, + { + "id": 27660, + "model_id": 27570, + "year": "2009" + }, + { + "id": 27664, + "model_id": 27570, + "year": "2010" + }, + { + "id": 27668, + "model_id": 27570, + "year": "2011" + }, + { + "id": 27672, + "model_id": 27570, + "year": "2012" + }, + { + "id": 27676, + "model_id": 27570, + "year": "2013" + }, + { + "id": 27679, + "model_id": 27570, + "year": "2014" + }, + { + "id": 27682, + "model_id": 27570, + "year": "2015" + }, + { + "id": 27684, + "model_id": 27570, + "year": "2016" + }, + { + "id": 27686, + "model_id": 27686, + "year": "1995" + }, + { + "id": 27688, + "model_id": 27688, + "year": "1987" + }, + { + "id": 27690, + "model_id": 27688, + "year": "1988" + }, + { + "id": 27692, + "model_id": 27688, + "year": "1989" + }, + { + "id": 27694, + "model_id": 27688, + "year": "1990" + }, + { + "id": 27696, + "model_id": 27696, + "year": "2009" + }, + { + "id": 27697, + "model_id": 27696, + "year": "2013" + }, + { + "id": 27698, + "model_id": 27696, + "year": "2014" + }, + { + "id": 27699, + "model_id": 27696, + "year": "2015" + }, + { + "id": 27700, + "model_id": 27696, + "year": "2016" + }, + { + "id": 27701, + "model_id": 27701, + "year": "1987" + }, + { + "id": 27703, + "model_id": 27703, + "year": "1984" + }, + { + "id": 27710, + "model_id": 27703, + "year": "1985" + }, + { + "id": 27716, + "model_id": 27703, + "year": "1986" + }, + { + "id": 27718, + "model_id": 27703, + "year": "1987" + }, + { + "id": 27721, + "model_id": 27703, + "year": "1988" + }, + { + "id": 27724, + "model_id": 27703, + "year": "1989" + }, + { + "id": 27728, + "model_id": 27703, + "year": "1990" + }, + { + "id": 27730, + "model_id": 27730, + "year": "1995" + }, + { + "id": 27734, + "model_id": 27730, + "year": "1996" + }, + { + "id": 27738, + "model_id": 27730, + "year": "1997" + }, + { + "id": 27742, + "model_id": 27730, + "year": "1998" + }, + { + "id": 27746, + "model_id": 27730, + "year": "1999" + }, + { + "id": 27750, + "model_id": 27750, + "year": "1984" + }, + { + "id": 27754, + "model_id": 27750, + "year": "1985" + }, + { + "id": 27758, + "model_id": 27750, + "year": "1986" + }, + { + "id": 27760, + "model_id": 27750, + "year": "1987" + }, + { + "id": 27762, + "model_id": 27750, + "year": "1988" + }, + { + "id": 27764, + "model_id": 27750, + "year": "1989" + }, + { + "id": 27766, + "model_id": 27750, + "year": "1990" + }, + { + "id": 27768, + "model_id": 27750, + "year": "1991" + }, + { + "id": 27770, + "model_id": 27750, + "year": "1992" + }, + { + "id": 27772, + "model_id": 27772, + "year": "1986" + }, + { + "id": 27776, + "model_id": 27772, + "year": "1987" + }, + { + "id": 27779, + "model_id": 27772, + "year": "1988" + }, + { + "id": 27783, + "model_id": 27783, + "year": "2004" + }, + { + "id": 27785, + "model_id": 27783, + "year": "2005" + }, + { + "id": 27789, + "model_id": 27783, + "year": "2006" + }, + { + "id": 27793, + "model_id": 27783, + "year": "2007" + }, + { + "id": 27797, + "model_id": 27783, + "year": "2008" + }, + { + "id": 27801, + "model_id": 27783, + "year": "2009" + }, + { + "id": 27805, + "model_id": 27783, + "year": "2010" + }, + { + "id": 27809, + "model_id": 27783, + "year": "2011" + }, + { + "id": 27813, + "model_id": 27783, + "year": "2012" + }, + { + "id": 27817, + "model_id": 27783, + "year": "2013" + }, + { + "id": 27821, + "model_id": 27783, + "year": "2014" + }, + { + "id": 27825, + "model_id": 27783, + "year": "2015" + }, + { + "id": 27829, + "model_id": 27829, + "year": "2009" + }, + { + "id": 27830, + "model_id": 27830, + "year": "1985" + }, + { + "id": 27839, + "model_id": 27830, + "year": "1986" + }, + { + "id": 27851, + "model_id": 27830, + "year": "1987" + }, + { + "id": 27858, + "model_id": 27830, + "year": "1988" + }, + { + "id": 27866, + "model_id": 27830, + "year": "1989" + }, + { + "id": 27874, + "model_id": 27830, + "year": "1991" + }, + { + "id": 27881, + "model_id": 27830, + "year": "1992" + }, + { + "id": 27888, + "model_id": 27830, + "year": "1993" + }, + { + "id": 27895, + "model_id": 27830, + "year": "1994" + }, + { + "id": 27902, + "model_id": 27830, + "year": "1995" + }, + { + "id": 27909, + "model_id": 27830, + "year": "1996" + }, + { + "id": 27912, + "model_id": 27830, + "year": "1997" + }, + { + "id": 27915, + "model_id": 27915, + "year": "1985" + }, + { + "id": 27917, + "model_id": 27915, + "year": "1986" + }, + { + "id": 27920, + "model_id": 27915, + "year": "1987" + }, + { + "id": 27922, + "model_id": 27915, + "year": "1988" + }, + { + "id": 27924, + "model_id": 27915, + "year": "1989" + }, + { + "id": 27926, + "model_id": 27926, + "year": "1988" + }, + { + "id": 27928, + "model_id": 27928, + "year": "1987" + }, + { + "id": 27930, + "model_id": 27928, + "year": "1988" + }, + { + "id": 27932, + "model_id": 27928, + "year": "1990" + }, + { + "id": 27934, + "model_id": 27934, + "year": "1987" + }, + { + "id": 27936, + "model_id": 27936, + "year": "2007" + }, + { + "id": 27939, + "model_id": 27936, + "year": "2008" + }, + { + "id": 27942, + "model_id": 27936, + "year": "2009" + }, + { + "id": 27947, + "model_id": 27936, + "year": "2010" + }, + { + "id": 27952, + "model_id": 27936, + "year": "2011" + }, + { + "id": 27957, + "model_id": 27936, + "year": "2012" + }, + { + "id": 27962, + "model_id": 27936, + "year": "2013" + }, + { + "id": 27965, + "model_id": 27936, + "year": "2014" + }, + { + "id": 27968, + "model_id": 27936, + "year": "2015" + }, + { + "id": 27971, + "model_id": 27936, + "year": "2016" + }, + { + "id": 27974, + "model_id": 27974, + "year": "2009" + }, + { + "id": 27975, + "model_id": 27975, + "year": "2000" + }, + { + "id": 27976, + "model_id": 27975, + "year": "2001" + }, + { + "id": 27977, + "model_id": 27975, + "year": "2002" + }, + { + "id": 27978, + "model_id": 27975, + "year": "2003" + }, + { + "id": 27979, + "model_id": 27975, + "year": "2004" + }, + { + "id": 27980, + "model_id": 27975, + "year": "2005" + }, + { + "id": 27984, + "model_id": 27975, + "year": "2006" + }, + { + "id": 27988, + "model_id": 27975, + "year": "2007" + }, + { + "id": 27992, + "model_id": 27975, + "year": "2008" + }, + { + "id": 27996, + "model_id": 27975, + "year": "2009" + }, + { + "id": 28000, + "model_id": 27975, + "year": "2010" + }, + { + "id": 28004, + "model_id": 27975, + "year": "2011" + }, + { + "id": 28007, + "model_id": 27975, + "year": "2012" + }, + { + "id": 28010, + "model_id": 27975, + "year": "2013" + }, + { + "id": 28013, + "model_id": 27975, + "year": "2014" + }, + { + "id": 28016, + "model_id": 27975, + "year": "2015" + }, + { + "id": 28019, + "model_id": 28019, + "year": "2000" + }, + { + "id": 28023, + "model_id": 28019, + "year": "2001" + }, + { + "id": 28027, + "model_id": 28019, + "year": "2002" + }, + { + "id": 28035, + "model_id": 28019, + "year": "2003" + }, + { + "id": 28043, + "model_id": 28019, + "year": "2004" + }, + { + "id": 28049, + "model_id": 28049, + "year": "1992" + }, + { + "id": 28055, + "model_id": 28049, + "year": "1993" + }, + { + "id": 28061, + "model_id": 28049, + "year": "1994" + }, + { + "id": 28067, + "model_id": 28049, + "year": "1995" + }, + { + "id": 28072, + "model_id": 28049, + "year": "1996" + }, + { + "id": 28075, + "model_id": 28049, + "year": "1997" + }, + { + "id": 28078, + "model_id": 28049, + "year": "1998" + }, + { + "id": 28081, + "model_id": 28081, + "year": "1999" + }, + { + "id": 28083, + "model_id": 28081, + "year": "2000" + }, + { + "id": 28086, + "model_id": 28081, + "year": "2001" + }, + { + "id": 28089, + "model_id": 28081, + "year": "2002" + }, + { + "id": 28092, + "model_id": 28081, + "year": "2003" + }, + { + "id": 28095, + "model_id": 28081, + "year": "2004" + }, + { + "id": 28098, + "model_id": 28098, + "year": "1995" + }, + { + "id": 28099, + "model_id": 28098, + "year": "1996" + }, + { + "id": 28100, + "model_id": 28098, + "year": "1997" + }, + { + "id": 28101, + "model_id": 28098, + "year": "1998" + }, + { + "id": 28102, + "model_id": 28098, + "year": "1999" + }, + { + "id": 28103, + "model_id": 28098, + "year": "2001" + }, + { + "id": 28105, + "model_id": 28098, + "year": "2002" + }, + { + "id": 28107, + "model_id": 28098, + "year": "2003" + }, + { + "id": 28108, + "model_id": 28108, + "year": "1991" + }, + { + "id": 28109, + "model_id": 28108, + "year": "1992" + }, + { + "id": 28111, + "model_id": 28108, + "year": "1993" + }, + { + "id": 28112, + "model_id": 28108, + "year": "1994" + }, + { + "id": 28113, + "model_id": 28108, + "year": "1996" + }, + { + "id": 28114, + "model_id": 28108, + "year": "1997" + }, + { + "id": 28115, + "model_id": 28108, + "year": "1998" + }, + { + "id": 28116, + "model_id": 28108, + "year": "1999" + }, + { + "id": 28117, + "model_id": 28108, + "year": "2000" + }, + { + "id": 28118, + "model_id": 28108, + "year": "2001" + }, + { + "id": 28120, + "model_id": 28108, + "year": "2002" + }, + { + "id": 28122, + "model_id": 28108, + "year": "2003" + }, + { + "id": 28124, + "model_id": 28108, + "year": "2004" + }, + { + "id": 28126, + "model_id": 28126, + "year": "1985" + }, + { + "id": 28130, + "model_id": 28126, + "year": "1986" + }, + { + "id": 28133, + "model_id": 28126, + "year": "1987" + }, + { + "id": 28136, + "model_id": 28136, + "year": "1996" + }, + { + "id": 28138, + "model_id": 28138, + "year": "1996" + }, + { + "id": 28139, + "model_id": 28139, + "year": "1986" + }, + { + "id": 28140, + "model_id": 28139, + "year": "1987" + }, + { + "id": 28141, + "model_id": 28139, + "year": "1988" + }, + { + "id": 28142, + "model_id": 28139, + "year": "1989" + }, + { + "id": 28143, + "model_id": 28139, + "year": "1990" + }, + { + "id": 28144, + "model_id": 28139, + "year": "1991" + }, + { + "id": 28145, + "model_id": 28139, + "year": "1992" + }, + { + "id": 28147, + "model_id": 28147, + "year": "1984" + }, + { + "id": 28150, + "model_id": 28147, + "year": "1985" + }, + { + "id": 28153, + "model_id": 28153, + "year": "1997" + }, + { + "id": 28154, + "model_id": 28153, + "year": "1998" + }, + { + "id": 28156, + "model_id": 28153, + "year": "1999" + }, + { + "id": 28158, + "model_id": 28158, + "year": "1988" + }, + { + "id": 28163, + "model_id": 28158, + "year": "1989" + }, + { + "id": 28168, + "model_id": 28158, + "year": "1990" + }, + { + "id": 28173, + "model_id": 28158, + "year": "1991" + }, + { + "id": 28179, + "model_id": 28179, + "year": "1984" + }, + { + "id": 28188, + "model_id": 28179, + "year": "1985" + }, + { + "id": 28195, + "model_id": 28179, + "year": "1986" + }, + { + "id": 28201, + "model_id": 28179, + "year": "1987" + }, + { + "id": 28205, + "model_id": 28179, + "year": "1988" + }, + { + "id": 28209, + "model_id": 28179, + "year": "1989" + }, + { + "id": 28213, + "model_id": 28179, + "year": "1990" + }, + { + "id": 28216, + "model_id": 28179, + "year": "1991" + }, + { + "id": 28219, + "model_id": 28179, + "year": "1992" + }, + { + "id": 28222, + "model_id": 28179, + "year": "1993" + }, + { + "id": 28225, + "model_id": 28179, + "year": "1994" + }, + { + "id": 28227, + "model_id": 28179, + "year": "1995" + }, + { + "id": 28229, + "model_id": 28229, + "year": "1986" + }, + { + "id": 28234, + "model_id": 28229, + "year": "1987" + }, + { + "id": 28238, + "model_id": 28229, + "year": "1988" + }, + { + "id": 28241, + "model_id": 28229, + "year": "1989" + }, + { + "id": 28244, + "model_id": 28229, + "year": "1990" + }, + { + "id": 28246, + "model_id": 28229, + "year": "1991" + }, + { + "id": 28249, + "model_id": 28229, + "year": "1992" + }, + { + "id": 28252, + "model_id": 28229, + "year": "1993" + }, + { + "id": 28255, + "model_id": 28229, + "year": "1994" + }, + { + "id": 28256, + "model_id": 28229, + "year": "1995" + }, + { + "id": 28258, + "model_id": 28258, + "year": "1984" + }, + { + "id": 28267, + "model_id": 28258, + "year": "1985" + }, + { + "id": 28276, + "model_id": 28276, + "year": "1984" + }, + { + "id": 28287, + "model_id": 28276, + "year": "1985" + }, + { + "id": 28294, + "model_id": 28276, + "year": "1986" + }, + { + "id": 28297, + "model_id": 28276, + "year": "1987" + }, + { + "id": 28300, + "model_id": 28276, + "year": "1988" + }, + { + "id": 28302, + "model_id": 28276, + "year": "1989" + }, + { + "id": 28305, + "model_id": 28276, + "year": "1990" + }, + { + "id": 28308, + "model_id": 28276, + "year": "1991" + }, + { + "id": 28312, + "model_id": 28276, + "year": "1992" + }, + { + "id": 28316, + "model_id": 28276, + "year": "1993" + }, + { + "id": 28320, + "model_id": 28276, + "year": "1994" + }, + { + "id": 28322, + "model_id": 28276, + "year": "1995" + }, + { + "id": 28325, + "model_id": 28276, + "year": "1996" + }, + { + "id": 28327, + "model_id": 28276, + "year": "1997" + }, + { + "id": 28329, + "model_id": 28329, + "year": "1988" + }, + { + "id": 28330, + "model_id": 28330, + "year": "1984" + }, + { + "id": 28338, + "model_id": 28330, + "year": "1988" + }, + { + "id": 28339, + "model_id": 28339, + "year": "1985" + }, + { + "id": 28346, + "model_id": 28339, + "year": "1986" + }, + { + "id": 28348, + "model_id": 28339, + "year": "1987" + }, + { + "id": 28349, + "model_id": 28349, + "year": "1989" + }, + { + "id": 28350, + "model_id": 28349, + "year": "1990" + }, + { + "id": 28351, + "model_id": 28349, + "year": "1991" + }, + { + "id": 28352, + "model_id": 28349, + "year": "1992" + }, + { + "id": 28353, + "model_id": 28349, + "year": "1993" + }, + { + "id": 28354, + "model_id": 28349, + "year": "1994" + }, + { + "id": 28355, + "model_id": 28349, + "year": "1995" + }, + { + "id": 28356, + "model_id": 28349, + "year": "1996" + }, + { + "id": 28358, + "model_id": 28358, + "year": "1997" + }, + { + "id": 28360, + "model_id": 28358, + "year": "1999" + }, + { + "id": 28362, + "model_id": 28362, + "year": "1998" + }, + { + "id": 28364, + "model_id": 28364, + "year": "1984" + }, + { + "id": 28374, + "model_id": 28364, + "year": "1985" + }, + { + "id": 28384, + "model_id": 28364, + "year": "1986" + }, + { + "id": 28392, + "model_id": 28364, + "year": "1987" + }, + { + "id": 28398, + "model_id": 28364, + "year": "1988" + }, + { + "id": 28402, + "model_id": 28402, + "year": "1986" + }, + { + "id": 28408, + "model_id": 28402, + "year": "1987" + }, + { + "id": 28412, + "model_id": 28402, + "year": "1988" + }, + { + "id": 28416, + "model_id": 28416, + "year": "1984" + }, + { + "id": 28426, + "model_id": 28416, + "year": "1985" + }, + { + "id": 28436, + "model_id": 28436, + "year": "1998" + }, + { + "id": 28437, + "model_id": 28436, + "year": "1999" + }, + { + "id": 28439, + "model_id": 28436, + "year": "2000" + }, + { + "id": 28440, + "model_id": 28436, + "year": "2001" + }, + { + "id": 28441, + "model_id": 28436, + "year": "2002" + }, + { + "id": 28442, + "model_id": 28442, + "year": "1984" + }, + { + "id": 28445, + "model_id": 28442, + "year": "1992" + }, + { + "id": 28447, + "model_id": 28442, + "year": "1993" + }, + { + "id": 28449, + "model_id": 28442, + "year": "1994" + }, + { + "id": 28451, + "model_id": 28442, + "year": "1995" + }, + { + "id": 28452, + "model_id": 28442, + "year": "1996" + }, + { + "id": 28453, + "model_id": 28453, + "year": "1984" + }, + { + "id": 28454, + "model_id": 28454, + "year": "1985" + }, + { + "id": 28459, + "model_id": 28454, + "year": "1986" + }, + { + "id": 28460, + "model_id": 28454, + "year": "1987" + }, + { + "id": 28461, + "model_id": 28461, + "year": "1988" + }, + { + "id": 28462, + "model_id": 28461, + "year": "1989" + }, + { + "id": 28463, + "model_id": 28461, + "year": "1990" + }, + { + "id": 28464, + "model_id": 28461, + "year": "1991" + }, + { + "id": 28465, + "model_id": 28465, + "year": "1984" + }, + { + "id": 28473, + "model_id": 28473, + "year": "1990" + }, + { + "id": 28474, + "model_id": 28473, + "year": "1991" + }, + { + "id": 28475, + "model_id": 28473, + "year": "1992" + }, + { + "id": 28477, + "model_id": 28473, + "year": "1993" + }, + { + "id": 28479, + "model_id": 28473, + "year": "1994" + }, + { + "id": 28481, + "model_id": 28473, + "year": "1995" + }, + { + "id": 28483, + "model_id": 28473, + "year": "1996" + }, + { + "id": 28484, + "model_id": 28473, + "year": "1997" + }, + { + "id": 28485, + "model_id": 28473, + "year": "1998" + }, + { + "id": 28486, + "model_id": 28473, + "year": "1999" + }, + { + "id": 28487, + "model_id": 28473, + "year": "2000" + }, + { + "id": 28488, + "model_id": 28473, + "year": "2001" + }, + { + "id": 28489, + "model_id": 28473, + "year": "2002" + }, + { + "id": 28491, + "model_id": 28473, + "year": "2003" + }, + { + "id": 28493, + "model_id": 28473, + "year": "2004" + }, + { + "id": 28495, + "model_id": 28495, + "year": "1984" + }, + { + "id": 28500, + "model_id": 28495, + "year": "1985" + }, + { + "id": 28503, + "model_id": 28495, + "year": "1986" + }, + { + "id": 28504, + "model_id": 28495, + "year": "1987" + }, + { + "id": 28505, + "model_id": 28495, + "year": "1988" + }, + { + "id": 28506, + "model_id": 28495, + "year": "1989" + }, + { + "id": 28507, + "model_id": 28495, + "year": "1992" + }, + { + "id": 28508, + "model_id": 28495, + "year": "1993" + }, + { + "id": 28509, + "model_id": 28509, + "year": "1990" + }, + { + "id": 28510, + "model_id": 28509, + "year": "1991" + }, + { + "id": 28511, + "model_id": 28511, + "year": "2014" + }, + { + "id": 28512, + "model_id": 28511, + "year": "2016" + }, + { + "id": 28513, + "model_id": 28513, + "year": "1993" + }, + { + "id": 28514, + "model_id": 28514, + "year": "1995" + }, + { + "id": 28515, + "model_id": 28515, + "year": "1986" + }, + { + "id": 28517, + "model_id": 28515, + "year": "1988" + }, + { + "id": 28519, + "model_id": 28519, + "year": "1992" + }, + { + "id": 28520, + "model_id": 28520, + "year": "1992" + }, + { + "id": 28521, + "model_id": 28521, + "year": "1991" + }, + { + "id": 28522, + "model_id": 28522, + "year": "1993" + }, + { + "id": 28523, + "model_id": 28523, + "year": "1985" + }, + { + "id": 28528, + "model_id": 28528, + "year": "1989" + }, + { + "id": 28534, + "model_id": 28528, + "year": "1990" + }, + { + "id": 28537, + "model_id": 28528, + "year": "1991" + }, + { + "id": 28540, + "model_id": 28528, + "year": "1992" + }, + { + "id": 28543, + "model_id": 28543, + "year": "1991" + }, + { + "id": 28545, + "model_id": 28543, + "year": "1992" + }, + { + "id": 28547, + "model_id": 28547, + "year": "1990" + }, + { + "id": 28549, + "model_id": 28549, + "year": "1984" + }, + { + "id": 28561, + "model_id": 28549, + "year": "1986" + }, + { + "id": 28567, + "model_id": 28549, + "year": "1987" + }, + { + "id": 28575, + "model_id": 28549, + "year": "1988" + }, + { + "id": 28581, + "model_id": 28549, + "year": "1989" + }, + { + "id": 28587, + "model_id": 28587, + "year": "1984" + }, + { + "id": 28595, + "model_id": 28587, + "year": "1986" + }, + { + "id": 28599, + "model_id": 28587, + "year": "1987" + }, + { + "id": 28602, + "model_id": 28587, + "year": "1988" + }, + { + "id": 28605, + "model_id": 28587, + "year": "1989" + }, + { + "id": 28608, + "model_id": 28587, + "year": "1990" + }, + { + "id": 28611, + "model_id": 28587, + "year": "1991" + }, + { + "id": 28614, + "model_id": 28587, + "year": "1992" + }, + { + "id": 28616, + "model_id": 28616, + "year": "1985" + }, + { + "id": 28619, + "model_id": 28619, + "year": "1984" + }, + { + "id": 28621, + "model_id": 28621, + "year": "1984" + }, + { + "id": 28625, + "model_id": 28621, + "year": "1985" + }, + { + "id": 28627, + "model_id": 28627, + "year": "1989" + }, + { + "id": 28633, + "model_id": 28627, + "year": "1990" + }, + { + "id": 28637, + "model_id": 28627, + "year": "1991" + }, + { + "id": 28640, + "model_id": 28627, + "year": "1992" + }, + { + "id": 28644, + "model_id": 28627, + "year": "1993" + }, + { + "id": 28649, + "model_id": 28627, + "year": "1994" + }, + { + "id": 28654, + "model_id": 28627, + "year": "1995" + }, + { + "id": 28656, + "model_id": 28656, + "year": "1996" + }, + { + "id": 28659, + "model_id": 28656, + "year": "1997" + }, + { + "id": 28661, + "model_id": 28656, + "year": "1998" + }, + { + "id": 28664, + "model_id": 28656, + "year": "1999" + }, + { + "id": 28667, + "model_id": 28656, + "year": "2000" + }, + { + "id": 28670, + "model_id": 28670, + "year": "1985" + }, + { + "id": 28676, + "model_id": 28670, + "year": "1986" + }, + { + "id": 28679, + "model_id": 28670, + "year": "1987" + }, + { + "id": 28682, + "model_id": 28670, + "year": "1988" + }, + { + "id": 28685, + "model_id": 28670, + "year": "1989" + }, + { + "id": 28688, + "model_id": 28688, + "year": "1984" + }, + { + "id": 28696, + "model_id": 28688, + "year": "1985" + }, + { + "id": 28702, + "model_id": 28688, + "year": "1986" + }, + { + "id": 28707, + "model_id": 28688, + "year": "1987" + }, + { + "id": 28712, + "model_id": 28688, + "year": "1988" + }, + { + "id": 28717, + "model_id": 28688, + "year": "1989" + }, + { + "id": 28721, + "model_id": 28688, + "year": "1990" + }, + { + "id": 28726, + "model_id": 28688, + "year": "1991" + }, + { + "id": 28729, + "model_id": 28688, + "year": "1992" + }, + { + "id": 28732, + "model_id": 28688, + "year": "1993" + }, + { + "id": 28736, + "model_id": 28688, + "year": "1994" + }, + { + "id": 28740, + "model_id": 28740, + "year": "1984" + }, + { + "id": 28746, + "model_id": 28740, + "year": "1985" + }, + { + "id": 28752, + "model_id": 28740, + "year": "1986" + }, + { + "id": 28755, + "model_id": 28740, + "year": "1987" + }, + { + "id": 28761, + "model_id": 28740, + "year": "1988" + }, + { + "id": 28764, + "model_id": 28740, + "year": "1989" + }, + { + "id": 28767, + "model_id": 28740, + "year": "1990" + }, + { + "id": 28770, + "model_id": 28740, + "year": "1991" + }, + { + "id": 28773, + "model_id": 28740, + "year": "1992" + }, + { + "id": 28781, + "model_id": 28740, + "year": "1993" + }, + { + "id": 28789, + "model_id": 28740, + "year": "1994" + }, + { + "id": 28795, + "model_id": 28795, + "year": "1988" + }, + { + "id": 28797, + "model_id": 28795, + "year": "1989" + }, + { + "id": 28800, + "model_id": 28795, + "year": "1990" + }, + { + "id": 28803, + "model_id": 28803, + "year": "1984" + }, + { + "id": 28809, + "model_id": 28803, + "year": "1985" + }, + { + "id": 28815, + "model_id": 28803, + "year": "1986" + }, + { + "id": 28817, + "model_id": 28817, + "year": "1984" + }, + { + "id": 28820, + "model_id": 28817, + "year": "1985" + }, + { + "id": 28823, + "model_id": 28817, + "year": "1986" + }, + { + "id": 28826, + "model_id": 28817, + "year": "1987" + }, + { + "id": 28829, + "model_id": 28817, + "year": "1988" + }, + { + "id": 28832, + "model_id": 28817, + "year": "1989" + }, + { + "id": 28835, + "model_id": 28835, + "year": "1984" + }, + { + "id": 28841, + "model_id": 28835, + "year": "1985" + }, + { + "id": 28850, + "model_id": 28835, + "year": "1986" + }, + { + "id": 28854, + "model_id": 28835, + "year": "1987" + }, + { + "id": 28856, + "model_id": 28835, + "year": "1988" + }, + { + "id": 28858, + "model_id": 28835, + "year": "1989" + }, + { + "id": 28860, + "model_id": 28835, + "year": "1990" + }, + { + "id": 28862, + "model_id": 28862, + "year": "1990" + }, + { + "id": 28867, + "model_id": 28862, + "year": "1991" + }, + { + "id": 28873, + "model_id": 28862, + "year": "1992" + }, + { + "id": 28880, + "model_id": 28862, + "year": "1993" + }, + { + "id": 28888, + "model_id": 28862, + "year": "1994" + }, + { + "id": 28896, + "model_id": 28896, + "year": "1995" + }, + { + "id": 28898, + "model_id": 28896, + "year": "1996" + }, + { + "id": 28900, + "model_id": 28896, + "year": "1997" + }, + { + "id": 28902, + "model_id": 28896, + "year": "1998" + }, + { + "id": 28904, + "model_id": 28896, + "year": "1999" + }, + { + "id": 28906, + "model_id": 28896, + "year": "2000" + }, + { + "id": 28908, + "model_id": 28896, + "year": "2001" + }, + { + "id": 28910, + "model_id": 28910, + "year": "1999" + }, + { + "id": 28911, + "model_id": 28910, + "year": "2000" + }, + { + "id": 28912, + "model_id": 28910, + "year": "2001" + }, + { + "id": 28913, + "model_id": 28913, + "year": "1984" + }, + { + "id": 28921, + "model_id": 28913, + "year": "1985" + }, + { + "id": 28932, + "model_id": 28913, + "year": "1986" + }, + { + "id": 28937, + "model_id": 28913, + "year": "1987" + }, + { + "id": 28942, + "model_id": 28913, + "year": "1988" + }, + { + "id": 28945, + "model_id": 28913, + "year": "1989" + }, + { + "id": 28948, + "model_id": 28948, + "year": "1984" + }, + { + "id": 28956, + "model_id": 28948, + "year": "1985" + }, + { + "id": 28967, + "model_id": 28948, + "year": "1986" + }, + { + "id": 28970, + "model_id": 28948, + "year": "1987" + }, + { + "id": 28973, + "model_id": 28948, + "year": "1988" + }, + { + "id": 28976, + "model_id": 28976, + "year": "1987" + }, + { + "id": 28984, + "model_id": 28976, + "year": "1988" + }, + { + "id": 28990, + "model_id": 28976, + "year": "1989" + }, + { + "id": 28996, + "model_id": 28976, + "year": "1990" + }, + { + "id": 29002, + "model_id": 28976, + "year": "1991" + }, + { + "id": 29008, + "model_id": 29008, + "year": "1989" + }, + { + "id": 29013, + "model_id": 29013, + "year": "1992" + }, + { + "id": 29021, + "model_id": 29013, + "year": "1993" + }, + { + "id": 29027, + "model_id": 29013, + "year": "1994" + }, + { + "id": 29033, + "model_id": 29033, + "year": "1984" + }, + { + "id": 29039, + "model_id": 29033, + "year": "1985" + }, + { + "id": 29050, + "model_id": 29033, + "year": "1986" + }, + { + "id": 29055, + "model_id": 29033, + "year": "1987" + }, + { + "id": 29057, + "model_id": 29057, + "year": "1984" + }, + { + "id": 29061, + "model_id": 29057, + "year": "1985" + }, + { + "id": 29067, + "model_id": 29057, + "year": "1986" + }, + { + "id": 29071, + "model_id": 29071, + "year": "1987" + }, + { + "id": 29078, + "model_id": 29071, + "year": "1988" + }, + { + "id": 29081, + "model_id": 29071, + "year": "1989" + }, + { + "id": 29087, + "model_id": 29071, + "year": "1990" + }, + { + "id": 29094, + "model_id": 29071, + "year": "1991" + }, + { + "id": 29099, + "model_id": 29071, + "year": "1992" + }, + { + "id": 29105, + "model_id": 29071, + "year": "1993" + }, + { + "id": 29110, + "model_id": 29071, + "year": "1994" + }, + { + "id": 29118, + "model_id": 29071, + "year": "1995" + }, + { + "id": 29127, + "model_id": 29071, + "year": "1996" + }, + { + "id": 29132, + "model_id": 29071, + "year": "1997" + }, + { + "id": 29136, + "model_id": 29071, + "year": "1998" + }, + { + "id": 29142, + "model_id": 29071, + "year": "1999" + }, + { + "id": 29148, + "model_id": 29071, + "year": "2000" + }, + { + "id": 29153, + "model_id": 29153, + "year": "1984" + }, + { + "id": 29161, + "model_id": 29153, + "year": "1985" + }, + { + "id": 29168, + "model_id": 29153, + "year": "1986" + }, + { + "id": 29171, + "model_id": 29153, + "year": "1987" + }, + { + "id": 29174, + "model_id": 29174, + "year": "1984" + }, + { + "id": 29181, + "model_id": 29174, + "year": "1985" + }, + { + "id": 29189, + "model_id": 29174, + "year": "1986" + }, + { + "id": 29194, + "model_id": 29174, + "year": "1987" + }, + { + "id": 29198, + "model_id": 29174, + "year": "1988" + }, + { + "id": 29203, + "model_id": 29174, + "year": "1989" + }, + { + "id": 29207, + "model_id": 29174, + "year": "1990" + }, + { + "id": 29211, + "model_id": 29174, + "year": "1991" + }, + { + "id": 29214, + "model_id": 29214, + "year": "1984" + }, + { + "id": 29225, + "model_id": 29225, + "year": "1984" + }, + { + "id": 29233, + "model_id": 29233, + "year": "1984" + }, + { + "id": 29239, + "model_id": 29239, + "year": "1989" + }, + { + "id": 29240, + "model_id": 29240, + "year": "1984" + }, + { + "id": 29249, + "model_id": 29240, + "year": "1985" + }, + { + "id": 29257, + "model_id": 29240, + "year": "1986" + }, + { + "id": 29262, + "model_id": 29240, + "year": "1987" + }, + { + "id": 29266, + "model_id": 29240, + "year": "1988" + }, + { + "id": 29269, + "model_id": 29240, + "year": "1989" + }, + { + "id": 29271, + "model_id": 29240, + "year": "1990" + }, + { + "id": 29273, + "model_id": 29240, + "year": "1991" + }, + { + "id": 29275, + "model_id": 29275, + "year": "2001" + }, + { + "id": 29277, + "model_id": 29275, + "year": "2002" + }, + { + "id": 29279, + "model_id": 29275, + "year": "2003" + }, + { + "id": 29281, + "model_id": 29275, + "year": "2004" + }, + { + "id": 29283, + "model_id": 29275, + "year": "2005" + }, + { + "id": 29285, + "model_id": 29285, + "year": "1984" + }, + { + "id": 29293, + "model_id": 29285, + "year": "1985" + }, + { + "id": 29298, + "model_id": 29285, + "year": "1986" + }, + { + "id": 29302, + "model_id": 29285, + "year": "1987" + }, + { + "id": 29303, + "model_id": 29285, + "year": "1988" + }, + { + "id": 29304, + "model_id": 29285, + "year": "1989" + }, + { + "id": 29305, + "model_id": 29285, + "year": "1990" + }, + { + "id": 29306, + "model_id": 29285, + "year": "1991" + }, + { + "id": 29307, + "model_id": 29285, + "year": "1992" + }, + { + "id": 29309, + "model_id": 29285, + "year": "1993" + }, + { + "id": 29311, + "model_id": 29285, + "year": "1994" + }, + { + "id": 29313, + "model_id": 29285, + "year": "1995" + }, + { + "id": 29315, + "model_id": 29285, + "year": "1996" + }, + { + "id": 29317, + "model_id": 29285, + "year": "1997" + }, + { + "id": 29319, + "model_id": 29285, + "year": "1998" + }, + { + "id": 29321, + "model_id": 29285, + "year": "1999" + }, + { + "id": 29323, + "model_id": 29285, + "year": "2000" + }, + { + "id": 29325, + "model_id": 29285, + "year": "2001" + }, + { + "id": 29327, + "model_id": 29285, + "year": "2002" + }, + { + "id": 29329, + "model_id": 29285, + "year": "2003" + }, + { + "id": 29331, + "model_id": 29285, + "year": "2004" + }, + { + "id": 29334, + "model_id": 29285, + "year": "2005" + }, + { + "id": 29336, + "model_id": 29336, + "year": "1984" + }, + { + "id": 29341, + "model_id": 29336, + "year": "1985" + }, + { + "id": 29345, + "model_id": 29336, + "year": "1986" + }, + { + "id": 29350, + "model_id": 29336, + "year": "1987" + }, + { + "id": 29354, + "model_id": 29336, + "year": "1988" + }, + { + "id": 29358, + "model_id": 29358, + "year": "1984" + }, + { + "id": 29372, + "model_id": 29358, + "year": "1985" + }, + { + "id": 29383, + "model_id": 29358, + "year": "1986" + }, + { + "id": 29389, + "model_id": 29358, + "year": "2002" + }, + { + "id": 29393, + "model_id": 29393, + "year": "1993" + }, + { + "id": 29397, + "model_id": 29393, + "year": "1994" + }, + { + "id": 29401, + "model_id": 29393, + "year": "1995" + }, + { + "id": 29408, + "model_id": 29393, + "year": "1996" + }, + { + "id": 29412, + "model_id": 29393, + "year": "1997" + }, + { + "id": 29416, + "model_id": 29393, + "year": "1998" + }, + { + "id": 29420, + "model_id": 29420, + "year": "1988" + }, + { + "id": 29427, + "model_id": 29420, + "year": "1989" + }, + { + "id": 29434, + "model_id": 29420, + "year": "1990" + }, + { + "id": 29441, + "model_id": 29420, + "year": "1991" + }, + { + "id": 29448, + "model_id": 29420, + "year": "1992" + }, + { + "id": 29455, + "model_id": 29420, + "year": "1999" + }, + { + "id": 29459, + "model_id": 29420, + "year": "2000" + }, + { + "id": 29463, + "model_id": 29420, + "year": "2001" + }, + { + "id": 29467, + "model_id": 29467, + "year": "1987" + }, + { + "id": 29475, + "model_id": 29475, + "year": "1985" + }, + { + "id": 29477, + "model_id": 29475, + "year": "1986" + }, + { + "id": 29479, + "model_id": 29475, + "year": "1987" + }, + { + "id": 29481, + "model_id": 29475, + "year": "1988" + }, + { + "id": 29483, + "model_id": 29475, + "year": "1989" + }, + { + "id": 29487, + "model_id": 29475, + "year": "1990" + }, + { + "id": 29489, + "model_id": 29475, + "year": "1991" + }, + { + "id": 29491, + "model_id": 29475, + "year": "1992" + }, + { + "id": 29493, + "model_id": 29475, + "year": "1993" + }, + { + "id": 29495, + "model_id": 29475, + "year": "1994" + }, + { + "id": 29497, + "model_id": 29497, + "year": "1986" + }, + { + "id": 29499, + "model_id": 29499, + "year": "2010" + }, + { + "id": 29501, + "model_id": 29501, + "year": "2010" + }, + { + "id": 29503, + "model_id": 29503, + "year": "2009" + }, + { + "id": 29505, + "model_id": 29505, + "year": "2009" + }, + { + "id": 29507, + "model_id": 29507, + "year": "2009" + }, + { + "id": 29509, + "model_id": 29507, + "year": "2010" + }, + { + "id": 29511, + "model_id": 29511, + "year": "2009" + }, + { + "id": 29513, + "model_id": 29511, + "year": "2010" + }, + { + "id": 29515, + "model_id": 29515, + "year": "2008" + }, + { + "id": 29516, + "model_id": 29515, + "year": "2009" + }, + { + "id": 29517, + "model_id": 29515, + "year": "2010" + }, + { + "id": 29518, + "model_id": 29518, + "year": "2007" + }, + { + "id": 29522, + "model_id": 29518, + "year": "2008" + }, + { + "id": 29526, + "model_id": 29526, + "year": "2005" + }, + { + "id": 29528, + "model_id": 29526, + "year": "2006" + }, + { + "id": 29533, + "model_id": 29526, + "year": "2007" + }, + { + "id": 29538, + "model_id": 29526, + "year": "2008" + }, + { + "id": 29543, + "model_id": 29526, + "year": "2009" + }, + { + "id": 29550, + "model_id": 29526, + "year": "2010" + }, + { + "id": 29558, + "model_id": 29558, + "year": "2006" + }, + { + "id": 29560, + "model_id": 29558, + "year": "2007" + }, + { + "id": 29561, + "model_id": 29561, + "year": "2008" + }, + { + "id": 29563, + "model_id": 29561, + "year": "2009" + }, + { + "id": 29567, + "model_id": 29567, + "year": "1985" + }, + { + "id": 29571, + "model_id": 29567, + "year": "1986" + }, + { + "id": 29574, + "model_id": 29567, + "year": "1987" + }, + { + "id": 29579, + "model_id": 29567, + "year": "1988" + }, + { + "id": 29585, + "model_id": 29567, + "year": "1989" + }, + { + "id": 29591, + "model_id": 29567, + "year": "1990" + }, + { + "id": 29595, + "model_id": 29567, + "year": "1991" + }, + { + "id": 29599, + "model_id": 29567, + "year": "1992" + }, + { + "id": 29604, + "model_id": 29567, + "year": "1993" + }, + { + "id": 29609, + "model_id": 29567, + "year": "1994" + }, + { + "id": 29615, + "model_id": 29567, + "year": "1995" + }, + { + "id": 29620, + "model_id": 29567, + "year": "1996" + }, + { + "id": 29623, + "model_id": 29567, + "year": "1997" + }, + { + "id": 29626, + "model_id": 29567, + "year": "1998" + }, + { + "id": 29629, + "model_id": 29567, + "year": "1999" + }, + { + "id": 29631, + "model_id": 29567, + "year": "2000" + }, + { + "id": 29634, + "model_id": 29567, + "year": "2001" + }, + { + "id": 29637, + "model_id": 29567, + "year": "2002" + }, + { + "id": 29640, + "model_id": 29567, + "year": "2003" + }, + { + "id": 29643, + "model_id": 29567, + "year": "2004" + }, + { + "id": 29646, + "model_id": 29567, + "year": "2005" + }, + { + "id": 29648, + "model_id": 29648, + "year": "1984" + }, + { + "id": 29656, + "model_id": 29648, + "year": "1985" + }, + { + "id": 29662, + "model_id": 29648, + "year": "1986" + }, + { + "id": 29666, + "model_id": 29648, + "year": "1987" + }, + { + "id": 29670, + "model_id": 29648, + "year": "1988" + }, + { + "id": 29672, + "model_id": 29648, + "year": "1989" + }, + { + "id": 29675, + "model_id": 29648, + "year": "1990" + }, + { + "id": 29678, + "model_id": 29648, + "year": "1991" + }, + { + "id": 29682, + "model_id": 29648, + "year": "1992" + }, + { + "id": 29686, + "model_id": 29648, + "year": "1993" + }, + { + "id": 29690, + "model_id": 29648, + "year": "1994" + }, + { + "id": 29692, + "model_id": 29648, + "year": "1995" + }, + { + "id": 29695, + "model_id": 29648, + "year": "1996" + }, + { + "id": 29697, + "model_id": 29648, + "year": "1997" + }, + { + "id": 29700, + "model_id": 29648, + "year": "1998" + }, + { + "id": 29703, + "model_id": 29648, + "year": "1999" + }, + { + "id": 29706, + "model_id": 29648, + "year": "2000" + }, + { + "id": 29709, + "model_id": 29648, + "year": "2001" + }, + { + "id": 29712, + "model_id": 29648, + "year": "2002" + }, + { + "id": 29715, + "model_id": 29648, + "year": "2003" + }, + { + "id": 29718, + "model_id": 29648, + "year": "2004" + }, + { + "id": 29721, + "model_id": 29648, + "year": "2005" + }, + { + "id": 29725, + "model_id": 29648, + "year": "2006" + }, + { + "id": 29729, + "model_id": 29648, + "year": "2007" + }, + { + "id": 29733, + "model_id": 29648, + "year": "2008" + }, + { + "id": 29735, + "model_id": 29735, + "year": "1990" + }, + { + "id": 29736, + "model_id": 29736, + "year": "1989" + }, + { + "id": 29737, + "model_id": 29736, + "year": "1990" + }, + { + "id": 29738, + "model_id": 29738, + "year": "2004" + }, + { + "id": 29740, + "model_id": 29738, + "year": "2005" + }, + { + "id": 29742, + "model_id": 29738, + "year": "2006" + }, + { + "id": 29744, + "model_id": 29744, + "year": "1988" + }, + { + "id": 29748, + "model_id": 29744, + "year": "1989" + }, + { + "id": 29753, + "model_id": 29744, + "year": "1990" + }, + { + "id": 29758, + "model_id": 29744, + "year": "1991" + }, + { + "id": 29763, + "model_id": 29744, + "year": "1992" + }, + { + "id": 29766, + "model_id": 29744, + "year": "1993" + }, + { + "id": 29769, + "model_id": 29769, + "year": "2000" + }, + { + "id": 29770, + "model_id": 29769, + "year": "2001" + }, + { + "id": 29771, + "model_id": 29769, + "year": "2002" + }, + { + "id": 29773, + "model_id": 29769, + "year": "2003" + }, + { + "id": 29775, + "model_id": 29769, + "year": "2004" + }, + { + "id": 29777, + "model_id": 29777, + "year": "2006" + }, + { + "id": 29780, + "model_id": 29780, + "year": "2005" + }, + { + "id": 29782, + "model_id": 29782, + "year": "2005" + }, + { + "id": 29783, + "model_id": 29783, + "year": "1984" + }, + { + "id": 29789, + "model_id": 29783, + "year": "1985" + }, + { + "id": 29797, + "model_id": 29783, + "year": "1986" + }, + { + "id": 29801, + "model_id": 29801, + "year": "1984" + }, + { + "id": 29804, + "model_id": 29801, + "year": "1985" + }, + { + "id": 29807, + "model_id": 29801, + "year": "1986" + }, + { + "id": 29809, + "model_id": 29809, + "year": "1984" + }, + { + "id": 29815, + "model_id": 29815, + "year": "1987" + }, + { + "id": 29816, + "model_id": 29815, + "year": "1988" + }, + { + "id": 29817, + "model_id": 29815, + "year": "1989" + }, + { + "id": 29818, + "model_id": 29818, + "year": "2006" + }, + { + "id": 29820, + "model_id": 29818, + "year": "2007" + }, + { + "id": 29824, + "model_id": 29818, + "year": "2008" + }, + { + "id": 29828, + "model_id": 29818, + "year": "2009" + }, + { + "id": 29832, + "model_id": 29818, + "year": "2010" + }, + { + "id": 29836, + "model_id": 29836, + "year": "1985" + }, + { + "id": 29845, + "model_id": 29836, + "year": "1986" + }, + { + "id": 29850, + "model_id": 29836, + "year": "1987" + }, + { + "id": 29855, + "model_id": 29836, + "year": "1988" + }, + { + "id": 29859, + "model_id": 29836, + "year": "1989" + }, + { + "id": 29863, + "model_id": 29836, + "year": "1990" + }, + { + "id": 29867, + "model_id": 29836, + "year": "1991" + }, + { + "id": 29871, + "model_id": 29836, + "year": "1992" + }, + { + "id": 29875, + "model_id": 29836, + "year": "1993" + }, + { + "id": 29879, + "model_id": 29836, + "year": "1994" + }, + { + "id": 29883, + "model_id": 29883, + "year": "1985" + }, + { + "id": 29889, + "model_id": 29883, + "year": "1986" + }, + { + "id": 29893, + "model_id": 29883, + "year": "1987" + }, + { + "id": 29897, + "model_id": 29883, + "year": "1988" + }, + { + "id": 29901, + "model_id": 29883, + "year": "1989" + }, + { + "id": 29905, + "model_id": 29883, + "year": "1990" + }, + { + "id": 29909, + "model_id": 29883, + "year": "1991" + }, + { + "id": 29913, + "model_id": 29913, + "year": "1985" + }, + { + "id": 29917, + "model_id": 29913, + "year": "1986" + }, + { + "id": 29920, + "model_id": 29913, + "year": "1987" + }, + { + "id": 29923, + "model_id": 29913, + "year": "1988" + }, + { + "id": 29925, + "model_id": 29925, + "year": "1986" + }, + { + "id": 29927, + "model_id": 29925, + "year": "1987" + }, + { + "id": 29929, + "model_id": 29925, + "year": "1988" + }, + { + "id": 29931, + "model_id": 29925, + "year": "1989" + }, + { + "id": 29933, + "model_id": 29933, + "year": "1995" + }, + { + "id": 29936, + "model_id": 29933, + "year": "1996" + }, + { + "id": 29941, + "model_id": 29933, + "year": "1997" + }, + { + "id": 29947, + "model_id": 29933, + "year": "1998" + }, + { + "id": 29952, + "model_id": 29933, + "year": "1999" + }, + { + "id": 29957, + "model_id": 29933, + "year": "2000" + }, + { + "id": 29962, + "model_id": 29933, + "year": "2001" + }, + { + "id": 29967, + "model_id": 29933, + "year": "2002" + }, + { + "id": 29973, + "model_id": 29933, + "year": "2003" + }, + { + "id": 29975, + "model_id": 29933, + "year": "2004" + }, + { + "id": 29977, + "model_id": 29933, + "year": "2005" + }, + { + "id": 29979, + "model_id": 29979, + "year": "2006" + }, + { + "id": 29981, + "model_id": 29979, + "year": "2007" + }, + { + "id": 29983, + "model_id": 29979, + "year": "2008" + }, + { + "id": 29987, + "model_id": 29979, + "year": "2009" + }, + { + "id": 29991, + "model_id": 29991, + "year": "1990" + }, + { + "id": 29992, + "model_id": 29991, + "year": "1991" + }, + { + "id": 29993, + "model_id": 29991, + "year": "1992" + }, + { + "id": 29995, + "model_id": 29991, + "year": "1993" + }, + { + "id": 29997, + "model_id": 29991, + "year": "1994" + }, + { + "id": 29999, + "model_id": 29991, + "year": "1995" + }, + { + "id": 30001, + "model_id": 29991, + "year": "1996" + }, + { + "id": 30002, + "model_id": 29991, + "year": "1997" + }, + { + "id": 30003, + "model_id": 29991, + "year": "1998" + }, + { + "id": 30004, + "model_id": 30004, + "year": "1999" + }, + { + "id": 30005, + "model_id": 30005, + "year": "1987" + }, + { + "id": 30006, + "model_id": 30005, + "year": "1988" + }, + { + "id": 30007, + "model_id": 30005, + "year": "1989" + }, + { + "id": 30008, + "model_id": 30005, + "year": "1990" + }, + { + "id": 30009, + "model_id": 30009, + "year": "2003" + }, + { + "id": 30014, + "model_id": 30009, + "year": "2004" + }, + { + "id": 30018, + "model_id": 30009, + "year": "2005" + }, + { + "id": 30022, + "model_id": 30009, + "year": "2006" + }, + { + "id": 30026, + "model_id": 30009, + "year": "2007" + }, + { + "id": 30028, + "model_id": 30009, + "year": "2008" + }, + { + "id": 30030, + "model_id": 30009, + "year": "2009" + }, + { + "id": 30035, + "model_id": 30009, + "year": "2010" + }, + { + "id": 30040, + "model_id": 30040, + "year": "2005" + }, + { + "id": 30042, + "model_id": 30042, + "year": "2005" + }, + { + "id": 30044, + "model_id": 30042, + "year": "2006" + }, + { + "id": 30046, + "model_id": 30046, + "year": "1986" + }, + { + "id": 30048, + "model_id": 30046, + "year": "1987" + }, + { + "id": 30050, + "model_id": 30050, + "year": "1984" + }, + { + "id": 30054, + "model_id": 30050, + "year": "1985" + }, + { + "id": 30055, + "model_id": 30050, + "year": "1986" + }, + { + "id": 30058, + "model_id": 30050, + "year": "1987" + }, + { + "id": 30063, + "model_id": 30050, + "year": "1988" + }, + { + "id": 30065, + "model_id": 30050, + "year": "1989" + }, + { + "id": 30067, + "model_id": 30067, + "year": "1992" + }, + { + "id": 30071, + "model_id": 30067, + "year": "1993" + }, + { + "id": 30075, + "model_id": 30067, + "year": "1994" + }, + { + "id": 30079, + "model_id": 30067, + "year": "1995" + }, + { + "id": 30083, + "model_id": 30083, + "year": "2012" + }, + { + "id": 30085, + "model_id": 30085, + "year": "2012" + }, + { + "id": 30087, + "model_id": 30087, + "year": "1988" + }, + { + "id": 30089, + "model_id": 30087, + "year": "1989" + }, + { + "id": 30092, + "model_id": 30087, + "year": "1999" + }, + { + "id": 30096, + "model_id": 30087, + "year": "2000" + }, + { + "id": 30100, + "model_id": 30087, + "year": "2002" + }, + { + "id": 30102, + "model_id": 30087, + "year": "2010" + }, + { + "id": 30104, + "model_id": 30087, + "year": "2011" + }, + { + "id": 30106, + "model_id": 30087, + "year": "2012" + }, + { + "id": 30108, + "model_id": 30087, + "year": "2013" + }, + { + "id": 30110, + "model_id": 30087, + "year": "2014" + }, + { + "id": 30112, + "model_id": 30087, + "year": "2015" + }, + { + "id": 30114, + "model_id": 30087, + "year": "2016" + }, + { + "id": 30116, + "model_id": 30087, + "year": "2017" + }, + { + "id": 30118, + "model_id": 30118, + "year": "2001" + }, + { + "id": 30122, + "model_id": 30122, + "year": "1989" + }, + { + "id": 30123, + "model_id": 30122, + "year": "2010" + }, + { + "id": 30125, + "model_id": 30122, + "year": "2011" + }, + { + "id": 30127, + "model_id": 30122, + "year": "2012" + }, + { + "id": 30129, + "model_id": 30122, + "year": "2013" + }, + { + "id": 30131, + "model_id": 30122, + "year": "2014" + }, + { + "id": 30133, + "model_id": 30122, + "year": "2015" + }, + { + "id": 30135, + "model_id": 30122, + "year": "2016" + }, + { + "id": 30137, + "model_id": 30122, + "year": "2017" + }, + { + "id": 30139, + "model_id": 30139, + "year": "2002" + }, + { + "id": 30141, + "model_id": 30139, + "year": "2010" + }, + { + "id": 30143, + "model_id": 30139, + "year": "2011" + }, + { + "id": 30145, + "model_id": 30139, + "year": "2012" + }, + { + "id": 30147, + "model_id": 30139, + "year": "2013" + }, + { + "id": 30149, + "model_id": 30139, + "year": "2014" + }, + { + "id": 30151, + "model_id": 30139, + "year": "2015" + }, + { + "id": 30153, + "model_id": 30139, + "year": "2016" + }, + { + "id": 30155, + "model_id": 30139, + "year": "2017" + }, + { + "id": 30157, + "model_id": 30157, + "year": "2015" + }, + { + "id": 30159, + "model_id": 30157, + "year": "2016" + }, + { + "id": 30161, + "model_id": 30161, + "year": "2015" + }, + { + "id": 30163, + "model_id": 30161, + "year": "2016" + }, + { + "id": 30165, + "model_id": 30165, + "year": "2010" + }, + { + "id": 30167, + "model_id": 30165, + "year": "2011" + }, + { + "id": 30169, + "model_id": 30165, + "year": "2012" + }, + { + "id": 30171, + "model_id": 30171, + "year": "1990" + }, + { + "id": 30174, + "model_id": 30171, + "year": "1991" + }, + { + "id": 30177, + "model_id": 30171, + "year": "1992" + }, + { + "id": 30183, + "model_id": 30171, + "year": "1993" + }, + { + "id": 30189, + "model_id": 30171, + "year": "1994" + }, + { + "id": 30195, + "model_id": 30171, + "year": "1995" + }, + { + "id": 30198, + "model_id": 30171, + "year": "1996" + }, + { + "id": 30201, + "model_id": 30171, + "year": "1997" + }, + { + "id": 30204, + "model_id": 30171, + "year": "1998" + }, + { + "id": 30207, + "model_id": 30207, + "year": "2002" + }, + { + "id": 30209, + "model_id": 30207, + "year": "2010" + }, + { + "id": 30211, + "model_id": 30207, + "year": "2011" + }, + { + "id": 30213, + "model_id": 30207, + "year": "2012" + }, + { + "id": 30215, + "model_id": 30207, + "year": "2013" + }, + { + "id": 30217, + "model_id": 30207, + "year": "2014" + }, + { + "id": 30219, + "model_id": 30207, + "year": "2015" + }, + { + "id": 30221, + "model_id": 30207, + "year": "2016" + }, + { + "id": 30223, + "model_id": 30207, + "year": "2017" + }, + { + "id": 30225, + "model_id": 30225, + "year": "2010" + }, + { + "id": 30227, + "model_id": 30225, + "year": "2011" + }, + { + "id": 30229, + "model_id": 30225, + "year": "2012" + }, + { + "id": 30231, + "model_id": 30225, + "year": "2013" + }, + { + "id": 30233, + "model_id": 30225, + "year": "2014" + }, + { + "id": 30235, + "model_id": 30225, + "year": "2015" + }, + { + "id": 30237, + "model_id": 30225, + "year": "2016" + }, + { + "id": 30239, + "model_id": 30225, + "year": "2017" + }, + { + "id": 30241, + "model_id": 30241, + "year": "2010" + }, + { + "id": 30243, + "model_id": 30241, + "year": "2011" + }, + { + "id": 30245, + "model_id": 30241, + "year": "2012" + }, + { + "id": 30247, + "model_id": 30247, + "year": "2002" + }, + { + "id": 30249, + "model_id": 30247, + "year": "2010" + }, + { + "id": 30251, + "model_id": 30247, + "year": "2011" + }, + { + "id": 30253, + "model_id": 30247, + "year": "2012" + }, + { + "id": 30255, + "model_id": 30247, + "year": "2013" + }, + { + "id": 30257, + "model_id": 30247, + "year": "2014" + }, + { + "id": 30259, + "model_id": 30247, + "year": "2015" + }, + { + "id": 30261, + "model_id": 30247, + "year": "2016" + }, + { + "id": 30263, + "model_id": 30247, + "year": "2017" + }, + { + "id": 30265, + "model_id": 30265, + "year": "2015" + }, + { + "id": 30267, + "model_id": 30265, + "year": "2016" + }, + { + "id": 30269, + "model_id": 30269, + "year": "2015" + }, + { + "id": 30271, + "model_id": 30269, + "year": "2016" + }, + { + "id": 30273, + "model_id": 30273, + "year": "2010" + }, + { + "id": 30275, + "model_id": 30273, + "year": "2011" + }, + { + "id": 30277, + "model_id": 30273, + "year": "2012" + }, + { + "id": 30279, + "model_id": 30273, + "year": "2013" + }, + { + "id": 30281, + "model_id": 30273, + "year": "2014" + }, + { + "id": 30283, + "model_id": 30273, + "year": "2015" + }, + { + "id": 30285, + "model_id": 30273, + "year": "2016" + }, + { + "id": 30287, + "model_id": 30273, + "year": "2017" + }, + { + "id": 30289, + "model_id": 30289, + "year": "2010" + }, + { + "id": 30291, + "model_id": 30289, + "year": "2011" + }, + { + "id": 30293, + "model_id": 30289, + "year": "2012" + }, + { + "id": 30295, + "model_id": 30289, + "year": "2013" + }, + { + "id": 30297, + "model_id": 30289, + "year": "2014" + }, + { + "id": 30299, + "model_id": 30289, + "year": "2015" + }, + { + "id": 30301, + "model_id": 30289, + "year": "2016" + }, + { + "id": 30303, + "model_id": 30289, + "year": "2017" + }, + { + "id": 30305, + "model_id": 30305, + "year": "2002" + }, + { + "id": 30306, + "model_id": 30305, + "year": "2008" + }, + { + "id": 30307, + "model_id": 30305, + "year": "2009" + }, + { + "id": 30308, + "model_id": 30308, + "year": "2011" + }, + { + "id": 30309, + "model_id": 30309, + "year": "2007" + }, + { + "id": 30310, + "model_id": 30309, + "year": "2008" + }, + { + "id": 30311, + "model_id": 30309, + "year": "2010" + }, + { + "id": 30312, + "model_id": 30309, + "year": "2011" + }, + { + "id": 30313, + "model_id": 30309, + "year": "2014" + }, + { + "id": 30314, + "model_id": 30309, + "year": "2015" + }, + { + "id": 30315, + "model_id": 30309, + "year": "2016" + }, + { + "id": 30316, + "model_id": 30316, + "year": "2007" + }, + { + "id": 30317, + "model_id": 30316, + "year": "2008" + }, + { + "id": 30318, + "model_id": 30316, + "year": "2010" + }, + { + "id": 30319, + "model_id": 30316, + "year": "2011" + }, + { + "id": 30321, + "model_id": 30316, + "year": "2016" + }, + { + "id": 30322, + "model_id": 30322, + "year": "2011" + }, + { + "id": 30324, + "model_id": 30322, + "year": "2012" + }, + { + "id": 30326, + "model_id": 30326, + "year": "2011" + }, + { + "id": 30328, + "model_id": 30326, + "year": "2012" + }, + { + "id": 30330, + "model_id": 30330, + "year": "1984" + }, + { + "id": 30332, + "model_id": 30332, + "year": "2011" + }, + { + "id": 30333, + "model_id": 30332, + "year": "2012" + }, + { + "id": 30334, + "model_id": 30334, + "year": "2002" + }, + { + "id": 30336, + "model_id": 30336, + "year": "2014" + }, + { + "id": 30338, + "model_id": 30336, + "year": "2015" + }, + { + "id": 30340, + "model_id": 30336, + "year": "2016" + }, + { + "id": 30342, + "model_id": 30336, + "year": "2017" + }, + { + "id": 30344, + "model_id": 30344, + "year": "2016" + }, + { + "id": 30346, + "model_id": 30346, + "year": "2014" + }, + { + "id": 30348, + "model_id": 30346, + "year": "2015" + }, + { + "id": 30350, + "model_id": 30346, + "year": "2016" + }, + { + "id": 30352, + "model_id": 30346, + "year": "2017" + }, + { + "id": 30354, + "model_id": 30354, + "year": "1988" + }, + { + "id": 30355, + "model_id": 30354, + "year": "1989" + }, + { + "id": 30356, + "model_id": 30354, + "year": "1991" + }, + { + "id": 30357, + "model_id": 30354, + "year": "1992" + }, + { + "id": 30358, + "model_id": 30354, + "year": "1994" + }, + { + "id": 30359, + "model_id": 30354, + "year": "1996" + }, + { + "id": 30360, + "model_id": 30354, + "year": "1997" + }, + { + "id": 30361, + "model_id": 30354, + "year": "2001" + }, + { + "id": 30363, + "model_id": 30354, + "year": "2002" + }, + { + "id": 30365, + "model_id": 30354, + "year": "2008" + }, + { + "id": 30367, + "model_id": 30354, + "year": "2009" + }, + { + "id": 30369, + "model_id": 30354, + "year": "2013" + }, + { + "id": 30371, + "model_id": 30354, + "year": "2014" + }, + { + "id": 30372, + "model_id": 30354, + "year": "2015" + }, + { + "id": 30373, + "model_id": 30354, + "year": "2016" + }, + { + "id": 30374, + "model_id": 30354, + "year": "2017" + }, + { + "id": 30375, + "model_id": 30375, + "year": "2008" + }, + { + "id": 30377, + "model_id": 30375, + "year": "2009" + }, + { + "id": 30379, + "model_id": 30375, + "year": "2010" + }, + { + "id": 30381, + "model_id": 30375, + "year": "2011" + }, + { + "id": 30383, + "model_id": 30375, + "year": "2012" + }, + { + "id": 30385, + "model_id": 30375, + "year": "2013" + }, + { + "id": 30387, + "model_id": 30375, + "year": "2014" + }, + { + "id": 30388, + "model_id": 30375, + "year": "2016" + }, + { + "id": 30389, + "model_id": 30375, + "year": "2017" + }, + { + "id": 30390, + "model_id": 30390, + "year": "2010" + }, + { + "id": 30392, + "model_id": 30390, + "year": "2011" + }, + { + "id": 30394, + "model_id": 30390, + "year": "2012" + }, + { + "id": 30396, + "model_id": 30396, + "year": "2013" + }, + { + "id": 30397, + "model_id": 30396, + "year": "2014" + }, + { + "id": 30398, + "model_id": 30396, + "year": "2015" + }, + { + "id": 30399, + "model_id": 30396, + "year": "2016" + }, + { + "id": 30400, + "model_id": 30396, + "year": "2017" + }, + { + "id": 30401, + "model_id": 30401, + "year": "2010" + }, + { + "id": 30402, + "model_id": 30401, + "year": "2011" + }, + { + "id": 30403, + "model_id": 30401, + "year": "2012" + }, + { + "id": 30404, + "model_id": 30401, + "year": "2013" + }, + { + "id": 30405, + "model_id": 30401, + "year": "2014" + }, + { + "id": 30406, + "model_id": 30401, + "year": "2016" + }, + { + "id": 30407, + "model_id": 30401, + "year": "2017" + }, + { + "id": 30408, + "model_id": 30408, + "year": "2010" + }, + { + "id": 30409, + "model_id": 30408, + "year": "2011" + }, + { + "id": 30410, + "model_id": 30408, + "year": "2012" + }, + { + "id": 30411, + "model_id": 30411, + "year": "2015" + }, + { + "id": 30412, + "model_id": 30412, + "year": "1987" + }, + { + "id": 30414, + "model_id": 30412, + "year": "1988" + }, + { + "id": 30416, + "model_id": 30416, + "year": "1993" + }, + { + "id": 30418, + "model_id": 30416, + "year": "1994" + }, + { + "id": 30420, + "model_id": 30416, + "year": "1995" + }, + { + "id": 30422, + "model_id": 30422, + "year": "1984" + }, + { + "id": 30426, + "model_id": 30422, + "year": "1986" + }, + { + "id": 30428, + "model_id": 30422, + "year": "1987" + }, + { + "id": 30430, + "model_id": 30430, + "year": "1988" + }, + { + "id": 30432, + "model_id": 30430, + "year": "1989" + }, + { + "id": 30435, + "model_id": 30430, + "year": "1990" + }, + { + "id": 30437, + "model_id": 30430, + "year": "1991" + }, + { + "id": 30440, + "model_id": 30440, + "year": "1988" + }, + { + "id": 30441, + "model_id": 30441, + "year": "1989" + }, + { + "id": 30442, + "model_id": 30441, + "year": "1990" + }, + { + "id": 30443, + "model_id": 30441, + "year": "1991" + }, + { + "id": 30444, + "model_id": 30444, + "year": "1988" + }, + { + "id": 30445, + "model_id": 30444, + "year": "1989" + }, + { + "id": 30446, + "model_id": 30446, + "year": "1997" + }, + { + "id": 30448, + "model_id": 30446, + "year": "1998" + }, + { + "id": 30450, + "model_id": 30446, + "year": "1999" + }, + { + "id": 30452, + "model_id": 30446, + "year": "2000" + }, + { + "id": 30454, + "model_id": 30446, + "year": "2001" + }, + { + "id": 30456, + "model_id": 30446, + "year": "2002" + }, + { + "id": 30458, + "model_id": 30446, + "year": "2003" + }, + { + "id": 30460, + "model_id": 30446, + "year": "2004" + }, + { + "id": 30462, + "model_id": 30446, + "year": "2005" + }, + { + "id": 30465, + "model_id": 30446, + "year": "2006" + }, + { + "id": 30468, + "model_id": 30446, + "year": "2007" + }, + { + "id": 30471, + "model_id": 30446, + "year": "2008" + }, + { + "id": 30474, + "model_id": 30446, + "year": "2009" + }, + { + "id": 30476, + "model_id": 30446, + "year": "2010" + }, + { + "id": 30478, + "model_id": 30446, + "year": "2011" + }, + { + "id": 30480, + "model_id": 30446, + "year": "2012" + }, + { + "id": 30482, + "model_id": 30446, + "year": "2013" + }, + { + "id": 30484, + "model_id": 30446, + "year": "2014" + }, + { + "id": 30486, + "model_id": 30446, + "year": "2015" + }, + { + "id": 30488, + "model_id": 30446, + "year": "2016" + }, + { + "id": 30490, + "model_id": 30446, + "year": "2017" + }, + { + "id": 30492, + "model_id": 30492, + "year": "2015" + }, + { + "id": 30494, + "model_id": 30492, + "year": "2016" + }, + { + "id": 30496, + "model_id": 30496, + "year": "2000" + }, + { + "id": 30498, + "model_id": 30496, + "year": "2001" + }, + { + "id": 30500, + "model_id": 30496, + "year": "2002" + }, + { + "id": 30502, + "model_id": 30496, + "year": "2003" + }, + { + "id": 30504, + "model_id": 30496, + "year": "2004" + }, + { + "id": 30506, + "model_id": 30496, + "year": "2005" + }, + { + "id": 30508, + "model_id": 30496, + "year": "2006" + }, + { + "id": 30510, + "model_id": 30496, + "year": "2007" + }, + { + "id": 30512, + "model_id": 30496, + "year": "2008" + }, + { + "id": 30514, + "model_id": 30496, + "year": "2009" + }, + { + "id": 30516, + "model_id": 30496, + "year": "2010" + }, + { + "id": 30518, + "model_id": 30496, + "year": "2011" + }, + { + "id": 30520, + "model_id": 30496, + "year": "2012" + }, + { + "id": 30522, + "model_id": 30496, + "year": "2013" + }, + { + "id": 30524, + "model_id": 30496, + "year": "2014" + }, + { + "id": 30526, + "model_id": 30496, + "year": "2015" + }, + { + "id": 30528, + "model_id": 30496, + "year": "2016" + }, + { + "id": 30530, + "model_id": 30496, + "year": "2017" + }, + { + "id": 30532, + "model_id": 30532, + "year": "2011" + }, + { + "id": 30534, + "model_id": 30532, + "year": "2012" + }, + { + "id": 30536, + "model_id": 30532, + "year": "2016" + }, + { + "id": 30537, + "model_id": 30537, + "year": "1991" + }, + { + "id": 30538, + "model_id": 30538, + "year": "2004" + }, + { + "id": 30539, + "model_id": 30538, + "year": "2005" + }, + { + "id": 30540, + "model_id": 30540, + "year": "2003" + }, + { + "id": 30542, + "model_id": 30540, + "year": "2004" + }, + { + "id": 30544, + "model_id": 30540, + "year": "2005" + }, + { + "id": 30548, + "model_id": 30540, + "year": "2006" + }, + { + "id": 30550, + "model_id": 30540, + "year": "2007" + }, + { + "id": 30552, + "model_id": 30540, + "year": "2008" + }, + { + "id": 30554, + "model_id": 30540, + "year": "2009" + }, + { + "id": 30556, + "model_id": 30556, + "year": "2003" + }, + { + "id": 30558, + "model_id": 30556, + "year": "2004" + }, + { + "id": 30559, + "model_id": 30556, + "year": "2005" + }, + { + "id": 30561, + "model_id": 30561, + "year": "2003" + }, + { + "id": 30563, + "model_id": 30561, + "year": "2004" + }, + { + "id": 30565, + "model_id": 30561, + "year": "2005" + }, + { + "id": 30569, + "model_id": 30561, + "year": "2006" + }, + { + "id": 30571, + "model_id": 30561, + "year": "2007" + }, + { + "id": 30573, + "model_id": 30561, + "year": "2008" + }, + { + "id": 30575, + "model_id": 30561, + "year": "2009" + }, + { + "id": 30577, + "model_id": 30577, + "year": "2003" + }, + { + "id": 30579, + "model_id": 30577, + "year": "2004" + }, + { + "id": 30580, + "model_id": 30577, + "year": "2005" + }, + { + "id": 30582, + "model_id": 30582, + "year": "2005" + }, + { + "id": 30584, + "model_id": 30582, + "year": "2006" + }, + { + "id": 30586, + "model_id": 30582, + "year": "2007" + }, + { + "id": 30588, + "model_id": 30582, + "year": "2008" + }, + { + "id": 30590, + "model_id": 30582, + "year": "2009" + }, + { + "id": 30592, + "model_id": 30592, + "year": "2005" + }, + { + "id": 30594, + "model_id": 30592, + "year": "2006" + }, + { + "id": 30596, + "model_id": 30592, + "year": "2007" + }, + { + "id": 30598, + "model_id": 30592, + "year": "2008" + }, + { + "id": 30600, + "model_id": 30592, + "year": "2009" + }, + { + "id": 30602, + "model_id": 30602, + "year": "1991" + }, + { + "id": 30603, + "model_id": 30603, + "year": "2003" + }, + { + "id": 30605, + "model_id": 30603, + "year": "2004" + }, + { + "id": 30607, + "model_id": 30603, + "year": "2005" + }, + { + "id": 30609, + "model_id": 30603, + "year": "2006" + }, + { + "id": 30611, + "model_id": 30603, + "year": "2007" + }, + { + "id": 30613, + "model_id": 30603, + "year": "2008" + }, + { + "id": 30615, + "model_id": 30603, + "year": "2009" + }, + { + "id": 30617, + "model_id": 30617, + "year": "2003" + }, + { + "id": 30619, + "model_id": 30617, + "year": "2004" + }, + { + "id": 30620, + "model_id": 30617, + "year": "2005" + }, + { + "id": 30622, + "model_id": 30622, + "year": "2006" + }, + { + "id": 30624, + "model_id": 30622, + "year": "2007" + }, + { + "id": 30626, + "model_id": 30622, + "year": "2008" + }, + { + "id": 30628, + "model_id": 30622, + "year": "2009" + }, + { + "id": 30630, + "model_id": 30630, + "year": "2003" + }, + { + "id": 30632, + "model_id": 30632, + "year": "2004" + }, + { + "id": 30634, + "model_id": 30632, + "year": "2005" + }, + { + "id": 30636, + "model_id": 30632, + "year": "2006" + }, + { + "id": 30638, + "model_id": 30632, + "year": "2007" + }, + { + "id": 30640, + "model_id": 30632, + "year": "2008" + }, + { + "id": 30642, + "model_id": 30632, + "year": "2009" + }, + { + "id": 30644, + "model_id": 30644, + "year": "2004" + }, + { + "id": 30645, + "model_id": 30644, + "year": "2005" + }, + { + "id": 30647, + "model_id": 30647, + "year": "2004" + }, + { + "id": 30649, + "model_id": 30647, + "year": "2005" + }, + { + "id": 30651, + "model_id": 30647, + "year": "2006" + }, + { + "id": 30653, + "model_id": 30647, + "year": "2007" + }, + { + "id": 30655, + "model_id": 30647, + "year": "2008" + }, + { + "id": 30657, + "model_id": 30647, + "year": "2009" + }, + { + "id": 30659, + "model_id": 30659, + "year": "2003" + }, + { + "id": 30661, + "model_id": 30659, + "year": "2004" + }, + { + "id": 30662, + "model_id": 30659, + "year": "2005" + }, + { + "id": 30664, + "model_id": 30664, + "year": "2007" + }, + { + "id": 30666, + "model_id": 30664, + "year": "2008" + }, + { + "id": 30668, + "model_id": 30664, + "year": "2009" + }, + { + "id": 30670, + "model_id": 30670, + "year": "2007" + }, + { + "id": 30672, + "model_id": 30670, + "year": "2008" + }, + { + "id": 30674, + "model_id": 30670, + "year": "2009" + }, + { + "id": 30676, + "model_id": 30676, + "year": "2004" + }, + { + "id": 30677, + "model_id": 30676, + "year": "2005" + }, + { + "id": 30678, + "model_id": 30678, + "year": "2004" + }, + { + "id": 30679, + "model_id": 30678, + "year": "2005" + }, + { + "id": 30681, + "model_id": 30678, + "year": "2006" + }, + { + "id": 30683, + "model_id": 30678, + "year": "2007" + }, + { + "id": 30685, + "model_id": 30678, + "year": "2008" + }, + { + "id": 30687, + "model_id": 30678, + "year": "2009" + }, + { + "id": 30689, + "model_id": 30678, + "year": "2010" + }, + { + "id": 30691, + "model_id": 30678, + "year": "2011" + }, + { + "id": 30693, + "model_id": 30678, + "year": "2012" + }, + { + "id": 30695, + "model_id": 30678, + "year": "2013" + }, + { + "id": 30697, + "model_id": 30678, + "year": "2014" + }, + { + "id": 30699, + "model_id": 30678, + "year": "2016" + }, + { + "id": 30700, + "model_id": 30700, + "year": "2013" + }, + { + "id": 30701, + "model_id": 30700, + "year": "2014" + }, + { + "id": 30702, + "model_id": 30700, + "year": "2015" + }, + { + "id": 30703, + "model_id": 30700, + "year": "2016" + }, + { + "id": 30704, + "model_id": 30704, + "year": "2008" + }, + { + "id": 30706, + "model_id": 30704, + "year": "2009" + }, + { + "id": 30708, + "model_id": 30704, + "year": "2010" + }, + { + "id": 30710, + "model_id": 30704, + "year": "2013" + }, + { + "id": 30711, + "model_id": 30704, + "year": "2014" + }, + { + "id": 30712, + "model_id": 30704, + "year": "2016" + }, + { + "id": 30713, + "model_id": 30704, + "year": "2017" + }, + { + "id": 30714, + "model_id": 30714, + "year": "2003" + }, + { + "id": 30715, + "model_id": 30714, + "year": "2004" + }, + { + "id": 30716, + "model_id": 30714, + "year": "2005" + }, + { + "id": 30717, + "model_id": 30714, + "year": "2006" + }, + { + "id": 30718, + "model_id": 30714, + "year": "2007" + }, + { + "id": 30719, + "model_id": 30714, + "year": "2008" + }, + { + "id": 30720, + "model_id": 30714, + "year": "2009" + }, + { + "id": 30721, + "model_id": 30714, + "year": "2010" + }, + { + "id": 30722, + "model_id": 30714, + "year": "2011" + }, + { + "id": 30723, + "model_id": 30714, + "year": "2012" + }, + { + "id": 30724, + "model_id": 30714, + "year": "2013" + }, + { + "id": 30725, + "model_id": 30714, + "year": "2014" + }, + { + "id": 30726, + "model_id": 30714, + "year": "2015" + }, + { + "id": 30727, + "model_id": 30714, + "year": "2016" + }, + { + "id": 30728, + "model_id": 30714, + "year": "2017" + }, + { + "id": 30729, + "model_id": 30729, + "year": "2015" + }, + { + "id": 30730, + "model_id": 30729, + "year": "2016" + }, + { + "id": 30731, + "model_id": 30731, + "year": "2011" + }, + { + "id": 30732, + "model_id": 30731, + "year": "2012" + }, + { + "id": 30733, + "model_id": 30731, + "year": "2013" + }, + { + "id": 30734, + "model_id": 30731, + "year": "2014" + }, + { + "id": 30735, + "model_id": 30735, + "year": "2010" + }, + { + "id": 30736, + "model_id": 30736, + "year": "2003" + }, + { + "id": 30737, + "model_id": 30736, + "year": "2004" + }, + { + "id": 30738, + "model_id": 30736, + "year": "2005" + }, + { + "id": 30739, + "model_id": 30736, + "year": "2006" + }, + { + "id": 30740, + "model_id": 30736, + "year": "2007" + }, + { + "id": 30741, + "model_id": 30736, + "year": "2008" + }, + { + "id": 30742, + "model_id": 30736, + "year": "2009" + }, + { + "id": 30743, + "model_id": 30736, + "year": "2010" + }, + { + "id": 30744, + "model_id": 30736, + "year": "2011" + }, + { + "id": 30745, + "model_id": 30736, + "year": "2012" + }, + { + "id": 30746, + "model_id": 30736, + "year": "2013" + }, + { + "id": 30747, + "model_id": 30736, + "year": "2014" + }, + { + "id": 30748, + "model_id": 30736, + "year": "2015" + }, + { + "id": 30749, + "model_id": 30736, + "year": "2016" + }, + { + "id": 30750, + "model_id": 30736, + "year": "2017" + }, + { + "id": 30751, + "model_id": 30751, + "year": "2010" + }, + { + "id": 30752, + "model_id": 30752, + "year": "2009" + }, + { + "id": 30753, + "model_id": 30752, + "year": "2010" + }, + { + "id": 30754, + "model_id": 30752, + "year": "2014" + }, + { + "id": 30755, + "model_id": 30752, + "year": "2016" + }, + { + "id": 30756, + "model_id": 30752, + "year": "2017" + }, + { + "id": 30757, + "model_id": 30757, + "year": "2007" + }, + { + "id": 30760, + "model_id": 30757, + "year": "2008" + }, + { + "id": 30763, + "model_id": 30757, + "year": "2009" + }, + { + "id": 30765, + "model_id": 30757, + "year": "2010" + }, + { + "id": 30767, + "model_id": 30757, + "year": "2011" + }, + { + "id": 30769, + "model_id": 30757, + "year": "2012" + }, + { + "id": 30771, + "model_id": 30757, + "year": "2014" + }, + { + "id": 30773, + "model_id": 30757, + "year": "2015" + }, + { + "id": 30775, + "model_id": 30757, + "year": "2016" + }, + { + "id": 30777, + "model_id": 30777, + "year": "2016" + }, + { + "id": 30778, + "model_id": 30778, + "year": "2015" + }, + { + "id": 30780, + "model_id": 30778, + "year": "2016" + }, + { + "id": 30782, + "model_id": 30782, + "year": "2012" + }, + { + "id": 30784, + "model_id": 30784, + "year": "2006" + }, + { + "id": 30786, + "model_id": 30784, + "year": "2007" + }, + { + "id": 30788, + "model_id": 30784, + "year": "2008" + }, + { + "id": 30790, + "model_id": 30784, + "year": "2009" + }, + { + "id": 30792, + "model_id": 30784, + "year": "2010" + }, + { + "id": 30794, + "model_id": 30784, + "year": "2011" + }, + { + "id": 30796, + "model_id": 30784, + "year": "2012" + }, + { + "id": 30798, + "model_id": 30784, + "year": "2014" + }, + { + "id": 30800, + "model_id": 30784, + "year": "2015" + }, + { + "id": 30802, + "model_id": 30784, + "year": "2016" + }, + { + "id": 30804, + "model_id": 30804, + "year": "2017" + }, + { + "id": 30805, + "model_id": 30805, + "year": "2015" + }, + { + "id": 30806, + "model_id": 30805, + "year": "2016" + }, + { + "id": 30807, + "model_id": 30805, + "year": "2017" + }, + { + "id": 30808, + "model_id": 30808, + "year": "2015" + }, + { + "id": 30809, + "model_id": 30808, + "year": "2016" + }, + { + "id": 30810, + "model_id": 30808, + "year": "2017" + }, + { + "id": 30811, + "model_id": 30811, + "year": "2012" + }, + { + "id": 30813, + "model_id": 30813, + "year": "2012" + }, + { + "id": 30815, + "model_id": 30815, + "year": "2012" + }, + { + "id": 30817, + "model_id": 30817, + "year": "2012" + }, + { + "id": 30819, + "model_id": 30819, + "year": "2011" + }, + { + "id": 30820, + "model_id": 30819, + "year": "2012" + }, + { + "id": 30821, + "model_id": 30819, + "year": "2013" + }, + { + "id": 30822, + "model_id": 30819, + "year": "2014" + }, + { + "id": 30823, + "model_id": 30819, + "year": "2015" + }, + { + "id": 30824, + "model_id": 30819, + "year": "2016" + }, + { + "id": 30825, + "model_id": 30825, + "year": "2011" + }, + { + "id": 30826, + "model_id": 30825, + "year": "2012" + }, + { + "id": 30827, + "model_id": 30825, + "year": "2013" + }, + { + "id": 30828, + "model_id": 30825, + "year": "2014" + }, + { + "id": 30829, + "model_id": 30825, + "year": "2015" + }, + { + "id": 30830, + "model_id": 30825, + "year": "2016" + }, + { + "id": 30831, + "model_id": 30831, + "year": "2010" + }, + { + "id": 30832, + "model_id": 30831, + "year": "2011" + }, + { + "id": 30833, + "model_id": 30831, + "year": "2012" + }, + { + "id": 30834, + "model_id": 30831, + "year": "2013" + }, + { + "id": 30835, + "model_id": 30831, + "year": "2014" + }, + { + "id": 30836, + "model_id": 30831, + "year": "2015" + }, + { + "id": 30837, + "model_id": 30831, + "year": "2016" + }, + { + "id": 30838, + "model_id": 30838, + "year": "2014" + }, + { + "id": 30839, + "model_id": 30838, + "year": "2015" + }, + { + "id": 30840, + "model_id": 30838, + "year": "2016" + }, + { + "id": 30841, + "model_id": 30841, + "year": "2013" + }, + { + "id": 30842, + "model_id": 30841, + "year": "2014" + }, + { + "id": 30843, + "model_id": 30841, + "year": "2015" + }, + { + "id": 30844, + "model_id": 30841, + "year": "2016" + }, + { + "id": 30845, + "model_id": 30845, + "year": "2010" + }, + { + "id": 30846, + "model_id": 30845, + "year": "2011" + }, + { + "id": 30847, + "model_id": 30845, + "year": "2012" + }, + { + "id": 30848, + "model_id": 30845, + "year": "2013" + }, + { + "id": 30849, + "model_id": 30845, + "year": "2014" + }, + { + "id": 30850, + "model_id": 30845, + "year": "2015" + }, + { + "id": 30851, + "model_id": 30845, + "year": "2016" + }, + { + "id": 30852, + "model_id": 30852, + "year": "2014" + }, + { + "id": 30853, + "model_id": 30852, + "year": "2015" + }, + { + "id": 30854, + "model_id": 30852, + "year": "2016" + }, + { + "id": 30855, + "model_id": 30855, + "year": "2012" + }, + { + "id": 30856, + "model_id": 30855, + "year": "2013" + }, + { + "id": 30857, + "model_id": 30857, + "year": "2010" + }, + { + "id": 30858, + "model_id": 30857, + "year": "2011" + }, + { + "id": 30859, + "model_id": 30857, + "year": "2012" + }, + { + "id": 30860, + "model_id": 30857, + "year": "2013" + }, + { + "id": 30861, + "model_id": 30857, + "year": "2014" + }, + { + "id": 30862, + "model_id": 30857, + "year": "2015" + }, + { + "id": 30863, + "model_id": 30857, + "year": "2016" + }, + { + "id": 30864, + "model_id": 30864, + "year": "2014" + }, + { + "id": 30865, + "model_id": 30864, + "year": "2015" + }, + { + "id": 30866, + "model_id": 30864, + "year": "2016" + }, + { + "id": 30867, + "model_id": 30867, + "year": "2012" + }, + { + "id": 30868, + "model_id": 30867, + "year": "2013" + }, + { + "id": 30869, + "model_id": 30867, + "year": "2014" + }, + { + "id": 30870, + "model_id": 30867, + "year": "2015" + }, + { + "id": 30871, + "model_id": 30867, + "year": "2016" + }, + { + "id": 30872, + "model_id": 30872, + "year": "2014" + }, + { + "id": 30873, + "model_id": 30872, + "year": "2015" + }, + { + "id": 30874, + "model_id": 30872, + "year": "2016" + }, + { + "id": 30875, + "model_id": 30875, + "year": "2003" + }, + { + "id": 30877, + "model_id": 30875, + "year": "2004" + }, + { + "id": 30879, + "model_id": 30875, + "year": "2005" + }, + { + "id": 30881, + "model_id": 30881, + "year": "2003" + }, + { + "id": 30883, + "model_id": 30881, + "year": "2004" + }, + { + "id": 30884, + "model_id": 30881, + "year": "2005" + }, + { + "id": 30886, + "model_id": 30886, + "year": "2003" + }, + { + "id": 30888, + "model_id": 30888, + "year": "2004" + }, + { + "id": 30889, + "model_id": 30889, + "year": "2005" + }, + { + "id": 30890, + "model_id": 30890, + "year": "2004" + }, + { + "id": 30892, + "model_id": 30892, + "year": "2004" + }, + { + "id": 30894, + "model_id": 30892, + "year": "2005" + }, + { + "id": 30896, + "model_id": 30896, + "year": "2004" + }, + { + "id": 30898, + "model_id": 30896, + "year": "2005" + }, + { + "id": 30900, + "model_id": 30900, + "year": "2004" + }, + { + "id": 30902, + "model_id": 30900, + "year": "2005" + }, + { + "id": 30904, + "model_id": 30904, + "year": "2005" + }, + { + "id": 30906, + "model_id": 30906, + "year": "2005" + }, + { + "id": 30908, + "model_id": 30906, + "year": "2007" + }, + { + "id": 30910, + "model_id": 30910, + "year": "2005" + }, + { + "id": 30912, + "model_id": 30912, + "year": "2003" + }, + { + "id": 30913, + "model_id": 30913, + "year": "2003" + }, + { + "id": 30915, + "model_id": 30915, + "year": "1998" + }, + { + "id": 30916, + "model_id": 30915, + "year": "1999" + }, + { + "id": 30917, + "model_id": 30917, + "year": "2000" + }, + { + "id": 30918, + "model_id": 30918, + "year": "2013" + }, + { + "id": 30927, + "model_id": 30918, + "year": "2014" + }, + { + "id": 30937, + "model_id": 30918, + "year": "2015" + }, + { + "id": 30947, + "model_id": 30918, + "year": "2016" + }, + { + "id": 30955, + "model_id": 30955, + "year": "2013" + }, + { + "id": 30956, + "model_id": 30955, + "year": "2014" + }, + { + "id": 30957, + "model_id": 30955, + "year": "2015" + }, + { + "id": 30959, + "model_id": 30955, + "year": "2016" + }, + { + "id": 30961, + "model_id": 30961, + "year": "2013" + }, + { + "id": 30962, + "model_id": 30961, + "year": "2014" + }, + { + "id": 30964, + "model_id": 30964, + "year": "2012" + }, + { + "id": 30965, + "model_id": 30965, + "year": "2015" + }, + { + "id": 30967, + "model_id": 30967, + "year": "2015" + }, + { + "id": 30968, + "model_id": 30967, + "year": "2016" + }, + { + "id": 30969, + "model_id": 30967, + "year": "2017" + }, + { + "id": 30970, + "model_id": 30970, + "year": "1987" + }, + { + "id": 30971, + "model_id": 30970, + "year": "1988" + }, + { + "id": 30972, + "model_id": 30972, + "year": "1984" + }, + { + "id": 30976, + "model_id": 30976, + "year": "1985" + }, + { + "id": 30978, + "model_id": 30978, + "year": "1986" + }, + { + "id": 30980, + "model_id": 30980, + "year": "1987" + }, + { + "id": 30986, + "model_id": 30986, + "year": "1986" + }, + { + "id": 30988, + "model_id": 30986, + "year": "1987" + }, + { + "id": 30990, + "model_id": 30990, + "year": "1984" + }, + { + "id": 30999, + "model_id": 30990, + "year": "1985" + }, + { + "id": 31005, + "model_id": 30990, + "year": "1986" + }, + { + "id": 31011, + "model_id": 31011, + "year": "1984" + }, + { + "id": 31017, + "model_id": 31011, + "year": "1985" + }, + { + "id": 31020, + "model_id": 31011, + "year": "1986" + }, + { + "id": 31022, + "model_id": 31022, + "year": "1987" + }, + { + "id": 31023, + "model_id": 31023, + "year": "1987" + }, + { + "id": 31024, + "model_id": 31024, + "year": "1984" + }, + { + "id": 31028, + "model_id": 31028, + "year": "1996" + }, + { + "id": 31029, + "model_id": 31028, + "year": "1997" + }, + { + "id": 31030, + "model_id": 31030, + "year": "1997" + }, + { + "id": 31032, + "model_id": 31032, + "year": "1994" + }, + { + "id": 31033, + "model_id": 31032, + "year": "1995" + }, + { + "id": 31034, + "model_id": 31032, + "year": "1996" + }, + { + "id": 31035, + "model_id": 31035, + "year": "1993" + }, + { + "id": 31036, + "model_id": 31036, + "year": "1984" + }, + { + "id": 31038, + "model_id": 31036, + "year": "1985" + }, + { + "id": 31039, + "model_id": 31036, + "year": "1986" + }, + { + "id": 31040, + "model_id": 31036, + "year": "1987" + }, + { + "id": 31041, + "model_id": 31041, + "year": "1987" + }, + { + "id": 31044, + "model_id": 31041, + "year": "1988" + }, + { + "id": 31045, + "model_id": 31041, + "year": "1989" + }, + { + "id": 31046, + "model_id": 31041, + "year": "1990" + }, + { + "id": 31047, + "model_id": 31041, + "year": "1991" + }, + { + "id": 31048, + "model_id": 31041, + "year": "1992" + }, + { + "id": 31049, + "model_id": 31041, + "year": "1993" + }, + { + "id": 31050, + "model_id": 31041, + "year": "1994" + }, + { + "id": 31051, + "model_id": 31041, + "year": "1995" + }, + { + "id": 31052, + "model_id": 31052, + "year": "1995" + }, + { + "id": 31053, + "model_id": 31053, + "year": "1993" + }, + { + "id": 31054, + "model_id": 31053, + "year": "1994" + }, + { + "id": 31055, + "model_id": 31053, + "year": "1995" + }, + { + "id": 31056, + "model_id": 31053, + "year": "1996" + }, + { + "id": 31057, + "model_id": 31053, + "year": "1997" + }, + { + "id": 31058, + "model_id": 31058, + "year": "1997" + }, + { + "id": 31059, + "model_id": 31059, + "year": "1984" + }, + { + "id": 31061, + "model_id": 31059, + "year": "2000" + }, + { + "id": 31062, + "model_id": 31059, + "year": "2001" + }, + { + "id": 31063, + "model_id": 31063, + "year": "1987" + }, + { + "id": 31066, + "model_id": 31063, + "year": "1988" + }, + { + "id": 31067, + "model_id": 31063, + "year": "1989" + }, + { + "id": 31068, + "model_id": 31068, + "year": "1986" + }, + { + "id": 31069, + "model_id": 31069, + "year": "1990" + }, + { + "id": 31070, + "model_id": 31069, + "year": "1991" + }, + { + "id": 31071, + "model_id": 31071, + "year": "1992" + }, + { + "id": 31072, + "model_id": 31071, + "year": "1993" + }, + { + "id": 31073, + "model_id": 31071, + "year": "1994" + }, + { + "id": 31074, + "model_id": 31071, + "year": "1995" + }, + { + "id": 31075, + "model_id": 31075, + "year": "1995" + }, + { + "id": 31076, + "model_id": 31076, + "year": "1985" + }, + { + "id": 31077, + "model_id": 31077, + "year": "2016" + }, + { + "id": 31078, + "model_id": 31078, + "year": "1987" + }, + { + "id": 31081, + "model_id": 31078, + "year": "1988" + }, + { + "id": 31082, + "model_id": 31078, + "year": "1989" + }, + { + "id": 31083, + "model_id": 31078, + "year": "1990" + }, + { + "id": 31084, + "model_id": 31084, + "year": "1991" + }, + { + "id": 31085, + "model_id": 31085, + "year": "1992" + }, + { + "id": 31086, + "model_id": 31086, + "year": "1995" + }, + { + "id": 31087, + "model_id": 31087, + "year": "2010" + }, + { + "id": 31088, + "model_id": 31087, + "year": "2011" + }, + { + "id": 31089, + "model_id": 31087, + "year": "2012" + }, + { + "id": 31090, + "model_id": 31087, + "year": "2013" + }, + { + "id": 31091, + "model_id": 31087, + "year": "2014" + }, + { + "id": 31092, + "model_id": 31087, + "year": "2015" + }, + { + "id": 31093, + "model_id": 31087, + "year": "2016" + }, + { + "id": 31094, + "model_id": 31094, + "year": "2012" + }, + { + "id": 31095, + "model_id": 31094, + "year": "2013" + }, + { + "id": 31096, + "model_id": 31094, + "year": "2014" + }, + { + "id": 31097, + "model_id": 31094, + "year": "2015" + }, + { + "id": 31098, + "model_id": 31094, + "year": "2016" + }, + { + "id": 31099, + "model_id": 31099, + "year": "1996" + }, + { + "id": 31100, + "model_id": 31099, + "year": "1997" + }, + { + "id": 31101, + "model_id": 31101, + "year": "1997" + }, + { + "id": 31102, + "model_id": 31101, + "year": "2001" + }, + { + "id": 31103, + "model_id": 31101, + "year": "2002" + }, + { + "id": 31104, + "model_id": 31104, + "year": "2004" + }, + { + "id": 31105, + "model_id": 31104, + "year": "2005" + }, + { + "id": 31106, + "model_id": 31104, + "year": "2006" + }, + { + "id": 31107, + "model_id": 31104, + "year": "2007" + }, + { + "id": 31108, + "model_id": 31104, + "year": "2008" + }, + { + "id": 31109, + "model_id": 31104, + "year": "2009" + }, + { + "id": 31110, + "model_id": 31104, + "year": "2010" + }, + { + "id": 31111, + "model_id": 31104, + "year": "2011" + }, + { + "id": 31112, + "model_id": 31104, + "year": "2012" + }, + { + "id": 31113, + "model_id": 31104, + "year": "2013" + }, + { + "id": 31114, + "model_id": 31104, + "year": "2014" + }, + { + "id": 31115, + "model_id": 31104, + "year": "2015" + }, + { + "id": 31116, + "model_id": 31104, + "year": "2016" + }, + { + "id": 31117, + "model_id": 31104, + "year": "2017" + }, + { + "id": 31118, + "model_id": 31118, + "year": "2009" + }, + { + "id": 31119, + "model_id": 31118, + "year": "2010" + }, + { + "id": 31120, + "model_id": 31118, + "year": "2011" + }, + { + "id": 31121, + "model_id": 31118, + "year": "2012" + }, + { + "id": 31122, + "model_id": 31118, + "year": "2013" + }, + { + "id": 31123, + "model_id": 31118, + "year": "2014" + }, + { + "id": 31124, + "model_id": 31118, + "year": "2015" + }, + { + "id": 31125, + "model_id": 31118, + "year": "2016" + }, + { + "id": 31126, + "model_id": 31118, + "year": "2017" + }, + { + "id": 31127, + "model_id": 31127, + "year": "2008" + }, + { + "id": 31128, + "model_id": 31127, + "year": "2009" + }, + { + "id": 31129, + "model_id": 31127, + "year": "2010" + }, + { + "id": 31130, + "model_id": 31127, + "year": "2011" + }, + { + "id": 31131, + "model_id": 31127, + "year": "2012" + }, + { + "id": 31132, + "model_id": 31127, + "year": "2013" + }, + { + "id": 31133, + "model_id": 31127, + "year": "2014" + }, + { + "id": 31134, + "model_id": 31127, + "year": "2015" + }, + { + "id": 31135, + "model_id": 31127, + "year": "2016" + }, + { + "id": 31136, + "model_id": 31127, + "year": "2017" + }, + { + "id": 31137, + "model_id": 31137, + "year": "2007" + }, + { + "id": 31138, + "model_id": 31137, + "year": "2008" + }, + { + "id": 31139, + "model_id": 31137, + "year": "2009" + }, + { + "id": 31140, + "model_id": 31137, + "year": "2010" + }, + { + "id": 31141, + "model_id": 31137, + "year": "2011" + }, + { + "id": 31142, + "model_id": 31137, + "year": "2012" + }, + { + "id": 31143, + "model_id": 31137, + "year": "2013" + }, + { + "id": 31144, + "model_id": 31137, + "year": "2014" + }, + { + "id": 31145, + "model_id": 31137, + "year": "2015" + }, + { + "id": 31146, + "model_id": 31137, + "year": "2016" + }, + { + "id": 31147, + "model_id": 31137, + "year": "2017" + }, + { + "id": 31148, + "model_id": 31148, + "year": "1997" + }, + { + "id": 31149, + "model_id": 31149, + "year": "1999" + }, + { + "id": 31150, + "model_id": 31149, + "year": "2001" + }, + { + "id": 31151, + "model_id": 31149, + "year": "2002" + }, + { + "id": 31152, + "model_id": 31152, + "year": "1990" + }, + { + "id": 31153, + "model_id": 31152, + "year": "1991" + }, + { + "id": 31154, + "model_id": 31152, + "year": "1992" + }, + { + "id": 31155, + "model_id": 31152, + "year": "1993" + }, + { + "id": 31156, + "model_id": 31156, + "year": "1994" + }, + { + "id": 31157, + "model_id": 31157, + "year": "1987" + }, + { + "id": 31160, + "model_id": 31157, + "year": "1988" + }, + { + "id": 31161, + "model_id": 31157, + "year": "1989" + }, + { + "id": 31162, + "model_id": 31162, + "year": "1984" + }, + { + "id": 31164, + "model_id": 31162, + "year": "1985" + }, + { + "id": 31165, + "model_id": 31162, + "year": "1986" + }, + { + "id": 31166, + "model_id": 31166, + "year": "1997" + }, + { + "id": 31167, + "model_id": 31166, + "year": "1998" + }, + { + "id": 31168, + "model_id": 31166, + "year": "1999" + }, + { + "id": 31169, + "model_id": 31169, + "year": "1993" + }, + { + "id": 31170, + "model_id": 31170, + "year": "1994" + }, + { + "id": 31171, + "model_id": 31170, + "year": "1995" + }, + { + "id": 31172, + "model_id": 31172, + "year": "1984" + }, + { + "id": 31174, + "model_id": 31172, + "year": "1985" + }, + { + "id": 31175, + "model_id": 31172, + "year": "1986" + }, + { + "id": 31176, + "model_id": 31172, + "year": "1987" + }, + { + "id": 31179, + "model_id": 31172, + "year": "1988" + }, + { + "id": 31180, + "model_id": 31172, + "year": "1996" + }, + { + "id": 31181, + "model_id": 31172, + "year": "1997" + }, + { + "id": 31182, + "model_id": 31182, + "year": "1998" + }, + { + "id": 31183, + "model_id": 31182, + "year": "1999" + }, + { + "id": 31184, + "model_id": 31184, + "year": "1996" + }, + { + "id": 31185, + "model_id": 31185, + "year": "1995" + }, + { + "id": 31186, + "model_id": 31186, + "year": "1989" + }, + { + "id": 31187, + "model_id": 31186, + "year": "1991" + }, + { + "id": 31188, + "model_id": 31186, + "year": "1997" + }, + { + "id": 31189, + "model_id": 31189, + "year": "1995" + }, + { + "id": 31190, + "model_id": 31190, + "year": "1992" + }, + { + "id": 31191, + "model_id": 31190, + "year": "1993" + }, + { + "id": 31192, + "model_id": 31192, + "year": "1994" + }, + { + "id": 31193, + "model_id": 31192, + "year": "1996" + }, + { + "id": 31194, + "model_id": 31194, + "year": "2014" + }, + { + "id": 31195, + "model_id": 31194, + "year": "2015" + }, + { + "id": 31196, + "model_id": 31194, + "year": "2016" + }, + { + "id": 31197, + "model_id": 31197, + "year": "2006" + }, + { + "id": 31198, + "model_id": 31198, + "year": "2014" + }, + { + "id": 31202, + "model_id": 31198, + "year": "2016" + }, + { + "id": 31204, + "model_id": 31204, + "year": "2014" + }, + { + "id": 31205, + "model_id": 31205, + "year": "2006" + }, + { + "id": 31207, + "model_id": 31207, + "year": "2006" + }, + { + "id": 31209, + "model_id": 31209, + "year": "2006" + }, + { + "id": 31211, + "model_id": 31211, + "year": "2007" + }, + { + "id": 31213, + "model_id": 31211, + "year": "2008" + }, + { + "id": 31215, + "model_id": 31215, + "year": "2007" + }, + { + "id": 31217, + "model_id": 31215, + "year": "2008" + }, + { + "id": 31219, + "model_id": 31219, + "year": "2007" + }, + { + "id": 31221, + "model_id": 31219, + "year": "2008" + }, + { + "id": 31223, + "model_id": 31223, + "year": "2001" + }, + { + "id": 31225, + "model_id": 31223, + "year": "2002" + }, + { + "id": 31227, + "model_id": 31223, + "year": "2003" + }, + { + "id": 31229, + "model_id": 31223, + "year": "2004" + }, + { + "id": 31230, + "model_id": 31223, + "year": "2006" + }, + { + "id": 31231, + "model_id": 31223, + "year": "2007" + }, + { + "id": 31232, + "model_id": 31223, + "year": "2008" + }, + { + "id": 31234, + "model_id": 31223, + "year": "2009" + }, + { + "id": 31236, + "model_id": 31223, + "year": "2010" + }, + { + "id": 31238, + "model_id": 31223, + "year": "2011" + }, + { + "id": 31239, + "model_id": 31223, + "year": "2012" + }, + { + "id": 31241, + "model_id": 31223, + "year": "2013" + }, + { + "id": 31243, + "model_id": 31223, + "year": "2014" + }, + { + "id": 31245, + "model_id": 31223, + "year": "2015" + }, + { + "id": 31247, + "model_id": 31223, + "year": "2016" + }, + { + "id": 31249, + "model_id": 31249, + "year": "2007" + }, + { + "id": 31250, + "model_id": 31250, + "year": "1987" + }, + { + "id": 31252, + "model_id": 31250, + "year": "1988" + }, + { + "id": 31253, + "model_id": 31253, + "year": "1984" + }, + { + "id": 31254, + "model_id": 31254, + "year": "1984" + }, + { + "id": 31262, + "model_id": 31254, + "year": "1985" + }, + { + "id": 31266, + "model_id": 31254, + "year": "1986" + }, + { + "id": 31271, + "model_id": 31254, + "year": "1987" + }, + { + "id": 31278, + "model_id": 31254, + "year": "1988" + }, + { + "id": 31285, + "model_id": 31254, + "year": "1989" + }, + { + "id": 31290, + "model_id": 31254, + "year": "1990" + }, + { + "id": 31296, + "model_id": 31254, + "year": "1991" + }, + { + "id": 31301, + "model_id": 31254, + "year": "1992" + }, + { + "id": 31305, + "model_id": 31254, + "year": "1993" + }, + { + "id": 31310, + "model_id": 31254, + "year": "1994" + }, + { + "id": 31314, + "model_id": 31254, + "year": "1995" + }, + { + "id": 31319, + "model_id": 31254, + "year": "1996" + }, + { + "id": 31324, + "model_id": 31254, + "year": "1997" + }, + { + "id": 31329, + "model_id": 31329, + "year": "1986" + }, + { + "id": 31330, + "model_id": 31329, + "year": "1987" + }, + { + "id": 31335, + "model_id": 31329, + "year": "1988" + }, + { + "id": 31339, + "model_id": 31329, + "year": "1989" + }, + { + "id": 31343, + "model_id": 31329, + "year": "1990" + }, + { + "id": 31349, + "model_id": 31329, + "year": "1991" + }, + { + "id": 31353, + "model_id": 31329, + "year": "1992" + }, + { + "id": 31357, + "model_id": 31329, + "year": "1993" + }, + { + "id": 31362, + "model_id": 31329, + "year": "1994" + }, + { + "id": 31367, + "model_id": 31329, + "year": "1995" + }, + { + "id": 31373, + "model_id": 31329, + "year": "1996" + }, + { + "id": 31377, + "model_id": 31329, + "year": "1997" + }, + { + "id": 31382, + "model_id": 31329, + "year": "1998" + }, + { + "id": 31384, + "model_id": 31384, + "year": "2005" + }, + { + "id": 31388, + "model_id": 31388, + "year": "2006" + }, + { + "id": 31392, + "model_id": 31392, + "year": "1999" + }, + { + "id": 31395, + "model_id": 31392, + "year": "2000" + }, + { + "id": 31399, + "model_id": 31392, + "year": "2001" + }, + { + "id": 31403, + "model_id": 31392, + "year": "2002" + }, + { + "id": 31405, + "model_id": 31405, + "year": "2008" + }, + { + "id": 31407, + "model_id": 31405, + "year": "2009" + }, + { + "id": 31411, + "model_id": 31411, + "year": "2008" + }, + { + "id": 31413, + "model_id": 31411, + "year": "2009" + }, + { + "id": 31417, + "model_id": 31417, + "year": "1999" + }, + { + "id": 31420, + "model_id": 31417, + "year": "2000" + }, + { + "id": 31424, + "model_id": 31417, + "year": "2001" + }, + { + "id": 31428, + "model_id": 31417, + "year": "2002" + }, + { + "id": 31430, + "model_id": 31417, + "year": "2003" + }, + { + "id": 31432, + "model_id": 31417, + "year": "2004" + }, + { + "id": 31435, + "model_id": 31417, + "year": "2005" + }, + { + "id": 31437, + "model_id": 31417, + "year": "2006" + }, + { + "id": 31441, + "model_id": 31417, + "year": "2007" + }, + { + "id": 31445, + "model_id": 31417, + "year": "2008" + }, + { + "id": 31449, + "model_id": 31417, + "year": "2009" + }, + { + "id": 31453, + "model_id": 31417, + "year": "2010" + }, + { + "id": 31455, + "model_id": 31417, + "year": "2011" + }, + { + "id": 31457, + "model_id": 31417, + "year": "2012" + }, + { + "id": 31459, + "model_id": 31459, + "year": "2010" + }, + { + "id": 31462, + "model_id": 31459, + "year": "2011" + }, + { + "id": 31464, + "model_id": 31459, + "year": "2012" + }, + { + "id": 31466, + "model_id": 31466, + "year": "2003" + }, + { + "id": 31470, + "model_id": 31466, + "year": "2004" + }, + { + "id": 31475, + "model_id": 31466, + "year": "2005" + }, + { + "id": 31479, + "model_id": 31466, + "year": "2006" + }, + { + "id": 31483, + "model_id": 31466, + "year": "2007" + }, + { + "id": 31487, + "model_id": 31466, + "year": "2008" + }, + { + "id": 31491, + "model_id": 31466, + "year": "2009" + }, + { + "id": 31495, + "model_id": 31466, + "year": "2010" + }, + { + "id": 31497, + "model_id": 31466, + "year": "2011" + }, + { + "id": 31499, + "model_id": 31466, + "year": "2012" + }, + { + "id": 31501, + "model_id": 31501, + "year": "2006" + }, + { + "id": 31505, + "model_id": 31501, + "year": "2007" + }, + { + "id": 31509, + "model_id": 31501, + "year": "2008" + }, + { + "id": 31513, + "model_id": 31501, + "year": "2009" + }, + { + "id": 31517, + "model_id": 31501, + "year": "2010" + }, + { + "id": 31519, + "model_id": 31501, + "year": "2011" + }, + { + "id": 31521, + "model_id": 31501, + "year": "2012" + }, + { + "id": 31523, + "model_id": 31523, + "year": "1999" + }, + { + "id": 31524, + "model_id": 31523, + "year": "2000" + }, + { + "id": 31525, + "model_id": 31523, + "year": "2001" + }, + { + "id": 31526, + "model_id": 31523, + "year": "2002" + }, + { + "id": 31527, + "model_id": 31527, + "year": "2000" + }, + { + "id": 31528, + "model_id": 31527, + "year": "2001" + }, + { + "id": 31529, + "model_id": 31527, + "year": "2002" + }, + { + "id": 31530, + "model_id": 31530, + "year": "2010" + }, + { + "id": 31533, + "model_id": 31530, + "year": "2011" + }, + { + "id": 31535, + "model_id": 31530, + "year": "2012" + }, + { + "id": 31537, + "model_id": 31537, + "year": "2011" + }, + { + "id": 31540, + "model_id": 31537, + "year": "2012" + }, + { + "id": 31543, + "model_id": 31543, + "year": "1999" + }, + { + "id": 31546, + "model_id": 31543, + "year": "2000" + }, + { + "id": 31551, + "model_id": 31543, + "year": "2001" + }, + { + "id": 31556, + "model_id": 31543, + "year": "2002" + }, + { + "id": 31561, + "model_id": 31543, + "year": "2003" + }, + { + "id": 31566, + "model_id": 31543, + "year": "2004" + }, + { + "id": 31570, + "model_id": 31543, + "year": "2005" + }, + { + "id": 31572, + "model_id": 31543, + "year": "2006" + }, + { + "id": 31574, + "model_id": 31574, + "year": "2007" + }, + { + "id": 31576, + "model_id": 31574, + "year": "2008" + }, + { + "id": 31578, + "model_id": 31574, + "year": "2009" + }, + { + "id": 31580, + "model_id": 31574, + "year": "2010" + }, + { + "id": 31581, + "model_id": 31574, + "year": "2011" + }, + { + "id": 31584, + "model_id": 31574, + "year": "2012" + }, + { + "id": 31587, + "model_id": 31587, + "year": "2006" + }, + { + "id": 31589, + "model_id": 31587, + "year": "2007" + }, + { + "id": 31591, + "model_id": 31587, + "year": "2008" + }, + { + "id": 31593, + "model_id": 31587, + "year": "2009" + }, + { + "id": 31595, + "model_id": 31595, + "year": "1999" + }, + { + "id": 31598, + "model_id": 31595, + "year": "2000" + }, + { + "id": 31603, + "model_id": 31595, + "year": "2001" + }, + { + "id": 31608, + "model_id": 31595, + "year": "2002" + }, + { + "id": 31613, + "model_id": 31595, + "year": "2003" + }, + { + "id": 31618, + "model_id": 31595, + "year": "2004" + }, + { + "id": 31624, + "model_id": 31595, + "year": "2005" + }, + { + "id": 31626, + "model_id": 31626, + "year": "2005" + }, + { + "id": 31628, + "model_id": 31626, + "year": "2006" + }, + { + "id": 31630, + "model_id": 31626, + "year": "2007" + }, + { + "id": 31632, + "model_id": 31626, + "year": "2008" + }, + { + "id": 31635, + "model_id": 31626, + "year": "2009" + }, + { + "id": 31638, + "model_id": 31638, + "year": "1987" + }, + { + "id": 31640, + "model_id": 31638, + "year": "1988" + }, + { + "id": 31642, + "model_id": 31638, + "year": "1989" + }, + { + "id": 31644, + "model_id": 31638, + "year": "1990" + }, + { + "id": 31646, + "model_id": 31638, + "year": "1991" + }, + { + "id": 31648, + "model_id": 31638, + "year": "1992" + }, + { + "id": 31652, + "model_id": 31638, + "year": "1995" + }, + { + "id": 31657, + "model_id": 31638, + "year": "1996" + }, + { + "id": 31662, + "model_id": 31638, + "year": "1997" + }, + { + "id": 31667, + "model_id": 31667, + "year": "1998" + }, + { + "id": 31671, + "model_id": 31671, + "year": "1998" + }, + { + "id": 31673, + "model_id": 31673, + "year": "1998" + }, + { + "id": 31675, + "model_id": 31675, + "year": "1998" + }, + { + "id": 31677, + "model_id": 31677, + "year": "1993" + }, + { + "id": 31681, + "model_id": 31677, + "year": "1994" + }, + { + "id": 31686, + "model_id": 31686, + "year": "1993" + }, + { + "id": 31687, + "model_id": 31687, + "year": "1994" + }, + { + "id": 31688, + "model_id": 31687, + "year": "1995" + }, + { + "id": 31689, + "model_id": 31689, + "year": "1989" + }, + { + "id": 31690, + "model_id": 31689, + "year": "1990" + }, + { + "id": 31691, + "model_id": 31691, + "year": "2008" + }, + { + "id": 31692, + "model_id": 31692, + "year": "2008" + }, + { + "id": 31694, + "model_id": 31692, + "year": "2009" + }, + { + "id": 31695, + "model_id": 31695, + "year": "2008" + }, + { + "id": 31696, + "model_id": 31696, + "year": "2008" + }, + { + "id": 31698, + "model_id": 31696, + "year": "2009" + }, + { + "id": 31700, + "model_id": 31700, + "year": "2008" + }, + { + "id": 31702, + "model_id": 31700, + "year": "2009" + }, + { + "id": 31704, + "model_id": 31704, + "year": "2007" + }, + { + "id": 31706, + "model_id": 31704, + "year": "2008" + }, + { + "id": 31709, + "model_id": 31704, + "year": "2009" + }, + { + "id": 31711, + "model_id": 31704, + "year": "2010" + }, + { + "id": 31714, + "model_id": 31714, + "year": "2007" + }, + { + "id": 31715, + "model_id": 31714, + "year": "2008" + }, + { + "id": 31716, + "model_id": 31714, + "year": "2009" + }, + { + "id": 31717, + "model_id": 31717, + "year": "2003" + }, + { + "id": 31720, + "model_id": 31717, + "year": "2004" + }, + { + "id": 31724, + "model_id": 31717, + "year": "2005" + }, + { + "id": 31727, + "model_id": 31717, + "year": "2006" + }, + { + "id": 31732, + "model_id": 31717, + "year": "2007" + }, + { + "id": 31737, + "model_id": 31737, + "year": "2001" + }, + { + "id": 31739, + "model_id": 31737, + "year": "2002" + }, + { + "id": 31741, + "model_id": 31741, + "year": "2003" + }, + { + "id": 31743, + "model_id": 31743, + "year": "2001" + }, + { + "id": 31744, + "model_id": 31743, + "year": "2002" + }, + { + "id": 31745, + "model_id": 31743, + "year": "2003" + }, + { + "id": 31746, + "model_id": 31743, + "year": "2004" + }, + { + "id": 31748, + "model_id": 31743, + "year": "2005" + }, + { + "id": 31749, + "model_id": 31749, + "year": "2000" + }, + { + "id": 31752, + "model_id": 31752, + "year": "2000" + }, + { + "id": 31754, + "model_id": 31754, + "year": "2001" + }, + { + "id": 31756, + "model_id": 31754, + "year": "2002" + }, + { + "id": 31758, + "model_id": 31754, + "year": "2003" + }, + { + "id": 31760, + "model_id": 31760, + "year": "2001" + }, + { + "id": 31761, + "model_id": 31760, + "year": "2002" + }, + { + "id": 31762, + "model_id": 31760, + "year": "2003" + }, + { + "id": 31763, + "model_id": 31760, + "year": "2004" + }, + { + "id": 31765, + "model_id": 31760, + "year": "2005" + }, + { + "id": 31766, + "model_id": 31766, + "year": "2007" + }, + { + "id": 31768, + "model_id": 31766, + "year": "2008" + }, + { + "id": 31770, + "model_id": 31766, + "year": "2009" + }, + { + "id": 31772, + "model_id": 31766, + "year": "2010" + }, + { + "id": 31774, + "model_id": 31774, + "year": "2005" + }, + { + "id": 31776, + "model_id": 31774, + "year": "2006" + }, + { + "id": 31779, + "model_id": 31774, + "year": "2007" + }, + { + "id": 31781, + "model_id": 31781, + "year": "1991" + }, + { + "id": 31783, + "model_id": 31781, + "year": "1992" + }, + { + "id": 31785, + "model_id": 31781, + "year": "1993" + }, + { + "id": 31789, + "model_id": 31781, + "year": "1994" + }, + { + "id": 31793, + "model_id": 31781, + "year": "1995" + }, + { + "id": 31797, + "model_id": 31781, + "year": "1996" + }, + { + "id": 31801, + "model_id": 31781, + "year": "1997" + }, + { + "id": 31805, + "model_id": 31781, + "year": "1998" + }, + { + "id": 31809, + "model_id": 31781, + "year": "1999" + }, + { + "id": 31813, + "model_id": 31781, + "year": "2000" + }, + { + "id": 31817, + "model_id": 31781, + "year": "2001" + }, + { + "id": 31821, + "model_id": 31781, + "year": "2002" + }, + { + "id": 31825, + "model_id": 31825, + "year": "2007" + }, + { + "id": 31829, + "model_id": 31825, + "year": "2008" + }, + { + "id": 31833, + "model_id": 31825, + "year": "2009" + }, + { + "id": 31837, + "model_id": 31825, + "year": "2010" + }, + { + "id": 31841, + "model_id": 31841, + "year": "1991" + }, + { + "id": 31845, + "model_id": 31841, + "year": "1992" + }, + { + "id": 31849, + "model_id": 31841, + "year": "1993" + }, + { + "id": 31853, + "model_id": 31841, + "year": "1994" + }, + { + "id": 31857, + "model_id": 31841, + "year": "1995" + }, + { + "id": 31861, + "model_id": 31841, + "year": "1996" + }, + { + "id": 31865, + "model_id": 31841, + "year": "1997" + }, + { + "id": 31869, + "model_id": 31841, + "year": "1998" + }, + { + "id": 31873, + "model_id": 31841, + "year": "1999" + }, + { + "id": 31877, + "model_id": 31841, + "year": "2000" + }, + { + "id": 31881, + "model_id": 31841, + "year": "2001" + }, + { + "id": 31885, + "model_id": 31841, + "year": "2002" + }, + { + "id": 31889, + "model_id": 31889, + "year": "1993" + }, + { + "id": 31893, + "model_id": 31889, + "year": "1994" + }, + { + "id": 31897, + "model_id": 31889, + "year": "1995" + }, + { + "id": 31901, + "model_id": 31889, + "year": "1996" + }, + { + "id": 31905, + "model_id": 31889, + "year": "1997" + }, + { + "id": 31909, + "model_id": 31889, + "year": "1998" + }, + { + "id": 31913, + "model_id": 31889, + "year": "1999" + }, + { + "id": 31917, + "model_id": 31889, + "year": "2000" + }, + { + "id": 31920, + "model_id": 31889, + "year": "2001" + }, + { + "id": 31923, + "model_id": 31923, + "year": "2002" + }, + { + "id": 31927, + "model_id": 31923, + "year": "2003" + }, + { + "id": 31932, + "model_id": 31923, + "year": "2004" + }, + { + "id": 31937, + "model_id": 31923, + "year": "2005" + }, + { + "id": 31943, + "model_id": 31923, + "year": "2006" + }, + { + "id": 31947, + "model_id": 31923, + "year": "2007" + }, + { + "id": 31951, + "model_id": 31923, + "year": "2008" + }, + { + "id": 31957, + "model_id": 31923, + "year": "2009" + }, + { + "id": 31963, + "model_id": 31923, + "year": "2010" + }, + { + "id": 31969, + "model_id": 31969, + "year": "2007" + }, + { + "id": 31970, + "model_id": 31969, + "year": "2008" + }, + { + "id": 31971, + "model_id": 31969, + "year": "2009" + }, + { + "id": 31973, + "model_id": 31969, + "year": "2010" + }, + { + "id": 31974, + "model_id": 31974, + "year": "2013" + }, + { + "id": 31976, + "model_id": 31974, + "year": "2014" + }, + { + "id": 31978, + "model_id": 31974, + "year": "2015" + }, + { + "id": 31980, + "model_id": 31974, + "year": "2016" + }, + { + "id": 31982, + "model_id": 31982, + "year": "2016" + }, + { + "id": 31984, + "model_id": 31984, + "year": "2016" + }, + { + "id": 31986, + "model_id": 31986, + "year": "2011" + }, + { + "id": 31987, + "model_id": 31986, + "year": "2012" + }, + { + "id": 31988, + "model_id": 31986, + "year": "2013" + }, + { + "id": 31989, + "model_id": 31986, + "year": "2014" + }, + { + "id": 31990, + "model_id": 31986, + "year": "2015" + }, + { + "id": 31991, + "model_id": 31991, + "year": "2013" + }, + { + "id": 31992, + "model_id": 31992, + "year": "2005" + }, + { + "id": 31994, + "model_id": 31992, + "year": "2006" + }, + { + "id": 31996, + "model_id": 31992, + "year": "2007" + }, + { + "id": 31998, + "model_id": 31992, + "year": "2008" + }, + { + "id": 32000, + "model_id": 31992, + "year": "2009" + }, + { + "id": 32002, + "model_id": 31992, + "year": "2010" + }, + { + "id": 32004, + "model_id": 31992, + "year": "2011" + }, + { + "id": 32006, + "model_id": 31992, + "year": "2012" + }, + { + "id": 32008, + "model_id": 31992, + "year": "2013" + }, + { + "id": 32010, + "model_id": 31992, + "year": "2014" + }, + { + "id": 32012, + "model_id": 31992, + "year": "2015" + }, + { + "id": 32014, + "model_id": 31992, + "year": "2016" + }, + { + "id": 32016, + "model_id": 32016, + "year": "2004" + }, + { + "id": 32018, + "model_id": 32016, + "year": "2005" + }, + { + "id": 32020, + "model_id": 32016, + "year": "2006" + }, + { + "id": 32022, + "model_id": 32022, + "year": "2004" + }, + { + "id": 32024, + "model_id": 32022, + "year": "2005" + }, + { + "id": 32026, + "model_id": 32022, + "year": "2006" + }, + { + "id": 32028, + "model_id": 32022, + "year": "2008" + }, + { + "id": 32030, + "model_id": 32022, + "year": "2009" + }, + { + "id": 32032, + "model_id": 32022, + "year": "2010" + }, + { + "id": 32034, + "model_id": 32022, + "year": "2011" + }, + { + "id": 32036, + "model_id": 32022, + "year": "2012" + }, + { + "id": 32038, + "model_id": 32022, + "year": "2013" + }, + { + "id": 32040, + "model_id": 32022, + "year": "2014" + }, + { + "id": 32042, + "model_id": 32022, + "year": "2015" + }, + { + "id": 32044, + "model_id": 32044, + "year": "2008" + }, + { + "id": 32046, + "model_id": 32044, + "year": "2009" + }, + { + "id": 32048, + "model_id": 32044, + "year": "2010" + }, + { + "id": 32050, + "model_id": 32044, + "year": "2011" + }, + { + "id": 32052, + "model_id": 32044, + "year": "2012" + }, + { + "id": 32054, + "model_id": 32044, + "year": "2013" + }, + { + "id": 32056, + "model_id": 32044, + "year": "2014" + }, + { + "id": 32058, + "model_id": 32058, + "year": "2008" + }, + { + "id": 32059, + "model_id": 32059, + "year": "2010" + }, + { + "id": 32060, + "model_id": 32059, + "year": "2011" + }, + { + "id": 32061, + "model_id": 32059, + "year": "2012" + }, + { + "id": 32062, + "model_id": 32059, + "year": "2013" + }, + { + "id": 32063, + "model_id": 32059, + "year": "2014" + }, + { + "id": 32064, + "model_id": 32059, + "year": "2015" + }, + { + "id": 32065, + "model_id": 32065, + "year": "2008" + }, + { + "id": 32066, + "model_id": 32065, + "year": "2009" + }, + { + "id": 32067, + "model_id": 32067, + "year": "2008" + }, + { + "id": 32068, + "model_id": 32067, + "year": "2009" + }, + { + "id": 32069, + "model_id": 32067, + "year": "2010" + }, + { + "id": 32070, + "model_id": 32067, + "year": "2011" + }, + { + "id": 32071, + "model_id": 32067, + "year": "2012" + }, + { + "id": 32072, + "model_id": 32067, + "year": "2013" + }, + { + "id": 32073, + "model_id": 32067, + "year": "2014" + }, + { + "id": 32074, + "model_id": 32067, + "year": "2015" + }, + { + "id": 32075, + "model_id": 32067, + "year": "2016" + }, + { + "id": 32077, + "model_id": 32077, + "year": "2011" + }, + { + "id": 32078, + "model_id": 32078, + "year": "2013" + }, + { + "id": 32079, + "model_id": 32078, + "year": "2014" + }, + { + "id": 32080, + "model_id": 32078, + "year": "2015" + }, + { + "id": 32081, + "model_id": 32078, + "year": "2016" + }, + { + "id": 32082, + "model_id": 32082, + "year": "2011" + }, + { + "id": 32083, + "model_id": 32082, + "year": "2013" + }, + { + "id": 32084, + "model_id": 32082, + "year": "2014" + }, + { + "id": 32085, + "model_id": 32082, + "year": "2015" + }, + { + "id": 32086, + "model_id": 32082, + "year": "2016" + }, + { + "id": 32087, + "model_id": 32087, + "year": "2009" + }, + { + "id": 32088, + "model_id": 32088, + "year": "2010" + }, + { + "id": 32089, + "model_id": 32088, + "year": "2011" + }, + { + "id": 32090, + "model_id": 32090, + "year": "2007" + }, + { + "id": 32091, + "model_id": 32091, + "year": "2007" + }, + { + "id": 32092, + "model_id": 32092, + "year": "2005" + }, + { + "id": 32093, + "model_id": 32092, + "year": "2006" + }, + { + "id": 32094, + "model_id": 32092, + "year": "2007" + }, + { + "id": 32095, + "model_id": 32095, + "year": "2005" + }, + { + "id": 32096, + "model_id": 32095, + "year": "2006" + }, + { + "id": 32097, + "model_id": 32095, + "year": "2007" + }, + { + "id": 32098, + "model_id": 32098, + "year": "2005" + }, + { + "id": 32099, + "model_id": 32098, + "year": "2006" + }, + { + "id": 32100, + "model_id": 32100, + "year": "2013" + }, + { + "id": 32101, + "model_id": 32100, + "year": "2014" + }, + { + "id": 32102, + "model_id": 32102, + "year": "1987" + }, + { + "id": 32104, + "model_id": 32102, + "year": "1988" + }, + { + "id": 32106, + "model_id": 32106, + "year": "1988" + }, + { + "id": 32108, + "model_id": 32106, + "year": "1989" + }, + { + "id": 32110, + "model_id": 32106, + "year": "1990" + }, + { + "id": 32112, + "model_id": 32106, + "year": "1991" + }, + { + "id": 32114, + "model_id": 32114, + "year": "1986" + }, + { + "id": 32115, + "model_id": 32115, + "year": "2006" + }, + { + "id": 32116, + "model_id": 32115, + "year": "2007" + }, + { + "id": 32117, + "model_id": 32117, + "year": "2003" + }, + { + "id": 32119, + "model_id": 32117, + "year": "2004" + }, + { + "id": 32123, + "model_id": 32117, + "year": "2005" + }, + { + "id": 32127, + "model_id": 32117, + "year": "2006" + }, + { + "id": 32131, + "model_id": 32131, + "year": "1984" + }, + { + "id": 32137, + "model_id": 32131, + "year": "1985" + }, + { + "id": 32141, + "model_id": 32131, + "year": "1986" + }, + { + "id": 32143, + "model_id": 32131, + "year": "1987" + }, + { + "id": 32145, + "model_id": 32145, + "year": "2013" + }, + { + "id": 32147, + "model_id": 32145, + "year": "2014" + }, + { + "id": 32149, + "model_id": 32145, + "year": "2015" + }, + { + "id": 32151, + "model_id": 32145, + "year": "2016" + }, + { + "id": 32153, + "model_id": 32153, + "year": "1998" + }, + { + "id": 32155, + "model_id": 32153, + "year": "1999" + }, + { + "id": 32157, + "model_id": 32153, + "year": "2000" + }, + { + "id": 32159, + "model_id": 32153, + "year": "2001" + }, + { + "id": 32161, + "model_id": 32153, + "year": "2002" + }, + { + "id": 32163, + "model_id": 32153, + "year": "2003" + }, + { + "id": 32165, + "model_id": 32153, + "year": "2004" + }, + { + "id": 32169, + "model_id": 32153, + "year": "2005" + }, + { + "id": 32173, + "model_id": 32153, + "year": "2006" + }, + { + "id": 32177, + "model_id": 32153, + "year": "2007" + }, + { + "id": 32181, + "model_id": 32153, + "year": "2008" + }, + { + "id": 32185, + "model_id": 32153, + "year": "2009" + }, + { + "id": 32188, + "model_id": 32153, + "year": "2010" + }, + { + "id": 32191, + "model_id": 32153, + "year": "2011" + }, + { + "id": 32194, + "model_id": 32153, + "year": "2012" + }, + { + "id": 32197, + "model_id": 32153, + "year": "2013" + }, + { + "id": 32200, + "model_id": 32153, + "year": "2014" + }, + { + "id": 32203, + "model_id": 32153, + "year": "2015" + }, + { + "id": 32206, + "model_id": 32153, + "year": "2016" + }, + { + "id": 32209, + "model_id": 32153, + "year": "2017" + }, + { + "id": 32211, + "model_id": 32211, + "year": "1985" + }, + { + "id": 32218, + "model_id": 32211, + "year": "1986" + }, + { + "id": 32224, + "model_id": 32211, + "year": "1987" + }, + { + "id": 32229, + "model_id": 32211, + "year": "1988" + }, + { + "id": 32232, + "model_id": 32211, + "year": "1989" + }, + { + "id": 32235, + "model_id": 32235, + "year": "1993" + }, + { + "id": 32239, + "model_id": 32235, + "year": "1994" + }, + { + "id": 32243, + "model_id": 32235, + "year": "1995" + }, + { + "id": 32248, + "model_id": 32235, + "year": "1996" + }, + { + "id": 32253, + "model_id": 32235, + "year": "1997" + }, + { + "id": 32256, + "model_id": 32235, + "year": "1998" + }, + { + "id": 32260, + "model_id": 32235, + "year": "1999" + }, + { + "id": 32264, + "model_id": 32235, + "year": "2000" + }, + { + "id": 32266, + "model_id": 32235, + "year": "2001" + }, + { + "id": 32270, + "model_id": 32235, + "year": "2002" + }, + { + "id": 32274, + "model_id": 32235, + "year": "2003" + }, + { + "id": 32278, + "model_id": 32235, + "year": "2004" + }, + { + "id": 32283, + "model_id": 32235, + "year": "2005" + }, + { + "id": 32288, + "model_id": 32235, + "year": "2006" + }, + { + "id": 32293, + "model_id": 32235, + "year": "2007" + }, + { + "id": 32298, + "model_id": 32235, + "year": "2008" + }, + { + "id": 32302, + "model_id": 32235, + "year": "2009" + }, + { + "id": 32306, + "model_id": 32235, + "year": "2010" + }, + { + "id": 32310, + "model_id": 32235, + "year": "2011" + }, + { + "id": 32314, + "model_id": 32235, + "year": "2012" + }, + { + "id": 32318, + "model_id": 32235, + "year": "2013" + }, + { + "id": 32322, + "model_id": 32235, + "year": "2014" + }, + { + "id": 32326, + "model_id": 32235, + "year": "2015" + }, + { + "id": 32328, + "model_id": 32235, + "year": "2016" + }, + { + "id": 32330, + "model_id": 32330, + "year": "2015" + }, + { + "id": 32332, + "model_id": 32330, + "year": "2016" + }, + { + "id": 32334, + "model_id": 32334, + "year": "1993" + }, + { + "id": 32338, + "model_id": 32334, + "year": "1994" + }, + { + "id": 32342, + "model_id": 32334, + "year": "1995" + }, + { + "id": 32347, + "model_id": 32334, + "year": "1996" + }, + { + "id": 32349, + "model_id": 32334, + "year": "1997" + }, + { + "id": 32351, + "model_id": 32334, + "year": "1998" + }, + { + "id": 32353, + "model_id": 32334, + "year": "1999" + }, + { + "id": 32355, + "model_id": 32334, + "year": "2001" + }, + { + "id": 32357, + "model_id": 32334, + "year": "2002" + }, + { + "id": 32361, + "model_id": 32334, + "year": "2013" + }, + { + "id": 32365, + "model_id": 32334, + "year": "2014" + }, + { + "id": 32369, + "model_id": 32334, + "year": "2015" + }, + { + "id": 32371, + "model_id": 32334, + "year": "2016" + }, + { + "id": 32373, + "model_id": 32373, + "year": "2010" + }, + { + "id": 32378, + "model_id": 32373, + "year": "2011" + }, + { + "id": 32382, + "model_id": 32373, + "year": "2012" + }, + { + "id": 32386, + "model_id": 32386, + "year": "2003" + }, + { + "id": 32390, + "model_id": 32386, + "year": "2004" + }, + { + "id": 32394, + "model_id": 32386, + "year": "2005" + }, + { + "id": 32398, + "model_id": 32386, + "year": "2006" + }, + { + "id": 32402, + "model_id": 32386, + "year": "2007" + }, + { + "id": 32406, + "model_id": 32386, + "year": "2008" + }, + { + "id": 32411, + "model_id": 32386, + "year": "2009" + }, + { + "id": 32416, + "model_id": 32416, + "year": "1987" + }, + { + "id": 32417, + "model_id": 32416, + "year": "1988" + }, + { + "id": 32419, + "model_id": 32416, + "year": "1989" + }, + { + "id": 32422, + "model_id": 32416, + "year": "1990" + }, + { + "id": 32427, + "model_id": 32416, + "year": "1991" + }, + { + "id": 32432, + "model_id": 32416, + "year": "1992" + }, + { + "id": 32437, + "model_id": 32416, + "year": "1993" + }, + { + "id": 32441, + "model_id": 32416, + "year": "1994" + }, + { + "id": 32443, + "model_id": 32443, + "year": "1990" + }, + { + "id": 32447, + "model_id": 32443, + "year": "1991" + }, + { + "id": 32451, + "model_id": 32443, + "year": "1992" + }, + { + "id": 32455, + "model_id": 32443, + "year": "1993" + }, + { + "id": 32459, + "model_id": 32443, + "year": "1994" + }, + { + "id": 32463, + "model_id": 32443, + "year": "1995" + }, + { + "id": 32467, + "model_id": 32443, + "year": "1996" + }, + { + "id": 32472, + "model_id": 32443, + "year": "1997" + }, + { + "id": 32477, + "model_id": 32443, + "year": "1998" + }, + { + "id": 32482, + "model_id": 32443, + "year": "1999" + }, + { + "id": 32486, + "model_id": 32443, + "year": "2000" + }, + { + "id": 32488, + "model_id": 32443, + "year": "2001" + }, + { + "id": 32490, + "model_id": 32443, + "year": "2002" + }, + { + "id": 32491, + "model_id": 32443, + "year": "2005" + }, + { + "id": 32495, + "model_id": 32443, + "year": "2006" + }, + { + "id": 32499, + "model_id": 32443, + "year": "2007" + }, + { + "id": 32504, + "model_id": 32443, + "year": "2008" + }, + { + "id": 32510, + "model_id": 32443, + "year": "2009" + }, + { + "id": 32516, + "model_id": 32443, + "year": "2010" + }, + { + "id": 32520, + "model_id": 32443, + "year": "2011" + }, + { + "id": 32524, + "model_id": 32443, + "year": "2012" + }, + { + "id": 32528, + "model_id": 32443, + "year": "2013" + }, + { + "id": 32531, + "model_id": 32443, + "year": "2014" + }, + { + "id": 32534, + "model_id": 32443, + "year": "2015" + }, + { + "id": 32536, + "model_id": 32443, + "year": "2016" + }, + { + "id": 32538, + "model_id": 32443, + "year": "2017" + }, + { + "id": 32540, + "model_id": 32540, + "year": "2002" + }, + { + "id": 32542, + "model_id": 32542, + "year": "1991" + }, + { + "id": 32545, + "model_id": 32542, + "year": "1992" + }, + { + "id": 32547, + "model_id": 32542, + "year": "1993" + }, + { + "id": 32549, + "model_id": 32542, + "year": "1994" + }, + { + "id": 32551, + "model_id": 32551, + "year": "1990" + }, + { + "id": 32555, + "model_id": 32551, + "year": "1991" + }, + { + "id": 32559, + "model_id": 32551, + "year": "1992" + }, + { + "id": 32563, + "model_id": 32551, + "year": "1993" + }, + { + "id": 32567, + "model_id": 32551, + "year": "1994" + }, + { + "id": 32571, + "model_id": 32551, + "year": "1995" + }, + { + "id": 32575, + "model_id": 32551, + "year": "1996" + }, + { + "id": 32579, + "model_id": 32551, + "year": "1997" + }, + { + "id": 32584, + "model_id": 32551, + "year": "1998" + }, + { + "id": 32589, + "model_id": 32551, + "year": "1999" + }, + { + "id": 32593, + "model_id": 32551, + "year": "2000" + }, + { + "id": 32595, + "model_id": 32551, + "year": "2001" + }, + { + "id": 32598, + "model_id": 32551, + "year": "2005" + }, + { + "id": 32602, + "model_id": 32551, + "year": "2006" + }, + { + "id": 32606, + "model_id": 32551, + "year": "2007" + }, + { + "id": 32610, + "model_id": 32610, + "year": "2002" + }, + { + "id": 32613, + "model_id": 32613, + "year": "1992" + }, + { + "id": 32615, + "model_id": 32613, + "year": "1993" + }, + { + "id": 32616, + "model_id": 32613, + "year": "1994" + }, + { + "id": 32617, + "model_id": 32617, + "year": "2003" + }, + { + "id": 32621, + "model_id": 32617, + "year": "2004" + }, + { + "id": 32625, + "model_id": 32625, + "year": "2003" + }, + { + "id": 32629, + "model_id": 32625, + "year": "2004" + }, + { + "id": 32633, + "model_id": 32633, + "year": "1990" + }, + { + "id": 32638, + "model_id": 32633, + "year": "1991" + }, + { + "id": 32642, + "model_id": 32633, + "year": "1992" + }, + { + "id": 32646, + "model_id": 32633, + "year": "1993" + }, + { + "id": 32650, + "model_id": 32650, + "year": "1990" + }, + { + "id": 32651, + "model_id": 32651, + "year": "1990" + }, + { + "id": 32656, + "model_id": 32651, + "year": "1991" + }, + { + "id": 32660, + "model_id": 32651, + "year": "1992" + }, + { + "id": 32664, + "model_id": 32651, + "year": "1993" + }, + { + "id": 32668, + "model_id": 32651, + "year": "1994" + }, + { + "id": 32670, + "model_id": 32670, + "year": "1990" + }, + { + "id": 32671, + "model_id": 32671, + "year": "2005" + }, + { + "id": 32672, + "model_id": 32671, + "year": "2006" + }, + { + "id": 32674, + "model_id": 32671, + "year": "2007" + }, + { + "id": 32676, + "model_id": 32671, + "year": "2013" + }, + { + "id": 32679, + "model_id": 32671, + "year": "2014" + }, + { + "id": 32682, + "model_id": 32671, + "year": "2015" + }, + { + "id": 32684, + "model_id": 32671, + "year": "2016" + }, + { + "id": 32686, + "model_id": 32671, + "year": "2017" + }, + { + "id": 32688, + "model_id": 32688, + "year": "2005" + }, + { + "id": 32693, + "model_id": 32688, + "year": "2006" + }, + { + "id": 32698, + "model_id": 32688, + "year": "2007" + }, + { + "id": 32703, + "model_id": 32688, + "year": "2008" + }, + { + "id": 32708, + "model_id": 32688, + "year": "2009" + }, + { + "id": 32713, + "model_id": 32688, + "year": "2010" + }, + { + "id": 32716, + "model_id": 32688, + "year": "2011" + }, + { + "id": 32719, + "model_id": 32688, + "year": "2012" + }, + { + "id": 32722, + "model_id": 32722, + "year": "1985" + }, + { + "id": 32724, + "model_id": 32724, + "year": "1984" + }, + { + "id": 32740, + "model_id": 32724, + "year": "1985" + }, + { + "id": 32752, + "model_id": 32752, + "year": "1986" + }, + { + "id": 32762, + "model_id": 32752, + "year": "1987" + }, + { + "id": 32770, + "model_id": 32752, + "year": "1988" + }, + { + "id": 32775, + "model_id": 32752, + "year": "1989" + }, + { + "id": 32780, + "model_id": 32780, + "year": "1987" + }, + { + "id": 32782, + "model_id": 32780, + "year": "1988" + }, + { + "id": 32784, + "model_id": 32780, + "year": "1989" + }, + { + "id": 32786, + "model_id": 32786, + "year": "1992" + }, + { + "id": 32787, + "model_id": 32786, + "year": "1993" + }, + { + "id": 32789, + "model_id": 32786, + "year": "1994" + }, + { + "id": 32791, + "model_id": 32786, + "year": "1995" + }, + { + "id": 32793, + "model_id": 32786, + "year": "1996" + }, + { + "id": 32794, + "model_id": 32786, + "year": "1997" + }, + { + "id": 32795, + "model_id": 32795, + "year": "2008" + }, + { + "id": 32796, + "model_id": 32795, + "year": "2009" + }, + { + "id": 32797, + "model_id": 32795, + "year": "2010" + }, + { + "id": 32798, + "model_id": 32795, + "year": "2011" + }, + { + "id": 32799, + "model_id": 32795, + "year": "2012" + }, + { + "id": 32800, + "model_id": 32795, + "year": "2013" + }, + { + "id": 32801, + "model_id": 32795, + "year": "2014" + }, + { + "id": 32802, + "model_id": 32802, + "year": "1984" + }, + { + "id": 32814, + "model_id": 32802, + "year": "1985" + }, + { + "id": 32827, + "model_id": 32802, + "year": "1986" + }, + { + "id": 32837, + "model_id": 32802, + "year": "1987" + }, + { + "id": 32845, + "model_id": 32802, + "year": "1988" + }, + { + "id": 32850, + "model_id": 32802, + "year": "1989" + }, + { + "id": 32855, + "model_id": 32855, + "year": "1987" + }, + { + "id": 32857, + "model_id": 32855, + "year": "1988" + }, + { + "id": 32859, + "model_id": 32855, + "year": "1989" + }, + { + "id": 32861, + "model_id": 32861, + "year": "2015" + }, + { + "id": 32864, + "model_id": 32861, + "year": "2016" + }, + { + "id": 32867, + "model_id": 32861, + "year": "2017" + }, + { + "id": 32870, + "model_id": 32870, + "year": "1985" + }, + { + "id": 32874, + "model_id": 32870, + "year": "1986" + }, + { + "id": 32880, + "model_id": 32870, + "year": "1987" + }, + { + "id": 32893, + "model_id": 32870, + "year": "1988" + }, + { + "id": 32899, + "model_id": 32870, + "year": "1989" + }, + { + "id": 32906, + "model_id": 32870, + "year": "1990" + }, + { + "id": 32913, + "model_id": 32870, + "year": "1991" + }, + { + "id": 32920, + "model_id": 32920, + "year": "1985" + }, + { + "id": 32921, + "model_id": 32920, + "year": "1986" + }, + { + "id": 32922, + "model_id": 32920, + "year": "1987" + }, + { + "id": 32924, + "model_id": 32920, + "year": "1988" + }, + { + "id": 32925, + "model_id": 32920, + "year": "1989" + }, + { + "id": 32926, + "model_id": 32926, + "year": "2013" + }, + { + "id": 32928, + "model_id": 32926, + "year": "2014" + }, + { + "id": 32930, + "model_id": 32926, + "year": "2015" + }, + { + "id": 32932, + "model_id": 32926, + "year": "2016" + }, + { + "id": 32934, + "model_id": 32934, + "year": "2014" + }, + { + "id": 32935, + "model_id": 32934, + "year": "2015" + }, + { + "id": 32936, + "model_id": 32934, + "year": "2016" + }, + { + "id": 32937, + "model_id": 32937, + "year": "1984" + }, + { + "id": 32938, + "model_id": 32938, + "year": "2002" + }, + { + "id": 32940, + "model_id": 32938, + "year": "2003" + }, + { + "id": 32943, + "model_id": 32938, + "year": "2004" + }, + { + "id": 32946, + "model_id": 32938, + "year": "2005" + }, + { + "id": 32949, + "model_id": 32938, + "year": "2006" + }, + { + "id": 32952, + "model_id": 32938, + "year": "2007" + }, + { + "id": 32955, + "model_id": 32955, + "year": "2002" + }, + { + "id": 32957, + "model_id": 32955, + "year": "2003" + }, + { + "id": 32960, + "model_id": 32955, + "year": "2004" + }, + { + "id": 32963, + "model_id": 32955, + "year": "2005" + }, + { + "id": 32966, + "model_id": 32955, + "year": "2006" + }, + { + "id": 32969, + "model_id": 32969, + "year": "2009" + }, + { + "id": 32973, + "model_id": 32969, + "year": "2010" + }, + { + "id": 32977, + "model_id": 32969, + "year": "2011" + }, + { + "id": 32981, + "model_id": 32969, + "year": "2012" + }, + { + "id": 32985, + "model_id": 32985, + "year": "1996" + }, + { + "id": 32987, + "model_id": 32985, + "year": "1997" + }, + { + "id": 32989, + "model_id": 32985, + "year": "1998" + }, + { + "id": 32991, + "model_id": 32985, + "year": "1999" + }, + { + "id": 32995, + "model_id": 32985, + "year": "2000" + }, + { + "id": 32999, + "model_id": 32985, + "year": "2001" + }, + { + "id": 33003, + "model_id": 32985, + "year": "2002" + }, + { + "id": 33006, + "model_id": 33006, + "year": "1998" + }, + { + "id": 33008, + "model_id": 33006, + "year": "1999" + }, + { + "id": 33012, + "model_id": 33006, + "year": "2000" + }, + { + "id": 33016, + "model_id": 33006, + "year": "2001" + }, + { + "id": 33018, + "model_id": 33006, + "year": "2002" + }, + { + "id": 33021, + "model_id": 33021, + "year": "2004" + }, + { + "id": 33023, + "model_id": 33021, + "year": "2005" + }, + { + "id": 33025, + "model_id": 33021, + "year": "2006" + }, + { + "id": 33027, + "model_id": 33021, + "year": "2007" + }, + { + "id": 33029, + "model_id": 33021, + "year": "2008" + }, + { + "id": 33031, + "model_id": 33031, + "year": "2005" + }, + { + "id": 33033, + "model_id": 33031, + "year": "2006" + }, + { + "id": 33035, + "model_id": 33031, + "year": "2007" + }, + { + "id": 33037, + "model_id": 33031, + "year": "2008" + }, + { + "id": 33039, + "model_id": 33039, + "year": "1987" + }, + { + "id": 33041, + "model_id": 33039, + "year": "1988" + }, + { + "id": 33043, + "model_id": 33043, + "year": "1987" + }, + { + "id": 33044, + "model_id": 33043, + "year": "1988" + }, + { + "id": 33045, + "model_id": 33045, + "year": "2001" + }, + { + "id": 33049, + "model_id": 33045, + "year": "2002" + }, + { + "id": 33053, + "model_id": 33045, + "year": "2003" + }, + { + "id": 33057, + "model_id": 33045, + "year": "2004" + }, + { + "id": 33061, + "model_id": 33045, + "year": "2005" + }, + { + "id": 33065, + "model_id": 33045, + "year": "2006" + }, + { + "id": 33069, + "model_id": 33045, + "year": "2007" + }, + { + "id": 33073, + "model_id": 33045, + "year": "2008" + }, + { + "id": 33077, + "model_id": 33045, + "year": "2009" + }, + { + "id": 33083, + "model_id": 33045, + "year": "2010" + }, + { + "id": 33089, + "model_id": 33045, + "year": "2011" + }, + { + "id": 33092, + "model_id": 33045, + "year": "2012" + }, + { + "id": 33095, + "model_id": 33045, + "year": "2013" + }, + { + "id": 33098, + "model_id": 33098, + "year": "1999" + }, + { + "id": 33102, + "model_id": 33098, + "year": "2000" + }, + { + "id": 33106, + "model_id": 33106, + "year": "2001" + }, + { + "id": 33110, + "model_id": 33106, + "year": "2002" + }, + { + "id": 33114, + "model_id": 33106, + "year": "2003" + }, + { + "id": 33118, + "model_id": 33106, + "year": "2004" + }, + { + "id": 33122, + "model_id": 33106, + "year": "2005" + }, + { + "id": 33126, + "model_id": 33106, + "year": "2006" + }, + { + "id": 33130, + "model_id": 33130, + "year": "2010" + }, + { + "id": 33133, + "model_id": 33130, + "year": "2011" + }, + { + "id": 33136, + "model_id": 33130, + "year": "2012" + }, + { + "id": 33139, + "model_id": 33130, + "year": "2013" + }, + { + "id": 33142, + "model_id": 33142, + "year": "2010" + }, + { + "id": 33145, + "model_id": 33142, + "year": "2011" + }, + { + "id": 33148, + "model_id": 33142, + "year": "2012" + }, + { + "id": 33151, + "model_id": 33142, + "year": "2013" + }, + { + "id": 33153, + "model_id": 33153, + "year": "2005" + }, + { + "id": 33155, + "model_id": 33153, + "year": "2006" + }, + { + "id": 33157, + "model_id": 33153, + "year": "2007" + }, + { + "id": 33159, + "model_id": 33153, + "year": "2008" + }, + { + "id": 33161, + "model_id": 33161, + "year": "1985" + }, + { + "id": 33163, + "model_id": 33163, + "year": "1986" + }, + { + "id": 33164, + "model_id": 33163, + "year": "1991" + }, + { + "id": 33165, + "model_id": 33163, + "year": "1992" + }, + { + "id": 33166, + "model_id": 33163, + "year": "1993" + }, + { + "id": 33167, + "model_id": 33163, + "year": "1995" + }, + { + "id": 33168, + "model_id": 33168, + "year": "1986" + }, + { + "id": 33169, + "model_id": 33168, + "year": "1987" + }, + { + "id": 33170, + "model_id": 33168, + "year": "1988" + }, + { + "id": 33171, + "model_id": 33168, + "year": "1989" + }, + { + "id": 33172, + "model_id": 33172, + "year": "1987" + }, + { + "id": 33173, + "model_id": 33172, + "year": "1988" + }, + { + "id": 33174, + "model_id": 33172, + "year": "1989" + }, + { + "id": 33175, + "model_id": 33172, + "year": "1990" + }, + { + "id": 33176, + "model_id": 33172, + "year": "1991" + }, + { + "id": 33177, + "model_id": 33177, + "year": "1990" + }, + { + "id": 33178, + "model_id": 33177, + "year": "1991" + }, + { + "id": 33179, + "model_id": 33177, + "year": "1992" + }, + { + "id": 33180, + "model_id": 33177, + "year": "1993" + }, + { + "id": 33181, + "model_id": 33177, + "year": "1994" + }, + { + "id": 33182, + "model_id": 33182, + "year": "1990" + }, + { + "id": 33183, + "model_id": 33182, + "year": "1991" + }, + { + "id": 33184, + "model_id": 33182, + "year": "1992" + }, + { + "id": 33185, + "model_id": 33182, + "year": "1993" + }, + { + "id": 33187, + "model_id": 33187, + "year": "1994" + }, + { + "id": 33195, + "model_id": 33187, + "year": "1996" + }, + { + "id": 33199, + "model_id": 33187, + "year": "1997" + }, + { + "id": 33203, + "model_id": 33187, + "year": "1998" + }, + { + "id": 33205, + "model_id": 33205, + "year": "1998" + }, + { + "id": 33207, + "model_id": 33207, + "year": "1994" + }, + { + "id": 33211, + "model_id": 33207, + "year": "1996" + }, + { + "id": 33215, + "model_id": 33207, + "year": "1997" + }, + { + "id": 33219, + "model_id": 33207, + "year": "1998" + }, + { + "id": 33221, + "model_id": 33221, + "year": "1998" + }, + { + "id": 33223, + "model_id": 33223, + "year": "1989" + }, + { + "id": 33226, + "model_id": 33226, + "year": "1989" + }, + { + "id": 33228, + "model_id": 33226, + "year": "1990" + }, + { + "id": 33230, + "model_id": 33226, + "year": "1991" + }, + { + "id": 33234, + "model_id": 33226, + "year": "1992" + }, + { + "id": 33239, + "model_id": 33226, + "year": "1993" + }, + { + "id": 33247, + "model_id": 33247, + "year": "1990" + }, + { + "id": 33249, + "model_id": 33247, + "year": "1991" + }, + { + "id": 33251, + "model_id": 33247, + "year": "1992" + }, + { + "id": 33253, + "model_id": 33247, + "year": "1993" + }, + { + "id": 33255, + "model_id": 33255, + "year": "1996" + }, + { + "id": 33257, + "model_id": 33255, + "year": "1997" + }, + { + "id": 33261, + "model_id": 33255, + "year": "1998" + }, + { + "id": 33263, + "model_id": 33263, + "year": "1998" + }, + { + "id": 33265, + "model_id": 33265, + "year": "1984" + }, + { + "id": 33266, + "model_id": 33265, + "year": "1985" + }, + { + "id": 33267, + "model_id": 33267, + "year": "1984" + }, + { + "id": 33268, + "model_id": 33267, + "year": "1985" + }, + { + "id": 33269, + "model_id": 33269, + "year": "1984" + }, + { + "id": 33270, + "model_id": 33270, + "year": "1999" + }, + { + "id": 33272, + "model_id": 33272, + "year": "1989" + }, + { + "id": 33276, + "model_id": 33272, + "year": "1990" + }, + { + "id": 33280, + "model_id": 33272, + "year": "1991" + }, + { + "id": 33284, + "model_id": 33272, + "year": "1992" + }, + { + "id": 33288, + "model_id": 33272, + "year": "1993" + }, + { + "id": 33292, + "model_id": 33272, + "year": "1994" + }, + { + "id": 33294, + "model_id": 33272, + "year": "1995" + }, + { + "id": 33296, + "model_id": 33272, + "year": "1996" + }, + { + "id": 33298, + "model_id": 33272, + "year": "1997" + }, + { + "id": 33300, + "model_id": 33272, + "year": "1998" + }, + { + "id": 33302, + "model_id": 33272, + "year": "2000" + }, + { + "id": 33304, + "model_id": 33272, + "year": "2001" + }, + { + "id": 33306, + "model_id": 33272, + "year": "2004" + }, + { + "id": 33308, + "model_id": 33272, + "year": "2005" + }, + { + "id": 33310, + "model_id": 33310, + "year": "1989" + }, + { + "id": 33311, + "model_id": 33311, + "year": "1990" + }, + { + "id": 33313, + "model_id": 33311, + "year": "1991" + }, + { + "id": 33314, + "model_id": 33311, + "year": "1992" + }, + { + "id": 33315, + "model_id": 33311, + "year": "1993" + }, + { + "id": 33316, + "model_id": 33311, + "year": "1994" + }, + { + "id": 33317, + "model_id": 33317, + "year": "1989" + }, + { + "id": 33319, + "model_id": 33319, + "year": "2005" + }, + { + "id": 33321, + "model_id": 33319, + "year": "2006" + }, + { + "id": 33323, + "model_id": 33319, + "year": "2010" + }, + { + "id": 33325, + "model_id": 33319, + "year": "2011" + }, + { + "id": 33327, + "model_id": 33327, + "year": "2007" + }, + { + "id": 33331, + "model_id": 33327, + "year": "2008" + }, + { + "id": 33335, + "model_id": 33327, + "year": "2009" + }, + { + "id": 33339, + "model_id": 33327, + "year": "2010" + }, + { + "id": 33343, + "model_id": 33327, + "year": "2011" + }, + { + "id": 33347, + "model_id": 33327, + "year": "2012" + }, + { + "id": 33351, + "model_id": 33327, + "year": "2013" + }, + { + "id": 33355, + "model_id": 33355, + "year": "2008" + }, + { + "id": 33357, + "model_id": 33355, + "year": "2009" + }, + { + "id": 33359, + "model_id": 33355, + "year": "2010" + }, + { + "id": 33361, + "model_id": 33355, + "year": "2011" + }, + { + "id": 33363, + "model_id": 33355, + "year": "2012" + }, + { + "id": 33365, + "model_id": 33355, + "year": "2013" + }, + { + "id": 33367, + "model_id": 33367, + "year": "2009" + }, + { + "id": 33369, + "model_id": 33367, + "year": "2010" + }, + { + "id": 33371, + "model_id": 33367, + "year": "2012" + }, + { + "id": 33373, + "model_id": 33367, + "year": "2013" + }, + { + "id": 33375, + "model_id": 33375, + "year": "2011" + }, + { + "id": 33377, + "model_id": 33377, + "year": "2004" + }, + { + "id": 33378, + "model_id": 33377, + "year": "2005" + }, + { + "id": 33379, + "model_id": 33377, + "year": "2006" + }, + { + "id": 33380, + "model_id": 33380, + "year": "2003" + }, + { + "id": 33384, + "model_id": 33384, + "year": "1999" + }, + { + "id": 33392, + "model_id": 33384, + "year": "2000" + }, + { + "id": 33400, + "model_id": 33384, + "year": "2001" + }, + { + "id": 33408, + "model_id": 33384, + "year": "2002" + }, + { + "id": 33412, + "model_id": 33412, + "year": "2003" + }, + { + "id": 33416, + "model_id": 33412, + "year": "2004" + }, + { + "id": 33420, + "model_id": 33420, + "year": "1999" + }, + { + "id": 33424, + "model_id": 33420, + "year": "2000" + }, + { + "id": 33428, + "model_id": 33420, + "year": "2001" + }, + { + "id": 33432, + "model_id": 33420, + "year": "2002" + }, + { + "id": 33436, + "model_id": 33436, + "year": "1996" + }, + { + "id": 33439, + "model_id": 33436, + "year": "1997" + }, + { + "id": 33443, + "model_id": 33436, + "year": "1998" + }, + { + "id": 33445, + "model_id": 33445, + "year": "1998" + }, + { + "id": 33447, + "model_id": 33447, + "year": "2007" + }, + { + "id": 33449, + "model_id": 33447, + "year": "2008" + }, + { + "id": 33451, + "model_id": 33447, + "year": "2009" + }, + { + "id": 33453, + "model_id": 33453, + "year": "2008" + }, + { + "id": 33455, + "model_id": 33455, + "year": "2008" + }, + { + "id": 33457, + "model_id": 33457, + "year": "2008" + }, + { + "id": 33459, + "model_id": 33459, + "year": "2012" + }, + { + "id": 33460, + "model_id": 33460, + "year": "2015" + }, + { + "id": 33461, + "model_id": 33460, + "year": "2016" + }, + { + "id": 33462, + "model_id": 33462, + "year": "2016" + }, + { + "id": 33463, + "model_id": 33463, + "year": "2015" + }, + { + "id": 33464, + "model_id": 33463, + "year": "2016" + }, + { + "id": 33465, + "model_id": 33465, + "year": "2015" + }, + { + "id": 33466, + "model_id": 33465, + "year": "2016" + }, + { + "id": 33467, + "model_id": 33467, + "year": "2015" + }, + { + "id": 33468, + "model_id": 33467, + "year": "2016" + }, + { + "id": 33469, + "model_id": 33469, + "year": "2015" + }, + { + "id": 33470, + "model_id": 33469, + "year": "2016" + }, + { + "id": 33471, + "model_id": 33471, + "year": "2013" + }, + { + "id": 33472, + "model_id": 33472, + "year": "2013" + }, + { + "id": 33473, + "model_id": 33472, + "year": "2014" + }, + { + "id": 33474, + "model_id": 33472, + "year": "2015" + }, + { + "id": 33475, + "model_id": 33475, + "year": "2016" + }, + { + "id": 33476, + "model_id": 33476, + "year": "2016" + }, + { + "id": 33477, + "model_id": 33477, + "year": "2013" + }, + { + "id": 33478, + "model_id": 33477, + "year": "2014" + }, + { + "id": 33480, + "model_id": 33477, + "year": "2015" + }, + { + "id": 33481, + "model_id": 33477, + "year": "2016" + }, + { + "id": 33482, + "model_id": 33482, + "year": "2015" + }, + { + "id": 33483, + "model_id": 33482, + "year": "2016" + }, + { + "id": 33484, + "model_id": 33484, + "year": "2016" + }, + { + "id": 33485, + "model_id": 33485, + "year": "2016" + }, + { + "id": 33486, + "model_id": 33486, + "year": "2016" + }, + { + "id": 33487, + "model_id": 33487, + "year": "1986" + }, + { + "id": 33488, + "model_id": 33488, + "year": "1986" + }, + { + "id": 33489, + "model_id": 33489, + "year": "1986" + }, + { + "id": 33490, + "model_id": 33490, + "year": "1986" + }, + { + "id": 33491, + "model_id": 33491, + "year": "2017" + }, + { + "id": 33493, + "model_id": 33493, + "year": "1985" + }, + { + "id": 33495, + "model_id": 33493, + "year": "1986" + }, + { + "id": 33497, + "model_id": 33493, + "year": "1987" + }, + { + "id": 33499, + "model_id": 33493, + "year": "1988" + }, + { + "id": 33501, + "model_id": 33493, + "year": "1989" + }, + { + "id": 33503, + "model_id": 33493, + "year": "1990" + }, + { + "id": 33505, + "model_id": 33493, + "year": "1991" + }, + { + "id": 33507, + "model_id": 33493, + "year": "1992" + }, + { + "id": 33509, + "model_id": 33509, + "year": "1984" + }, + { + "id": 33511, + "model_id": 33509, + "year": "1985" + }, + { + "id": 33513, + "model_id": 33509, + "year": "1986" + }, + { + "id": 33516, + "model_id": 33509, + "year": "1987" + }, + { + "id": 33519, + "model_id": 33509, + "year": "1988" + }, + { + "id": 33523, + "model_id": 33509, + "year": "1989" + }, + { + "id": 33527, + "model_id": 33509, + "year": "1990" + }, + { + "id": 33533, + "model_id": 33509, + "year": "1991" + }, + { + "id": 33539, + "model_id": 33509, + "year": "1992" + }, + { + "id": 33544, + "model_id": 33509, + "year": "1993" + }, + { + "id": 33549, + "model_id": 33509, + "year": "1994" + }, + { + "id": 33553, + "model_id": 33509, + "year": "1995" + }, + { + "id": 33557, + "model_id": 33509, + "year": "1996" + }, + { + "id": 33564, + "model_id": 33509, + "year": "1997" + }, + { + "id": 33571, + "model_id": 33509, + "year": "1998" + }, + { + "id": 33578, + "model_id": 33509, + "year": "1999" + }, + { + "id": 33585, + "model_id": 33509, + "year": "2000" + }, + { + "id": 33592, + "model_id": 33509, + "year": "2001" + }, + { + "id": 33594, + "model_id": 33509, + "year": "2002" + }, + { + "id": 33596, + "model_id": 33509, + "year": "2003" + }, + { + "id": 33600, + "model_id": 33509, + "year": "2004" + }, + { + "id": 33604, + "model_id": 33509, + "year": "2005" + }, + { + "id": 33608, + "model_id": 33509, + "year": "2006" + }, + { + "id": 33612, + "model_id": 33509, + "year": "2007" + }, + { + "id": 33616, + "model_id": 33509, + "year": "2008" + }, + { + "id": 33620, + "model_id": 33509, + "year": "2009" + }, + { + "id": 33624, + "model_id": 33509, + "year": "2010" + }, + { + "id": 33628, + "model_id": 33509, + "year": "2011" + }, + { + "id": 33632, + "model_id": 33509, + "year": "2012" + }, + { + "id": 33635, + "model_id": 33509, + "year": "2013" + }, + { + "id": 33638, + "model_id": 33509, + "year": "2014" + }, + { + "id": 33641, + "model_id": 33509, + "year": "2015" + }, + { + "id": 33644, + "model_id": 33509, + "year": "2016" + }, + { + "id": 33647, + "model_id": 33647, + "year": "1995" + }, + { + "id": 33648, + "model_id": 33647, + "year": "1996" + }, + { + "id": 33649, + "model_id": 33647, + "year": "1997" + }, + { + "id": 33650, + "model_id": 33647, + "year": "1998" + }, + { + "id": 33651, + "model_id": 33647, + "year": "1999" + }, + { + "id": 33652, + "model_id": 33647, + "year": "2000" + }, + { + "id": 33653, + "model_id": 33647, + "year": "2001" + }, + { + "id": 33654, + "model_id": 33647, + "year": "2002" + }, + { + "id": 33655, + "model_id": 33647, + "year": "2003" + }, + { + "id": 33656, + "model_id": 33647, + "year": "2004" + }, + { + "id": 33657, + "model_id": 33647, + "year": "2005" + }, + { + "id": 33658, + "model_id": 33647, + "year": "2006" + }, + { + "id": 33659, + "model_id": 33647, + "year": "2007" + }, + { + "id": 33660, + "model_id": 33647, + "year": "2008" + }, + { + "id": 33661, + "model_id": 33647, + "year": "2009" + }, + { + "id": 33662, + "model_id": 33647, + "year": "2010" + }, + { + "id": 33663, + "model_id": 33647, + "year": "2011" + }, + { + "id": 33664, + "model_id": 33647, + "year": "2012" + }, + { + "id": 33665, + "model_id": 33647, + "year": "2013" + }, + { + "id": 33667, + "model_id": 33647, + "year": "2014" + }, + { + "id": 33669, + "model_id": 33647, + "year": "2015" + }, + { + "id": 33670, + "model_id": 33647, + "year": "2016" + }, + { + "id": 33671, + "model_id": 33671, + "year": "2013" + }, + { + "id": 33672, + "model_id": 33671, + "year": "2014" + }, + { + "id": 33673, + "model_id": 33671, + "year": "2015" + }, + { + "id": 33674, + "model_id": 33671, + "year": "2016" + }, + { + "id": 33675, + "model_id": 33675, + "year": "1984" + }, + { + "id": 33677, + "model_id": 33675, + "year": "1985" + }, + { + "id": 33679, + "model_id": 33679, + "year": "1986" + }, + { + "id": 33681, + "model_id": 33679, + "year": "1987" + }, + { + "id": 33683, + "model_id": 33679, + "year": "1988" + }, + { + "id": 33685, + "model_id": 33679, + "year": "1989" + }, + { + "id": 33687, + "model_id": 33679, + "year": "1990" + }, + { + "id": 33689, + "model_id": 33679, + "year": "1991" + }, + { + "id": 33691, + "model_id": 33679, + "year": "1992" + }, + { + "id": 33693, + "model_id": 33679, + "year": "1993" + }, + { + "id": 33697, + "model_id": 33697, + "year": "1984" + }, + { + "id": 33702, + "model_id": 33697, + "year": "1985" + }, + { + "id": 33705, + "model_id": 33697, + "year": "1986" + }, + { + "id": 33708, + "model_id": 33697, + "year": "1987" + }, + { + "id": 33710, + "model_id": 33697, + "year": "1988" + }, + { + "id": 33716, + "model_id": 33697, + "year": "1989" + }, + { + "id": 33723, + "model_id": 33697, + "year": "1990" + }, + { + "id": 33730, + "model_id": 33697, + "year": "1991" + }, + { + "id": 33736, + "model_id": 33697, + "year": "1992" + }, + { + "id": 33741, + "model_id": 33697, + "year": "1993" + }, + { + "id": 33745, + "model_id": 33697, + "year": "1994" + }, + { + "id": 33748, + "model_id": 33697, + "year": "1995" + }, + { + "id": 33751, + "model_id": 33697, + "year": "1996" + }, + { + "id": 33754, + "model_id": 33697, + "year": "1997" + }, + { + "id": 33758, + "model_id": 33697, + "year": "1998" + }, + { + "id": 33762, + "model_id": 33697, + "year": "1999" + }, + { + "id": 33766, + "model_id": 33697, + "year": "2000" + }, + { + "id": 33770, + "model_id": 33697, + "year": "2001" + }, + { + "id": 33774, + "model_id": 33697, + "year": "2002" + }, + { + "id": 33777, + "model_id": 33697, + "year": "2003" + }, + { + "id": 33781, + "model_id": 33697, + "year": "2004" + }, + { + "id": 33785, + "model_id": 33697, + "year": "2005" + }, + { + "id": 33789, + "model_id": 33697, + "year": "2006" + }, + { + "id": 33793, + "model_id": 33697, + "year": "2007" + }, + { + "id": 33796, + "model_id": 33697, + "year": "2008" + }, + { + "id": 33799, + "model_id": 33697, + "year": "2009" + }, + { + "id": 33802, + "model_id": 33697, + "year": "2010" + }, + { + "id": 33805, + "model_id": 33697, + "year": "2011" + }, + { + "id": 33808, + "model_id": 33697, + "year": "2012" + }, + { + "id": 33810, + "model_id": 33697, + "year": "2013" + }, + { + "id": 33812, + "model_id": 33697, + "year": "2014" + }, + { + "id": 33814, + "model_id": 33697, + "year": "2015" + }, + { + "id": 33816, + "model_id": 33697, + "year": "2016" + }, + { + "id": 33818, + "model_id": 33697, + "year": "2017" + }, + { + "id": 33819, + "model_id": 33819, + "year": "1999" + }, + { + "id": 33820, + "model_id": 33819, + "year": "2000" + }, + { + "id": 33821, + "model_id": 33819, + "year": "2001" + }, + { + "id": 33822, + "model_id": 33822, + "year": "2007" + }, + { + "id": 33823, + "model_id": 33822, + "year": "2008" + }, + { + "id": 33824, + "model_id": 33822, + "year": "2009" + }, + { + "id": 33825, + "model_id": 33822, + "year": "2010" + }, + { + "id": 33826, + "model_id": 33822, + "year": "2011" + }, + { + "id": 33827, + "model_id": 33827, + "year": "2012" + }, + { + "id": 33828, + "model_id": 33827, + "year": "2013" + }, + { + "id": 33829, + "model_id": 33827, + "year": "2014" + }, + { + "id": 33830, + "model_id": 33827, + "year": "2015" + }, + { + "id": 33831, + "model_id": 33827, + "year": "2016" + }, + { + "id": 33832, + "model_id": 33832, + "year": "2012" + }, + { + "id": 33833, + "model_id": 33832, + "year": "2013" + }, + { + "id": 33834, + "model_id": 33834, + "year": "2014" + }, + { + "id": 33835, + "model_id": 33834, + "year": "2015" + }, + { + "id": 33836, + "model_id": 33834, + "year": "2016" + }, + { + "id": 33837, + "model_id": 33837, + "year": "1999" + }, + { + "id": 33841, + "model_id": 33837, + "year": "2000" + }, + { + "id": 33845, + "model_id": 33837, + "year": "2001" + }, + { + "id": 33849, + "model_id": 33837, + "year": "2002" + }, + { + "id": 33853, + "model_id": 33837, + "year": "2003" + }, + { + "id": 33856, + "model_id": 33837, + "year": "2004" + }, + { + "id": 33859, + "model_id": 33837, + "year": "2005" + }, + { + "id": 33862, + "model_id": 33837, + "year": "2006" + }, + { + "id": 33865, + "model_id": 33837, + "year": "2007" + }, + { + "id": 33868, + "model_id": 33837, + "year": "2008" + }, + { + "id": 33871, + "model_id": 33871, + "year": "2000" + }, + { + "id": 33873, + "model_id": 33871, + "year": "2001" + }, + { + "id": 33875, + "model_id": 33871, + "year": "2002" + }, + { + "id": 33877, + "model_id": 33871, + "year": "2003" + }, + { + "id": 33879, + "model_id": 33871, + "year": "2004" + }, + { + "id": 33880, + "model_id": 33871, + "year": "2005" + }, + { + "id": 33881, + "model_id": 33871, + "year": "2006" + }, + { + "id": 33882, + "model_id": 33871, + "year": "2007" + }, + { + "id": 33883, + "model_id": 33871, + "year": "2008" + }, + { + "id": 33884, + "model_id": 33884, + "year": "1987" + }, + { + "id": 33886, + "model_id": 33884, + "year": "1988" + }, + { + "id": 33889, + "model_id": 33884, + "year": "1989" + }, + { + "id": 33892, + "model_id": 33884, + "year": "1990" + }, + { + "id": 33894, + "model_id": 33884, + "year": "1991" + }, + { + "id": 33896, + "model_id": 33884, + "year": "1992" + }, + { + "id": 33898, + "model_id": 33884, + "year": "1993" + }, + { + "id": 33900, + "model_id": 33884, + "year": "1994" + }, + { + "id": 33902, + "model_id": 33884, + "year": "1995" + }, + { + "id": 33904, + "model_id": 33884, + "year": "1996" + }, + { + "id": 33906, + "model_id": 33906, + "year": "1984" + }, + { + "id": 33910, + "model_id": 33906, + "year": "1985" + }, + { + "id": 33912, + "model_id": 33906, + "year": "1986" + }, + { + "id": 33914, + "model_id": 33906, + "year": "1987" + }, + { + "id": 33918, + "model_id": 33918, + "year": "1984" + }, + { + "id": 33922, + "model_id": 33918, + "year": "1985" + }, + { + "id": 33924, + "model_id": 33918, + "year": "1986" + }, + { + "id": 33928, + "model_id": 33918, + "year": "1987" + }, + { + "id": 33932, + "model_id": 33918, + "year": "1988" + }, + { + "id": 33937, + "model_id": 33918, + "year": "1989" + }, + { + "id": 33942, + "model_id": 33918, + "year": "1990" + }, + { + "id": 33948, + "model_id": 33918, + "year": "1991" + }, + { + "id": 33954, + "model_id": 33918, + "year": "1992" + }, + { + "id": 33960, + "model_id": 33918, + "year": "1993" + }, + { + "id": 33965, + "model_id": 33918, + "year": "1994" + }, + { + "id": 33969, + "model_id": 33918, + "year": "1995" + }, + { + "id": 33973, + "model_id": 33918, + "year": "1996" + }, + { + "id": 33977, + "model_id": 33918, + "year": "1997" + }, + { + "id": 33981, + "model_id": 33918, + "year": "1998" + }, + { + "id": 33983, + "model_id": 33918, + "year": "1999" + }, + { + "id": 33985, + "model_id": 33918, + "year": "2000" + }, + { + "id": 33989, + "model_id": 33918, + "year": "2001" + }, + { + "id": 33993, + "model_id": 33918, + "year": "2002" + }, + { + "id": 33997, + "model_id": 33918, + "year": "2003" + }, + { + "id": 34001, + "model_id": 33918, + "year": "2004" + }, + { + "id": 34005, + "model_id": 33918, + "year": "2005" + }, + { + "id": 34009, + "model_id": 34009, + "year": "1987" + }, + { + "id": 34011, + "model_id": 34009, + "year": "1988" + }, + { + "id": 34013, + "model_id": 34009, + "year": "1989" + }, + { + "id": 34015, + "model_id": 34009, + "year": "1990" + }, + { + "id": 34017, + "model_id": 34009, + "year": "1991" + }, + { + "id": 34019, + "model_id": 34009, + "year": "1992" + }, + { + "id": 34022, + "model_id": 34009, + "year": "1993" + }, + { + "id": 34024, + "model_id": 34009, + "year": "1995" + }, + { + "id": 34026, + "model_id": 34009, + "year": "1996" + }, + { + "id": 34028, + "model_id": 34009, + "year": "1997" + }, + { + "id": 34030, + "model_id": 34009, + "year": "1998" + }, + { + "id": 34032, + "model_id": 34009, + "year": "1999" + }, + { + "id": 34034, + "model_id": 34034, + "year": "1984" + }, + { + "id": 34038, + "model_id": 34034, + "year": "1985" + }, + { + "id": 34040, + "model_id": 34034, + "year": "1986" + }, + { + "id": 34042, + "model_id": 34042, + "year": "1984" + }, + { + "id": 34050, + "model_id": 34042, + "year": "1985" + }, + { + "id": 34056, + "model_id": 34042, + "year": "1986" + }, + { + "id": 34059, + "model_id": 34042, + "year": "1987" + }, + { + "id": 34062, + "model_id": 34042, + "year": "1988" + }, + { + "id": 34066, + "model_id": 34042, + "year": "1989" + }, + { + "id": 34072, + "model_id": 34042, + "year": "1990" + }, + { + "id": 34078, + "model_id": 34042, + "year": "1991" + }, + { + "id": 34082, + "model_id": 34042, + "year": "1992" + }, + { + "id": 34085, + "model_id": 34042, + "year": "1993" + }, + { + "id": 34089, + "model_id": 34042, + "year": "1994" + }, + { + "id": 34093, + "model_id": 34042, + "year": "1995" + }, + { + "id": 34097, + "model_id": 34042, + "year": "1996" + }, + { + "id": 34101, + "model_id": 34042, + "year": "1997" + }, + { + "id": 34105, + "model_id": 34042, + "year": "1998" + }, + { + "id": 34108, + "model_id": 34042, + "year": "1999" + }, + { + "id": 34111, + "model_id": 34042, + "year": "2000" + }, + { + "id": 34114, + "model_id": 34042, + "year": "2001" + }, + { + "id": 34117, + "model_id": 34042, + "year": "2002" + }, + { + "id": 34120, + "model_id": 34042, + "year": "2003" + }, + { + "id": 34122, + "model_id": 34042, + "year": "2004" + }, + { + "id": 34124, + "model_id": 34042, + "year": "2005" + }, + { + "id": 34127, + "model_id": 34042, + "year": "2006" + }, + { + "id": 34130, + "model_id": 34042, + "year": "2007" + }, + { + "id": 34132, + "model_id": 34042, + "year": "2008" + }, + { + "id": 34134, + "model_id": 34042, + "year": "2009" + }, + { + "id": 34138, + "model_id": 34042, + "year": "2010" + }, + { + "id": 34142, + "model_id": 34042, + "year": "2011" + }, + { + "id": 34146, + "model_id": 34042, + "year": "2012" + }, + { + "id": 34148, + "model_id": 34042, + "year": "2013" + }, + { + "id": 34150, + "model_id": 34042, + "year": "2014" + }, + { + "id": 34154, + "model_id": 34042, + "year": "2015" + }, + { + "id": 34158, + "model_id": 34042, + "year": "2016" + }, + { + "id": 34162, + "model_id": 34162, + "year": "1988" + }, + { + "id": 34164, + "model_id": 34162, + "year": "1989" + }, + { + "id": 34166, + "model_id": 34162, + "year": "1990" + }, + { + "id": 34168, + "model_id": 34162, + "year": "1991" + }, + { + "id": 34170, + "model_id": 34162, + "year": "1992" + }, + { + "id": 34172, + "model_id": 34172, + "year": "1987" + }, + { + "id": 34174, + "model_id": 34172, + "year": "1988" + }, + { + "id": 34178, + "model_id": 34178, + "year": "2014" + }, + { + "id": 34180, + "model_id": 34178, + "year": "2015" + }, + { + "id": 34182, + "model_id": 34178, + "year": "2016" + }, + { + "id": 34184, + "model_id": 34184, + "year": "1984" + }, + { + "id": 34188, + "model_id": 34184, + "year": "1985" + }, + { + "id": 34192, + "model_id": 34184, + "year": "1986" + }, + { + "id": 34195, + "model_id": 34184, + "year": "1987" + }, + { + "id": 34198, + "model_id": 34198, + "year": "1988" + }, + { + "id": 34200, + "model_id": 34198, + "year": "1989" + }, + { + "id": 34202, + "model_id": 34198, + "year": "1990" + }, + { + "id": 34204, + "model_id": 34198, + "year": "1991" + }, + { + "id": 34206, + "model_id": 34198, + "year": "1992" + }, + { + "id": 34208, + "model_id": 34198, + "year": "1993" + }, + { + "id": 34210, + "model_id": 34198, + "year": "1994" + }, + { + "id": 34212, + "model_id": 34198, + "year": "1995" + }, + { + "id": 34214, + "model_id": 34198, + "year": "1996" + }, + { + "id": 34216, + "model_id": 34216, + "year": "1984" + }, + { + "id": 34220, + "model_id": 34216, + "year": "1985" + }, + { + "id": 34222, + "model_id": 34216, + "year": "1986" + }, + { + "id": 34224, + "model_id": 34216, + "year": "1987" + }, + { + "id": 34226, + "model_id": 34216, + "year": "1988" + }, + { + "id": 34227, + "model_id": 34216, + "year": "1989" + }, + { + "id": 34228, + "model_id": 34216, + "year": "1990" + }, + { + "id": 34229, + "model_id": 34216, + "year": "1991" + }, + { + "id": 34230, + "model_id": 34216, + "year": "1992" + }, + { + "id": 34231, + "model_id": 34231, + "year": "1984" + }, + { + "id": 34233, + "model_id": 34231, + "year": "1985" + }, + { + "id": 34234, + "model_id": 34231, + "year": "1986" + }, + { + "id": 34235, + "model_id": 34231, + "year": "1987" + }, + { + "id": 34236, + "model_id": 34236, + "year": "2000" + }, + { + "id": 34238, + "model_id": 34236, + "year": "2001" + }, + { + "id": 34240, + "model_id": 34236, + "year": "2002" + }, + { + "id": 34242, + "model_id": 34236, + "year": "2003" + }, + { + "id": 34244, + "model_id": 34236, + "year": "2004" + }, + { + "id": 34246, + "model_id": 34236, + "year": "2005" + }, + { + "id": 34248, + "model_id": 34248, + "year": "2007" + }, + { + "id": 34251, + "model_id": 34248, + "year": "2008" + }, + { + "id": 34254, + "model_id": 34248, + "year": "2009" + }, + { + "id": 34257, + "model_id": 34248, + "year": "2010" + }, + { + "id": 34260, + "model_id": 34248, + "year": "2011" + }, + { + "id": 34263, + "model_id": 34248, + "year": "2012" + }, + { + "id": 34266, + "model_id": 34248, + "year": "2013" + }, + { + "id": 34269, + "model_id": 34248, + "year": "2014" + }, + { + "id": 34272, + "model_id": 34272, + "year": "2001" + }, + { + "id": 34276, + "model_id": 34272, + "year": "2002" + }, + { + "id": 34280, + "model_id": 34272, + "year": "2003" + }, + { + "id": 34284, + "model_id": 34272, + "year": "2004" + }, + { + "id": 34288, + "model_id": 34272, + "year": "2005" + }, + { + "id": 34292, + "model_id": 34272, + "year": "2006" + }, + { + "id": 34296, + "model_id": 34272, + "year": "2007" + }, + { + "id": 34300, + "model_id": 34272, + "year": "2008" + }, + { + "id": 34302, + "model_id": 34272, + "year": "2009" + }, + { + "id": 34305, + "model_id": 34272, + "year": "2010" + }, + { + "id": 34308, + "model_id": 34272, + "year": "2011" + }, + { + "id": 34311, + "model_id": 34272, + "year": "2012" + }, + { + "id": 34314, + "model_id": 34272, + "year": "2013" + }, + { + "id": 34317, + "model_id": 34272, + "year": "2014" + }, + { + "id": 34320, + "model_id": 34272, + "year": "2015" + }, + { + "id": 34323, + "model_id": 34272, + "year": "2016" + }, + { + "id": 34326, + "model_id": 34326, + "year": "2006" + }, + { + "id": 34328, + "model_id": 34326, + "year": "2007" + }, + { + "id": 34330, + "model_id": 34326, + "year": "2008" + }, + { + "id": 34331, + "model_id": 34326, + "year": "2009" + }, + { + "id": 34332, + "model_id": 34326, + "year": "2010" + }, + { + "id": 34333, + "model_id": 34326, + "year": "2011" + }, + { + "id": 34334, + "model_id": 34326, + "year": "2012" + }, + { + "id": 34335, + "model_id": 34326, + "year": "2013" + }, + { + "id": 34336, + "model_id": 34326, + "year": "2014" + }, + { + "id": 34337, + "model_id": 34326, + "year": "2015" + }, + { + "id": 34338, + "model_id": 34326, + "year": "2016" + }, + { + "id": 34339, + "model_id": 34339, + "year": "2014" + }, + { + "id": 34340, + "model_id": 34339, + "year": "2015" + }, + { + "id": 34341, + "model_id": 34339, + "year": "2016" + }, + { + "id": 34342, + "model_id": 34342, + "year": "1984" + }, + { + "id": 34343, + "model_id": 34342, + "year": "1985" + }, + { + "id": 34344, + "model_id": 34342, + "year": "1986" + }, + { + "id": 34345, + "model_id": 34342, + "year": "1987" + }, + { + "id": 34346, + "model_id": 34342, + "year": "1988" + }, + { + "id": 34347, + "model_id": 34342, + "year": "1989" + }, + { + "id": 34348, + "model_id": 34342, + "year": "1990" + }, + { + "id": 34349, + "model_id": 34342, + "year": "1991" + }, + { + "id": 34350, + "model_id": 34342, + "year": "1992" + }, + { + "id": 34351, + "model_id": 34342, + "year": "1993" + }, + { + "id": 34352, + "model_id": 34342, + "year": "1994" + }, + { + "id": 34353, + "model_id": 34342, + "year": "1995" + }, + { + "id": 34354, + "model_id": 34342, + "year": "1996" + }, + { + "id": 34355, + "model_id": 34342, + "year": "1997" + }, + { + "id": 34356, + "model_id": 34342, + "year": "1998" + }, + { + "id": 34357, + "model_id": 34342, + "year": "1999" + }, + { + "id": 34358, + "model_id": 34342, + "year": "2000" + }, + { + "id": 34359, + "model_id": 34342, + "year": "2001" + }, + { + "id": 34360, + "model_id": 34342, + "year": "2002" + }, + { + "id": 34361, + "model_id": 34342, + "year": "2003" + }, + { + "id": 34362, + "model_id": 34342, + "year": "2004" + }, + { + "id": 34363, + "model_id": 34342, + "year": "2005" + }, + { + "id": 34364, + "model_id": 34342, + "year": "2006" + }, + { + "id": 34365, + "model_id": 34342, + "year": "2007" + }, + { + "id": 34366, + "model_id": 34342, + "year": "2008" + }, + { + "id": 34367, + "model_id": 34342, + "year": "2009" + }, + { + "id": 34368, + "model_id": 34342, + "year": "2010" + }, + { + "id": 34369, + "model_id": 34342, + "year": "2011" + }, + { + "id": 34370, + "model_id": 34342, + "year": "2013" + }, + { + "id": 34371, + "model_id": 34342, + "year": "2014" + }, + { + "id": 34372, + "model_id": 34342, + "year": "2015" + }, + { + "id": 34373, + "model_id": 34342, + "year": "2016" + }, + { + "id": 34374, + "model_id": 34374, + "year": "2003" + }, + { + "id": 34379, + "model_id": 34374, + "year": "2004" + }, + { + "id": 34383, + "model_id": 34374, + "year": "2005" + }, + { + "id": 34387, + "model_id": 34374, + "year": "2006" + }, + { + "id": 34391, + "model_id": 34374, + "year": "2007" + }, + { + "id": 34393, + "model_id": 34374, + "year": "2008" + }, + { + "id": 34395, + "model_id": 34374, + "year": "2009" + }, + { + "id": 34400, + "model_id": 34374, + "year": "2010" + }, + { + "id": 34405, + "model_id": 34374, + "year": "2011" + }, + { + "id": 34410, + "model_id": 34374, + "year": "2012" + }, + { + "id": 34415, + "model_id": 34374, + "year": "2013" + }, + { + "id": 34420, + "model_id": 34420, + "year": "1985" + }, + { + "id": 34421, + "model_id": 34420, + "year": "1986" + }, + { + "id": 34423, + "model_id": 34420, + "year": "1987" + }, + { + "id": 34425, + "model_id": 34420, + "year": "1988" + }, + { + "id": 34429, + "model_id": 34420, + "year": "1989" + }, + { + "id": 34433, + "model_id": 34420, + "year": "1991" + }, + { + "id": 34436, + "model_id": 34420, + "year": "1992" + }, + { + "id": 34439, + "model_id": 34420, + "year": "1993" + }, + { + "id": 34442, + "model_id": 34420, + "year": "1994" + }, + { + "id": 34445, + "model_id": 34420, + "year": "1995" + }, + { + "id": 34448, + "model_id": 34420, + "year": "2000" + }, + { + "id": 34449, + "model_id": 34420, + "year": "2001" + }, + { + "id": 34450, + "model_id": 34420, + "year": "2002" + }, + { + "id": 34451, + "model_id": 34420, + "year": "2003" + }, + { + "id": 34453, + "model_id": 34420, + "year": "2004" + }, + { + "id": 34455, + "model_id": 34420, + "year": "2005" + }, + { + "id": 34457, + "model_id": 34457, + "year": "1992" + }, + { + "id": 34459, + "model_id": 34457, + "year": "1993" + }, + { + "id": 34461, + "model_id": 34457, + "year": "1994" + }, + { + "id": 34463, + "model_id": 34457, + "year": "1995" + }, + { + "id": 34465, + "model_id": 34457, + "year": "1996" + }, + { + "id": 34467, + "model_id": 34457, + "year": "1997" + }, + { + "id": 34469, + "model_id": 34457, + "year": "1998" + }, + { + "id": 34471, + "model_id": 34457, + "year": "1999" + }, + { + "id": 34473, + "model_id": 34473, + "year": "1997" + }, + { + "id": 34475, + "model_id": 34473, + "year": "1998" + }, + { + "id": 34477, + "model_id": 34473, + "year": "1999" + }, + { + "id": 34479, + "model_id": 34479, + "year": "1991" + }, + { + "id": 34481, + "model_id": 34479, + "year": "1992" + }, + { + "id": 34483, + "model_id": 34479, + "year": "1993" + }, + { + "id": 34485, + "model_id": 34479, + "year": "1994" + }, + { + "id": 34487, + "model_id": 34479, + "year": "1995" + }, + { + "id": 34489, + "model_id": 34479, + "year": "1996" + }, + { + "id": 34490, + "model_id": 34479, + "year": "1997" + }, + { + "id": 34491, + "model_id": 34491, + "year": "1991" + }, + { + "id": 34493, + "model_id": 34491, + "year": "1992" + }, + { + "id": 34495, + "model_id": 34491, + "year": "1993" + }, + { + "id": 34496, + "model_id": 34491, + "year": "1994" + }, + { + "id": 34498, + "model_id": 34491, + "year": "1995" + }, + { + "id": 34500, + "model_id": 34491, + "year": "1996" + }, + { + "id": 34501, + "model_id": 34491, + "year": "1997" + }, + { + "id": 34502, + "model_id": 34502, + "year": "2001" + }, + { + "id": 34503, + "model_id": 34502, + "year": "2002" + }, + { + "id": 34504, + "model_id": 34502, + "year": "2003" + }, + { + "id": 34505, + "model_id": 34502, + "year": "2004" + }, + { + "id": 34506, + "model_id": 34502, + "year": "2005" + }, + { + "id": 34507, + "model_id": 34502, + "year": "2006" + }, + { + "id": 34508, + "model_id": 34502, + "year": "2007" + }, + { + "id": 34509, + "model_id": 34502, + "year": "2008" + }, + { + "id": 34510, + "model_id": 34502, + "year": "2009" + }, + { + "id": 34511, + "model_id": 34502, + "year": "2010" + }, + { + "id": 34512, + "model_id": 34502, + "year": "2011" + }, + { + "id": 34513, + "model_id": 34502, + "year": "2012" + }, + { + "id": 34514, + "model_id": 34502, + "year": "2013" + }, + { + "id": 34515, + "model_id": 34502, + "year": "2014" + }, + { + "id": 34516, + "model_id": 34502, + "year": "2015" + }, + { + "id": 34517, + "model_id": 34502, + "year": "2016" + }, + { + "id": 34518, + "model_id": 34518, + "year": "2012" + }, + { + "id": 34519, + "model_id": 34518, + "year": "2013" + }, + { + "id": 34520, + "model_id": 34518, + "year": "2014" + }, + { + "id": 34521, + "model_id": 34518, + "year": "2015" + }, + { + "id": 34522, + "model_id": 34518, + "year": "2016" + }, + { + "id": 34523, + "model_id": 34523, + "year": "2016" + }, + { + "id": 34524, + "model_id": 34524, + "year": "2012" + }, + { + "id": 34525, + "model_id": 34524, + "year": "2013" + }, + { + "id": 34526, + "model_id": 34524, + "year": "2014" + }, + { + "id": 34527, + "model_id": 34524, + "year": "2015" + }, + { + "id": 34528, + "model_id": 34528, + "year": "2012" + }, + { + "id": 34529, + "model_id": 34528, + "year": "2013" + }, + { + "id": 34530, + "model_id": 34528, + "year": "2014" + }, + { + "id": 34531, + "model_id": 34528, + "year": "2015" + }, + { + "id": 34532, + "model_id": 34528, + "year": "2016" + }, + { + "id": 34533, + "model_id": 34528, + "year": "2017" + }, + { + "id": 34534, + "model_id": 34534, + "year": "1996" + }, + { + "id": 34538, + "model_id": 34534, + "year": "1997" + }, + { + "id": 34542, + "model_id": 34534, + "year": "1998" + }, + { + "id": 34546, + "model_id": 34534, + "year": "1999" + }, + { + "id": 34550, + "model_id": 34534, + "year": "2000" + }, + { + "id": 34554, + "model_id": 34534, + "year": "2001" + }, + { + "id": 34558, + "model_id": 34534, + "year": "2002" + }, + { + "id": 34562, + "model_id": 34534, + "year": "2003" + }, + { + "id": 34566, + "model_id": 34534, + "year": "2004" + }, + { + "id": 34570, + "model_id": 34534, + "year": "2005" + }, + { + "id": 34574, + "model_id": 34534, + "year": "2006" + }, + { + "id": 34578, + "model_id": 34534, + "year": "2007" + }, + { + "id": 34582, + "model_id": 34534, + "year": "2008" + }, + { + "id": 34586, + "model_id": 34534, + "year": "2009" + }, + { + "id": 34590, + "model_id": 34534, + "year": "2010" + }, + { + "id": 34594, + "model_id": 34534, + "year": "2011" + }, + { + "id": 34598, + "model_id": 34534, + "year": "2012" + }, + { + "id": 34602, + "model_id": 34534, + "year": "2013" + }, + { + "id": 34604, + "model_id": 34534, + "year": "2014" + }, + { + "id": 34606, + "model_id": 34534, + "year": "2015" + }, + { + "id": 34608, + "model_id": 34534, + "year": "2016" + }, + { + "id": 34610, + "model_id": 34610, + "year": "2000" + }, + { + "id": 34611, + "model_id": 34610, + "year": "2001" + }, + { + "id": 34612, + "model_id": 34610, + "year": "2002" + }, + { + "id": 34613, + "model_id": 34610, + "year": "2003" + }, + { + "id": 34614, + "model_id": 34610, + "year": "2012" + }, + { + "id": 34615, + "model_id": 34610, + "year": "2013" + }, + { + "id": 34616, + "model_id": 34610, + "year": "2014" + }, + { + "id": 34617, + "model_id": 34617, + "year": "2016" + }, + { + "id": 34618, + "model_id": 34618, + "year": "2015" + }, + { + "id": 34619, + "model_id": 34618, + "year": "2016" + }, + { + "id": 34620, + "model_id": 34620, + "year": "2013" + }, + { + "id": 34621, + "model_id": 34620, + "year": "2014" + }, + { + "id": 34622, + "model_id": 34620, + "year": "2015" + }, + { + "id": 34623, + "model_id": 34623, + "year": "2016" + }, + { + "id": 34624, + "model_id": 34624, + "year": "1998" + }, + { + "id": 34628, + "model_id": 34624, + "year": "1999" + }, + { + "id": 34632, + "model_id": 34624, + "year": "2000" + }, + { + "id": 34636, + "model_id": 34636, + "year": "2001" + }, + { + "id": 34638, + "model_id": 34636, + "year": "2002" + }, + { + "id": 34640, + "model_id": 34636, + "year": "2003" + }, + { + "id": 34642, + "model_id": 34636, + "year": "2004" + }, + { + "id": 34644, + "model_id": 34636, + "year": "2005" + }, + { + "id": 34646, + "model_id": 34636, + "year": "2006" + }, + { + "id": 34648, + "model_id": 34636, + "year": "2007" + }, + { + "id": 34650, + "model_id": 34636, + "year": "2008" + }, + { + "id": 34654, + "model_id": 34636, + "year": "2009" + }, + { + "id": 34659, + "model_id": 34636, + "year": "2010" + }, + { + "id": 34664, + "model_id": 34636, + "year": "2011" + }, + { + "id": 34669, + "model_id": 34636, + "year": "2012" + }, + { + "id": 34674, + "model_id": 34636, + "year": "2013" + }, + { + "id": 34677, + "model_id": 34636, + "year": "2014" + }, + { + "id": 34680, + "model_id": 34636, + "year": "2015" + }, + { + "id": 34683, + "model_id": 34636, + "year": "2016" + }, + { + "id": 34686, + "model_id": 34686, + "year": "1998" + }, + { + "id": 34687, + "model_id": 34686, + "year": "1999" + }, + { + "id": 34688, + "model_id": 34686, + "year": "2000" + }, + { + "id": 34689, + "model_id": 34686, + "year": "2001" + }, + { + "id": 34690, + "model_id": 34686, + "year": "2002" + }, + { + "id": 34691, + "model_id": 34686, + "year": "2003" + }, + { + "id": 34692, + "model_id": 34686, + "year": "2004" + }, + { + "id": 34694, + "model_id": 34686, + "year": "2005" + }, + { + "id": 34696, + "model_id": 34686, + "year": "2006" + }, + { + "id": 34698, + "model_id": 34686, + "year": "2007" + }, + { + "id": 34700, + "model_id": 34686, + "year": "2008" + }, + { + "id": 34702, + "model_id": 34686, + "year": "2009" + }, + { + "id": 34704, + "model_id": 34686, + "year": "2010" + }, + { + "id": 34706, + "model_id": 34686, + "year": "2011" + }, + { + "id": 34709, + "model_id": 34686, + "year": "2012" + }, + { + "id": 34712, + "model_id": 34686, + "year": "2013" + }, + { + "id": 34715, + "model_id": 34686, + "year": "2014" + }, + { + "id": 34717, + "model_id": 34686, + "year": "2015" + }, + { + "id": 34719, + "model_id": 34686, + "year": "2016" + }, + { + "id": 34721, + "model_id": 34721, + "year": "1984" + }, + { + "id": 34724, + "model_id": 34724, + "year": "1986" + }, + { + "id": 34726, + "model_id": 34724, + "year": "1987" + }, + { + "id": 34730, + "model_id": 34724, + "year": "1988" + }, + { + "id": 34734, + "model_id": 34724, + "year": "1989" + }, + { + "id": 34738, + "model_id": 34724, + "year": "1990" + }, + { + "id": 34742, + "model_id": 34724, + "year": "1991" + }, + { + "id": 34746, + "model_id": 34724, + "year": "1992" + }, + { + "id": 34750, + "model_id": 34724, + "year": "1993" + }, + { + "id": 34754, + "model_id": 34724, + "year": "1994" + }, + { + "id": 34758, + "model_id": 34724, + "year": "1995" + }, + { + "id": 34762, + "model_id": 34724, + "year": "1996" + }, + { + "id": 34765, + "model_id": 34724, + "year": "1997" + }, + { + "id": 34769, + "model_id": 34724, + "year": "1998" + }, + { + "id": 34772, + "model_id": 34772, + "year": "1993" + }, + { + "id": 34777, + "model_id": 34772, + "year": "1994" + }, + { + "id": 34782, + "model_id": 34772, + "year": "1995" + }, + { + "id": 34788, + "model_id": 34772, + "year": "1996" + }, + { + "id": 34794, + "model_id": 34772, + "year": "1997" + }, + { + "id": 34800, + "model_id": 34772, + "year": "1998" + }, + { + "id": 34806, + "model_id": 34806, + "year": "1995" + }, + { + "id": 34814, + "model_id": 34806, + "year": "1996" + }, + { + "id": 34822, + "model_id": 34806, + "year": "1997" + }, + { + "id": 34830, + "model_id": 34806, + "year": "1998" + }, + { + "id": 34840, + "model_id": 34806, + "year": "1999" + }, + { + "id": 34849, + "model_id": 34806, + "year": "2000" + }, + { + "id": 34858, + "model_id": 34806, + "year": "2001" + }, + { + "id": 34867, + "model_id": 34806, + "year": "2002" + }, + { + "id": 34876, + "model_id": 34806, + "year": "2003" + }, + { + "id": 34885, + "model_id": 34806, + "year": "2004" + }, + { + "id": 34894, + "model_id": 34806, + "year": "2005" + }, + { + "id": 34901, + "model_id": 34806, + "year": "2006" + }, + { + "id": 34908, + "model_id": 34806, + "year": "2007" + }, + { + "id": 34915, + "model_id": 34806, + "year": "2008" + }, + { + "id": 34922, + "model_id": 34806, + "year": "2009" + }, + { + "id": 34929, + "model_id": 34806, + "year": "2010" + }, + { + "id": 34936, + "model_id": 34806, + "year": "2011" + }, + { + "id": 34944, + "model_id": 34806, + "year": "2012" + }, + { + "id": 34952, + "model_id": 34806, + "year": "2013" + }, + { + "id": 34960, + "model_id": 34806, + "year": "2014" + }, + { + "id": 34968, + "model_id": 34806, + "year": "2015" + }, + { + "id": 34976, + "model_id": 34806, + "year": "2016" + }, + { + "id": 34982, + "model_id": 34982, + "year": "2016" + }, + { + "id": 34983, + "model_id": 34983, + "year": "1984" + }, + { + "id": 34989, + "model_id": 34983, + "year": "1985" + }, + { + "id": 34994, + "model_id": 34983, + "year": "1986" + }, + { + "id": 34997, + "model_id": 34983, + "year": "1987" + }, + { + "id": 35000, + "model_id": 34983, + "year": "1988" + }, + { + "id": 35003, + "model_id": 34983, + "year": "1989" + }, + { + "id": 35006, + "model_id": 34983, + "year": "1990" + }, + { + "id": 35010, + "model_id": 34983, + "year": "1991" + }, + { + "id": 35013, + "model_id": 34983, + "year": "1992" + }, + { + "id": 35016, + "model_id": 34983, + "year": "1993" + }, + { + "id": 35019, + "model_id": 34983, + "year": "1994" + }, + { + "id": 35022, + "model_id": 34983, + "year": "1995" + }, + { + "id": 35026, + "model_id": 34983, + "year": "1996" + }, + { + "id": 35030, + "model_id": 34983, + "year": "1997" + }, + { + "id": 35033, + "model_id": 34983, + "year": "1998" + }, + { + "id": 35036, + "model_id": 34983, + "year": "1999" + }, + { + "id": 35039, + "model_id": 35039, + "year": "1988" + }, + { + "id": 35040, + "model_id": 35040, + "year": "1984" + }, + { + "id": 35048, + "model_id": 35040, + "year": "1985" + }, + { + "id": 35055, + "model_id": 35040, + "year": "1986" + }, + { + "id": 35059, + "model_id": 35040, + "year": "1987" + }, + { + "id": 35063, + "model_id": 35040, + "year": "1988" + }, + { + "id": 35065, + "model_id": 35065, + "year": "1984" + }, + { + "id": 35081, + "model_id": 35065, + "year": "1985" + }, + { + "id": 35098, + "model_id": 35065, + "year": "1986" + }, + { + "id": 35114, + "model_id": 35065, + "year": "1987" + }, + { + "id": 35128, + "model_id": 35065, + "year": "1988" + }, + { + "id": 35139, + "model_id": 35065, + "year": "1989" + }, + { + "id": 35150, + "model_id": 35065, + "year": "1990" + }, + { + "id": 35161, + "model_id": 35065, + "year": "1991" + }, + { + "id": 35169, + "model_id": 35065, + "year": "1992" + }, + { + "id": 35177, + "model_id": 35065, + "year": "1994" + }, + { + "id": 35185, + "model_id": 35065, + "year": "1995" + }, + { + "id": 35193, + "model_id": 35193, + "year": "1993" + }, + { + "id": 35203, + "model_id": 35203, + "year": "2000" + }, + { + "id": 35209, + "model_id": 35203, + "year": "2001" + }, + { + "id": 35215, + "model_id": 35203, + "year": "2002" + }, + { + "id": 35221, + "model_id": 35203, + "year": "2003" + }, + { + "id": 35227, + "model_id": 35203, + "year": "2004" + }, + { + "id": 35233, + "model_id": 35203, + "year": "2005" + }, + { + "id": 35237, + "model_id": 35203, + "year": "2006" + }, + { + "id": 35241, + "model_id": 35203, + "year": "2007" + }, + { + "id": 35246, + "model_id": 35203, + "year": "2008" + }, + { + "id": 35251, + "model_id": 35203, + "year": "2009" + }, + { + "id": 35257, + "model_id": 35203, + "year": "2010" + }, + { + "id": 35263, + "model_id": 35203, + "year": "2011" + }, + { + "id": 35269, + "model_id": 35203, + "year": "2012" + }, + { + "id": 35275, + "model_id": 35203, + "year": "2013" + }, + { + "id": 35281, + "model_id": 35203, + "year": "2014" + }, + { + "id": 35287, + "model_id": 35203, + "year": "2015" + }, + { + "id": 35292, + "model_id": 35203, + "year": "2016" + }, + { + "id": 35298, + "model_id": 35298, + "year": "1984" + }, + { + "id": 35302, + "model_id": 35298, + "year": "1985" + }, + { + "id": 35304, + "model_id": 35298, + "year": "1986" + }, + { + "id": 35306, + "model_id": 35298, + "year": "1987" + }, + { + "id": 35310, + "model_id": 35310, + "year": "1988" + }, + { + "id": 35314, + "model_id": 35310, + "year": "1989" + }, + { + "id": 35317, + "model_id": 35317, + "year": "1988" + }, + { + "id": 35321, + "model_id": 35317, + "year": "1989" + }, + { + "id": 35325, + "model_id": 35325, + "year": "2009" + }, + { + "id": 35329, + "model_id": 35325, + "year": "2010" + }, + { + "id": 35333, + "model_id": 35325, + "year": "2011" + }, + { + "id": 35337, + "model_id": 35325, + "year": "2012" + }, + { + "id": 35341, + "model_id": 35325, + "year": "2013" + }, + { + "id": 35345, + "model_id": 35325, + "year": "2014" + }, + { + "id": 35349, + "model_id": 35325, + "year": "2015" + }, + { + "id": 35353, + "model_id": 35353, + "year": "2007" + }, + { + "id": 35355, + "model_id": 35353, + "year": "2008" + }, + { + "id": 35357, + "model_id": 35353, + "year": "2009" + }, + { + "id": 35359, + "model_id": 35353, + "year": "2010" + }, + { + "id": 35361, + "model_id": 35353, + "year": "2011" + }, + { + "id": 35363, + "model_id": 35353, + "year": "2012" + }, + { + "id": 35365, + "model_id": 35353, + "year": "2013" + }, + { + "id": 35367, + "model_id": 35353, + "year": "2014" + }, + { + "id": 35369, + "model_id": 35353, + "year": "2015" + }, + { + "id": 35371, + "model_id": 35353, + "year": "2016" + }, + { + "id": 35373, + "model_id": 35373, + "year": "1985" + }, + { + "id": 35374, + "model_id": 35374, + "year": "1985" + }, + { + "id": 35375, + "model_id": 35375, + "year": "1986" + }, + { + "id": 35376, + "model_id": 35376, + "year": "1986" + }, + { + "id": 35377, + "model_id": 35377, + "year": "1996" + }, + { + "id": 35378, + "model_id": 35377, + "year": "1997" + }, + { + "id": 35379, + "model_id": 35379, + "year": "1992" + }, + { + "id": 35380, + "model_id": 35379, + "year": "1993" + }, + { + "id": 35381, + "model_id": 35381, + "year": "1986" + }, + { + "id": 35382, + "model_id": 35382, + "year": "1986" + }, + { + "id": 35383, + "model_id": 35383, + "year": "2012" + }, + { + "id": 35387, + "model_id": 35383, + "year": "2013" + }, + { + "id": 35393, + "model_id": 35383, + "year": "2014" + }, + { + "id": 35401, + "model_id": 35383, + "year": "2015" + }, + { + "id": 35407, + "model_id": 35383, + "year": "2016" + }, + { + "id": 35411, + "model_id": 35411, + "year": "2013" + }, + { + "id": 35416, + "model_id": 35411, + "year": "2014" + }, + { + "id": 35422, + "model_id": 35411, + "year": "2015" + }, + { + "id": 35427, + "model_id": 35411, + "year": "2016" + }, + { + "id": 35430, + "model_id": 35430, + "year": "2016" + }, + { + "id": 35431, + "model_id": 35431, + "year": "1995" + }, + { + "id": 35433, + "model_id": 35431, + "year": "1996" + }, + { + "id": 35435, + "model_id": 35431, + "year": "1997" + }, + { + "id": 35437, + "model_id": 35431, + "year": "1998" + }, + { + "id": 35439, + "model_id": 35431, + "year": "1999" + }, + { + "id": 35441, + "model_id": 35431, + "year": "2000" + }, + { + "id": 35443, + "model_id": 35431, + "year": "2001" + }, + { + "id": 35445, + "model_id": 35431, + "year": "2002" + }, + { + "id": 35447, + "model_id": 35447, + "year": "1985" + }, + { + "id": 35449, + "model_id": 35447, + "year": "1986" + }, + { + "id": 35451, + "model_id": 35447, + "year": "1987" + }, + { + "id": 35453, + "model_id": 35447, + "year": "1988" + }, + { + "id": 35455, + "model_id": 35447, + "year": "1989" + }, + { + "id": 35457, + "model_id": 35447, + "year": "1990" + }, + { + "id": 35459, + "model_id": 35447, + "year": "1991" + }, + { + "id": 35461, + "model_id": 35447, + "year": "1992" + }, + { + "id": 35463, + "model_id": 35447, + "year": "1993" + }, + { + "id": 35465, + "model_id": 35465, + "year": "2009" + }, + { + "id": 35468, + "model_id": 35465, + "year": "2010" + }, + { + "id": 35471, + "model_id": 35465, + "year": "2011" + }, + { + "id": 35473, + "model_id": 35465, + "year": "2012" + }, + { + "id": 35475, + "model_id": 35465, + "year": "2013" + }, + { + "id": 35478, + "model_id": 35465, + "year": "2014" + }, + { + "id": 35480, + "model_id": 35465, + "year": "2015" + }, + { + "id": 35482, + "model_id": 35465, + "year": "2016" + }, + { + "id": 35484, + "model_id": 35484, + "year": "2009" + }, + { + "id": 35485, + "model_id": 35484, + "year": "2010" + }, + { + "id": 35486, + "model_id": 35484, + "year": "2011" + }, + { + "id": 35487, + "model_id": 35484, + "year": "2012" + }, + { + "id": 35488, + "model_id": 35484, + "year": "2013" + }, + { + "id": 35489, + "model_id": 35484, + "year": "2014" + }, + { + "id": 35490, + "model_id": 35484, + "year": "2015" + }, + { + "id": 35491, + "model_id": 35484, + "year": "2016" + }, + { + "id": 35492, + "model_id": 35492, + "year": "1990" + }, + { + "id": 35493, + "model_id": 35492, + "year": "1991" + }, + { + "id": 35495, + "model_id": 35492, + "year": "1992" + }, + { + "id": 35497, + "model_id": 35497, + "year": "1992" + }, + { + "id": 35499, + "model_id": 35497, + "year": "1993" + }, + { + "id": 35502, + "model_id": 35497, + "year": "1994" + }, + { + "id": 35504, + "model_id": 35504, + "year": "2015" + }, + { + "id": 35505, + "model_id": 35504, + "year": "2016" + }, + { + "id": 35506, + "model_id": 35506, + "year": "2007" + }, + { + "id": 35509, + "model_id": 35506, + "year": "2008" + }, + { + "id": 35512, + "model_id": 35506, + "year": "2009" + }, + { + "id": 35514, + "model_id": 35506, + "year": "2010" + }, + { + "id": 35516, + "model_id": 35506, + "year": "2011" + }, + { + "id": 35518, + "model_id": 35506, + "year": "2012" + }, + { + "id": 35519, + "model_id": 35506, + "year": "2013" + }, + { + "id": 35520, + "model_id": 35506, + "year": "2014" + }, + { + "id": 35521, + "model_id": 35506, + "year": "2015" + }, + { + "id": 35522, + "model_id": 35506, + "year": "2016" + }, + { + "id": 35523, + "model_id": 35523, + "year": "1993" + }, + { + "id": 35526, + "model_id": 35523, + "year": "1994" + }, + { + "id": 35528, + "model_id": 35523, + "year": "1999" + }, + { + "id": 35529, + "model_id": 35523, + "year": "2000" + }, + { + "id": 35530, + "model_id": 35523, + "year": "2001" + }, + { + "id": 35531, + "model_id": 35523, + "year": "2002" + }, + { + "id": 35532, + "model_id": 35523, + "year": "2003" + }, + { + "id": 35533, + "model_id": 35533, + "year": "1995" + }, + { + "id": 35535, + "model_id": 35533, + "year": "1997" + }, + { + "id": 35536, + "model_id": 35533, + "year": "1999" + }, + { + "id": 35537, + "model_id": 35533, + "year": "2000" + }, + { + "id": 35538, + "model_id": 35533, + "year": "2001" + }, + { + "id": 35539, + "model_id": 35533, + "year": "2002" + }, + { + "id": 35540, + "model_id": 35533, + "year": "2003" + }, + { + "id": 35541, + "model_id": 35541, + "year": "1987" + }, + { + "id": 35542, + "model_id": 35541, + "year": "1988" + }, + { + "id": 35544, + "model_id": 35541, + "year": "1989" + }, + { + "id": 35546, + "model_id": 35541, + "year": "1990" + }, + { + "id": 35548, + "model_id": 35541, + "year": "1991" + }, + { + "id": 35550, + "model_id": 35541, + "year": "1992" + }, + { + "id": 35552, + "model_id": 35541, + "year": "1993" + }, + { + "id": 35553, + "model_id": 35553, + "year": "1987" + }, + { + "id": 35554, + "model_id": 35554, + "year": "1988" + }, + { + "id": 35555, + "model_id": 35554, + "year": "1989" + }, + { + "id": 35556, + "model_id": 35554, + "year": "1990" + }, + { + "id": 35557, + "model_id": 35557, + "year": "1986" + }, + { + "id": 35560, + "model_id": 35557, + "year": "1987" + }, + { + "id": 35563, + "model_id": 35557, + "year": "1988" + }, + { + "id": 35565, + "model_id": 35557, + "year": "1989" + }, + { + "id": 35568, + "model_id": 35557, + "year": "1999" + }, + { + "id": 35570, + "model_id": 35557, + "year": "2000" + }, + { + "id": 35576, + "model_id": 35557, + "year": "2001" + }, + { + "id": 35582, + "model_id": 35557, + "year": "2002" + }, + { + "id": 35586, + "model_id": 35557, + "year": "2003" + }, + { + "id": 35590, + "model_id": 35557, + "year": "2004" + }, + { + "id": 35594, + "model_id": 35557, + "year": "2005" + }, + { + "id": 35598, + "model_id": 35557, + "year": "2006" + }, + { + "id": 35602, + "model_id": 35557, + "year": "2010" + }, + { + "id": 35606, + "model_id": 35557, + "year": "2011" + }, + { + "id": 35610, + "model_id": 35557, + "year": "2012" + }, + { + "id": 35614, + "model_id": 35557, + "year": "2013" + }, + { + "id": 35618, + "model_id": 35557, + "year": "2014" + }, + { + "id": 35621, + "model_id": 35557, + "year": "2015" + }, + { + "id": 35625, + "model_id": 35557, + "year": "2016" + }, + { + "id": 35627, + "model_id": 35627, + "year": "1994" + }, + { + "id": 35629, + "model_id": 35627, + "year": "1995" + }, + { + "id": 35631, + "model_id": 35631, + "year": "1993" + }, + { + "id": 35634, + "model_id": 35634, + "year": "2012" + }, + { + "id": 35635, + "model_id": 35634, + "year": "2013" + }, + { + "id": 35636, + "model_id": 35634, + "year": "2015" + }, + { + "id": 35637, + "model_id": 35634, + "year": "2016" + }, + { + "id": 35639, + "model_id": 35639, + "year": "2015" + }, + { + "id": 35643, + "model_id": 35639, + "year": "2016" + }, + { + "id": 35645, + "model_id": 35645, + "year": "1985" + }, + { + "id": 35649, + "model_id": 35645, + "year": "1990" + }, + { + "id": 35651, + "model_id": 35645, + "year": "1991" + }, + { + "id": 35653, + "model_id": 35645, + "year": "1992" + }, + { + "id": 35655, + "model_id": 35645, + "year": "1996" + }, + { + "id": 35658, + "model_id": 35645, + "year": "1997" + }, + { + "id": 35661, + "model_id": 35645, + "year": "1998" + }, + { + "id": 35663, + "model_id": 35663, + "year": "1986" + }, + { + "id": 35664, + "model_id": 35663, + "year": "1999" + }, + { + "id": 35667, + "model_id": 35663, + "year": "2000" + }, + { + "id": 35672, + "model_id": 35663, + "year": "2001" + }, + { + "id": 35675, + "model_id": 35663, + "year": "2002" + }, + { + "id": 35680, + "model_id": 35663, + "year": "2003" + }, + { + "id": 35684, + "model_id": 35663, + "year": "2004" + }, + { + "id": 35687, + "model_id": 35663, + "year": "2005" + }, + { + "id": 35690, + "model_id": 35663, + "year": "2006" + }, + { + "id": 35694, + "model_id": 35663, + "year": "2007" + }, + { + "id": 35696, + "model_id": 35663, + "year": "2008" + }, + { + "id": 35698, + "model_id": 35663, + "year": "2009" + }, + { + "id": 35700, + "model_id": 35663, + "year": "2010" + }, + { + "id": 35702, + "model_id": 35663, + "year": "2011" + }, + { + "id": 35704, + "model_id": 35663, + "year": "2012" + }, + { + "id": 35706, + "model_id": 35663, + "year": "2013" + }, + { + "id": 35708, + "model_id": 35663, + "year": "2014" + }, + { + "id": 35710, + "model_id": 35663, + "year": "2015" + }, + { + "id": 35712, + "model_id": 35663, + "year": "2016" + }, + { + "id": 35714, + "model_id": 35714, + "year": "1987" + }, + { + "id": 35715, + "model_id": 35714, + "year": "1988" + }, + { + "id": 35716, + "model_id": 35714, + "year": "1989" + }, + { + "id": 35717, + "model_id": 35714, + "year": "1990" + }, + { + "id": 35718, + "model_id": 35714, + "year": "1991" + }, + { + "id": 35719, + "model_id": 35714, + "year": "1992" + }, + { + "id": 35720, + "model_id": 35720, + "year": "1995" + }, + { + "id": 35721, + "model_id": 35720, + "year": "1996" + }, + { + "id": 35722, + "model_id": 35720, + "year": "1997" + }, + { + "id": 35723, + "model_id": 35720, + "year": "1998" + }, + { + "id": 35724, + "model_id": 35724, + "year": "1987" + }, + { + "id": 35726, + "model_id": 35726, + "year": "1984" + }, + { + "id": 35741, + "model_id": 35726, + "year": "1985" + }, + { + "id": 35747, + "model_id": 35726, + "year": "1986" + }, + { + "id": 35751, + "model_id": 35726, + "year": "1987" + }, + { + "id": 35753, + "model_id": 35726, + "year": "1988" + }, + { + "id": 35755, + "model_id": 35726, + "year": "1989" + }, + { + "id": 35758, + "model_id": 35726, + "year": "1990" + }, + { + "id": 35761, + "model_id": 35726, + "year": "1991" + }, + { + "id": 35765, + "model_id": 35726, + "year": "1992" + }, + { + "id": 35768, + "model_id": 35726, + "year": "1996" + }, + { + "id": 35771, + "model_id": 35726, + "year": "1997" + }, + { + "id": 35774, + "model_id": 35726, + "year": "1998" + }, + { + "id": 35777, + "model_id": 35726, + "year": "1999" + }, + { + "id": 35782, + "model_id": 35726, + "year": "2000" + }, + { + "id": 35790, + "model_id": 35726, + "year": "2001" + }, + { + "id": 35798, + "model_id": 35726, + "year": "2002" + }, + { + "id": 35808, + "model_id": 35726, + "year": "2003" + }, + { + "id": 35816, + "model_id": 35726, + "year": "2004" + }, + { + "id": 35824, + "model_id": 35726, + "year": "2005" + }, + { + "id": 35835, + "model_id": 35726, + "year": "2006" + }, + { + "id": 35841, + "model_id": 35726, + "year": "2007" + }, + { + "id": 35845, + "model_id": 35726, + "year": "2008" + }, + { + "id": 35849, + "model_id": 35726, + "year": "2009" + }, + { + "id": 35855, + "model_id": 35726, + "year": "2010" + }, + { + "id": 35861, + "model_id": 35726, + "year": "2011" + }, + { + "id": 35867, + "model_id": 35726, + "year": "2012" + }, + { + "id": 35875, + "model_id": 35726, + "year": "2013" + }, + { + "id": 35883, + "model_id": 35726, + "year": "2014" + }, + { + "id": 35891, + "model_id": 35726, + "year": "2015" + }, + { + "id": 35899, + "model_id": 35726, + "year": "2016" + }, + { + "id": 35905, + "model_id": 35905, + "year": "1986" + }, + { + "id": 35907, + "model_id": 35907, + "year": "1987" + }, + { + "id": 35908, + "model_id": 35907, + "year": "1988" + }, + { + "id": 35909, + "model_id": 35907, + "year": "1989" + }, + { + "id": 35910, + "model_id": 35907, + "year": "1990" + }, + { + "id": 35911, + "model_id": 35907, + "year": "1991" + }, + { + "id": 35912, + "model_id": 35907, + "year": "1992" + }, + { + "id": 35913, + "model_id": 35913, + "year": "1987" + }, + { + "id": 35915, + "model_id": 35915, + "year": "1996" + }, + { + "id": 35917, + "model_id": 35915, + "year": "1997" + }, + { + "id": 35919, + "model_id": 35915, + "year": "1998" + }, + { + "id": 35921, + "model_id": 35921, + "year": "2013" + }, + { + "id": 35922, + "model_id": 35921, + "year": "2014" + }, + { + "id": 35923, + "model_id": 35921, + "year": "2015" + }, + { + "id": 35924, + "model_id": 35921, + "year": "2016" + }, + { + "id": 35925, + "model_id": 35925, + "year": "1993" + }, + { + "id": 35928, + "model_id": 35925, + "year": "1994" + }, + { + "id": 35930, + "model_id": 35925, + "year": "1995" + }, + { + "id": 35932, + "model_id": 35932, + "year": "1994" + }, + { + "id": 35934, + "model_id": 35932, + "year": "1995" + }, + { + "id": 35936, + "model_id": 35936, + "year": "2008" + }, + { + "id": 35938, + "model_id": 35936, + "year": "2009" + }, + { + "id": 35944, + "model_id": 35936, + "year": "2010" + }, + { + "id": 35948, + "model_id": 35936, + "year": "2011" + }, + { + "id": 35952, + "model_id": 35936, + "year": "2012" + }, + { + "id": 35956, + "model_id": 35936, + "year": "2013" + }, + { + "id": 35960, + "model_id": 35936, + "year": "2014" + }, + { + "id": 35964, + "model_id": 35964, + "year": "2001" + }, + { + "id": 35968, + "model_id": 35964, + "year": "2002" + }, + { + "id": 35976, + "model_id": 35964, + "year": "2003" + }, + { + "id": 35982, + "model_id": 35964, + "year": "2004" + }, + { + "id": 35988, + "model_id": 35964, + "year": "2005" + }, + { + "id": 35994, + "model_id": 35994, + "year": "1998" + }, + { + "id": 35998, + "model_id": 35994, + "year": "1999" + }, + { + "id": 36004, + "model_id": 35994, + "year": "2000" + }, + { + "id": 36010, + "model_id": 35994, + "year": "2001" + }, + { + "id": 36016, + "model_id": 35994, + "year": "2002" + }, + { + "id": 36023, + "model_id": 35994, + "year": "2003" + }, + { + "id": 36030, + "model_id": 35994, + "year": "2004" + }, + { + "id": 36037, + "model_id": 35994, + "year": "2005" + }, + { + "id": 36043, + "model_id": 35994, + "year": "2006" + }, + { + "id": 36047, + "model_id": 35994, + "year": "2007" + }, + { + "id": 36049, + "model_id": 35994, + "year": "2008" + }, + { + "id": 36051, + "model_id": 35994, + "year": "2009" + }, + { + "id": 36053, + "model_id": 35994, + "year": "2010" + }, + { + "id": 36055, + "model_id": 36055, + "year": "2003" + }, + { + "id": 36059, + "model_id": 36055, + "year": "2004" + }, + { + "id": 36063, + "model_id": 36055, + "year": "2005" + }, + { + "id": 36067, + "model_id": 36055, + "year": "2006" + }, + { + "id": 36069, + "model_id": 36055, + "year": "2007" + }, + { + "id": 36071, + "model_id": 36055, + "year": "2008" + }, + { + "id": 36073, + "model_id": 36055, + "year": "2009" + }, + { + "id": 36075, + "model_id": 36055, + "year": "2010" + }, + { + "id": 36076, + "model_id": 36076, + "year": "1999" + }, + { + "id": 36080, + "model_id": 36080, + "year": "1999" + }, + { + "id": 36083, + "model_id": 36083, + "year": "1999" + }, + { + "id": 36089, + "model_id": 36089, + "year": "1990" + }, + { + "id": 36091, + "model_id": 36089, + "year": "1991" + }, + { + "id": 36093, + "model_id": 36089, + "year": "1992" + }, + { + "id": 36095, + "model_id": 36089, + "year": "1993" + }, + { + "id": 36101, + "model_id": 36089, + "year": "1994" + }, + { + "id": 36103, + "model_id": 36089, + "year": "1995" + }, + { + "id": 36107, + "model_id": 36089, + "year": "1996" + }, + { + "id": 36112, + "model_id": 36089, + "year": "1997" + }, + { + "id": 36115, + "model_id": 36089, + "year": "1998" + }, + { + "id": 36121, + "model_id": 36089, + "year": "1999" + }, + { + "id": 36127, + "model_id": 36089, + "year": "2000" + }, + { + "id": 36131, + "model_id": 36089, + "year": "2001" + }, + { + "id": 36135, + "model_id": 36089, + "year": "2002" + }, + { + "id": 36139, + "model_id": 36089, + "year": "2003" + }, + { + "id": 36143, + "model_id": 36089, + "year": "2004" + }, + { + "id": 36148, + "model_id": 36089, + "year": "2005" + }, + { + "id": 36153, + "model_id": 36089, + "year": "2006" + }, + { + "id": 36156, + "model_id": 36089, + "year": "2007" + }, + { + "id": 36159, + "model_id": 36089, + "year": "2008" + }, + { + "id": 36162, + "model_id": 36089, + "year": "2009" + }, + { + "id": 36163, + "model_id": 36089, + "year": "2010" + }, + { + "id": 36164, + "model_id": 36089, + "year": "2012" + }, + { + "id": 36169, + "model_id": 36089, + "year": "2013" + }, + { + "id": 36174, + "model_id": 36089, + "year": "2014" + }, + { + "id": 36181, + "model_id": 36089, + "year": "2015" + }, + { + "id": 36186, + "model_id": 36089, + "year": "2016" + }, + { + "id": 36188, + "model_id": 36188, + "year": "2000" + }, + { + "id": 36189, + "model_id": 36188, + "year": "2001" + }, + { + "id": 36190, + "model_id": 36188, + "year": "2002" + }, + { + "id": 36192, + "model_id": 36188, + "year": "2003" + }, + { + "id": 36195, + "model_id": 36188, + "year": "2004" + }, + { + "id": 36200, + "model_id": 36188, + "year": "2005" + }, + { + "id": 36203, + "model_id": 36188, + "year": "2006" + }, + { + "id": 36204, + "model_id": 36188, + "year": "2007" + }, + { + "id": 36205, + "model_id": 36188, + "year": "2008" + }, + { + "id": 36206, + "model_id": 36206, + "year": "1998" + }, + { + "id": 36207, + "model_id": 36206, + "year": "1999" + }, + { + "id": 36209, + "model_id": 36209, + "year": "1990" + }, + { + "id": 36211, + "model_id": 36209, + "year": "1991" + }, + { + "id": 36213, + "model_id": 36209, + "year": "1992" + }, + { + "id": 36215, + "model_id": 36209, + "year": "1993" + }, + { + "id": 36220, + "model_id": 36209, + "year": "1994" + }, + { + "id": 36222, + "model_id": 36209, + "year": "1995" + }, + { + "id": 36224, + "model_id": 36209, + "year": "1996" + }, + { + "id": 36227, + "model_id": 36209, + "year": "1997" + }, + { + "id": 36230, + "model_id": 36209, + "year": "1998" + }, + { + "id": 36234, + "model_id": 36209, + "year": "1999" + }, + { + "id": 36240, + "model_id": 36209, + "year": "2000" + }, + { + "id": 36244, + "model_id": 36209, + "year": "2001" + }, + { + "id": 36248, + "model_id": 36209, + "year": "2002" + }, + { + "id": 36252, + "model_id": 36209, + "year": "2003" + }, + { + "id": 36256, + "model_id": 36209, + "year": "2004" + }, + { + "id": 36261, + "model_id": 36209, + "year": "2005" + }, + { + "id": 36266, + "model_id": 36209, + "year": "2007" + }, + { + "id": 36269, + "model_id": 36209, + "year": "2008" + }, + { + "id": 36271, + "model_id": 36209, + "year": "2009" + }, + { + "id": 36272, + "model_id": 36209, + "year": "2010" + }, + { + "id": 36273, + "model_id": 36273, + "year": "2000" + }, + { + "id": 36274, + "model_id": 36273, + "year": "2001" + }, + { + "id": 36275, + "model_id": 36273, + "year": "2002" + }, + { + "id": 36277, + "model_id": 36273, + "year": "2003" + }, + { + "id": 36280, + "model_id": 36273, + "year": "2004" + }, + { + "id": 36285, + "model_id": 36273, + "year": "2005" + }, + { + "id": 36288, + "model_id": 36273, + "year": "2007" + }, + { + "id": 36289, + "model_id": 36273, + "year": "2008" + }, + { + "id": 36290, + "model_id": 36290, + "year": "1998" + }, + { + "id": 36291, + "model_id": 36290, + "year": "1999" + }, + { + "id": 36293, + "model_id": 36293, + "year": "2004" + }, + { + "id": 36295, + "model_id": 36293, + "year": "2005" + }, + { + "id": 36297, + "model_id": 36293, + "year": "2006" + }, + { + "id": 36299, + "model_id": 36299, + "year": "1984" + }, + { + "id": 36309, + "model_id": 36299, + "year": "1985" + }, + { + "id": 36312, + "model_id": 36299, + "year": "1986" + }, + { + "id": 36314, + "model_id": 36299, + "year": "1987" + }, + { + "id": 36316, + "model_id": 36299, + "year": "1988" + }, + { + "id": 36318, + "model_id": 36318, + "year": "1985" + }, + { + "id": 36319, + "model_id": 36318, + "year": "1986" + }, + { + "id": 36320, + "model_id": 36318, + "year": "1987" + }, + { + "id": 36321, + "model_id": 36318, + "year": "1988" + }, + { + "id": 36322, + "model_id": 36322, + "year": "1984" + }, + { + "id": 36332, + "model_id": 36322, + "year": "1985" + }, + { + "id": 36335, + "model_id": 36322, + "year": "1986" + }, + { + "id": 36339, + "model_id": 36322, + "year": "1987" + }, + { + "id": 36341, + "model_id": 36322, + "year": "1988" + }, + { + "id": 36343, + "model_id": 36343, + "year": "2004" + }, + { + "id": 36344, + "model_id": 36343, + "year": "2008" + }, + { + "id": 36345, + "model_id": 36345, + "year": "1984" + }, + { + "id": 36361, + "model_id": 36345, + "year": "2006" + }, + { + "id": 36363, + "model_id": 36345, + "year": "2007" + }, + { + "id": 36365, + "model_id": 36345, + "year": "2008" + }, + { + "id": 36367, + "model_id": 36345, + "year": "2009" + }, + { + "id": 36369, + "model_id": 36369, + "year": "1984" + }, + { + "id": 36373, + "model_id": 36373, + "year": "2009" + }, + { + "id": 36375, + "model_id": 36373, + "year": "2010" + }, + { + "id": 36377, + "model_id": 36373, + "year": "2011" + }, + { + "id": 36378, + "model_id": 36373, + "year": "2012" + }, + { + "id": 36379, + "model_id": 36373, + "year": "2013" + }, + { + "id": 36380, + "model_id": 36373, + "year": "2014" + }, + { + "id": 36381, + "model_id": 36381, + "year": "1984" + }, + { + "id": 36385, + "model_id": 36381, + "year": "1985" + }, + { + "id": 36387, + "model_id": 36381, + "year": "1986" + }, + { + "id": 36389, + "model_id": 36381, + "year": "1987" + }, + { + "id": 36391, + "model_id": 36391, + "year": "1986" + }, + { + "id": 36392, + "model_id": 36391, + "year": "1987" + }, + { + "id": 36393, + "model_id": 36391, + "year": "1988" + }, + { + "id": 36394, + "model_id": 36394, + "year": "2009" + }, + { + "id": 36396, + "model_id": 36394, + "year": "2010" + }, + { + "id": 36398, + "model_id": 36394, + "year": "2011" + }, + { + "id": 36400, + "model_id": 36394, + "year": "2012" + }, + { + "id": 36402, + "model_id": 36394, + "year": "2013" + }, + { + "id": 36404, + "model_id": 36394, + "year": "2014" + }, + { + "id": 36406, + "model_id": 36394, + "year": "2015" + }, + { + "id": 36407, + "model_id": 36394, + "year": "2016" + }, + { + "id": 36408, + "model_id": 36408, + "year": "2009" + }, + { + "id": 36409, + "model_id": 36408, + "year": "2010" + }, + { + "id": 36410, + "model_id": 36408, + "year": "2011" + }, + { + "id": 36411, + "model_id": 36408, + "year": "2012" + }, + { + "id": 36412, + "model_id": 36408, + "year": "2013" + }, + { + "id": 36413, + "model_id": 36408, + "year": "2014" + }, + { + "id": 36414, + "model_id": 36408, + "year": "2015" + }, + { + "id": 36415, + "model_id": 36408, + "year": "2016" + }, + { + "id": 36416, + "model_id": 36416, + "year": "2004" + }, + { + "id": 36419, + "model_id": 36416, + "year": "2005" + }, + { + "id": 36421, + "model_id": 36416, + "year": "2006" + }, + { + "id": 36424, + "model_id": 36416, + "year": "2007" + }, + { + "id": 36427, + "model_id": 36416, + "year": "2008" + }, + { + "id": 36430, + "model_id": 36416, + "year": "2009" + }, + { + "id": 36433, + "model_id": 36416, + "year": "2010" + }, + { + "id": 36435, + "model_id": 36416, + "year": "2011" + }, + { + "id": 36437, + "model_id": 36416, + "year": "2012" + }, + { + "id": 36439, + "model_id": 36416, + "year": "2013" + }, + { + "id": 36441, + "model_id": 36416, + "year": "2014" + }, + { + "id": 36443, + "model_id": 36416, + "year": "2015" + }, + { + "id": 36445, + "model_id": 36416, + "year": "2016" + }, + { + "id": 36447, + "model_id": 36447, + "year": "2011" + }, + { + "id": 36448, + "model_id": 36447, + "year": "2012" + }, + { + "id": 36449, + "model_id": 36447, + "year": "2013" + }, + { + "id": 36450, + "model_id": 36447, + "year": "2014" + }, + { + "id": 36451, + "model_id": 36447, + "year": "2015" + }, + { + "id": 36452, + "model_id": 36452, + "year": "1984" + }, + { + "id": 36456, + "model_id": 36452, + "year": "1985" + }, + { + "id": 36460, + "model_id": 36460, + "year": "1986" + }, + { + "id": 36461, + "model_id": 36460, + "year": "1987" + }, + { + "id": 36462, + "model_id": 36460, + "year": "1988" + }, + { + "id": 36463, + "model_id": 36460, + "year": "1989" + }, + { + "id": 36464, + "model_id": 36460, + "year": "1990" + }, + { + "id": 36465, + "model_id": 36460, + "year": "1991" + }, + { + "id": 36466, + "model_id": 36466, + "year": "1986" + }, + { + "id": 36468, + "model_id": 36466, + "year": "1987" + }, + { + "id": 36470, + "model_id": 36466, + "year": "1988" + }, + { + "id": 36472, + "model_id": 36466, + "year": "1989" + }, + { + "id": 36474, + "model_id": 36466, + "year": "1990" + }, + { + "id": 36476, + "model_id": 36466, + "year": "1991" + }, + { + "id": 36478, + "model_id": 36478, + "year": "1990" + }, + { + "id": 36484, + "model_id": 36478, + "year": "1991" + }, + { + "id": 36486, + "model_id": 36478, + "year": "1992" + }, + { + "id": 36488, + "model_id": 36478, + "year": "1993" + }, + { + "id": 36490, + "model_id": 36490, + "year": "1989" + }, + { + "id": 36498, + "model_id": 36490, + "year": "1990" + }, + { + "id": 36504, + "model_id": 36490, + "year": "1991" + }, + { + "id": 36508, + "model_id": 36490, + "year": "1992" + }, + { + "id": 36510, + "model_id": 36510, + "year": "1989" + }, + { + "id": 36512, + "model_id": 36510, + "year": "1990" + }, + { + "id": 36514, + "model_id": 36514, + "year": "1987" + }, + { + "id": 36516, + "model_id": 36514, + "year": "1988" + }, + { + "id": 36517, + "model_id": 36514, + "year": "1989" + }, + { + "id": 36519, + "model_id": 36514, + "year": "1990" + }, + { + "id": 36521, + "model_id": 36521, + "year": "1993" + }, + { + "id": 36523, + "model_id": 36521, + "year": "1994" + }, + { + "id": 36526, + "model_id": 36521, + "year": "1995" + }, + { + "id": 36529, + "model_id": 36521, + "year": "1996" + }, + { + "id": 36532, + "model_id": 36521, + "year": "1997" + }, + { + "id": 36536, + "model_id": 36536, + "year": "1992" + }, + { + "id": 36538, + "model_id": 36536, + "year": "1993" + }, + { + "id": 36540, + "model_id": 36536, + "year": "1994" + }, + { + "id": 36542, + "model_id": 36536, + "year": "1995" + }, + { + "id": 36544, + "model_id": 36544, + "year": "1992" + }, + { + "id": 36545, + "model_id": 36544, + "year": "1993" + }, + { + "id": 36546, + "model_id": 36544, + "year": "1994" + }, + { + "id": 36547, + "model_id": 36544, + "year": "1995" + }, + { + "id": 36548, + "model_id": 36544, + "year": "1996" + }, + { + "id": 36549, + "model_id": 36549, + "year": "1986" + }, + { + "id": 36551, + "model_id": 36549, + "year": "1987" + }, + { + "id": 36553, + "model_id": 36549, + "year": "1988" + }, + { + "id": 36555, + "model_id": 36549, + "year": "1989" + }, + { + "id": 36559, + "model_id": 36559, + "year": "1986" + }, + { + "id": 36561, + "model_id": 36559, + "year": "1987" + }, + { + "id": 36563, + "model_id": 36559, + "year": "1988" + }, + { + "id": 36565, + "model_id": 36559, + "year": "1989" + }, + { + "id": 36569, + "model_id": 36569, + "year": "1984" + }, + { + "id": 36583, + "model_id": 36583, + "year": "1985" + }, + { + "id": 36588, + "model_id": 36588, + "year": "1984" + }, + { + "id": 36602, + "model_id": 36602, + "year": "1985" + }, + { + "id": 36607, + "model_id": 36607, + "year": "1990" + }, + { + "id": 36613, + "model_id": 36607, + "year": "1991" + }, + { + "id": 36615, + "model_id": 36607, + "year": "1992" + }, + { + "id": 36617, + "model_id": 36607, + "year": "1993" + }, + { + "id": 36619, + "model_id": 36619, + "year": "1990" + }, + { + "id": 36621, + "model_id": 36621, + "year": "1990" + }, + { + "id": 36623, + "model_id": 36623, + "year": "1989" + }, + { + "id": 36632, + "model_id": 36623, + "year": "1990" + }, + { + "id": 36638, + "model_id": 36623, + "year": "1991" + }, + { + "id": 36642, + "model_id": 36623, + "year": "1992" + }, + { + "id": 36644, + "model_id": 36644, + "year": "1985" + }, + { + "id": 36651, + "model_id": 36644, + "year": "1986" + }, + { + "id": 36658, + "model_id": 36644, + "year": "1987" + }, + { + "id": 36664, + "model_id": 36644, + "year": "1988" + }, + { + "id": 36669, + "model_id": 36669, + "year": "1986" + }, + { + "id": 36674, + "model_id": 36669, + "year": "1987" + }, + { + "id": 36678, + "model_id": 36669, + "year": "1988" + }, + { + "id": 36682, + "model_id": 36682, + "year": "1984" + }, + { + "id": 36691, + "model_id": 36691, + "year": "1989" + }, + { + "id": 36692, + "model_id": 36691, + "year": "1990" + }, + { + "id": 36693, + "model_id": 36693, + "year": "1994" + }, + { + "id": 36696, + "model_id": 36693, + "year": "1995" + }, + { + "id": 36701, + "model_id": 36693, + "year": "1996" + }, + { + "id": 36704, + "model_id": 36693, + "year": "1997" + }, + { + "id": 36708, + "model_id": 36708, + "year": "1991" + }, + { + "id": 36709, + "model_id": 36709, + "year": "1991" + }, + { + "id": 36710, + "model_id": 36710, + "year": "1991" + }, + { + "id": 36711, + "model_id": 36711, + "year": "1991" + }, + { + "id": 36712, + "model_id": 36712, + "year": "1991" + }, + { + "id": 36713, + "model_id": 36713, + "year": "1991" + }, + { + "id": 36714, + "model_id": 36714, + "year": "1992" + }, + { + "id": 36715, + "model_id": 36714, + "year": "1993" + }, + { + "id": 36717, + "model_id": 36714, + "year": "1994" + }, + { + "id": 36719, + "model_id": 36714, + "year": "1995" + }, + { + "id": 36721, + "model_id": 36721, + "year": "1992" + }, + { + "id": 36722, + "model_id": 36721, + "year": "1993" + }, + { + "id": 36723, + "model_id": 36721, + "year": "1994" + }, + { + "id": 36724, + "model_id": 36721, + "year": "1995" + }, + { + "id": 36725, + "model_id": 36721, + "year": "1996" + }, + { + "id": 36727, + "model_id": 36727, + "year": "1997" + }, + { + "id": 36728, + "model_id": 36728, + "year": "1997" + }, + { + "id": 36729, + "model_id": 36729, + "year": "2008" + }, + { + "id": 36733, + "model_id": 36729, + "year": "2009" + }, + { + "id": 36737, + "model_id": 36729, + "year": "2010" + }, + { + "id": 36741, + "model_id": 36729, + "year": "2011" + }, + { + "id": 36743, + "model_id": 36729, + "year": "2012" + }, + { + "id": 36745, + "model_id": 36729, + "year": "2013" + }, + { + "id": 36747, + "model_id": 36747, + "year": "1998" + }, + { + "id": 36750, + "model_id": 36747, + "year": "1999" + }, + { + "id": 36753, + "model_id": 36747, + "year": "2010" + }, + { + "id": 36755, + "model_id": 36747, + "year": "2011" + }, + { + "id": 36757, + "model_id": 36747, + "year": "2012" + }, + { + "id": 36758, + "model_id": 36747, + "year": "2013" + }, + { + "id": 36759, + "model_id": 36759, + "year": "1998" + }, + { + "id": 36762, + "model_id": 36759, + "year": "1999" + }, + { + "id": 36765, + "model_id": 36759, + "year": "2000" + }, + { + "id": 36768, + "model_id": 36759, + "year": "2001" + }, + { + "id": 36771, + "model_id": 36759, + "year": "2002" + }, + { + "id": 36774, + "model_id": 36759, + "year": "2003" + }, + { + "id": 36777, + "model_id": 36759, + "year": "2004" + }, + { + "id": 36780, + "model_id": 36759, + "year": "2006" + }, + { + "id": 36781, + "model_id": 36759, + "year": "2007" + }, + { + "id": 36783, + "model_id": 36759, + "year": "2008" + }, + { + "id": 36785, + "model_id": 36759, + "year": "2009" + }, + { + "id": 36787, + "model_id": 36787, + "year": "2000" + }, + { + "id": 36790, + "model_id": 36787, + "year": "2001" + }, + { + "id": 36793, + "model_id": 36787, + "year": "2002" + }, + { + "id": 36795, + "model_id": 36795, + "year": "1991" + }, + { + "id": 36796, + "model_id": 36796, + "year": "2006" + }, + { + "id": 36797, + "model_id": 36797, + "year": "2000" + }, + { + "id": 36798, + "model_id": 36797, + "year": "2001" + }, + { + "id": 36799, + "model_id": 36797, + "year": "2002" + }, + { + "id": 36800, + "model_id": 36797, + "year": "2003" + }, + { + "id": 36801, + "model_id": 36797, + "year": "2004" + }, + { + "id": 36804, + "model_id": 36797, + "year": "2005" + }, + { + "id": 36810, + "model_id": 36797, + "year": "2006" + }, + { + "id": 36816, + "model_id": 36797, + "year": "2007" + }, + { + "id": 36822, + "model_id": 36797, + "year": "2008" + }, + { + "id": 36828, + "model_id": 36797, + "year": "2009" + }, + { + "id": 36834, + "model_id": 36797, + "year": "2010" + }, + { + "id": 36840, + "model_id": 36797, + "year": "2011" + }, + { + "id": 36841, + "model_id": 36841, + "year": "2001" + }, + { + "id": 36847, + "model_id": 36841, + "year": "2002" + }, + { + "id": 36853, + "model_id": 36841, + "year": "2003" + }, + { + "id": 36859, + "model_id": 36841, + "year": "2004" + }, + { + "id": 36865, + "model_id": 36841, + "year": "2005" + }, + { + "id": 36871, + "model_id": 36841, + "year": "2006" + }, + { + "id": 36879, + "model_id": 36841, + "year": "2007" + }, + { + "id": 36885, + "model_id": 36841, + "year": "2008" + }, + { + "id": 36891, + "model_id": 36841, + "year": "2009" + }, + { + "id": 36896, + "model_id": 36841, + "year": "2011" + }, + { + "id": 36897, + "model_id": 36841, + "year": "2012" + }, + { + "id": 36899, + "model_id": 36841, + "year": "2013" + }, + { + "id": 36902, + "model_id": 36841, + "year": "2014" + }, + { + "id": 36905, + "model_id": 36841, + "year": "2015" + }, + { + "id": 36909, + "model_id": 36841, + "year": "2016" + }, + { + "id": 36914, + "model_id": 36841, + "year": "2017" + }, + { + "id": 36917, + "model_id": 36917, + "year": "2016" + }, + { + "id": 36918, + "model_id": 36917, + "year": "2017" + }, + { + "id": 36919, + "model_id": 36919, + "year": "2016" + }, + { + "id": 36921, + "model_id": 36919, + "year": "2017" + }, + { + "id": 36923, + "model_id": 36923, + "year": "2015" + }, + { + "id": 36924, + "model_id": 36923, + "year": "2016" + }, + { + "id": 36925, + "model_id": 36925, + "year": "2004" + }, + { + "id": 36927, + "model_id": 36925, + "year": "2005" + }, + { + "id": 36929, + "model_id": 36925, + "year": "2006" + }, + { + "id": 36931, + "model_id": 36925, + "year": "2007" + }, + { + "id": 36933, + "model_id": 36933, + "year": "1998" + }, + { + "id": 36938, + "model_id": 36933, + "year": "1999" + }, + { + "id": 36945, + "model_id": 36933, + "year": "2000" + }, + { + "id": 36951, + "model_id": 36951, + "year": "1999" + }, + { + "id": 36953, + "model_id": 36951, + "year": "2000" + }, + { + "id": 36955, + "model_id": 36951, + "year": "2004" + }, + { + "id": 36956, + "model_id": 36951, + "year": "2005" + }, + { + "id": 36959, + "model_id": 36951, + "year": "2006" + }, + { + "id": 36961, + "model_id": 36951, + "year": "2007" + }, + { + "id": 36964, + "model_id": 36951, + "year": "2008" + }, + { + "id": 36968, + "model_id": 36951, + "year": "2009" + }, + { + "id": 36971, + "model_id": 36951, + "year": "2010" + }, + { + "id": 36974, + "model_id": 36951, + "year": "2011" + }, + { + "id": 36976, + "model_id": 36951, + "year": "2012" + }, + { + "id": 36978, + "model_id": 36951, + "year": "2013" + }, + { + "id": 36980, + "model_id": 36951, + "year": "2014" + }, + { + "id": 36982, + "model_id": 36951, + "year": "2015" + }, + { + "id": 36984, + "model_id": 36951, + "year": "2016" + }, + { + "id": 36985, + "model_id": 36985, + "year": "2001" + }, + { + "id": 36987, + "model_id": 36985, + "year": "2002" + }, + { + "id": 36989, + "model_id": 36985, + "year": "2003" + }, + { + "id": 36991, + "model_id": 36991, + "year": "2004" + }, + { + "id": 36994, + "model_id": 36994, + "year": "1998" + }, + { + "id": 36995, + "model_id": 36994, + "year": "2017" + }, + { + "id": 36997, + "model_id": 36997, + "year": "2000" + }, + { + "id": 36998, + "model_id": 36997, + "year": "2001" + }, + { + "id": 36999, + "model_id": 36997, + "year": "2002" + }, + { + "id": 37000, + "model_id": 36997, + "year": "2003" + }, + { + "id": 37001, + "model_id": 36997, + "year": "2004" + }, + { + "id": 37002, + "model_id": 37002, + "year": "2005" + }, + { + "id": 37008, + "model_id": 37002, + "year": "2006" + }, + { + "id": 37014, + "model_id": 37002, + "year": "2007" + }, + { + "id": 37020, + "model_id": 37002, + "year": "2008" + }, + { + "id": 37026, + "model_id": 37002, + "year": "2009" + }, + { + "id": 37032, + "model_id": 37002, + "year": "2010" + }, + { + "id": 37037, + "model_id": 37002, + "year": "2011" + }, + { + "id": 37038, + "model_id": 37038, + "year": "2015" + }, + { + "id": 37041, + "model_id": 37038, + "year": "2016" + }, + { + "id": 37045, + "model_id": 37038, + "year": "2017" + }, + { + "id": 37048, + "model_id": 37048, + "year": "2015" + }, + { + "id": 37050, + "model_id": 37048, + "year": "2016" + }, + { + "id": 37051, + "model_id": 37048, + "year": "2017" + }, + { + "id": 37052, + "model_id": 37052, + "year": "2015" + }, + { + "id": 37053, + "model_id": 37052, + "year": "2016" + }, + { + "id": 37054, + "model_id": 37054, + "year": "1998" + }, + { + "id": 37061, + "model_id": 37054, + "year": "1999" + }, + { + "id": 37068, + "model_id": 37054, + "year": "2000" + }, + { + "id": 37075, + "model_id": 37054, + "year": "2001" + }, + { + "id": 37082, + "model_id": 37054, + "year": "2002" + }, + { + "id": 37088, + "model_id": 37054, + "year": "2003" + }, + { + "id": 37094, + "model_id": 37054, + "year": "2004" + }, + { + "id": 37100, + "model_id": 37054, + "year": "2005" + }, + { + "id": 37106, + "model_id": 37054, + "year": "2006" + }, + { + "id": 37113, + "model_id": 37054, + "year": "2007" + }, + { + "id": 37120, + "model_id": 37054, + "year": "2008" + }, + { + "id": 37121, + "model_id": 37054, + "year": "2009" + }, + { + "id": 37122, + "model_id": 37054, + "year": "2010" + }, + { + "id": 37123, + "model_id": 37123, + "year": "2004" + }, + { + "id": 37125, + "model_id": 37123, + "year": "2005" + }, + { + "id": 37127, + "model_id": 37123, + "year": "2006" + }, + { + "id": 37129, + "model_id": 37123, + "year": "2007" + }, + { + "id": 37131, + "model_id": 37131, + "year": "2001" + }, + { + "id": 37132, + "model_id": 37131, + "year": "2002" + }, + { + "id": 37133, + "model_id": 37133, + "year": "1998" + }, + { + "id": 37134, + "model_id": 37134, + "year": "2009" + }, + { + "id": 37135, + "model_id": 37134, + "year": "2010" + }, + { + "id": 37138, + "model_id": 37138, + "year": "2003" + }, + { + "id": 37139, + "model_id": 37138, + "year": "2004" + }, + { + "id": 37140, + "model_id": 37138, + "year": "2005" + }, + { + "id": 37141, + "model_id": 37138, + "year": "2006" + }, + { + "id": 37142, + "model_id": 37138, + "year": "2007" + }, + { + "id": 37143, + "model_id": 37138, + "year": "2008" + }, + { + "id": 37144, + "model_id": 37138, + "year": "2009" + }, + { + "id": 37146, + "model_id": 37138, + "year": "2010" + }, + { + "id": 37148, + "model_id": 37148, + "year": "2003" + }, + { + "id": 37151, + "model_id": 37148, + "year": "2004" + }, + { + "id": 37154, + "model_id": 37148, + "year": "2005" + }, + { + "id": 37158, + "model_id": 37148, + "year": "2006" + }, + { + "id": 37161, + "model_id": 37148, + "year": "2007" + }, + { + "id": 37166, + "model_id": 37148, + "year": "2008" + }, + { + "id": 37169, + "model_id": 37148, + "year": "2009" + }, + { + "id": 37172, + "model_id": 37148, + "year": "2010" + }, + { + "id": 37175, + "model_id": 37175, + "year": "2011" + }, + { + "id": 37178, + "model_id": 37175, + "year": "2012" + }, + { + "id": 37181, + "model_id": 37175, + "year": "2013" + }, + { + "id": 37184, + "model_id": 37175, + "year": "2014" + }, + { + "id": 37187, + "model_id": 37175, + "year": "2015" + }, + { + "id": 37192, + "model_id": 37175, + "year": "2016" + }, + { + "id": 37197, + "model_id": 37175, + "year": "2017" + }, + { + "id": 37200, + "model_id": 37200, + "year": "2011" + }, + { + "id": 37203, + "model_id": 37200, + "year": "2012" + }, + { + "id": 37206, + "model_id": 37200, + "year": "2013" + }, + { + "id": 37209, + "model_id": 37200, + "year": "2014" + }, + { + "id": 37212, + "model_id": 37200, + "year": "2015" + }, + { + "id": 37215, + "model_id": 37200, + "year": "2016" + }, + { + "id": 37217, + "model_id": 37217, + "year": "2011" + }, + { + "id": 37220, + "model_id": 37217, + "year": "2012" + }, + { + "id": 37222, + "model_id": 37217, + "year": "2013" + }, + { + "id": 37224, + "model_id": 37217, + "year": "2014" + }, + { + "id": 37226, + "model_id": 37217, + "year": "2016" + }, + { + "id": 37229, + "model_id": 37217, + "year": "2017" + }, + { + "id": 37231, + "model_id": 37231, + "year": "2016" + }, + { + "id": 37232, + "model_id": 37232, + "year": "2011" + }, + { + "id": 37233, + "model_id": 37232, + "year": "2012" + }, + { + "id": 37234, + "model_id": 37232, + "year": "2013" + }, + { + "id": 37235, + "model_id": 37235, + "year": "2011" + }, + { + "id": 37236, + "model_id": 37235, + "year": "2012" + }, + { + "id": 37237, + "model_id": 37237, + "year": "1991" + }, + { + "id": 37238, + "model_id": 37237, + "year": "1992" + }, + { + "id": 37239, + "model_id": 37239, + "year": "1991" + }, + { + "id": 37240, + "model_id": 37239, + "year": "1992" + }, + { + "id": 37241, + "model_id": 37241, + "year": "1991" + }, + { + "id": 37242, + "model_id": 37241, + "year": "1992" + }, + { + "id": 37243, + "model_id": 37243, + "year": "1991" + }, + { + "id": 37244, + "model_id": 37243, + "year": "1992" + }, + { + "id": 37245, + "model_id": 37245, + "year": "1991" + }, + { + "id": 37246, + "model_id": 37246, + "year": "1991" + }, + { + "id": 37247, + "model_id": 37246, + "year": "1992" + }, + { + "id": 37248, + "model_id": 37248, + "year": "1991" + }, + { + "id": 37249, + "model_id": 37248, + "year": "1992" + }, + { + "id": 37250, + "model_id": 37250, + "year": "1991" + }, + { + "id": 37251, + "model_id": 37250, + "year": "1992" + }, + { + "id": 37252, + "model_id": 37252, + "year": "1991" + }, + { + "id": 37253, + "model_id": 37252, + "year": "1992" + }, + { + "id": 37254, + "model_id": 37254, + "year": "1991" + }, + { + "id": 37255, + "model_id": 37254, + "year": "1992" + }, + { + "id": 37256, + "model_id": 37256, + "year": "1991" + }, + { + "id": 37257, + "model_id": 37256, + "year": "1992" + }, + { + "id": 37258, + "model_id": 37258, + "year": "1991" + }, + { + "id": 37259, + "model_id": 37259, + "year": "1991" + }, + { + "id": 37260, + "model_id": 37259, + "year": "1992" + }, + { + "id": 37261, + "model_id": 37261, + "year": "1991" + }, + { + "id": 37262, + "model_id": 37261, + "year": "1992" + }, + { + "id": 37263, + "model_id": 37263, + "year": "1991" + }, + { + "id": 37264, + "model_id": 37264, + "year": "1992" + }, + { + "id": 37265, + "model_id": 37265, + "year": "1992" + }, + { + "id": 37267, + "model_id": 37267, + "year": "1991" + }, + { + "id": 37268, + "model_id": 37267, + "year": "1992" + }, + { + "id": 37269, + "model_id": 37269, + "year": "1988" + }, + { + "id": 37271, + "model_id": 37271, + "year": "1990" + }, + { + "id": 37273, + "model_id": 37273, + "year": "1987" + }, + { + "id": 37274, + "model_id": 37273, + "year": "1989" + }, + { + "id": 37276, + "model_id": 37276, + "year": "1986" + } +] \ No newline at end of file diff --git a/src/Vehicle/Models/VehicleMake.php b/src/Vehicle/Models/VehicleMake.php new file mode 100644 index 0000000..dd9c66d --- /dev/null +++ b/src/Vehicle/Models/VehicleMake.php @@ -0,0 +1,28 @@ +hasMany(VehicleModel::class); + } +} diff --git a/src/Vehicle/Models/VehicleModel.php b/src/Vehicle/Models/VehicleModel.php new file mode 100644 index 0000000..c03381d --- /dev/null +++ b/src/Vehicle/Models/VehicleModel.php @@ -0,0 +1,50 @@ +belongsTo(VehicleMake::class); + } + + /** + * Model has many years. + * + * @return mixed + */ + public function years() + { + return $this->belongsTo(VehicleModelYear::class); + } + + /** + * Scope by make. + * + * @param \Illuminate\Database\Eloquent\Builder $query + * @param int $make Make id + * @return \Illuminate\Database\Eloquent\Builder + */ + public function scopeByMake($query, $make) + { + return $query->where('make_id', $make); + } +} diff --git a/src/Vehicle/Models/VehicleModelYear.php b/src/Vehicle/Models/VehicleModelYear.php new file mode 100644 index 0000000..7cfb590 --- /dev/null +++ b/src/Vehicle/Models/VehicleModelYear.php @@ -0,0 +1,50 @@ +belongsTo(VehicleModel::class); + } + + /** + * Year belongs to one make through model. + * + * @return mixed + */ + public function make() + { + return $this->model->make(); + } + + /** + * Scope by model. + * + * @param \Illuminate\Database\Eloquent\Builder $query + * @param int $model Model id + * @return \Illuminate\Database\Eloquent\Builder + */ + public function scopeByModel($query, $model) + { + return $query->where('model_id', $model); + } +} diff --git a/src/Vehicle/Models/VehicleOption.php b/src/Vehicle/Models/VehicleOption.php new file mode 100644 index 0000000..eb774f3 --- /dev/null +++ b/src/Vehicle/Models/VehicleOption.php @@ -0,0 +1,90 @@ +belongsTo(VehicleMake::class); + } + + /** + * Model belongs to one vehicle model. + * + * @return mixed + */ + public function model() + { + return $this->belongsTo(VehicleModel::class); + } + + /** + * Model belongs to one year. + * + * @return mixed + */ + public function year() + { + return $this->belongsTo(VehicleModelYear::class); + } + + /** + * Scope by make. + * + * @param \Illuminate\Database\Eloquent\Builder $query + * @param int $make Make id + * @return \Illuminate\Database\Eloquent\Builder + */ + public function scopeByMake($query, $make) + { + return $query->where('make_id', $make); + } + + /** + * Scope by model. + * + * @param \Illuminate\Database\Eloquent\Builder $query + * @param int $model Model id + * @return \Illuminate\Database\Eloquent\Builder + */ + public function scopeByModel($query, $model) + { + return $query->where('model_id', $model); + } + + /** + * Scope by year. + * + * @param \Illuminate\Database\Eloquent\Builder $query + * @param int $year Year id + * @return \Illuminate\Database\Eloquent\Builder + */ + public function scopeByYear($query, $year) + { + return $query->where('make_id', $year); + } +} diff --git a/src/Vehicle/Traits/HasMake.php b/src/Vehicle/Traits/HasMake.php new file mode 100644 index 0000000..10470b5 --- /dev/null +++ b/src/Vehicle/Traits/HasMake.php @@ -0,0 +1,11 @@ +belongsTo(config('vehicles.models.VehicleMake')); + } +} \ No newline at end of file diff --git a/src/Vehicle/Traits/HasModel.php b/src/Vehicle/Traits/HasModel.php new file mode 100644 index 0000000..f0738e3 --- /dev/null +++ b/src/Vehicle/Traits/HasModel.php @@ -0,0 +1,11 @@ +belongsTo(config('vehicles.models.VehicleModel')); + } +} \ No newline at end of file diff --git a/src/Vehicle/Traits/HasModelYear.php b/src/Vehicle/Traits/HasModelYear.php new file mode 100644 index 0000000..807cfb6 --- /dev/null +++ b/src/Vehicle/Traits/HasModelYear.php @@ -0,0 +1,11 @@ +belongsTo(config('vehicles.models.VehicleYear')); + } +} \ No newline at end of file diff --git a/src/Vehicle/VehicleMakesTableSeeder.php b/src/Vehicle/VehicleMakesTableSeeder.php new file mode 100644 index 0000000..0d2152f --- /dev/null +++ b/src/Vehicle/VehicleMakesTableSeeder.php @@ -0,0 +1,40 @@ +makes() as $make) + { + $makes[] = array_merge($make, [ + 'created_at' => $time, + 'updated_at' => $time + ]); + } + + VehicleMake::insert($makes); + } + + /** + * Get data to be inserted into the vehicle_makes table. + * + * @return array + */ + public function makes() + { + return json_decode(file_get_contents(__DIR__.'/Data/makes.json'), true); + } +} diff --git a/src/Vehicle/VehicleModelYearsTableSeeder.php b/src/Vehicle/VehicleModelYearsTableSeeder.php new file mode 100644 index 0000000..dd7522f --- /dev/null +++ b/src/Vehicle/VehicleModelYearsTableSeeder.php @@ -0,0 +1,43 @@ +years() as $year) + { + $years[] = array_merge($year, [ + 'created_at' => $time, + 'updated_at' => $time + ]); + } + + foreach (array_chunk($years, 1000) as $chunk) + { + VehicleModelYear::insert($chunk); + } + } + + /** + * Get data to be inserted into the vehicle_model_years table. + * + * @return array + */ + public function years() + { + return json_decode(file_get_contents(__DIR__.'/Data/years.json'), true); + } +} diff --git a/src/Vehicle/VehicleModelsTableSeeder.php b/src/Vehicle/VehicleModelsTableSeeder.php new file mode 100644 index 0000000..688c4e2 --- /dev/null +++ b/src/Vehicle/VehicleModelsTableSeeder.php @@ -0,0 +1,40 @@ +models() as $model) + { + $models[] = array_merge($model, [ + 'created_at' => $time, + 'updated_at' => $time + ]); + } + + VehicleModel::insert($models); + } + + /** + * Get data to be inserted into the vehicle_models table. + * + * @return array + */ + public function models() + { + return json_decode(file_get_contents(__DIR__.'/Data/models.json'), true); + } +} diff --git a/src/Vehicle/VehicleOptionsTableSeeder.php b/src/Vehicle/VehicleOptionsTableSeeder.php new file mode 100644 index 0000000..429054e --- /dev/null +++ b/src/Vehicle/VehicleOptionsTableSeeder.php @@ -0,0 +1,46 @@ +options() as $option) + { + $options[] = array_merge($option, [ + 'created_at' => $time, + 'updated_at' => $time + ]); + } + + foreach (array_chunk($options, 2000) as $chunk) + { + VehicleOption::insert($chunk); + } + } + + /** + * Get data to be inserted into the vehicle_options table. + * + * @return array + */ + public function options() + { + return json_decode(file_get_contents(__DIR__.'/Data/options.json'), true); + } +} diff --git a/src/Vehicle/VehicleServiceProvider.php b/src/Vehicle/VehicleServiceProvider.php new file mode 100644 index 0000000..2d37dfb --- /dev/null +++ b/src/Vehicle/VehicleServiceProvider.php @@ -0,0 +1,49 @@ +publishes([ + __DIR__.'/../config/vehicles.php' => config_path('vehicles.php') + ], 'config'); + + $this->publishes([ + __DIR__.'/../database/migrations/' => database_path('migrations') + ], 'migrations'); + + $this->publishes([ + __DIR__.'/../database/seeds/VehicleTablesSeeder.php' => database_path('seeds/VehicleTablesSeeder.php') + ], 'seeds'); + } + + /** + * Register the application services. + * + * @return void + */ + public function register() + { + // Register commands... + $this->commands($this->commands); + } +} diff --git a/src/config/vehicles.php b/src/config/vehicles.php new file mode 100644 index 0000000..21e9e8b --- /dev/null +++ b/src/config/vehicles.php @@ -0,0 +1,23 @@ + [ + 'VehicleMake' => Gerardojbaez\Vehicle\VehicleMake::class, + 'VehicleModel' => Gerardojbaez\Vehicle\VehicleModel::class, + 'VehicleYear' => Gerardojbaez\Vehicle\VehicleModelYear::class, + ], + +]; \ No newline at end of file diff --git a/src/database/migrations/2016_07_02_140555_create_vehicle_makes_table.php b/src/database/migrations/2016_07_02_140555_create_vehicle_makes_table.php new file mode 100644 index 0000000..90b73c1 --- /dev/null +++ b/src/database/migrations/2016_07_02_140555_create_vehicle_makes_table.php @@ -0,0 +1,32 @@ +increments('id'); + $table->string('name'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('vehicle_makes'); + } +} diff --git a/src/database/migrations/2016_07_02_140804_create_vehicle_models_table.php b/src/database/migrations/2016_07_02_140804_create_vehicle_models_table.php new file mode 100644 index 0000000..0b6c322 --- /dev/null +++ b/src/database/migrations/2016_07_02_140804_create_vehicle_models_table.php @@ -0,0 +1,36 @@ +increments('id'); + $table->integer('make_id')->unsigned(); + $table->string('name'); + $table->string('class'); + $table->timestamps(); + + $table->foreign('make_id')->references('id')->on('vehicle_makes')->onDelete('cascade'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('vehicle_models'); + } +} diff --git a/src/database/migrations/2016_07_02_142644_create_vehicle_model_years_table.php b/src/database/migrations/2016_07_02_142644_create_vehicle_model_years_table.php new file mode 100644 index 0000000..74e42cf --- /dev/null +++ b/src/database/migrations/2016_07_02_142644_create_vehicle_model_years_table.php @@ -0,0 +1,36 @@ +increments('id'); + $table->integer('model_id')->unsigned(); + $table->smallInteger('year'); + $table->timestamps(); + + $table->unique(['model_id', 'year']); + $table->foreign('model_id')->references('id')->on('vehicle_models')->onDelete('cascade'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('vehicle_model_years'); + } +} diff --git a/src/database/migrations/2016_07_06_035601_create_vehicle_options_table.php b/src/database/migrations/2016_07_06_035601_create_vehicle_options_table.php new file mode 100644 index 0000000..f1f60e7 --- /dev/null +++ b/src/database/migrations/2016_07_06_035601_create_vehicle_options_table.php @@ -0,0 +1,42 @@ +increments('id'); + $table->integer('make_id')->unsigned(); + $table->integer('model_id')->unsigned(); + $table->integer('year_id')->unsigned(); + $table->tinyInteger('cylinders'); + $table->decimal('displacement', 2,2); + $table->string('drive'); + $table->string('transmission'); + $table->timestamps(); + + $table->foreign('make_id')->references('id')->on('vehicle_makes')->onDelete('cascade'); + $table->foreign('model_id')->references('id')->on('vehicle_models')->onDelete('cascade'); + $table->foreign('year_id')->references('id')->on('vehicle_model_years')->onDelete('cascade'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::drop('vehicle_options'); + } +} diff --git a/src/database/seeds/VehicleTablesSeeder.php b/src/database/seeds/VehicleTablesSeeder.php new file mode 100644 index 0000000..64c9550 --- /dev/null +++ b/src/database/seeds/VehicleTablesSeeder.php @@ -0,0 +1,23 @@ +call(VehicleMakesTableSeeder::class); + $this->call(VehicleModelsTableSeeder::class); + $this->call(VehicleModelYearsTableSeeder::class); + $this->call(VehicleOptionsTableSeeder::class); + } +}